/* =========================================================
   QuickQR — quickqr.myaether.org
   Multilingual QR menus · an Aether product
   Liquid-Glass premium design system (shared with myaether.org)
   · Space Grotesk + DM Sans · Cyan→Indigo→Violet aurora
   · SVG line icons · WCAG-aware · reduced-motion
   ========================================================= */

:root {
  /* Aurora palette — cyan-led for QuickQR */
  --cyan: #06b6d4;
  --cyan-600: #0891b2;
  --indigo: #4f46e5;
  --violet: #7c3aed;
  --sky: #38bdf8;
  --teal: #0e7490;

  /* Neutrals (slate) */
  --ink: #0b1020;
  --ink-soft: #475569;
  --muted: #64748b;
  --bg: #f5fbfd;
  --bg-2: #e8f5fa;
  --surface: #ffffff;
  --line: #e2eaf0;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-brd: rgba(255, 255, 255, 0.75);
  --glass-blur: 18px;

  --aurora: linear-gradient(120deg, #06b6d4 0%, #4f46e5 52%, #7c3aed 100%);
  --aurora-soft: linear-gradient(120deg, #e0f7fb 0%, #eef0ff 52%, #f1ebff 100%);

  --shadow-sm: 0 4px 18px rgba(8, 51, 75, 0.07);
  --shadow: 0 18px 48px rgba(8, 51, 75, 0.12);
  --shadow-lg: 0 34px 80px rgba(8, 51, 75, 0.18);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.45s var(--ease);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: clip; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', 'DM Sans', sans-serif; line-height: 1.12; color: var(--ink); letter-spacing: -0.02em; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grad-text { background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Accessibility helpers */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--indigo); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid rgba(6, 182, 212, 0.55); outline-offset: 3px; border-radius: 6px; }

/* ---------- Icon system (injected SVG) ---------- */
.ico { display: inline-flex; align-items: center; justify-content: center; }
.ico svg { width: 1.1em; height: 1.1em; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Glass primitive ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow-sm);
}

/* ---------- Aurora background ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: clip; pointer-events: none; background: var(--bg); }
.aurora-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.a1 { width: 52vw; height: 52vw; max-width: 720px; max-height: 720px; top: -14vw; left: -8vw; background: radial-gradient(circle at 30% 30%, #a5f3fc, #67e8f9 60%, transparent 72%); animation: float1 22s var(--ease) infinite alternate; }
.a2 { width: 46vw; height: 46vw; max-width: 640px; max-height: 640px; top: 22%; right: -12vw; background: radial-gradient(circle at 50% 50%, #c7d2fe, #a5b4fc 55%, transparent 72%); opacity: 0.45; animation: float2 26s var(--ease) infinite alternate; }
.a3 { width: 40vw; height: 40vw; max-width: 560px; max-height: 560px; bottom: -12vw; left: 28%; background: radial-gradient(circle at 50% 50%, #ddd6fe, #c4b5fd 55%, transparent 72%); opacity: 0.5; animation: float3 24s var(--ease) infinite alternate; }
.aurora-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(6,182,212,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(6,182,212,0.045) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%); }
@keyframes float1 { to { transform: translate(60px, 50px) scale(1.12); } }
@keyframes float2 { to { transform: translate(-50px, 40px) scale(1.1); } }
@keyframes float3 { to { transform: translate(40px, -40px) scale(1.14); } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; cursor: pointer; border: none; transition: transform var(--t), box-shadow var(--t), background var(--t); white-space: nowrap; }
.btn-sm { padding: 9px 18px; font-size: 0.92rem; }
.btn-lg { padding: 17px 36px; font-size: 1.06rem; }
.btn-primary { position: relative; background: var(--aurora); background-size: 150% 150%; color: #fff; box-shadow: 0 10px 26px rgba(6, 182, 212, 0.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(6, 182, 212, 0.42); background-position: 100% 50%; }
.btn-ghost { background: rgba(255,255,255,0.7); color: var(--ink); border: 1.5px solid var(--line); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan); color: var(--teal); }
.btn-block { width: 100%; }
.btn .ico svg { width: 1.2em; height: 1.2em; }

/* ---------- Navbar ---------- */
.nav { position: sticky; top: 0; z-index: 100; transition: box-shadow 0.3s, background 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(245, 251, 253, 0.72); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); box-shadow: 0 6px 28px rgba(8,51,75,0.08); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.34rem; }
.logo-text { background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-mark { display: grid; place-items: center; }
.logo-sub { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { position: relative; padding: 9px 14px; border-radius: 999px; font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); transition: color 0.2s, background 0.2s; }
.nav-link::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--aurora); transform: scaleX(0); transform-origin: center; transition: transform 0.3s var(--ease); }
.nav-link:hover { color: var(--teal); }
.nav-link.active { color: var(--teal); }
.nav-link.active::after { transform: scaleX(1); }
.nav-cta { color: #fff !important; margin-left: 6px; }
.nav-cta::after { display: none; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-switch { position: relative; }
.lang-btn { display: flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,0.7); border: 1.5px solid var(--line); cursor: pointer; font-weight: 600; font-size: 0.9rem; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; backdrop-filter: blur(8px); }
.lang-btn:hover { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.lang-flag { font-size: 1.05rem; }
.lang-menu { position: absolute; right: 0; top: calc(100% + 10px); list-style: none; background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 8px; min-width: 196px; max-height: 340px; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.22s var(--ease); z-index: 200; }
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; cursor: pointer; font-weight: 500; font-size: 0.92rem; transition: background 0.15s; }
.lang-menu li:hover, .lang-menu li.active { background: var(--bg-2); color: var(--teal); }
.lang-menu li .flag { font-size: 1.15rem; }
.lang-menu li .code { margin-left: auto; font-size: 0.72rem; color: var(--muted); font-weight: 700; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 90px; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 54px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.7); border: 1px solid var(--glass-brd); color: var(--teal); font-weight: 600; font-size: 0.84rem; box-shadow: var(--shadow-sm); margin-bottom: 24px; backdrop-filter: blur(8px); }
.pill .ico svg { width: 1em; height: 1em; }
.hero-title { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 700; }
.hero-title span { display: block; }
.hero-sub { font-size: 1.16rem; color: var(--ink-soft); margin: 24px 0 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 38px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.trust-item .ico { width: 34px; height: 34px; border-radius: 10px; background: var(--aurora-soft); color: var(--teal); }
.trust-item .ico svg { width: 18px; height: 18px; }

/* ---------- Hero phone demo ---------- */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone { width: 318px; max-width: 84vw; aspect-ratio: 318 / 640; background: #0b1020; border-radius: 46px; padding: 13px; box-shadow: var(--shadow-lg); position: relative; border: 3px solid #1b2138; }
.phone::after { content: ""; position: absolute; inset: 0; border-radius: 46px; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06); pointer-events: none; }
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #0b1020; border-radius: 0 0 14px 14px; z-index: 5; }
.phone-screen { width: 100%; height: 100%; background: #fff; border-radius: 33px; overflow: hidden; }
.menu-app { height: 100%; display: flex; flex-direction: column; }
.menu-app-head { background: var(--aurora); color: #fff; padding: 36px 18px 16px; }
.ma-rest { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.24rem; }
.ma-sub { font-size: 0.74rem; opacity: 0.92; margin-top: 2px; }
.ma-lang { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.ma-lang button { padding: 4px 11px; border-radius: 999px; border: none; background: rgba(255,255,255,0.22); color: #fff; font-weight: 600; font-size: 0.72rem; cursor: pointer; transition: background 0.2s; }
.ma-lang button.active { background: #fff; color: var(--teal); }
.menu-filters { display: flex; gap: 6px; padding: 12px 16px 6px; flex-wrap: wrap; }
.menu-filters button { padding: 5px 12px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: 0.74rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all 0.2s; }
.menu-filters button.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.menu-items { flex: 1; overflow-y: auto; padding: 6px 14px 16px; }
.menu-items::-webkit-scrollbar { width: 5px; }
.menu-items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 9px; }
.dish { border: 1px solid var(--line); border-radius: 16px; padding: 12px 14px; margin-bottom: 10px; cursor: pointer; transition: box-shadow 0.2s, border-color 0.2s; }
.dish:hover { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.dish-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.dish-name { font-weight: 600; font-size: 0.92rem; }
.dish-price { font-weight: 700; color: var(--teal); font-size: 0.9rem; white-space: nowrap; }
.dish-tags { display: flex; gap: 5px; margin-top: 7px; flex-wrap: wrap; }
.dish-tag { font-size: 0.64rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.tag-veg { background: #dcfce7; color: #15803d; }
.tag-vegan { background: #d1fae5; color: #047857; }
.tag-allergen { background: #ffedd5; color: #c2410c; }
.dish-detail { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.dish.open .dish-detail { max-height: 240px; }
.dish-detail-inner { padding-top: 10px; margin-top: 10px; border-top: 1px dashed var(--line); }
.dd-label { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 3px; }
.dd-text { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 8px; }
.dd-allergens { display: flex; gap: 5px; flex-wrap: wrap; }
.dd-allergen { font-size: 0.66rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: #ffedd5; color: #c2410c; }
.demo-hint { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); font-weight: 500; margin-top: 16px; justify-content: center; }
.demo-hint .ico { color: var(--cyan); }

/* ---------- Stats ---------- */
.stats { padding: 0 0 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 30px 16px; border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: 'Space Grotesk'; font-size: 2.7rem; font-weight: 700; background: var(--aurora); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; margin-top: 10px; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-tight { padding: 80px 0 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.kicker { display: inline-block; padding: 6px 16px; border-radius: 999px; background: rgba(255,255,255,0.7); border: 1px solid var(--glass-brd); color: var(--teal); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; backdrop-filter: blur(8px); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section-lead { font-size: 1.1rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- Cards ---------- */
.card { background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)) saturate(140%); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%); border: 1px solid var(--glass-brd); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t), border-color var(--t); position: relative; overflow: hidden; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(6, 182, 212, 0.4); }
.card-ic { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; background: var(--aurora-soft); color: var(--teal); margin-bottom: 18px; }
.card-ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Problem / pain section ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain { text-align: left; }
.pain .card-ic { background: #fef2f2; color: #dc2626; }
.solve-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 44px; flex-wrap: wrap; text-align: center; }
.solve-row .arrow { color: var(--cyan); font-size: 1.4rem; }
.solve-pill { display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; border-radius: 999px; background: var(--aurora); color: #fff; font-weight: 700; box-shadow: 0 10px 26px rgba(6,182,212,0.3); }

/* ---------- How it works (steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.3rem; color: #fff; background: var(--aurora); box-shadow: 0 10px 24px rgba(79,70,229,0.28); margin-bottom: 18px; }
.step h3 { font-size: 1.22rem; margin-bottom: 9px; }
.step p { color: var(--ink-soft); }
.steps.with-line .step::before { content: ""; position: absolute; top: 26px; left: 62px; right: -13px; height: 2px; background: linear-gradient(90deg, var(--cyan), transparent); }
.steps.with-line .step:last-child::before { display: none; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-grid .card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--aurora); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.feature-grid .card:hover::before { transform: scaleX(1); }

/* ---------- Benefits (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-visual { order: 1; }
.split-copy h2 { font-size: clamp(1.75rem, 3.8vw, 2.5rem); margin-bottom: 18px; }
.split-copy > p { font-size: 1.06rem; color: var(--ink-soft); margin-bottom: 26px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.fl-ic { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--aurora-soft); color: var(--teal); }
.fl-ic svg { width: 21px; height: 21px; }
.feature-list div { display: flex; flex-direction: column; }
.feature-list strong { font-size: 1rem; color: var(--ink); font-weight: 600; }
.feature-list span:not(.ico) { color: var(--ink-soft); font-size: 0.95rem; }

/* ROI / numbers card */
.roi-card { border-radius: var(--radius); padding: 38px 32px; background: linear-gradient(135deg, #0b1020 0%, #14233f 60%, #0e2a3a 100%); color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.roi-card::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(6,182,212,0.45), transparent 70%); top: -90px; right: -80px; }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; }
.roi-item .roi-num { font-family: 'Space Grotesk'; font-size: 2.4rem; font-weight: 700; background: linear-gradient(120deg, #67e8f9, #a5b4fc); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
.roi-item .roi-label { font-size: 0.9rem; color: #b8c2e0; margin-top: 4px; }
.roi-note { position: relative; margin-top: 26px; font-size: 0.85rem; color: #93a1c4; }

/* ---------- Use cases ---------- */
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.usecase { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: var(--radius-sm); }
.usecase .uc-emoji { font-size: 1.7rem; }
.usecase strong { display: block; font-size: 1.02rem; }
.usecase span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Comparison table ---------- */
.compare { max-width: 760px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--glass-brd); }
.compare table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.7); backdrop-filter: blur(var(--glass-blur)); }
.compare th, .compare td { padding: 15px 18px; text-align: left; font-size: 0.95rem; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: 'Space Grotesk'; font-weight: 700; font-size: 0.92rem; }
.compare thead th:nth-child(2) { color: var(--muted); text-align: center; }
.compare thead th:nth-child(3) { color: var(--teal); text-align: center; }
.compare td:nth-child(2), .compare td:nth-child(3) { text-align: center; font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: #15803d; } .compare .no { color: #cbd5e1; }
.compare td:nth-child(3) { background: rgba(6,182,212,0.06); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; border-radius: var(--radius); padding: 34px 28px; background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-brd); box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); position: relative; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--cyan); box-shadow: var(--shadow); }
.price-tag-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--aurora); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.price-name { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.2rem; }
.price-desc { color: var(--ink-soft); font-size: 0.9rem; margin: 6px 0 18px; min-height: 40px; }
.price-amt { font-family: 'Space Grotesk'; font-size: 2.6rem; font-weight: 700; line-height: 1; }
.price-amt small { font-size: 0.92rem; font-weight: 500; color: var(--muted); }
.price-period { font-size: 0.84rem; color: var(--muted); margin-top: 6px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 22px 0 26px; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--ink-soft); }
.price-feats li .ck { color: var(--cyan); flex: none; margin-top: 1px; }
.price-feats li .ck svg { width: 18px; height: 18px; }
.price-card .btn { margin-top: auto; }
.price-foot { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 26px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { border-radius: var(--radius); padding: 30px 28px; background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-brd); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi-stars { color: #f5b700; letter-spacing: 2px; margin-bottom: 12px; }
.testi-quote { font-size: 1rem; color: var(--ink); flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: 'Space Grotesk'; font-weight: 700; color: #fff; background: var(--aurora); flex: none; }
.testi-name { font-weight: 600; font-size: 0.95rem; }
.testi-role { font-size: 0.84rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, #0e7490 0%, #4338ca 55%, #6d28d9 100%); color: #fff; border-radius: var(--radius); padding: 56px 40px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 40%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.12), transparent 45%); }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto 28px; }
.cta-banner .btn-light { background: #fff; color: var(--teal); }
.cta-banner .btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,0.25); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }

/* ---------- Live menu preview card ---------- */
.live-card { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; border-radius: var(--radius); padding: 8px; }
.live-copy { padding: 26px; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px; background: #fffbeb; color: #b45309; font-weight: 700; font-size: 0.8rem; margin-bottom: 18px; border: 1px solid #fde68a; }
.live-copy h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px; }
.live-copy p { color: var(--ink-soft); margin-bottom: 22px; }
.live-shot { display: flex; justify-content: center; }
.live-shot .phone { transform: rotate(2.5deg); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq { border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-brd); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 600; font-size: 1.02rem; color: var(--ink); font-family: 'Space Grotesk'; }
.faq-q .chev { flex: none; width: 22px; height: 22px; display: grid; place-items: center; color: var(--cyan); transition: transform 0.3s var(--ease); }
.faq.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-soft); }
.faq.open .faq-a { max-height: 320px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.75rem, 3.8vw, 2.6rem); margin: 14px 0 16px; }
.contact-copy > p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 30px; }
.contact-info { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.ci-ic { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--aurora-soft); color: var(--teal); }
.ci-ic svg { width: 22px; height: 22px; }
.contact-info strong { display: block; font-size: 0.98rem; margin-bottom: 2px; font-weight: 600; }
.contact-info a, .contact-info span:not(.ico) { color: var(--ink-soft); }
.contact-info a:hover { color: var(--teal); }
.wa-inline { color: #15803d !important; font-weight: 600; }
.wa-inline:hover { text-decoration: underline; }
.contact-form { border-radius: var(--radius); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: rgba(255,255,255,0.7); font-family: inherit; font-size: 0.95rem; color: var(--ink); transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); background: #fff; box-shadow: 0 0 0 4px rgba(6,182,212,0.12); }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-or { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.82rem; font-weight: 500; margin: 14px 0; }
.form-or::before, .form-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.footer { background: #0b1020; color: #c7cbe0; padding: 66px 0 0; margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 50px; padding-bottom: 44px; }
.logo-light .logo-text { color: #fff; -webkit-text-fill-color: #fff; }
.footer-brand p { margin: 16px 0; max-width: 320px; color: #9aa0bf; }
.made-eu { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; font-weight: 500; background: rgba(255,255,255,0.08); padding: 8px 14px; border-radius: 999px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: #9aa0bf; font-size: 0.9rem; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: #7b7f9e; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; z-index: 95; width: 58px; height: 58px; border-radius: 50%; right: calc(20px + env(safe-area-inset-right, 0px)); bottom: calc(20px + env(safe-area-inset-bottom, 0px)); background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.45); transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.wa-float .ico svg { width: 30px; height: 30px; fill: currentColor; stroke: none; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 36px rgba(37,211,102,0.55); }
.btn-wa .ico svg { fill: currentColor; stroke: none; width: 20px; height: 20px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .steps, .feature-grid, .usecase-grid, .testi-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps.with-line .step::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-copy { order: 1; }
  .split.reverse .split-visual { order: 2; }
  .live-card { grid-template-columns: 1fr; gap: 24px; }
  .live-shot { order: -1; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .price-card.featured { transform: scale(1); }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; top: 74px; right: 0; width: min(82vw, 330px); height: calc(100dvh - 74px); background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); flex-direction: column; align-items: stretch; gap: 4px; padding: 22px; box-shadow: var(--shadow-lg); transform: translateX(110%); transition: transform 0.35s var(--ease); border-left: 1px solid var(--line); overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-link { padding: 14px 16px; font-size: 1.05rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .problem-grid, .steps, .feature-grid, .usecase-grid, .testi-grid, .pricing-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
  .compare th, .compare td { padding: 12px 12px; font-size: 0.86rem; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-trust { gap: 16px; }
  .stat { padding: 22px 10px; }
  .stat-num { font-size: 2.2rem; }
  .contact-form { padding: 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
