/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@14.2.35_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/.pnpm/next@14.2.35_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/landing.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

  @font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('/fonts/archivo-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
  }
  @font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('/fonts/archivo-latinext.woff2') format('woff2');
    unicode-range: U+0100-024F, U+1E00-1EFF, U+2020, U+2113;
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('/fonts/fraunces-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122;
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url('/fonts/fraunces-latinext.woff2') format('woff2');
    unicode-range: U+0100-024F, U+1E00-1EFF;
  }

  :root {
    --gold: #D6472E;
    --gold-deep: #AD331E;
    --ink: #201814;
    --graphite: #4A3F3A;
    --paper: #FFFFFF;
    --paper-dim: #FBF5F2;
    --gold-wash: #FCEAE3;
    --hairline: #EEE1DA;
    --hairline-on-ink: rgba(214,71,46,0.3);

    --display: 'Fraunces', ui-serif, Georgia, serif;
    --body: 'Archivo', ui-sans-serif, -apple-system, sans-serif;

    --container: 1180px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --shadow-card: 0 1px 2px rgba(20,18,10,0.04), 0 12px 32px -12px rgba(20,18,10,0.12);
    --shadow-card-hover: 0 1px 2px rgba(20,18,10,0.05), 0 24px 48px -16px rgba(20,18,10,0.18);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  }

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

  img, svg { display: block; max-width: 100%; }
  a { color: inherit; }
  button { font: inherit; }

  h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); margin: 0; text-wrap: balance; font-weight: 500; }

  .container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
  .prose-col { max-width: 62ch; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
  }
  .eyebrow::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold-deep);
  }

  .tabular { font-variant-numeric: tabular-nums; }

  /* ---------- Guilloché seam divider ---------- */
  .seam {
    position: relative;
    height: 64px;
    background-image: repeating-linear-gradient(
      -35deg,
      transparent 0 6px,
      rgba(218,184,51,0.16) 6px 7px
    );
  }
  .seam::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
    transform: translateY(-50%);
  }
  .seam--mark::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 34px; height: 34px;
    transform: translate(-50%, -50%);
    background: var(--paper);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
  }
  .seam--mark .seam-glyph {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 16px; height: 16px; z-index: 1;
  }
  .seam--on-ink { background-image: repeating-linear-gradient(-35deg, transparent 0 6px, rgba(218,184,51,0.22) 6px 7px); }
  .seam--dim { background-color: var(--paper-dim); }
  .seam--wash { background-color: var(--gold-wash); }
  @media (max-width: 640px) {
    .seam { height: 40px; }
  }

  /* ---------- Nav ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .nav.is-scrolled { border-color: var(--hairline); box-shadow: 0 1px 0 rgba(20,18,10,0.02); }
  .nav-row { display: flex; align-items: center; justify-content: space-between; height: 76px; }
  .brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: 0.01em; }
  .seal-mark { width: 30px; height: 30px; flex-shrink: 0; }
  .nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
  .nav-links a { text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--graphite); position: relative; padding: 4px 0; }
  .nav-links a::after { content: ''; position: absolute; inset-inline-start: 0; inset-inline-end: 100%; bottom: 0; height: 1.5px; background: var(--gold); transition: inset-inline-end 0.28s cubic-bezier(.65,0,.35,1); }
  .nav-links a:hover::after { inset-inline-end: 0; }
  .nav-cta-group { display: flex; align-items: center; gap: 18px; }
  .lang-switch { display: flex; border: 1px solid var(--hairline); border-radius: 999px; overflow: hidden; }
  .lang-btn { border: none; background: transparent; padding: 7px 14px; font-size: 12.5px; font-weight: 600; color: var(--graphite); cursor: pointer; transition: background 0.2s ease, color 0.2s ease; font-family: var(--body); }
  .lang-btn.is-active { background: var(--ink); color: var(--paper); }
  .nav-toggle { display: none; }

  /* ---------- Buttons ---------- */
  .btn {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
    text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
    transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease, background 0.22s ease, border-color 0.22s ease;
    white-space: nowrap;
  }
  .btn::before {
    content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.32), transparent);
    transform: skewX(-20deg); transition: left 0.55s cubic-bezier(.22,1,.36,1); pointer-events: none;
  }
  .btn:hover::before { left: 130%; }
  .btn-primary { background: var(--ink); color: var(--paper); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(0,0,0,0.35); }
  .btn-gold { background: var(--gold); color: var(--paper); }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(214,71,46,0.5); }
  .btn-ghost { background: transparent; border-color: var(--graphite); color: var(--graphite); }
  .btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.03); }
  .btn-ghost-on-ink { background: transparent; border-color: var(--hairline-on-ink); color: var(--paper); }
  .btn-ghost-on-ink:hover { border-color: var(--gold); background: rgba(218,184,51,0.08); }
  .btn-sm { padding: 10px 20px; font-size: 13.5px; }
  .btn-block { width: 100%; }
  :focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

  /* ---------- Hero ---------- */
  .hero canvas {
    position: absolute;
    top: 0;
    left: 0;
}
  .hero { position: relative; padding: 76px 0 96px; overflow: hidden; }
  #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; pointer-events: none; }
  .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
  .hero-copy h1 { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.06; letter-spacing: -0.01em; }
  .hero-copy h1 em { font-style: italic; color: var(--gold-deep); }
  .hero-copy .eyebrow { margin-bottom: 22px; }
  .hero-sub { margin: 22px 0 34px; font-size: 18px; line-height: 1.65; color: var(--graphite); max-width: 46ch; }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .hero-proof { display: flex; gap: 28px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--hairline); }
  .hero-proof div { display: flex; flex-direction: column; }
  .hero-proof strong { font-family: var(--display); font-size: 24px; color: var(--ink); }
  .hero-proof span { font-size: 12.5px; color: var(--graphite); opacity: 0.75; }

  /* ---------- Dashboard mockup ---------- */
  .dash {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-hover);
    padding: 22px;
    transform: rotate(0.6deg);
  }
  .dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .dash-site { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
  .dash-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
  .pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: 0.02em; }
  .pill-live { background: var(--gold-wash); color: var(--gold-deep); }
  .pill-live::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-deep); }

  .dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .dash-card { background: var(--paper-dim); border-radius: var(--radius-sm); padding: 15px; border: 1px solid var(--hairline); }
  .dash-card h4 { font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--graphite); opacity: 0.6; margin-bottom: 10px; }

  .queue-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; font-size: 12.5px; border-top: 1px dashed var(--hairline); }
  .queue-row:first-of-type { border-top: none; }
  .queue-day { color: var(--graphite); opacity: 0.55; width: 34px; flex-shrink: 0; }
  .queue-title { flex: 1; padding: 0 8px; color: var(--ink); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .queue-status { font-size: 10.5px; font-weight: 700; color: var(--gold-deep); }

  .gauge-wrap { display: flex; align-items: center; gap: 14px; }
  .gauge { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
    background: conic-gradient(var(--gold) 0deg 313deg, var(--hairline) 313deg 360deg);
    display: flex; align-items: center; justify-content: center; position: relative; }
  .gauge::before { content: ''; position: absolute; inset: 7px; background: var(--paper-dim); border-radius: 50%; }
  .gauge span { position: relative; font-family: var(--display); font-size: 17px; color: var(--ink); }
  .gauge-label strong { display: block; font-size: 20px; font-family: var(--display); color: var(--ink); }
  .gauge-label span { font-size: 11.5px; color: var(--graphite); opacity: 0.65; }

  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
  .cal-cell { aspect-ratio: 1; border-radius: 4px; background: var(--hairline); }
  .cal-cell.is-pub { background: var(--gold); }

  .spark-wrap svg { width: 100%; height: 46px; }
  .stat-big { font-family: var(--display); font-size: 30px; color: var(--ink); }
  .stat-big-label { font-size: 11.5px; color: var(--graphite); opacity: 0.65; margin-top: 2px; }

  .kw-bar-track { height: 6px; border-radius: 999px; background: var(--hairline); overflow: hidden; margin-top: 8px; }
  .kw-bar-fill { height: 100%; width: 78%; border-radius: 999px; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }

  .dash-float {
    position: absolute; bottom: -18px; inset-inline-end: -14px;
    background: var(--ink); color: var(--paper); border-radius: var(--radius-md);
    padding: 13px 18px; box-shadow: var(--shadow-card-hover);
    display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600;
  }
  .dash-float .seal-mark { width: 22px; height: 22px; }

  /* ---------- Logos ---------- */
  .logos-section { padding: 52px 0; }
  .logos-title { text-align: center; font-size: 13.5px; color: var(--graphite); opacity: 0.65; margin-bottom: 30px; letter-spacing: 0.02em; }
  .logos-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
  .logos-row { display: flex; align-items: center; gap: 56px; opacity: 0.55; }
  .logos-track { width: -moz-max-content; width: max-content; animation: marquee 26s linear infinite; }
  .logos-marquee:hover .logos-track { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .logo-chip { font-family: var(--display); font-size: 20px; font-weight: 500; color: var(--graphite); letter-spacing: 0.01em; }

  /* ---------- Section shells ---------- */
  section.band { padding: 96px 0; }
  .band--dim { background: var(--paper-dim); }
  .band--wash { background: var(--gold-wash); }
  .band--ink { background: var(--ink); color: rgba(255,255,255,0.86); }
  .band--ink h2, .band--ink h3 { color: var(--paper); }
  .band-head { max-width: 640px; margin-bottom: 56px; }
  .band-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .band-head h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.14; margin-top: 14px; }
  .band-head p { margin-top: 16px; font-size: 16.5px; color: var(--graphite); opacity: 0.85; }
  .band--ink .band-head p { color: rgba(255,255,255,0.7); }

  /* reveal-on-scroll */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  /* ---------- Problem cards ---------- */
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 28px; transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease, border-color 0.3s ease; }
  .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: rgba(218,184,51,0.4); }
  .card-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-wash); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
  .card-icon svg { width: 21px; height: 21px; }
  .card h3 { font-size: 17px; font-weight: 600; font-family: var(--body); margin-bottom: 8px; color: var(--ink); }
  .card p { font-size: 14px; color: var(--graphite); opacity: 0.8; margin: 0; }

  /* ---------- Solution timeline ---------- */
  .acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
  .acts::before { content: ''; position: absolute; top: 27px; left: 6%; right: 6%; height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0 7px, transparent 7px 13px); }
  .act { position: relative; padding: 0 28px; }
  .act:first-child { padding-inline-start: 0; }
  .act:last-child { padding-inline-end: 0; }
  .act-mark { width: 54px; height: 54px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; position: relative; z-index: 1; }
  .act-mark span { font-family: var(--display); font-size: 19px; color: var(--gold-deep); }
  .act-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; display: block; }
  .act h3 { font-family: var(--display); font-size: 22px; line-height: 1.25; margin-bottom: 14px; }
  .act p.act-desc { font-size: 14.5px; color: var(--graphite); opacity: 0.85; margin-bottom: 20px; }
  .act-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .act-points li { font-size: 13px; color: var(--graphite); padding-inline-start: 18px; position: relative; }
  .act-points li::before { content: '—'; position: absolute; inset-inline-start: 0; color: var(--gold-deep); }

  /* ---------- Features ---------- */
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .feature-card { padding: 22px; border-radius: var(--radius-sm); background: var(--paper-dim); border: 1px solid transparent; transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
  .feature-card:hover { background: var(--paper); border-color: var(--hairline); transform: translateY(-3px); box-shadow: var(--shadow-card); }
  .feature-card svg { width: 22px; height: 22px; margin-bottom: 14px; }
  .feature-card h4 { font-family: var(--body); font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
  .feature-card p { font-size: 12.5px; color: var(--graphite); opacity: 0.75; margin: 0; line-height: 1.5; }

  /* ---------- Comparison ---------- */
  .compare { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hairline); }
  .compare-row { display: grid; grid-template-columns: 1fr 1fr; }
  .compare-row + .compare-row { border-top: 1px solid var(--hairline); }
  .compare-cell { padding: 24px 32px; display: flex; align-items: center; gap: 14px; font-size: 15.5px; }
  .compare-cell.them { background: var(--paper-dim); color: var(--graphite); opacity: 0.75; }
  .compare-cell.us { background: var(--paper); color: var(--ink); font-weight: 600; }
  .compare-glyph { width: 20px; height: 20px; flex-shrink: 0; }
  .compare-head { display: grid; grid-template-columns: 1fr 1fr; }
  .compare-head span { padding: 16px 32px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .compare-head .them { background: var(--graphite); color: rgba(255,255,255,0.6); }
  .compare-head .us { background: var(--ink); color: var(--gold); }

  /* ---------- Results ---------- */
  .results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
  .result-num { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); color: var(--gold); line-height: 1; }
  .result-label { margin-top: 12px; font-size: 13.5px; color: rgba(255,255,255,0.65); }

  /* ---------- Pricing ---------- */
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
  .price-card { position: relative; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease; }
  .price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
  .price-card.is-popular { border: 1.5px solid var(--gold); box-shadow: 0 20px 44px -18px rgba(218,184,51,0.45); transform: scale(1.035); }
  .price-card.is-popular:hover { transform: scale(1.035) translateY(-6px); }
  .price-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--paper); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
  .price-tier { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
  .price-amount { font-family: var(--display); font-size: 38px; color: var(--ink); margin: 12px 0 2px; }
  .price-amount span { font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--graphite); opacity: 0.7; }
  .price-cadence { font-size: 12.5px; color: var(--graphite); opacity: 0.65; margin-bottom: 20px; }
  .price-list { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 11px; }
  .price-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--graphite); }
  .price-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--gold-deep); }
  .authority-badge { display: inline-flex; align-items: center; gap: 6px; position: absolute; top: 26px; inset-inline-end: 26px; }
  .authority-badge svg { width: 26px; height: 26px; }

  /* ---------- Services ---------- */
  .grid-3-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .service-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 30px; }
  .service-card .eyebrow { margin-bottom: 14px; }
  .service-card h3 { font-size: 20px; margin-bottom: 14px; }
  .service-card ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .service-card li { font-size: 13.5px; color: var(--graphite); opacity: 0.85; padding-inline-start: 16px; position: relative; }
  .service-card li::before { content: '—'; position: absolute; inset-inline-start: 0; color: var(--gold-deep); }
  .service-price { font-family: var(--display); font-size: 20px; color: var(--ink); margin-bottom: 16px; }
  .service-price span { font-family: var(--body); font-size: 12.5px; color: var(--graphite); opacity: 0.7; font-weight: 500; }

  /* ---------- Redesign split ---------- */
  .redesign-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .site-mock { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--hairline); }
  .site-mock-bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; }
  .site-mock-bar span { width: 8px; height: 8px; border-radius: 50%; }
  .site-mock.old { background: #EDEAE0; filter: saturate(0.65); }
  .site-mock.old .site-mock-bar { background: #DEDACB; }
  .site-mock.old .site-mock-bar span { background: #B9B49F; }
  .site-mock.old .site-body { padding: 22px; }
  .site-mock.old .line { height: 9px; background: #C9C4B2; border-radius: 2px; margin-bottom: 9px; }
  .site-mock.old .line.short { width: 55%; }
  .site-mock.old .blocks { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 14px; }
  .site-mock.old .blocks div { height: 46px; background: #DEDACB; border-radius: 3px; }
  .site-mock.new { background: var(--paper); box-shadow: var(--shadow-card-hover); }
  .site-mock.new .site-mock-bar { background: var(--paper-dim); border-bottom: 1px solid var(--hairline); }
  .site-mock.new .site-mock-bar span { background: var(--hairline); }
  .site-mock.new .site-mock-bar span:last-child { background: var(--gold); }
  .site-mock.new .site-body { padding: 30px 26px; }
  .site-mock.new .new-eyebrow { width: 70px; height: 6px; border-radius: 3px; background: var(--gold); margin-bottom: 14px; }
  .site-mock.new .new-title { height: 16px; width: 80%; background: var(--ink); border-radius: 3px; margin-bottom: 10px; }
  .site-mock.new .new-sub { height: 9px; width: 60%; background: var(--hairline); border-radius: 3px; margin-bottom: 20px; }
  .site-mock.new .new-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
  .site-mock.new .new-cards div { height: 52px; background: var(--paper-dim); border: 1px solid var(--hairline); border-radius: 8px; }
  .mock-tag { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
  .mock-tag.old-tag { color: #9A9483; }
  .mock-tag.new-tag { color: var(--gold-deep); }

  /* ---------- Testimonials ---------- */
  .grid-3-test { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .test-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; }
  .stars { display: flex; gap: 3px; margin-bottom: 18px; }
  .stars svg { width: 15px; height: 15px; color: var(--gold); }
  .test-quote { font-family: var(--display); font-size: 17px; line-height: 1.5; color: var(--ink); flex: 1; margin-bottom: 22px; font-weight: 400; }
  .test-person { display: flex; align-items: center; gap: 12px; }
  .test-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-wash); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 15px; font-weight: 600; flex-shrink: 0; }
  .test-name { font-size: 14px; font-weight: 600; color: var(--ink); }
  .test-role { font-size: 12.5px; color: var(--graphite); opacity: 0.65; }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 780px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--hairline); }
  .faq-item summary { list-style: none; cursor: pointer; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--body); font-size: 16px; font-weight: 600; color: var(--ink); }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--gold-deep); }
  .faq-item[open] .faq-chevron { transform: rotate(180deg); }
  .faq-answer { padding: 0 4px 24px; font-size: 14.5px; color: var(--graphite); opacity: 0.85; max-width: 65ch; }

  /* ---------- Final CTA ---------- */
  .final-cta { padding: 108px 0; }
  .final-cta h2 { font-size: clamp(28px, 3.6vw, 42px); color: var(--paper); }
  .final-cta p.final-lede { margin: 18px 0 32px; font-size: 16.5px; color: rgba(255,255,255,0.7); max-width: 46ch; }
  .lead-shell { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
  .lead-copy .hero-proof { border-top-color: var(--hairline-on-ink); }
  .lead-copy .hero-proof strong { color: var(--paper); }
  .lead-copy .hero-proof span { color: rgba(255,255,255,0.6); }

  .lead-form-card { background: var(--paper); border-radius: var(--radius-lg); padding: 34px; box-shadow: 0 32px 64px -20px rgba(0,0,0,0.55); }
  .lead-form-card h3 { font-size: 19px; margin-bottom: 6px; }
  .lead-form-card > p { font-size: 13.5px; color: var(--graphite); opacity: 0.75; margin-bottom: 24px; }
  .field { margin-bottom: 16px; }
  .field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--graphite); margin-bottom: 6px; }
  .field input, .field select { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--hairline); background: var(--paper-dim); font: inherit; font-size: 14px; color: var(--ink); transition: border-color 0.2s ease, background 0.2s ease; }
  .field select { -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='none' stroke='%234A3F3A' stroke-width='1.8'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-inline-end: 38px; }
  [dir='rtl'] .field select { background-position: left 14px center; }
  .field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--paper); }
  .lead-success { display: none; text-align: center; padding: 20px 6px; }
  .lead-success.is-shown { display: block; }
  .lead-success svg { width: 40px; height: 40px; color: var(--gold-deep); margin: 0 auto 14px; }
  .lead-success h4 { font-size: 17px; margin-bottom: 6px; }
  .lead-success p { font-size: 13.5px; color: var(--graphite); opacity: 0.75; margin: 0; }
  .lead-form.is-hidden { display: none; }

  /* ---------- Footer ---------- */
  .footer { background: var(--ink); padding: 64px 0 32px; color: rgba(255,255,255,0.6); }
  .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--hairline-on-ink); }
  .footer-brand .brand { color: var(--paper); margin-bottom: 14px; }
  .footer-brand p { font-size: 13.5px; max-width: 32ch; color: rgba(255,255,255,0.5); }
  .footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
  .footer-col a { text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,0.72); transition: color 0.2s ease; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-size: 12.5px; }
  .footer-social { display: flex; gap: 16px; }
  .footer-social svg { width: 17px; height: 17px; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
  .footer-social a:hover svg { color: var(--gold); }

  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .dash { transform: none; margin-top: 40px; }
    .grid-3, .grid-4, .grid-3-services, .grid-3-test, .results-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .acts { grid-template-columns: 1fr; row-gap: 40px; }
    .acts::before { display: none; }
    .act { padding-inline: 0; }
    .redesign-grid { grid-template-columns: 1fr; gap: 32px; }
    .lead-shell { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .price-card.is-popular { transform: none; }
    .price-card.is-popular:hover { transform: translateY(-6px); }
  }
  @media (max-width: 640px) {
    .nav-links, .nav-cta-group .btn-ghost { display: none; }
    .grid-3, .grid-4, .grid-3-services, .grid-3-test, .results-grid, .pricing-grid { grid-template-columns: 1fr; }
    section.band { padding: 64px 0; }
    .hero { padding: 44px 0 64px; }
    .hero-proof { flex-wrap: wrap; row-gap: 18px; }
    .compare-cell { padding: 18px 16px; font-size: 13.5px; }
    .compare-head span { padding: 12px 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  }

