  /* Colors live per-vertical in that folder's theme.css. Structure stays here. */
  :root {
    --radius: 22px;
    --maxw: 1180px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, .serif { font-family: 'Fraunces', Georgia, serif; }

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

  .eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--caramel-deep);
  }
  .eyebrow::before {
    content: ""; width: 22px; height: 1.5px; background: var(--caramel); opacity: 0.7;
  }
  .eyebrow.center::before { display: none; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px;
    padding: 16px 28px; border-radius: 100px; cursor: pointer;
    text-decoration: none; border: none; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
    white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(135deg, #C97A45 0%, #A8542A 100%);
    color: #FFF6EC;
    box-shadow: 0 14px 28px -12px rgba(168, 84, 42, 0.7), inset 0 1px 0 rgba(255,255,255,0.18);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(168, 84, 42, 0.78), inset 0 1px 0 rgba(255,255,255,0.22); }
  .btn-ghost {
    background: transparent; color: var(--espresso);
    border: 1.5px solid var(--line);
  }
  .btn-ghost:hover { border-color: var(--caramel); color: var(--caramel-deep); transform: translateY(-2px); }
  .btn-arrow svg { transition: transform .25s; }
  .btn:hover .btn-arrow svg { transform: translateX(3px); }

  /* ---------- Nav ---------- */
  header.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(26, 17, 11, 0.72);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 243, 230, 0.08);
    transition: border-color .3s, background .3s;
  }
  header.nav.scrolled { border-color: rgba(255, 243, 230, 0.12); background: rgba(26, 17, 11, 0.92); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
  .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #FBF1E4; }
  .brand-mark {
    width: 34px; height: 34px; border-radius: 10px;
    background: linear-gradient(140deg, #C97A45, #8E4622);
    display: grid; place-items: center; color: #FFF3E6;
    box-shadow: 0 6px 14px -6px rgba(142, 70, 34, 0.7);
  }
  .brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; letter-spacing: -0.01em; }
  .nav-links { display: flex; align-items: center; gap: 34px; }
  .nav-links a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--espresso); }
  .nav-cta { display: flex; align-items: center; gap: 18px; }
  .nav-cta .btn { padding: 12px 22px; font-size: 15px; }

  /* ---------- Hero ---------- */
  .hero { position: relative; padding: 70px 0 64px; overflow: hidden; }
  .hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 40px; align-items: center; }
  .hero-copy { max-width: 600px; }
  .hero h1 {
    font-size: clamp(40px, 5.4vw, 67px); line-height: 1.02; font-weight: 600;
    letter-spacing: -0.02em; color: var(--espresso); margin: 22px 0 24px;
  }
  .hero h1 em { font-style: italic; color: var(--caramel-deep); font-weight: 500; }
  .hero p.sub { font-size: 19px; color: var(--muted); max-width: 510px; margin-bottom: 34px; }
  .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .hero-reassure { margin-top: 22px; display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--muted-soft); }
  .hero-reassure svg { color: var(--caramel); flex-shrink: 0; }

  .hero-bg-blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: 0; pointer-events: none;
  }
  .blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, #F3CE9E, transparent 70%); top: -120px; right: -80px; }
  .blob-2 { width: 420px; height: 420px; background: radial-gradient(circle, #E6B98C, transparent 70%); bottom: -180px; left: -140px; opacity: 0.35; }

  /* ---------- Phone mockup ---------- */
  .phone-stage { position: relative; display: flex; justify-content: center; align-items: center; z-index: 2; }

  /* Rotating hero phone images (full-frame PNG mockups) */
  .hero-shots { position: relative; width: 300px; max-width: 82vw; aspect-ratio: 9 / 19; filter: drop-shadow(38px 48px 80px rgba(64, 39, 22, 0.4)); }
  .hero-shot {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
  }
  .hero-shot.active { opacity: 1; }

  .phone {
    position: relative; width: 290px; height: 596px; border-radius: 46px;
    background: linear-gradient(160deg, #2A1C13, #1A110B);
    padding: 11px; box-shadow: var(--shadow-warm);
  }
  .phone::after {
    content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 116px; height: 26px; background: #140C07; border-radius: 0 0 16px 16px; z-index: 6;
  }
  .phone-screen {
    width: 100%; height: 100%; border-radius: 36px; overflow: hidden; position: relative;
    background: var(--app-bg, #FFFCF7); display: flex; flex-direction: column;
  }

  /* In-app sample (the "branded" app) */
  .app {
    --brand: #6B4226; --brand-soft: #8A5A38; --brand-bg: #FBF4EA;
    flex: 1; display: flex; flex-direction: column; background: var(--brand-bg); position: relative;
  }
  .app-status { height: 44px; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 24px 6px; font-size: 12px; font-weight: 600; color: var(--brand); }
  .app-status .dots { display: flex; gap: 4px; align-items: center; }
  .app-header { padding: 6px 22px 14px; }
  .app-shopline { display: flex; align-items: center; gap: 9px; }
  .app-logo { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(140deg, var(--brand-soft), var(--brand)); display: grid; place-items: center; color: #fff; font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; }
  .app-shopname { font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px; color: var(--brand); }
  .app-greet { margin-top: 16px; font-size: 13px; color: #9c8264; }
  .app-greet b { display:block; font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: #4A3322; margin-top: 2px; }

  .app-card {
    margin: 4px 18px 0; background: #fff; border-radius: 18px; padding: 15px;
    box-shadow: 0 12px 24px -16px rgba(74,51,34,0.4);
  }
  .app-card.order { background: linear-gradient(135deg, var(--brand-soft), var(--brand)); color: #fff; }
  .order-top { display: flex; justify-content: space-between; align-items: center; }
  .order-top span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; font-weight: 600; }
  .order-cta { background: rgba(255,255,255,0.18); border-radius: 8px; padding: 4px 9px; font-size: 11px; font-weight: 600; }
  .order-h { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; margin: 9px 0 3px; }
  .order-sub { font-size: 12px; opacity: 0.8; }

  .loyalty { margin: 12px 18px 0; background: #fff; border-radius: 18px; padding: 14px 15px; box-shadow: 0 12px 24px -16px rgba(74,51,34,0.4); }
  .loyalty-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; }
  .loyalty-top b { font-size: 13px; color: #4A3322; font-weight: 600; }
  .loyalty-top em { font-style: normal; font-size: 11px; color: #9c8264; }
  .stamps { display: flex; gap: 7px; }
  .stamp { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; }
  .stamp.full { background: linear-gradient(140deg, var(--brand-soft), var(--brand)); color: #fff; }
  .stamp.empty { background: #F1E7D8; border: 1.5px dashed #D8C6AC; }

  .app-menu { margin: 14px 18px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
  .menu-item { background: #fff; border-radius: 15px; padding: 11px; box-shadow: 0 10px 20px -16px rgba(74,51,34,0.4); }
  .menu-thumb { height: 52px; border-radius: 10px; margin-bottom: 8px; }
  .menu-name { font-size: 12px; font-weight: 600; color: #4A3322; }
  .menu-price { font-size: 11px; color: var(--brand-soft); font-weight: 600; }

  .app-tabbar { margin-top: auto; height: 62px; background: #fff; border-top: 1px solid #F1E7D8; display: flex; align-items: flex-start; justify-content: space-around; padding-top: 11px; }
  .tab { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #C3B09A; }
  .tab.active { color: var(--brand); }
  .tab span { font-size: 9px; font-weight: 600; }

  /* push notification floating chip */
  .push-chip {
    position: absolute; z-index: 8; left: -46px; top: 92px; width: 244px;
    background: rgba(255, 252, 247, 0.92); backdrop-filter: blur(12px);
    border-radius: 18px; padding: 13px 15px; box-shadow: 0 20px 40px -18px rgba(64,39,22,0.55);
    border: 1px solid rgba(255,255,255,0.7); display: flex; gap: 11px; align-items: flex-start;
    animation: floaty 5s ease-in-out infinite;
  }
  .push-chip .pic { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(140deg, #C97A45, #8E4622); flex-shrink: 0; display: grid; place-items: center; color: #fff; }
  .push-chip b { font-size: 12.5px; color: var(--espresso); display: block; }
  .push-chip p { font-size: 11.5px; color: var(--muted); line-height: 1.4; }
  .push-chip .time { position: absolute; top: 12px; right: 14px; font-size: 10px; color: var(--muted-soft); }
  .badge-float {
    position: absolute; z-index: 8; right: -34px; bottom: 120px;
    background: var(--paper); border-radius: 16px; padding: 12px 16px;
    box-shadow: 0 20px 40px -18px rgba(64,39,22,0.5); border: 1px solid var(--line-soft);
    animation: floaty 5.6s ease-in-out infinite 0.6s; text-align: center;
  }
  .badge-float .n { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; color: var(--caramel-deep); line-height: 1; }
  .badge-float .l { font-size: 10.5px; color: var(--muted); margin-top: 3px; }

  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

  /* ---------- Logo / trust strip ---------- */
  .trust { padding: 30px 0 6px; }
  .trust-inner { text-align: center; }
  .trust p { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-soft); font-weight: 600; margin-bottom: 22px; }
  .trust-logos { display: flex; justify-content: center; align-items: center; gap: 46px; flex-wrap: wrap; opacity: 0.72; }
  .trust-logo { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; color: var(--espresso-soft); display: flex; align-items: center; gap: 8px; }
  .trust-logo svg { color: var(--caramel); }

  /* ---------- Section base ---------- */
  section { position: relative; }
  .section-pad { padding: 96px 0; }
  .section-head { max-width: 680px; }
  .section-head.center { margin: 0 auto; text-align: center; }
  .section-head h2 { font-size: clamp(31px, 4vw, 47px); line-height: 1.08; font-weight: 600; letter-spacing: -0.02em; color: var(--espresso); margin: 18px 0 18px; }
  .section-head h2 em { font-style: italic; color: var(--caramel-deep); font-weight: 500; }
  .section-head p { font-size: 18px; color: var(--muted); }

  /* ---------- Old way vs Davello ---------- */
  .compare { background: var(--espresso); color: #F3E6D6; overflow: hidden; position: relative; width: 100vw; margin-left: calc(-50vw + 50%); }
  .compare-bg { position: absolute; inset: 0; opacity: 0.5; background: radial-gradient(700px 360px at 85% 10%, rgba(193,110,59,0.35), transparent 70%); }
  .compare-inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 64px 56px 120px; }
  .compare-head { max-width: 620px; margin-bottom: 44px; }
  .compare-head .eyebrow { color: var(--gold); }
  .compare-head .eyebrow::before { background: var(--gold); }
  .compare-head h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; font-weight: 600; color: #FBF1E4; letter-spacing: -0.02em; margin-top: 16px; }
  .compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
  .compare-col { border-radius: 22px; padding: 32px; }
  .compare-col.old { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
  .compare-col.new { background: linear-gradient(160deg, rgba(193,110,59,0.22), rgba(193,110,59,0.06)); border: 1px solid rgba(224,164,88,0.32); }
  .compare-col h3 { font-family: 'Inter', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 22px; }
  .compare-col.old h3 { color: #B79B82; }
  .compare-col.new h3 { color: var(--gold); }
  .clist { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .clist li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; }
  .clist .ico { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
  .old .ico { background: rgba(255,255,255,0.06); color: #A98C74; }
  .new .ico { background: rgba(224,164,88,0.22); color: var(--gold); }
  .compare-col.old li { color: #C7B5A4; }
  .compare-col.new li { color: #F3E2CF; }

  /* ---------- Outcomes / benefit cards ---------- */
  #outcomes { background: var(--cream); border-radius: 44px 44px 0 0; margin-top: -44px; position: relative; z-index: 1; }
  .grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
  .card {
    background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
    padding: 32px 28px; box-shadow: var(--shadow-soft); transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s cubic-bezier(.16,1,.3,1);
  }
  .card:hover { transform: translateY(-12px); box-shadow: 0 40px 70px -34px rgba(64,39,22,0.45); }
  .card-ico {
    width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 22px;
    background: linear-gradient(140deg, #FBE4C9, #F3C99B); color: var(--caramel-deep);
  }
  .card h3 { font-size: 22px; font-weight: 600; color: var(--espresso); letter-spacing: -0.01em; margin-bottom: 11px; }
  .card p { font-size: 15.5px; color: var(--muted); }
  .card .stat { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); font-size: 14px; color: var(--caramel-deep); font-weight: 600; display: flex; align-items: center; gap: 8px; }

  /* ---------- Your brand showcase ---------- */
  .brand-showcase { background: var(--cream-deep); border-radius: 36px; overflow: hidden; }
  .brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
  .brand-grid .copy { padding: 70px 0 70px 60px; }
  .brand-grid h2 { font-size: clamp(30px, 3.8vw, 44px); line-height: 1.08; font-weight: 600; color: var(--espresso); letter-spacing: -0.02em; margin: 16px 0 20px; }
  .brand-grid h2 em { font-style: italic; color: var(--caramel-deep); font-weight: 500; }
  .brand-grid p { font-size: 17.5px; color: var(--muted); margin-bottom: 28px; max-width: 460px; }
  .brand-points { list-style: none; display: flex; flex-direction: column; gap: 15px; }
  .brand-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); font-weight: 500; }
  .brand-points .chk { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(140deg, #C97A45, #A8542A); color: #fff; display: grid; place-items: center; margin-top: 1px; }

  /* phones row, three brand variants */
  .phone-trio { display: flex; justify-content: center; align-items: center; padding: 40px 30px; position: relative; }
  .brand-phones { width: 100%; max-width: 520px; height: auto; display: block; filter: drop-shadow(30px 40px 70px rgba(64,39,22,0.28)); }
  .mini-phone {
    width: 168px; height: 348px; border-radius: 30px; background: linear-gradient(160deg, #2A1C13, #1A110B);
    padding: 7px; box-shadow: var(--shadow-soft); flex-shrink: 0;
  }
  .mini-phone .scr { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
  .mp-top { padding: 26px 16px 0; flex: 1; }
  .mp-logo { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; margin-bottom: 12px; }
  .mp-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; margin-bottom: 4px; }
  .mp-tag { font-size: 10px; opacity: 0.6; }
  .mp-pill { margin-top: 16px; height: 60px; border-radius: 14px; display: flex; align-items: center; padding: 0 14px; font-size: 11px; font-weight: 600; color: #fff; }
  .mp-row { margin-top: 11px; display: flex; gap: 8px; }
  .mp-chip { flex: 1; height: 44px; border-radius: 11px; }
  .mp-foot { height: 46px; border-top: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: space-around; }
  .mp-dot { width: 7px; height: 7px; border-radius: 50%; }
  .mini-phone.center { z-index: 3; transform: translateY(-26px) scale(1.06); }
  .mini-phone.left { z-index: 2; transform: translateX(28px) rotate(-5deg); }
  .mini-phone.right { z-index: 2; transform: translateX(-28px) rotate(5deg); }

  /* ---------- How it works ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; counter-reset: step; }
  .step { position: relative; padding: 34px 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line-soft); }
  .step-num { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: #fff; width: 42px; height: 42px; border-radius: 13px; background: linear-gradient(140deg, #C97A45, #A8542A); display: grid; place-items: center; margin-bottom: 22px; box-shadow: 0 10px 20px -10px rgba(168,84,42,0.7); }
  .step h3 { font-size: 21px; font-weight: 600; color: var(--espresso); margin-bottom: 10px; letter-spacing: -0.01em; }
  .step p { font-size: 15.5px; color: var(--muted); }
  .step .when { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--caramel-deep); background: #FBEAD8; padding: 5px 12px; border-radius: 100px; }
  .steps-line { position: absolute; top: 55px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); z-index: -1; }

  /* ---------- Stat band ---------- */
  .statband { background: var(--espresso); border-radius: 36px; padding: 60px 56px; position: relative; overflow: hidden; }
  .statband-bg { position: absolute; inset: 0; background: radial-gradient(600px 300px at 15% 90%, rgba(224,164,88,0.18), transparent 70%); }
  .statband-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
  .statband-grid .num { font-family: 'Fraunces', serif; font-size: clamp(38px, 4.6vw, 56px); font-weight: 600; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
  .statband-grid .lbl { font-size: 14.5px; color: #C7B5A4; margin-top: 12px; }
  .statband .divider { width: 1px; background: rgba(255,255,255,0.1); }

  /* ---------- Testimonial ---------- */
  .quote-wrap { position: relative; overflow: hidden; width: 100vw; margin-left: calc(-50vw + 50%); text-align: center; background: var(--espresso); padding: 100px 28px; }
  .quote-wrap::before { content: ""; position: absolute; inset: 0; background: radial-gradient(620px 320px at 85% 8%, rgba(224,164,88,0.20), transparent 70%), radial-gradient(560px 300px at 10% 100%, rgba(193,110,59,0.18), transparent 72%); pointer-events: none; }
  .quote-wrap > * { position: relative; max-width: 880px; margin-left: auto; margin-right: auto; }
  .quote-mark { font-family: 'Fraunces', serif; font-size: 90px; line-height: 0.5; color: var(--gold); opacity: 0.5; height: 50px; }
  .quote-wrap blockquote { font-family: 'Fraunces', serif; font-size: clamp(24px, 3vw, 35px); line-height: 1.32; font-weight: 500; color: #FBF1E4; letter-spacing: -0.01em; margin-bottom: 32px; }
  .quote-wrap blockquote em { font-style: italic; color: var(--gold); }
  .quote-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
  .quote-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(140deg, #D89A63, #A8542A); display: grid; place-items: center; color: #fff; font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; }
  .quote-author .who b { display: block; font-size: 16px; color: #FBF1E4; text-align: left; }
  .quote-author .who span { font-size: 14px; color: #C7B5A4; }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 760px; margin: 48px auto 0; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--espresso); }
  .faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--caramel-deep); transition: transform .3s, background .3s; }
  .faq-item.open .pm { transform: rotate(45deg); background: #FBEAD8; border-color: transparent; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-a p { padding: 0 0 26px; font-size: 16px; color: var(--muted); max-width: 660px; }

  /* ---------- Final CTA ---------- */
  .final {
    position: relative; border-radius: 40px; overflow: hidden;
    background: linear-gradient(150deg, #A8542A 0%, #7A3A1C 55%, #4A220F 100%);
    color: #FBF1E4; text-align: center; padding: 84px 40px;
  }
  .final-grain { position: absolute; inset: 0; opacity: 0.4; background: radial-gradient(500px 300px at 50% 0%, rgba(224,164,88,0.4), transparent 70%); }
  .final-inner { position: relative; max-width: 640px; margin: 0 auto; }
  .final .eyebrow { color: var(--gold); }
  .final .eyebrow::before { background: var(--gold); }
  .final h2 { font-size: clamp(33px, 4.6vw, 54px); line-height: 1.05; font-weight: 600; letter-spacing: -0.02em; margin: 18px 0 20px; color: #FFF6EC; }
  .final h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
  .final p { font-size: 18.5px; color: #EAD3BD; margin-bottom: 36px; }
  .final .btn-primary { background: #FBF1E4; color: #8E4622; box-shadow: 0 16px 32px -12px rgba(0,0,0,0.4); }
  .final .btn-primary:hover { background: #fff; }
  .final-note { margin-top: 22px; font-size: 14.5px; color: #D6B89E; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
  .final-note span { display: flex; align-items: center; gap: 7px; }

  /* ---------- Footer ---------- */
  footer { padding: 24px 0; background: var(--cream-deep); border-top: 1px solid var(--line); }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
  .footer-brand { max-width: 320px; }
  .footer-brand .brand { margin-bottom: 14px; }
  .footer-brand p { font-size: 14.5px; color: var(--muted); }
  .footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
  .footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-soft); margin-bottom: 16px; font-weight: 600; }
  .footer-col a { display: block; text-decoration: none; color: var(--ink); font-size: 15px; margin-bottom: 11px; transition: color .2s; }
  .footer-col a:hover { color: var(--caramel-deep); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--muted-soft); flex-wrap: wrap; gap: 12px; }
  .footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
  .footer-bottom a:hover { color: var(--caramel-deep); }

  /* ---------- Reveal animation ---------- */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

  /* ---------- Demo request modal ---------- */
  .modal-backdrop {
    position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
    padding: 24px; background: rgba(30, 18, 10, 0.55); backdrop-filter: blur(6px);
    opacity: 0; transition: opacity .22s ease;
  }
  /* Must beat `.modal-backdrop { display:flex }`, else the invisible overlay eats all clicks. */
  .modal-backdrop[hidden] { display: none; }
  .modal-backdrop.open { opacity: 1; }
  .modal-card {
    position: relative; width: 100%; max-width: 460px; background: var(--cream); border: 1px solid var(--line);
    border-radius: 26px; padding: 40px; box-shadow: 0 40px 90px -30px rgba(40, 24, 14, 0.6);
    transform: translateY(14px) scale(0.98); transition: transform .28s cubic-bezier(.16,1,.3,1);
    max-height: calc(100vh - 48px); overflow-y: auto;
  }
  .modal-backdrop.open .modal-card { transform: none; }
  .modal-close {
    position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid var(--line); background: var(--paper); color: var(--muted); cursor: pointer;
    display: grid; place-items: center; transition: color .2s, border-color .2s;
  }
  .modal-close:hover { color: var(--espresso); border-color: var(--caramel); }
  .modal-pane h3 { font-family: 'Fraunces', serif; font-size: 27px; font-weight: 600; color: var(--espresso); letter-spacing: -0.01em; margin: 14px 0 10px; line-height: 1.12; }
  .modal-sub { font-size: 15px; color: var(--muted); margin-bottom: 22px; }
  .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .field label { font-size: 13px; font-weight: 600; color: var(--espresso); }
  .field input {
    font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink); background: var(--paper);
    border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; transition: border-color .2s, box-shadow .2s;
  }
  .field input:focus { outline: none; border-color: var(--caramel); box-shadow: 0 0 0 3px rgba(193,110,59,0.14); }
  .modal-error { font-size: 13.5px; font-weight: 500; color: #b42318; margin: -2px 0 12px; }
  .modal-submit { width: 100%; justify-content: center; margin-top: 6px; }
  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .modal-success { text-align: center; padding: 8px 0; }
  .success-badge {
    width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center;
    color: #fff; background: linear-gradient(140deg, #C97A45, #A8542A); box-shadow: 0 14px 28px -12px rgba(168,84,42,0.7);
  }
  .modal-success h3 { font-family: 'Fraunces', serif; font-size: 27px; font-weight: 600; color: var(--espresso); margin-bottom: 10px; }

  /* ---------- Responsive ---------- */
  @media (max-width: 940px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-copy { max-width: none; text-align: center; margin: 0 auto; }
    .hero p.sub { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-reassure { justify-content: center; }
    /* Centered phone: soft ground shadow + room so overflow:hidden doesn't clip it into a hard line */
    .hero { padding-bottom: 110px; }
    .hero-shots { filter: drop-shadow(0 30px 50px rgba(64, 39, 22, 0.28)); }
    .compare-cols { grid-template-columns: 1fr; }
    .grid-cards { grid-template-columns: 1fr; }
    .brand-grid { grid-template-columns: 1fr; }
    .brand-grid .copy { padding: 56px 40px 0; }
    .phone-trio { padding: 30px 0 50px; }
    .steps { grid-template-columns: 1fr; }
    .steps-line { display: none; }
    .statband-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
    .statband .divider { display: none; }
  }
  @media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    /* extra bottom padding so the -44px #outcomes overlap doesn't eat the gap under the last card */
    .compare-inner { padding: 44px 26px 88px; }
    .brand-grid .copy { padding: 44px 26px 0; }
    .statband { padding: 44px 26px; }
    .statband-grid { grid-template-columns: 1fr 1fr; }
    .final { padding: 60px 26px; }
    .nav-cta .btn { padding: 11px 18px; }
    .brand-name { font-size: 20px; }
    .footer-top { flex-direction: column; }
    .modal-card { padding: 32px 22px; }
    .modal-pane h3, .modal-success h3 { font-size: 24px; }
  }
