:root {
  --bg: #080A0D;
  --card: #111418;
  --card2: #161A20;
  --secondary: #1E2228;
  --primary: #00F0FF;
  --primary-dark: #00C4D0;
  --label: #F5F5F5;
  --label2: #7F8694;
  --label3: #4A5060;
  --separator: #2E3238;
  --green: #25D366;
  --red: #EC4444;
  --radius-card: 16px;
  --radius-input: 10px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--label);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAVBAR ─────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,10,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--separator);
  height: 62px; display: flex; align-items: center;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-size: 20px; font-weight: 800; color: var(--label);
  letter-spacing: -0.03em; display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo .nav-brand { color: var(--label); }
.nav-logo .nav-brand .accent { color: var(--primary); }
.nav-logo-icon { font-size: 22px; }
.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links a {
  color: var(--label2); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--label); background: var(--secondary); text-decoration: none; }
.nav-cta {
  background: var(--primary); color: var(--bg) !important;
  font-weight: 700; padding: 8px 18px !important;
  border-radius: var(--radius-input);
  transition: opacity 0.15s, transform 0.12s !important;
}
.nav-cta:hover { opacity: 0.88; transform: scale(1.02); background: var(--primary) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--label2); border-radius: 2px;
  transition: 0.2s;
}
.nav-mobile {
  display: none; position: fixed; inset: 62px 0 0;
  background: var(--bg); padding: 20px 24px; z-index: 99;
  border-top: 1px solid var(--separator); flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--label); font-size: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--separator); display: block;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta-mobile {
  background: var(--primary); color: var(--bg); font-weight: 700;
  padding: 14px 0; border-radius: var(--radius-input);
  text-align: center; margin-top: 12px; border: none;
}

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
section:first-of-type { padding-top: 0; }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--primary); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 5vw, 46px); font-weight: 800;
  color: var(--label); letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--label2); max-width: 560px; line-height: 1.65;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  padding: 80px 0 96px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,240,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,240,255,0.08); border: 1px solid rgba(0,240,255,0.2);
  color: var(--primary); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(34px, 5.5vw, 58px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 20px;
  color: var(--label);
}
.hero h1 .accent { color: var(--primary); }
.hero-sub {
  font-size: 18px; color: var(--label2); line-height: 1.65;
  margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: var(--bg);
  font-size: 15px; font-weight: 700; padding: 13px 26px;
  border-radius: var(--radius-input); border: none; cursor: pointer;
  transition: opacity 0.15s, transform 0.12s, box-shadow 0.15s;
  display: inline-block; font-family: var(--font);
}
.btn-primary:hover {
  opacity: 0.88; transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,240,255,0.25);
  text-decoration: none;
}
.btn-outline {
  background: transparent; color: var(--label);
  font-size: 15px; font-weight: 600; padding: 13px 26px;
  border-radius: var(--radius-input);
  border: 1px solid var(--separator); cursor: pointer;
  transition: border-color 0.15s, color 0.15s, transform 0.12s;
  display: inline-block; font-family: var(--font);
}
.btn-outline:hover {
  border-color: rgba(0,240,255,0.4); color: var(--primary);
  transform: translateY(-1px); text-decoration: none;
}
.hero-trust {
  margin-top: 28px; font-size: 13px; color: var(--label3);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust span::before { content: '✓'; color: var(--green); font-weight: 700; }

/* WhatsApp Mockup */
.wa-mockup {
  background: #0B1417;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,240,255,0.04);
  max-width: 360px; margin-left: auto;
}
.wa-header {
  background: #1F2C34;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.wa-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #00A0AA);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.wa-header-info { flex: 1; }
.wa-name { font-size: 15px; font-weight: 600; color: #E9EDEF; }
.wa-status { font-size: 12px; color: #8696A0; }
.wa-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #0B1417; }
.wa-msg {
  max-width: 85%; padding: 8px 12px; border-radius: 12px;
  font-size: 14px; line-height: 1.5; position: relative;
}
.wa-msg-in {
  background: #1F2C34; color: #E9EDEF;
  border-bottom-left-radius: 4px; align-self: flex-start;
}
.wa-msg-out {
  background: #005C4B; color: #E9EDEF;
  border-bottom-right-radius: 4px; align-self: flex-end;
}
.wa-time { font-size: 11px; color: #8696A0; margin-top: 3px; text-align: right; }
.wa-typing {
  background: #1F2C34; border-radius: 12px; border-bottom-left-radius: 4px;
  padding: 10px 14px; align-self: flex-start; display: flex; gap: 4px; align-items: center;
}
.wa-dot { width: 6px; height: 6px; background: #8696A0; border-radius: 50%; animation: waDot 1.4s infinite; }
.wa-dot:nth-child(2) { animation-delay: 0.2s; }
.wa-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes waDot { 0%,80%,100%{opacity:0.3;transform:scale(0.8)} 40%{opacity:1;transform:scale(1)} }

/* ── STATS ───────────────────────────────────────── */
.stats-section { padding: 0 0 96px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  background: var(--separator); border-radius: var(--radius-card);
  overflow: hidden;
}
.stat-card {
  background: var(--card); padding: 40px 32px; text-align: center;
}
.stat-num {
  font-size: 52px; font-weight: 900; color: var(--primary);
  letter-spacing: -0.04em; line-height: 1;
  text-shadow: 0 0 30px rgba(0,240,255,0.3);
}
.stat-label { font-size: 15px; color: var(--label2); margin-top: 8px; }

/* ── PROBLEM / SOLUTION ──────────────────────────── */
.prob-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.prob-card {
  background: var(--card); border: 1px solid var(--separator);
  border-radius: var(--radius-card); padding: 36px 32px;
}
.prob-card.solution { border-color: rgba(0,240,255,0.2); }
.prob-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.prob-title {
  font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--label);
}
.prob-list, .sol-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prob-list li, .sol-list li {
  font-size: 15px; color: var(--label2);
  padding-left: 24px; position: relative;
}
.prob-list li::before {
  content: '✗'; color: var(--red); position: absolute; left: 0; font-weight: 700;
}
.sol-list li::before {
  content: '✓'; color: var(--green); position: absolute; left: 0; font-weight: 700;
}

/* ── BENEFITS ────────────────────────────────────── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.benefit-card {
  background: linear-gradient(160deg, var(--card) 60%, rgba(0,240,255,0.03));
  border: 1px solid rgba(0,240,255,0.18);
  border-radius: var(--radius-card); padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block; color: inherit;
}
.benefit-card:hover {
  border-color: rgba(0,240,255,0.35); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,240,255,0.07);
  text-decoration: none;
}
.benefit-icon { font-size: 38px; margin-bottom: 16px; display: block; }
.benefit-title { font-size: 18px; font-weight: 700; color: var(--label); margin-bottom: 10px; }
.benefit-desc { font-size: 14px; color: var(--label2); line-height: 1.7; }
.benefit-card .benefit-link {
  color: var(--primary); font-size: 13px; font-weight: 600;
  margin-top: 14px; display: inline-block;
}

/* ── FEATURES ────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feat-card {
  background: var(--card); border: 1px solid var(--separator);
  border-radius: var(--radius-card); padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.feat-card:hover {
  border-color: rgba(0,240,255,0.2); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.feat-icon {
  font-size: 28px; margin-bottom: 14px; display: block;
}
.feat-title {
  font-size: 16px; font-weight: 700; color: var(--label); margin-bottom: 8px;
}
.feat-desc { font-size: 14px; color: var(--label2); line-height: 1.6; }
.feat-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: rgba(0,240,255,0.1); color: var(--primary);
  padding: 2px 8px; border-radius: 100px; margin-top: 10px;
}

/* ── CALCULATOR ──────────────────────────────────── */
.calc-wrap {
  background: var(--card); border: 1px solid var(--separator);
  border-radius: var(--radius-card); padding: 48px;
  max-width: 720px; margin: 48px auto 0;
}
.calc-label {
  font-size: 15px; font-weight: 600; color: var(--label); margin-bottom: 8px;
}
.calc-sub { font-size: 14px; color: var(--label2); margin-bottom: 24px; }
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--secondary); border-radius: 3px; outline: none; cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); cursor: pointer;
  box-shadow: 0 0 12px rgba(0,240,255,0.4);
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); cursor: pointer; border: none;
}
.calc-value-display {
  text-align: center; font-size: 22px; font-weight: 800;
  color: var(--primary); margin: 12px 0 32px;
}
.calc-results {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  margin-top: 8px;
}
.calc-result {
  background: var(--bg); border: 1px solid var(--separator);
  border-radius: 12px; padding: 20px 16px; text-align: center;
}
.calc-result-num {
  font-size: 26px; font-weight: 800; color: var(--primary);
  letter-spacing: -0.02em;
}
.calc-result-label { font-size: 13px; color: var(--label2); margin-top: 4px; }
.calc-note {
  margin-top: 20px; font-size: 13px; color: var(--label3); text-align: center;
}

/* ── HOW IT WORKS ────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; position: relative; padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step-line {
  display: flex; flex-direction: column; align-items: center;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: var(--bg);
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-connector {
  flex: 1; width: 2px; background: var(--separator);
  margin: 8px 0; min-height: 40px;
}
.step:last-child .step-connector { display: none; }
.step-content { padding-top: 10px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--label); }
.step-desc { font-size: 15px; color: var(--label2); line-height: 1.6; }

/* ── KÜCHEN GRID ─────────────────────────────────── */
.kueche-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.kueche-card {
  background: var(--card); border: 1px solid var(--separator);
  border-radius: 12px; padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; color: var(--label) !important;
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.kueche-card:hover {
  border-color: rgba(0,240,255,0.35);
  background: linear-gradient(160deg, var(--card) 60%, rgba(0,240,255,0.04));
  transform: translateY(-2px); text-decoration: none;
}
.kueche-icon { font-size: 28px; line-height: 1; }
.kueche-name { font-size: 13px; font-weight: 600; color: var(--label2); }
.kueche-card:hover .kueche-name { color: var(--primary); }

/* ── PRICING ─────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; align-items: stretch; margin-top: 48px;
}
.price-card {
  background: var(--card); border: 1px solid var(--separator);
  border-radius: var(--radius-card); padding: 32px 28px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.35); }
.price-featured {
  border-color: rgba(0,240,255,0.3);
  background: linear-gradient(160deg, var(--card) 60%, rgba(0,240,255,0.04));
}
.price-featured:hover { border-color: rgba(0,240,255,0.55); box-shadow: 0 20px 48px rgba(0,240,255,0.1); }
.price-popular {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--bg);
  font-size: 11px; font-weight: 700; padding: 4px 16px;
  border-radius: 0 0 10px 10px; letter-spacing: 0.05em; white-space: nowrap;
}
.price-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: var(--label); }
.price-desc { font-size: 13px; color: var(--label2); margin-bottom: 20px; }
.price-amount {
  font-size: 42px; font-weight: 900; color: var(--label);
  letter-spacing: -0.04em; margin-bottom: 4px;
}
.price-period { font-size: 14px; font-weight: 400; color: var(--label3); }
.price-divider {
  border: none; border-top: 1px solid var(--separator); margin: 20px 0;
}
.price-features {
  list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1;
}
.price-features li {
  font-size: 14px; color: var(--label2);
  padding-left: 22px; position: relative;
}
.price-features li.on::before { content: '✓'; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.price-features li.off { color: var(--label3); }
.price-features li.off::before { content: '✗'; color: var(--label3); position: absolute; left: 0; }
.price-cta {
  margin-top: 24px;
  display: block; text-align: center;
  padding: 12px; border-radius: var(--radius-input);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: opacity 0.15s, transform 0.12s;
  font-family: var(--font);
}
.price-cta:hover { opacity: 0.85; transform: scale(1.02); text-decoration: none; }
.price-cta-primary { background: var(--primary); color: var(--bg); border: none; }
.price-cta-outline {
  background: transparent; color: var(--label);
  border: 1px solid var(--separator);
}
.price-cta-outline:hover { border-color: rgba(0,240,255,0.35); color: var(--primary); }
.pricing-note {
  text-align: center; font-size: 13px; color: var(--label3); margin-top: 20px;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 8px; }
details {
  background: var(--card); border: 1px solid var(--separator);
  border-radius: 12px; overflow: hidden;
}
details[open] { border-color: rgba(0,240,255,0.2); }
summary {
  padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--label);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  list-style: none; user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; color: var(--primary); font-size: 22px; font-weight: 300;
  transition: transform 0.2s; flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px; font-size: 15px; color: var(--label2); line-height: 1.65;
}

/* ── FINAL CTA ───────────────────────────────────── */
.cta-section {
  background: linear-gradient(160deg, rgba(0,240,255,0.06) 0%, transparent 60%);
  border-top: 1px solid var(--separator); border-bottom: 1px solid var(--separator);
  text-align: center;
}
.cta-section .section-title { margin-bottom: 12px; }
.cta-section .section-sub { margin: 0 auto 36px; }
.cta-trust {
  margin-top: 20px; font-size: 13px; color: var(--label3);
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.cta-trust span::before { content: '✓ '; color: var(--green); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  padding: 56px 0 32px; border-top: 1px solid var(--separator);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 32px;
}
.footer-logo { font-size: 20px; font-weight: 800; color: var(--label); letter-spacing: -0.03em; white-space: nowrap; }
.footer-logo span { color: var(--primary); }
.footer-tagline { font-size: 13px; color: var(--label3); margin-top: 8px; line-height: 1.5; }
.footer-col-title {
  font-size: 12px; font-weight: 700; color: var(--label);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col-links a { font-size: 14px; color: var(--label2); }
.footer-col-links a:hover { color: var(--primary); text-decoration: none; }
.footer-copy { font-size: 12px; color: var(--label3); text-align: center; padding-top: 24px; border-top: 1px solid var(--separator); }

/* ── SCROLL ANIMATION ────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── COOKIE BANNER ───────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(14,17,22,0.98); backdrop-filter: blur(20px);
  border-top: 1px solid var(--separator);
}
#cookie-banner.hidden { display: none; }
.cookie-inner { max-width: 1140px; margin: 0 auto; padding: 20px 24px; }
.cookie-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.cookie-title { font-size: 14px; font-weight: 700; color: var(--label); margin-bottom: 4px; }
.cookie-text { font-size: 13px; color: var(--label2); line-height: 1.5; max-width: 640px; }
.cookie-text a { color: var(--primary); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }
.cookie-btn {
  font-size: 13px; font-weight: 600; padding: 8px 18px;
  border-radius: 8px; cursor: pointer; border: none;
  font-family: var(--font); transition: opacity 0.15s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept { background: var(--primary); color: var(--bg); }
.cookie-btn-outline {
  background: transparent; color: var(--label2);
  border: 1px solid var(--separator);
}
.cookie-settings {
  border-top: 1px solid var(--separator);
  margin-top: 16px; padding-top: 16px;
}
.cookie-cats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.cookie-cat {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 16px;
  background: rgba(255,255,255,0.03); border-radius: 10px;
  border: 1px solid var(--separator);
}
.cookie-cat-name { font-size: 13px; font-weight: 600; color: var(--label); margin-bottom: 2px; }
.cookie-cat-desc { font-size: 12px; color: var(--label3); line-height: 1.4; }
.cookie-badge {
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: rgba(0,240,255,0.1); border-radius: 4px;
  padding: 2px 8px; white-space: nowrap; flex-shrink: 0;
}
.cookie-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--separator); border-radius: 24px;
  transition: background 0.2s;
}
.cookie-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  left: 3px; bottom: 3px;
  background: var(--label2); transition: transform 0.2s, background 0.2s;
}
.cookie-switch input:checked + .cookie-slider { background: var(--primary); }
.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(18px); background: var(--bg);
}
.cookie-settings-btns { display: flex; gap: 10px; justify-content: flex-end; }
@media (max-width: 640px) {
  .cookie-top { flex-direction: column; }
  .cookie-btns { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
  .cookie-settings-btns { flex-direction: column; }
}

/* ── USE-CASE GRID (Hotel) ──────────────────────── */
.usecase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.usecase-card {
  background: var(--card); border: 1px solid var(--separator);
  border-radius: var(--radius-card); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.usecase-card:hover {
  border-color: rgba(0,240,255,0.25); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.usecase-icon { font-size: 28px; line-height: 1; }
.usecase-title { font-size: 16px; font-weight: 700; color: var(--label); }
.usecase-desc { font-size: 13px; color: var(--label2); line-height: 1.55; margin-bottom: 4px; }
.usecase-questions {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--separator); padding-top: 12px; margin-top: 4px;
}
.usecase-questions li {
  font-size: 12.5px; color: var(--label2); line-height: 1.4;
  padding-left: 16px; position: relative;
}
.usecase-questions li::before {
  content: '💬'; position: absolute; left: 0; font-size: 11px;
  filter: grayscale(0.4); opacity: 0.85;
}

/* ── BRANCHEN-HUB (auf /) ────────────────────────── */
.branchen-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 56px;
}
.branchen-card {
  background: linear-gradient(160deg, var(--card) 60%, rgba(0,240,255,0.03));
  border: 1px solid rgba(0,240,255,0.18);
  border-radius: var(--radius-card); padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
  color: inherit;
}
.branchen-card:hover {
  border-color: rgba(0,240,255,0.5); transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,240,255,0.10);
  text-decoration: none;
}
.branchen-icon { font-size: 42px; margin-bottom: 18px; display: block; line-height: 1; }
.branchen-name { font-size: 18px; font-weight: 800; color: var(--label); margin-bottom: 8px; letter-spacing: -0.01em; }
.branchen-pitch { font-size: 14px; color: var(--label2); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.branchen-link {
  font-size: 13px; font-weight: 700; color: var(--primary);
  letter-spacing: 0.02em; margin-top: auto;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; margin-bottom: 8px; }
  .branchen-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .wa-mockup { max-width: 320px; margin: 0 auto; }
  .prob-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .calc-results { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 56px 0 64px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .calc-wrap { padding: 28px 20px; }
  .calc-results { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .branchen-grid { grid-template-columns: 1fr; }
  .kueche-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: 1fr; }
}

/* ── SPRACH-UMSCHALTER ───────────────────────────── */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switcher-toggle {
  background: transparent;
  border: 1px solid var(--separator);
  color: var(--label2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  transition: border-color 0.15s, color 0.15s;
}
.lang-switcher-toggle:hover {
  border-color: rgba(0,240,255,0.35);
  color: var(--label);
}
.lang-switcher-toggle::after {
  content: '▾';
  font-size: 10px;
  margin-inline-start: 2px;
  opacity: 0.7;
}
.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  background: var(--card);
  border: 1px solid var(--separator);
  border-radius: 10px;
  padding: 6px;
  min-width: 180px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 200;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.lang-switcher.open .lang-switcher-menu { display: flex; }
.lang-switcher-menu a {
  font-size: 14px;
  color: var(--label2);
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.lang-switcher-menu a:hover {
  background: var(--secondary);
  color: var(--label);
  text-decoration: none;
}
.lang-switcher-menu a.current {
  color: var(--primary);
  background: rgba(0,240,255,0.08);
}
.lang-switcher-menu .lang-flag {
  font-size: 16px;
  line-height: 1;
}
.lang-switcher-toggle .lang-code {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Mobile-Menu-Variante: in der Mobile-Nav inline darstellen */
.nav-mobile .lang-switcher {
  width: 100%;
  margin-top: 8px;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  border-top: 1px solid var(--separator);
  padding-top: 14px;
}
.nav-mobile .lang-switcher-toggle { display: none; }
.nav-mobile .lang-switcher-menu {
  position: static;
  display: flex;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-width: 0;
}
.nav-mobile .lang-switcher-menu a {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--separator);
  border-radius: 0;
}
.nav-mobile .lang-switcher-menu a:last-child { border-bottom: none; }

/* Desktop: Sprach-Umschalter im Header neben CTA */
@media (max-width: 900px) {
  .nav-links .lang-switcher-li { display: none; }
}

/* ── RTL OVERRIDES (Arabisch) ────────────────────── */
[dir="rtl"] body { font-family: var(--font); /* könnte hier eine bessere AR-Font setzen */ }

/* Listen-Bullets/Checkmarks (links absolut → rechts absolut) */
[dir="rtl"] .prob-list li,
[dir="rtl"] .sol-list li {
  padding-left: 0;
  padding-right: 24px;
}
[dir="rtl"] .price-features li {
  padding-left: 0;
  padding-right: 22px;
}
[dir="rtl"] .usecase-questions li {
  padding-left: 0;
  padding-right: 16px;
}
[dir="rtl"] .prob-list li::before,
[dir="rtl"] .sol-list li::before,
[dir="rtl"] .price-features li::before,
[dir="rtl"] .usecase-questions li::before {
  left: auto;
  right: 0;
}

/* WA-Mockup-Container: links-ausgerichtet → rechts-ausgerichtet */
[dir="rtl"] .wa-mockup {
  margin-left: 0;
  margin-right: auto;
}

/* FAQ-Plus: links neben Text, in RTL bleibt rechts (justify-content already handles) */
/* Cookie-Banner: justify-content space-between funktioniert automatisch in RTL */

/* Sprachumschalter: Dropdown öffnet links statt rechts */
[dir="rtl"] .lang-switcher-menu {
  inset-inline-end: auto;
  inset-inline-start: 0;
}

/* Pfeile in CTAs sind direction-agnostisch dank unicode-bidi */
[dir="rtl"] .btn-primary,
[dir="rtl"] .btn-outline,
[dir="rtl"] .price-cta,
[dir="rtl"] .branchen-link,
[dir="rtl"] .nav-cta,
[dir="rtl"] .nav-cta-mobile {
  unicode-bidi: plaintext;
}

/* Step-Connector-Line bleibt durch grid-Layout automatisch korrekt */

/* hero-trust ::before checkmark direction-agnostisch */
[dir="rtl"] .hero-trust span::before,
[dir="rtl"] .cta-trust span::before { /* checkmark bleibt rechts vom Text in beiden Richtungen — OK */ }

/* Mobile Hamburger bleibt rechts: in RTL standardmäßig links — wir lassen flex space-between handeln */
