/* =========================================================================
   תפריט דיגיטלי - Digital Menu
   Production stylesheet. Single file, zero build, RTL-first.
   Palette: warm "sunset kitchen" - persimmon + honey gold on cream/espresso.
   Font: Rubik (variable, self-hosted, hebrew + latin subsets).
   ========================================================================= */

/* ---------- Fonts (self-hosted, inlined to keep one CSS request) ---------- */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/rubik-hebrew.woff2') format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/rubik-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Design tokens ---------- */
:root {
  /* Warm neutrals */
  --ink: #1c1411;           /* warm espresso - body text + dark sections */
  --ink-2: #2a201a;
  --ink-soft: #6c5d52;      /* secondary text */
  --ink-mute: #94857a;      /* tertiary / captions */
  --cream: #fff8f1;         /* page canvas */
  --cream-2: #fbeddf;       /* alt section wash */
  --cream-3: #f6e3d2;
  --surface: #ffffff;       /* cards */
  --line: #efe1d4;          /* hairline border */
  --line-soft: #f5ebe1;

  /* Brand - persimmon */
  --brand: #f8542b;
  --brand-strong: #e23d18;  /* hover */
  --brand-ink: #bd3614;     /* brand-colored TEXT on light (AA) */
  --brand-tint: #fff0ea;    /* faint brand wash */

  /* Accent - honey gold */
  --gold: #f3a93c;
  --gold-deep: #d98a1a;
  --gold-ink: #94640f;

  /* Fresh - emerald (live / success only, used sparingly) */
  --fresh: #12b886;
  --fresh-ink: #0c7a5b;

  --danger: #d64533;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #ff7a45 0%, #f8542b 45%, #f3933c 100%);
  --grad-warm: linear-gradient(135deg, #ff6a3d, #f8542b 55%, #e8431b);

  /* Radii */
  --r-card: 26px;
  --r-sub: 18px;
  --r-ui: 14px;
  --r-pill: 999px;

  /* Shadows (warm-tinted) */
  --sh-sm: 0 1px 2px rgba(28, 20, 17, .06), 0 2px 8px rgba(28, 20, 17, .04);
  --sh-card: 0 4px 14px rgba(28, 20, 17, .05), 0 22px 48px -22px rgba(28, 20, 17, .16);
  --sh-lift: 0 10px 26px rgba(28, 20, 17, .08), 0 36px 70px -28px rgba(28, 20, 17, .22);
  --sh-glow: 0 16px 44px -14px rgba(248, 84, 43, .5);

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --nav-h: 76px;

  --z-nav: 50;
  --z-fab: 40;
  --z-modal: 60;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Rubik', system-ui, 'Segoe UI', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  text-wrap: pretty;
}
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

/* numerals + technical data flow LTR inside RTL */
.ltr { direction: ltr; unicode-bidi: isolate; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--brand-ink);
  background: var(--brand-tint);
  border: 1px solid #fbd9cb;
  padding: .42em 1em;
  border-radius: var(--r-pill);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.h-xl {
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.025em;
}
.h-lg { font-size: clamp(1.95rem, 4.2vw, 3.35rem); font-weight: 800; line-height: 1.08; }
.h-md { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; }
h3.h-sm, .h-sm { font-size: clamp(1.18rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -.015em; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--ink-soft); line-height: 1.7; }
.muted { color: var(--ink-soft); }
.text-brand { color: var(--brand-ink); }
.hl { color: var(--brand-ink); }
.hl-gold { color: var(--gold-ink); }

/* gradient text accent */
.grad-text {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 700;
  font-size: 1.02rem;
  padding: .92em 1.7em;
  border-radius: var(--r-pill);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 56px -14px rgba(248, 84, 43, .62); }
.btn-primary:active { transform: translateY(0); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--brand-strong); transform: translateY(-2px); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-ink); transform: translateY(-2px); }
.btn-outline-light {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .14); }
.btn-lg { font-size: 1.1rem; padding: 1.05em 2em; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: var(--z-nav);
  transition: background-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft), border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255, 248, 241, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(28, 20, 17, .4);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 900;
  font-size: 1.26rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand .mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  box-shadow: var(--sh-glow);
  flex: none;
}
.brand .mark svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink-soft);
  padding: .5rem .85rem;
  border-radius: var(--r-pill);
  transition: color .2s, background-color .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(28, 20, 17, .05); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-cta { padding: .68em 1.3em; font-size: .98rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block;
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; inset-block-start: -6px; inset-inline-start: 0; }
.nav-toggle span::after { position: absolute; inset-block-start: 6px; inset-inline-start: 0; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu hidden by default (desktop); shown only via the mobile media query */
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: calc(var(--nav-h) + clamp(36px, 7vw, 80px)) clamp(56px, 8vw, 110px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg .blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .55;
}
.hero-bg .blob-1 { width: 540px; height: 540px; inset-block-start: -160px; inset-inline-start: -120px; background: radial-gradient(circle, rgba(248, 84, 43, .5), transparent 70%); }
.hero-bg .blob-2 { width: 460px; height: 460px; inset-block-start: 40px; inset-inline-end: -140px; background: radial-gradient(circle, rgba(243, 169, 60, .45), transparent 70%); }
.hero-bg .mesh {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
  opacity: .5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero-copy { max-width: 600px; }
.hero h1 { margin-block: 1.1rem 1.3rem; }
.hero .lead { max-width: 33ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-block-start: 2rem; }
.hero-assure {
  display: flex; flex-wrap: wrap; gap: 1.1rem 1.4rem;
  margin-block-start: 1.6rem; color: var(--ink-soft);
  font-size: .95rem; font-weight: 500;
}
.hero-assure li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-assure svg { width: 18px; height: 18px; color: var(--fresh-ink); flex: none; }

/* Phone mock */
.hero-visual { position: relative; display: grid; place-items: center; }
.phone {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 320 / 650;
  background: #120d0a;
  border-radius: 44px;
  padding: 11px;
  box-shadow: var(--sh-lift), 0 0 0 2px rgba(28, 20, 17, .9);
  rotate: -3deg;
}
.phone::before {
  content: ''; position: absolute; inset-block-start: 18px; inset-inline: 0; margin-inline: auto;
  width: 116px; height: 26px; background: #120d0a; border-radius: 999px; z-index: 3;
}
.phone-screen {
  position: relative;
  height: 100%; width: 100%;
  background: var(--cream);
  border-radius: 34px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.ps-top {
  background: var(--grad-brand);
  color: #fff;
  padding: 48px 20px 20px;
}
.ps-top .ps-kick { font-size: .72rem; font-weight: 700; opacity: .9; letter-spacing: .04em; }
.ps-top .ps-name { font-size: 1.35rem; font-weight: 900; letter-spacing: -.02em; margin-block-start: 2px; }
.ps-live {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255, 255, 255, .2); border-radius: 999px;
  padding: .25em .7em; font-size: .68rem; font-weight: 700; margin-block-start: 10px;
}
.ps-live .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #aef5d6;
  box-shadow: 0 0 0 0 rgba(174, 245, 214, .8);
  animation: pulse 2.2s var(--ease) infinite;
}
.ps-cats { display: flex; gap: 7px; padding: 14px 18px 4px; overflow: hidden; }
.ps-cat { font-size: .72rem; font-weight: 700; padding: .35em .8em; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink-soft); white-space: nowrap; }
.ps-cat.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.ps-list { padding: 8px 18px; display: grid; gap: 10px; }
.ps-item {
  display: flex; gap: 11px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 10px;
  box-shadow: var(--sh-sm);
}
.ps-thumb { width: 52px; height: 52px; border-radius: 12px; flex: none; background: var(--grad-warm); }
.ps-thumb.g2 { background: linear-gradient(135deg, #ffd089, #f3a93c); }
.ps-thumb.g3 { background: linear-gradient(135deg, #b9e8d4, #12b886); }
.ps-item .t { font-weight: 800; font-size: .9rem; }
.ps-item .d { font-size: .72rem; color: var(--ink-mute); }
.ps-item .p { margin-inline-start: auto; font-weight: 900; font-size: .92rem; color: var(--brand-ink); }
.ps-promo {
  margin: 6px 18px 14px; padding: 12px 14px; border-radius: 16px;
  background: var(--ink); color: #fff; display: flex; align-items: center; gap: 10px;
}
.ps-promo .em { color: var(--gold); font-weight: 900; }
.ps-promo svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* floating chips around phone */
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--sh-lift);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .9rem;
}
.float-card .ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-card .ico svg { width: 20px; height: 20px; }
.float-card small { display: block; font-weight: 500; color: var(--ink-mute); font-size: .74rem; }
.fc-qr { inset-block-start: 8%; inset-inline-start: -8%; }
.fc-qr .ico { background: var(--ink); color: #fff; }
.fc-rev { inset-block-end: 12%; inset-inline-end: -6%; }
.fc-rev .ico { background: var(--gold); color: #fff; }
.fc-rev .stars { color: var(--gold); letter-spacing: 1px; }

@media (prefers-reduced-motion: no-preference) {
  .float-card { animation: floaty 6s var(--ease) infinite; }
  .fc-rev { animation-delay: -3s; }
}

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust-inner { padding-block: 26px; display: flex; align-items: center; gap: clamp(14px, 3vw, 34px); flex-wrap: wrap; justify-content: center; }
.trust-label { font-weight: 700; color: var(--ink-soft); font-size: .95rem; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center; }
.chip {
  font-weight: 700; font-size: .9rem; color: var(--ink-2);
  padding: .5em 1.05em; border-radius: var(--r-pill);
  background: var(--cream-2); border: 1px solid var(--line);
}

/* ---------- Generic cards / grids ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--sh-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card.hover:hover { transform: translateY(-5px); box-shadow: var(--sh-lift); border-color: #f3d3c2; }
.feat-ico {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--brand-tint); color: var(--brand-ink);
}
.feat-ico svg { width: 27px; height: 27px; }
.feat-ico.gold { background: #fdf0db; color: var(--gold-ink); }
.feat-ico.fresh { background: #e3f7ef; color: var(--fresh-ink); }
.feat-ico.ink { background: #f0e9e3; color: var(--ink); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }

/* ---------- Compare (old vs new) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 28px); }
.compare-card { border-radius: var(--r-card); padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line); }
.compare-old { background: var(--cream-2); }
.compare-new { background: var(--ink); color: var(--cream); border-color: transparent; box-shadow: var(--sh-lift); position: relative; overflow: hidden; }
.compare-new .glow { position: absolute; inset-block-start: -40%; inset-inline-end: -20%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(248, 84, 43, .4), transparent 70%); filter: blur(40px); }
.compare h4 { font-size: 1.15rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.compare ul { display: grid; gap: .85rem; position: relative; }
.compare li { display: flex; gap: .7rem; align-items: flex-start; line-height: 1.5; }
.compare li svg { width: 22px; height: 22px; flex: none; margin-block-start: 2px; }
.compare-old li svg { color: var(--ink-mute); }
.compare-new li svg { color: #7ef0c4; }
.compare-old li { color: var(--ink-soft); }

/* ---------- Bento (features) ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.8vw, 20px); }
.bento .card { padding: clamp(20px, 2.2vw, 28px); }
.b-2 { grid-column: span 2; }
.b-3 { grid-column: span 3; }
.b-6 { grid-column: span 6; }
.bento-feature {
  grid-column: span 3; grid-row: span 2;
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.bento-feature .glow { position: absolute; inset-block-end: -30%; inset-inline-start: -10%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(243, 169, 60, .35), transparent 70%); filter: blur(36px); }
.bento-feature h3 { color: #fff; font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
.bento-feature p { color: rgba(255, 248, 241, .72); }
.pay-row { display: flex; flex-wrap: wrap; gap: 8px; margin-block-start: 1.1rem; position: relative; }
.pay-tag { font-weight: 700; font-size: .82rem; padding: .4em .9em; border-radius: 999px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.step { position: relative; }
.step .num {
  font-size: 2.4rem; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px #f0cbb9;
  margin-bottom: .7rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; }
.step::after {
  content: ''; position: absolute; inset-block-start: 18px; inset-inline-start: -13px;
  width: 26px; height: 2px; background: repeating-linear-gradient(to left, var(--line) 0 6px, transparent 6px 12px);
}
.steps .step:first-child::after { display: none; }

/* ---------- Audience ---------- */
.aud-card { display: flex; gap: 14px; align-items: flex-start; }
.aud-card .feat-ico { margin-bottom: 0; width: 48px; height: 48px; }
.aud-card .feat-ico svg { width: 24px; height: 24px; }
.aud-card h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.aud-card p { font-size: .95rem; }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--cream); border-radius: var(--r-card); padding: clamp(34px, 5vw, 60px); position: relative; overflow: hidden; }
.stats .aurora { position: absolute; inset: 0; background: radial-gradient(50% 60% at 18% 20%, rgba(248, 84, 43, .42), transparent 70%), radial-gradient(45% 55% at 85% 90%, rgba(243, 169, 60, .3), transparent 70%); pointer-events: none; }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 3vw, 40px); text-align: center; }
.stat .v { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.stat .v .grad-text { background: linear-gradient(135deg, #ff8a5c, #f3a93c); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { margin-block-start: .6rem; color: rgba(255, 248, 241, .72); font-size: .98rem; font-weight: 500; }
.stats-note { position: relative; text-align: center; margin-block-start: 1.6rem; font-size: .85rem; color: rgba(255, 248, 241, .5); }

/* ---------- Packages / pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); align-items: start; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(26px, 3vw, 34px); box-shadow: var(--sh-card); display: flex; flex-direction: column; }
.plan.featured { background: var(--ink); color: var(--cream); border-color: transparent; box-shadow: var(--sh-lift); position: relative; }
.plan.featured .plan-tag { position: absolute; inset-block-start: -14px; inset-inline-start: 50%; transform: translateX(50%); background: var(--grad-brand); color: #fff; font-weight: 800; font-size: .8rem; padding: .45em 1.1em; border-radius: 999px; box-shadow: var(--sh-glow); white-space: nowrap; }
.plan h3 { font-size: 1.45rem; }
.plan .plan-sub { color: var(--ink-soft); font-size: .96rem; margin-block: .5rem 1.3rem; min-height: 2.6em; }
.plan.featured .plan-sub { color: rgba(255, 248, 241, .72); }
.plan .price-line { font-size: 1.05rem; font-weight: 800; margin-bottom: 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.plan.featured .price-line { border-color: rgba(255, 255, 255, .14); }
.plan .price-line span { color: var(--brand-ink); }
.plan.featured .price-line span { color: var(--gold); }
.plan ul { display: grid; gap: .75rem; margin-bottom: 1.7rem; }
.plan li { display: flex; gap: .6rem; align-items: flex-start; font-size: .97rem; line-height: 1.5; }
.plan li svg { width: 20px; height: 20px; flex: none; margin-block-start: 2px; color: var(--fresh-ink); }
.plan.featured li svg { color: #7ef0c4; }
.plan .btn { margin-block-start: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.qa { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sub); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.qa[open] { border-color: #f3d3c2; box-shadow: var(--sh-card); }
.qa summary {
  list-style: none; cursor: pointer;
  padding: 20px 22px; font-weight: 700; font-size: 1.08rem;
  display: flex; align-items: center; gap: 1rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .ic { margin-inline-start: auto; flex: none; width: 24px; height: 24px; color: var(--brand); transition: transform .3s var(--ease); }
.qa[open] summary .ic { transform: rotate(45deg); }
.qa .a { padding: 0 22px 22px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Lead form (dark CTA) ---------- */
.lead-cta { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.lead-cta .aurora { position: absolute; inset: 0; background: radial-gradient(55% 60% at 82% 16%, rgba(248, 84, 43, .42), transparent 70%), radial-gradient(45% 55% at 12% 88%, rgba(243, 169, 60, .26), transparent 70%); pointer-events: none; }
.lead-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.lead-cta .eyebrow { background: rgba(248, 84, 43, .16); border-color: rgba(248, 84, 43, .3); color: #ffb89e; }
.lead-cta h2 { color: #fff; margin-block: 1rem 1.2rem; }
.lead-cta .lead-p { color: rgba(255, 248, 241, .78); font-size: 1.12rem; max-width: 40ch; }
.lead-bul { display: grid; gap: .8rem; margin-block-start: 1.7rem; }
.lead-bul li { display: flex; align-items: center; gap: .7rem; color: rgba(255, 248, 241, .9); font-weight: 500; }
.lead-bul .ck { width: 26px; height: 26px; border-radius: 50%; background: rgba(18, 184, 134, .2); color: #7ef0c4; display: grid; place-items: center; flex: none; }
.lead-bul .ck svg { width: 14px; height: 14px; }
.lead-alt { margin-block-start: 1.8rem; color: rgba(255, 248, 241, .6); font-size: .95rem; }
.lead-alt a { color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255, 255, 255, .35); }

.form-card { background: var(--surface); color: var(--ink); border-radius: var(--r-card); padding: clamp(24px, 3vw, 34px); box-shadow: 0 30px 90px -24px rgba(0, 0, 0, .5); }
.form-card h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.form-card .fc-sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.3rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label { font-weight: 700; font-size: .92rem; }
.field label .req { color: var(--brand); }
.input {
  width: 100%; padding: .9em 1.05em;
  border: 1.5px solid var(--line); border-radius: var(--r-ui);
  background: #fff; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.input::placeholder { color: var(--ink-mute); }
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(248, 84, 43, .14); }
.input.err { border-color: var(--danger); }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236c5d52' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 1rem center; padding-inline-start: 2.6rem; }
.field .errmsg { color: var(--danger); font-size: .82rem; font-weight: 600; min-height: 1em; }
.hp { position: absolute; inset-inline-start: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--ink-mute); margin-block-start: .5rem; line-height: 1.5; }
.form-note a { color: var(--brand-ink); text-decoration: underline; }
.form-msg { border-radius: var(--r-ui); padding: .8em 1em; font-size: .92rem; font-weight: 600; margin-bottom: 1rem; display: none; }
.form-msg.show { display: block; }
.form-msg.error { background: #fdecea; color: var(--danger); border: 1px solid #f5c6bf; }
.form-success { text-align: center; padding: 1rem 0; }
.form-success .big { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; margin: 0 auto 1.1rem; box-shadow: var(--sh-glow); }
.form-success .big svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.5rem; }
.form-success p { color: var(--ink-soft); margin-block-start: .5rem; }

/* ---------- Footer ---------- */
.footer { background: #150f0c; color: rgba(255, 248, 241, .7); padding-block: clamp(48px, 6vw, 76px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(26px, 4vw, 50px); }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer-about { font-size: .96rem; line-height: 1.7; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .98rem; margin-bottom: 1rem; font-weight: 800; }
.footer-col a, .footer-col li { display: block; padding-block: .35rem; font-size: .96rem; transition: color .2s; }
.footer-col a:hover { color: var(--brand); }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-contact .row { display: flex; align-items: center; gap: .6rem; padding-block: .4rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand); flex: none; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-block-start: clamp(34px, 4vw, 50px); padding-block-start: 26px; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; color: rgba(255, 248, 241, .5); }
.footer-bottom a:hover { color: var(--brand); }

/* ---------- WhatsApp FAB + mobile sticky CTA ---------- */
.wa-fab {
  position: fixed; inset-block-end: 22px; inset-inline-start: 22px; z-index: var(--z-fab);
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
  transition: transform .25s var(--ease);
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 30px; height: 30px; }

.mcta {
  position: fixed; inset-block-end: 0; inset-inline: 0; z-index: var(--z-fab);
  display: none; gap: .6rem; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 248, 241, .92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mcta .btn { flex: 1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Keyframes ---------- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(174, 245, 214, .7); } 70% { box-shadow: 0 0 0 10px rgba(174, 245, 214, 0); } 100% { box-shadow: 0 0 0 0 rgba(174, 245, 214, 0); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 100%; margin-inline: auto; }
  .hero .lead { max-width: 46ch; margin-inline: auto; }
  .hero-cta, .hero-assure { justify-content: center; }
  .hero-visual { margin-block-start: 1.5rem; }
  .lead-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-3, .bento-feature { grid-column: span 2; grid-row: auto; }
  .b-6 { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .plan.featured .plan-tag { transform: translateX(50%); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .nav-menu-open { display: block; }
  body.menu-open { overflow: hidden; }
  .mobile-menu {
    position: fixed; inset-block-start: var(--nav-h); inset-inline: 0;
    height: calc(100dvh - var(--nav-h)); overflow-y: auto;
    background: var(--cream); z-index: var(--z-nav);
    padding: 24px var(--gutter); display: none; flex-direction: column; gap: .5rem;
  }
  body.menu-open .mobile-menu { display: flex; }
  .mobile-menu a { padding: 1rem .5rem; font-size: 1.2rem; font-weight: 700; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-block-start: 1rem; }
  .mcta { display: flex; }
  .wa-fab { inset-block-end: 84px; }
}
@media (max-width: 560px) {
  .cols-2, .cols-3, .cols-4, .bento { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { flex-direction: column; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

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

/* ---------- Print (legal pages) ---------- */
.legal { max-width: 820px; margin-inline: auto; padding-block: calc(var(--nav-h) + 40px) 60px; }
.legal h1 { margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.4rem; margin-block: 2rem 0.8rem; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.8; margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-inline-start: 1.4rem; }
.legal a { color: var(--brand-ink); text-decoration: underline; }
.legal .updated { color: var(--ink-mute); font-size: .9rem; }
