  :root {
    /* CORE PALETTE */
    --bg: #F5EFE6;
    --surface: #FBF7EF;
    --surface-2: #EFE8DB;
    --ink: #0F0F0F;
    --ink-soft: #3D3833;
    --ink-muted: #8B8278;
    --line: #E5DDD0;
    --line-soft: #EFE8DB;

    /* ACCENTS */
    --accent: #C73E1D;
    --accent-2: #E54E2D;
    --accent-soft: rgba(199, 62, 29, 0.08);
    --accent-glow: rgba(199, 62, 29, 0.18);
    --gold: #D9A852;
    --gold-soft: rgba(217, 168, 82, 0.12);
    --teal: #1F3A3D;
    --green: #25D366;

    /* DARK */
    --dark-bg: #0F0F0F;
    --dark-surface: #1A1A1A;
    --dark-surface-2: #242424;
    --dark-line: rgba(245, 239, 230, 0.1);
    --dark-line-strong: rgba(245, 239, 230, 0.18);
    --dark-text: #F5EFE6;
    --dark-text-soft: rgba(245, 239, 230, 0.7);

    /* TYPOGRAPHY */
    --display: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --serif: 'Satoshi', sans-serif; /* italic accent uses Satoshi italic */
    --body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'Geist Mono', 'JetBrains Mono', monospace;

    /* MOTION */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

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

  body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
  }
  @media (max-width: 640px) {
    body { font-size: 15px; line-height: 1.6; }
  }

  /* PAPER GRAIN */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.3 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
    mix-blend-mode: multiply;
  }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 640px) {
    .container { padding: 0 20px; }
  }

  /* === SELECTION === */
  ::selection { background: var(--accent); color: white; }

  /* === NAV === */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 239, 230, 0.78);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--line-soft);
    padding: 16px 0;
    transition: padding 0.3s var(--ease);
  }
  nav.scrolled { padding: 10px 0; box-shadow: 0 1px 0 var(--line-soft), 0 8px 32px -16px rgba(0,0,0,0.05); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .logo {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .logo-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-bottom: -2px;
  }
  /* Image logo (when uploaded via Customizer › Site Identity) */
  .site-logo {
    height: 36px;
    width: auto;
    display: block;
  }
  .nav-inner .site-logo { height: 44px; }
  .footer-brand .site-logo { height: 32px; }
  .mobile-menu-head .site-logo { height: 28px; }
  @media (max-width: 768px) {
    .nav-inner .site-logo { height: 36px; }
  }
  /* Tighten nav padding when image logo is present so bar height stays consistent */
  nav:has(.logo--img) { padding: 12px 0; }
  nav.scrolled:has(.logo--img) { padding: 8px 0; }
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(199, 62, 29, 0.3);
  }
  .nav-cta .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
  .nav-cta:hover .arrow { transform: translateX(3px); }
  @media (max-width: 900px) {
    .nav-links { display: none; }
  }

  /* === HERO === */
  .hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 32px;
    padding: 8px 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .hero-eyebrow .live-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
    animation: livePulse 2s ease-in-out infinite;
  }
  @keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18); }
    50% { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.08); }
  }

  .hero h1 {
    font-family: var(--display);
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: var(--ink);
    margin-bottom: 32px;

  }
  .hero h1 .line { display: block; }
  .hero h1 .serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.02em;
    font-size: 1em;
  }
  .hero h1 .underline-mark {
    position: relative;
    white-space: nowrap;
  }
  .hero h1 .underline-mark::after {
    content: '';
    position: absolute;
    left: -2%;
    bottom: 0.08em;
    width: 104%;
    height: 0.18em;
    background: var(--gold);
    z-index: -1;
    opacity: 0.55;
    transform: skewX(-8deg);
  }

  .hero-sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--ink-soft);
    max-width: 560px;
    line-height: 1.55;
    margin-bottom: 32px;
    font-weight: 400;
  }

  /* RIGHT COLUMN: PRICE + CTA CARD */
  .hero-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.8) inset,
      0 24px 48px -24px rgba(15, 15, 15, 0.12),
      0 8px 16px -8px rgba(15, 15, 15, 0.06);
    position: relative;
    overflow: hidden;
  }
  .hero-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--accent-glow), transparent 65%);
    pointer-events: none;
  }
  .hero-card-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
  }
  .hero-card-label::before {
    content: ''; width: 16px; height: 1px; background: var(--accent);
  }
  .hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
    position: relative;
  }
  .hero-price-from {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .hero-price-amount {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;

  }
  .hero-price-amount .currency {
    color: var(--accent);
    font-size: 0.7em;
    vertical-align: top;
    margin-right: 2px;
  }
  .hero-price-period {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink-muted);
    margin-bottom: 24px;
    position: relative;
  }
  .hero-price-period strong { color: var(--ink); font-weight: 600; }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
  }
  .btn {
    padding: 16px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.22s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--body);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .btn .arrow { transition: transform 0.3s var(--ease); }
  .btn:hover .arrow { transform: translateX(4px); }
  .btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 24px -4px rgba(199, 62, 29, 0.35), 0 1px 0 rgba(255,255,255,0.15) inset;
  }
  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
    pointer-events: none;
  }
  .btn-primary:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -4px rgba(199, 62, 29, 0.45);
  }
  .btn-secondary {
    background: white;
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }
  .btn-secondary:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-2px);
  }
  .btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
  }
  .btn-outline:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
  .btn-outline:hover .arrow { color: #fff; }
  .btn-outline-light {
    background: transparent;
    color: var(--dark-text);
    border: 1.5px solid var(--dark-line-strong);
  }
  .btn-outline-light:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }

  /* justified body prose */
  .hero-sub, .section-lead, .problem-card p, .delivery-content p,
  .metrics-intro p, .faq-answer-inner, .guarantee-text p, .milestone-card p {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto; hyphens: auto;
  }
  @media (max-width: 560px) {
    .hero-sub, .section-lead, .problem-card p, .delivery-content p,
    .metrics-intro p, .faq-answer-inner, .guarantee-text p, .milestone-card p { text-align: left; }
  }

  /* ad-spend pass-through highlight (USP) */
  .plan-features li.ad-line { background: var(--accent-soft); border-radius: 8px; padding: 6px 10px; margin: 2px -10px; }
  .plan-features li.ad-line strong { color: var(--accent); }
  .plan.featured .plan-features li.ad-line { background: rgba(217,168,82,0.14); }
  .plan.featured .plan-features li.ad-line strong { color: var(--gold); }
  .plan-price-math { display: inline-flex; align-items: baseline; gap: 4px; background: var(--surface-2); border-radius: 8px; padding: 5px 10px; }
  .plan.featured .plan-price-math { background: rgba(245,239,230,0.08); }
  .plan-price-math .ads { font-weight: 700; }
  .ad-flow { max-width: 780px; margin: 0 auto 48px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 26px 30px; box-shadow: 0 22px 50px -34px rgba(15,15,15,0.22); }
  .ad-flow-head { display:flex; justify-content:space-between; align-items:baseline; flex-wrap:wrap; gap:6px 14px; margin-bottom:16px; }
  .ad-flow-eyebrow { font-family:var(--display); font-weight:600; font-size:16px; color:var(--ink); letter-spacing:-0.01em; }
  .ad-flow-total { font-size:12.5px; color:var(--ink-muted); font-family:var(--mono); letter-spacing:0.04em; }
  .ad-flow-bar { display:flex; height:60px; border-radius:12px; overflow:hidden; gap:3px; transform-origin:left center; transform:scaleX(0); transition:transform 0.7s var(--ease); }
  .ad-flow-bar.bar-in { transform:scaleX(1); }
  .ad-seg { display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; }
  .ad-seg.service { flex: 6999; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
  .ad-seg.ads { flex: 3000; background: linear-gradient(135deg, var(--gold), #C08A2E); }
  .ad-seg-amt { font-family:var(--display); font-weight:700; font-size:19px; line-height:1; }
  .ad-seg-lbl { font-family:var(--mono); font-size:9.5px; letter-spacing:0.1em; text-transform:uppercase; opacity:0.92; margin-top:4px; }
  .ad-flow-legend { display:flex; flex-wrap:wrap; gap:8px 24px; margin-top:16px; }
  .ad-leg { font-size:13.5px; color:var(--ink-soft); display:flex; align-items:center; gap:8px; }
  .ad-leg strong { color:var(--ink); }
  .ad-dot { width:11px; height:11px; border-radius:3px; flex:none; }
  .ad-dot.service { background:var(--accent); }
  .ad-dot.ads { background:var(--gold); }
  .ad-flow-note { margin-top:14px; padding-top:14px; border-top:1px dashed var(--line); font-size:14px; color:var(--ink-soft); text-align:center; }
  .ad-flow-note strong { color:var(--accent); }
  @media(max-width:560px){ .ad-seg-lbl{ display:none; } .ad-flow-legend{ flex-direction:column; gap:8px; } }

  .hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 13px;
    color: var(--ink-soft);
    border-top: 1px dashed var(--line);
    padding-top: 16px;
    position: relative;
  }
  .hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
  }
  .hero-trust-row span::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
  }

  @media (max-width: 1000px) {
    .hero { padding: 60px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 480px; }
    .hero h1 { font-size: clamp(48px, 12vw, 88px); }
  }
  @media (max-width: 640px) {
    .hero { padding: 40px 0 60px; }
    .hero h1 {
      font-size: clamp(40px, 13vw, 56px);
      line-height: 0.98;
      margin-bottom: 20px;
    }
    .hero-eyebrow { margin-bottom: 22px; padding: 6px 12px; font-size: 11px; }
    .hero-sub { font-size: 15px; margin-bottom: 24px; }
    .hero-card { padding: 22px; border-radius: 18px; }
    .hero-price-amount { font-size: 44px; }
    .hero-price-period { margin-bottom: 18px; font-size: 13px; }
    .hero-trust-row { gap: 8px 14px; font-size: 12px; padding-top: 14px; }
    .btn { padding: 14px 22px; font-size: 14px; }
  }

  /* === MARQUEE STRIP === */
  .marquee-strip {
    background: var(--ink);
    color: var(--bg);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .marquee {
    display: flex;
    animation: marquee 35s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
  .marquee-item::after {
    content: '✦';
    color: var(--gold);
    font-size: 16px;
    margin-left: 28px;
  }
  .marquee-item .serif-it {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* === SECTION BASICS === */
  section { padding: 110px 0; position: relative; }
  @media (max-width: 768px) { section { padding: 80px 0; } }

  .section-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent);
  }
  .deliverables .section-eyebrow,
  .deliverables .section-eyebrow::before { color: var(--gold); background-color: var(--gold); }
  .deliverables .section-eyebrow::before { background: var(--gold); }

  .section-title {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 920px;

  }
  @media (max-width: 640px) {
    .section-title { font-size: clamp(32px, 9vw, 44px); margin-bottom: 18px; }
    .section-lead { font-size: 15px; margin-bottom: 40px; }
    .section-eyebrow { margin-bottom: 14px; font-size: 11px; }
  }
  .section-title .serif {
    font-family: var(--serif);
    font-weight: 600;
    font-style: italic;
    color: var(--accent);
    letter-spacing: -0.01em;
  }
  .section-lead {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--ink-soft);
    max-width: 640px;
    line-height: 1.55;
    margin-bottom: 60px;
  }

  /* === PROBLEM (DARK) === */
  .problem {
    background: var(--dark-bg);
    color: var(--dark-text);
    border-top: 1px solid var(--ink);
    padding-bottom: 70px;
    overflow: hidden;
  }
  .problem::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(199, 62, 29, 0.16), transparent 65%);
    pointer-events: none;
  }
  .problem .section-eyebrow { color: var(--gold); }
  .problem .section-eyebrow::before { background: var(--gold); }
  .problem .section-title { color: var(--dark-text); }
  .problem .section-title .serif { color: var(--gold); }
  .problem .section-lead { color: var(--dark-text-soft); }

  .problem-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .problem-card {
    padding: 32px 28px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-line);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
  }
  .problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .problem-card:hover {
    border-color: var(--dark-line-strong);
    transform: translateY(-4px);
    background: var(--dark-surface-2);
  }
  .problem-card:hover::before { opacity: 1; }
  .pc-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
  .pc-label { font-family:var(--mono); font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--dark-text-soft); font-weight:600; }
  .pc-x { width:24px; height:24px; border-radius:50%; background:rgba(199,62,29,0.16); color:#FF8A6E; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; transition: all 0.4s var(--ease); }
  .problem-card:hover .pc-x { background:var(--accent); color:#fff; transform: rotate(90deg); }
  .pc-cost { font-family:var(--display); font-weight:700; font-size:clamp(38px,4.6vw,54px); line-height:0.95; letter-spacing:-0.03em; color:var(--dark-text); margin-bottom:12px; }
  .pc-cost .pc-unit { font-size:0.42em; font-weight:600; color:var(--gold); letter-spacing:0; margin-left:2px; }
  .pc-catch { display:inline-block; font-family:var(--mono); font-size:11.5px; letter-spacing:0.03em; color:#FF8A6E; background:rgba(199,62,29,0.14); padding:6px 12px; border-radius:999px; margin-bottom:16px; }
  .problem-card p {
    color: var(--dark-text-soft);
    font-size: 14.5px;
    line-height: 1.55;
  }
  .problem-bridge {
    margin-top: 60px;
    padding: 40px 0 0;
    text-align: center;
    border-top: 1px solid var(--dark-line);
  }
  .problem-bridge p {
    font-family: var(--display);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 500;
    line-height: 1.2;
    max-width: 880px;
    margin: 0 auto;
    letter-spacing: -0.025em;
  }
  .problem-bridge p .serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
  }
  @media (max-width: 768px) {
    .problem-stack { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .problem-card { padding: 26px 22px; }
    .problem-num { font-size: 64px; }
    .problem-card h3 { font-size: 22px; }
    .problem-card p { font-size: 14px; }
  }


  /* === DELIVERABLES — ASYMMETRIC BENTO === */
  .deliverables {
    background: var(--ink);
    color: var(--dark-text);
    overflow: hidden;
  }
  .deliverables .section-title { color: var(--dark-text); }
  .deliverables .section-title .serif { color: var(--gold); }
  .deliverables .section-lead { color: var(--dark-text-soft); }
  .deliverables::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-soft), transparent 65%);
    pointer-events: none;
  }

  /* === INDUSTRIES MARQUEE === */
  .industries {
    background: var(--bg);
    overflow: hidden;
  }
  .ind-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }
  .ind-side-text p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
  }
  .ind-marquee-wrap {
    overflow: hidden;
    margin: 0 -32px;
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
  .ind-marquee {
    display: flex;
    animation: indMarquee 40s linear infinite;
    width: max-content;
    gap: 16px;
  }
  .ind-marquee:hover { animation-play-state: paused; }
  .ind-pill {
    flex-shrink: 0;
    padding: 18px 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
  }
  .ind-pill:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(15, 15, 15, 0.2);
  }
  .ind-pill .icon {
    font-size: 22px;
    line-height: 1;
  }
  .ind-pill.featured {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .ind-pill.featured:hover { background: var(--accent); border-color: var(--accent); }

  @keyframes indMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (max-width: 768px) {
    .ind-header { grid-template-columns: 1fr; gap: 24px; }
  }

  /* === COMPARISON TABLE / HONEST MATH === */
  .compare {
    background: var(--surface-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
    position: relative;
  }
  .compare-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--bg);
    border: 4px solid var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 28px -6px rgba(199, 62, 29, 0.45);
  }
  .compare-card {
    padding: 36px 32px;
    border-radius: 20px;
    position: relative;
  }
  .compare-card.old {
    background: white;
    border: 1px solid var(--line);
  }
  .compare-card.setu {
    background: var(--ink);
    color: var(--dark-text);
    border: 1px solid var(--ink);
  }
  .compare-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 8px;
  }
  .compare-card.setu .compare-label { color: var(--gold); }
  .compare-card h3 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .compare-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .compare-card.setu .compare-row { border-bottom-color: var(--dark-line); }
  .compare-row .what { font-size: 14px; color: var(--ink-soft); }
  .compare-card.setu .compare-row .what { color: var(--dark-text-soft); }
  .compare-row .how {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
    text-align: right;
  }
  .compare-card.setu .compare-row .how { color: var(--dark-text); }
  .compare-card.setu .compare-row .how.included { color: var(--green); }
  .compare-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid var(--ink);
    gap: 16px;
  }
  .compare-card.setu .compare-total { border-top-color: var(--gold); }
  .compare-total .label {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .compare-card.setu .compare-total .label { color: var(--dark-text-soft); }
  .compare-total .amount {
    font-family: var(--display);
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .compare-card.setu .compare-total .amount { color: var(--gold); }
  .compare-total .amount-strike {
    text-decoration: line-through;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 3px;
    color: var(--ink-muted);
  }
  @media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; }
    .compare-vs { position: static; transform: none; margin: 8px auto; }
  }
  @media (max-width: 640px) {
    .compare-card { padding: 26px 22px; }
    .compare-card h3 { font-size: 24px; margin-bottom: 22px; }
    .compare-row { padding: 12px 0; gap: 12px; }
    .compare-row .what { font-size: 13px; }
    .compare-row .how { font-size: 12px; }
    .compare-total .amount { font-size: 32px; }
    .savings-callout { padding: 24px 18px; margin-top: 36px; }
  }

  /* === SAVINGS CALLOUT === */
  .savings-callout {
    margin-top: 48px;
    padding: 32px 24px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .savings-callout::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.18), transparent 65%);
    pointer-events: none;
  }
  .savings-amount {
    font-family: var(--display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    position: relative;
    letter-spacing: -0.02em;
  }
  .savings-amount .big-num {
    color: #1F8F4D;
    font-weight: 700;
    font-size: 1.4em;
    margin: 0 6px;
    letter-spacing: -0.04em;
  }
  .savings-sub {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    color: var(--ink-soft);
    font-size: 16px;
    position: relative;
  }

  /* === PRICING ENHANCEMENTS === */
  .plan-price-math {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-muted);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }
  .plan.featured .plan-price-math { color: var(--dark-text-soft); }
  .plan-price-math .ads {
    color: var(--accent);
    font-weight: 600;
  }
  .plan.featured .plan-price-math .ads { color: var(--gold); }

  /* Mini growth chart in pricing cards */
  .plan-mini-chart {
    margin: 0;
    padding: 0;
    background: var(--bg);
    border-style: solid;
    border-color: var(--line);
    border-width: 0;
    border-radius: 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease, padding 0.4s ease, border-width 0.4s ease;
  }
  .plan.featured .plan-mini-chart {
    background: rgba(245, 239, 230, 0.05);
    border-color: var(--dark-line);
  }
  .plan-mini-chart-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .plan.featured .plan-mini-chart-label { color: var(--gold); }
  .plan-mini-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 32px;
  }
  .plan-mini-chart-bars .bar {
    flex: 1;
    background: var(--accent-soft);
    border-radius: 2px;
    transition: height 0.6s var(--ease);
  }
  .plan.featured .plan-mini-chart-bars .bar { background: rgba(217, 168, 82, 0.3); }
  .plan-mini-chart-bars .bar.fill { background: var(--accent); }
  .plan.featured .plan-mini-chart-bars .bar.fill { background: var(--gold); }
  .plan-mini-chart-foot {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-muted);
  }
  .plan.featured .plan-mini-chart-foot { color: var(--dark-text-soft); }

  /* Show mini chart on hover (desktop) */
  @media (min-width: 1001px) {
    .plan:hover .plan-mini-chart {
      max-height: 140px;
      opacity: 1;
      margin-top: 12px;
      margin-bottom: 16px;
      padding: 14px;
      border-width: 1px;
    }
  }
  /* Mobile: revealed via IntersectionObserver (class toggled in global.js) */
  .plan-mini-chart.chart-revealed {
    max-height: 140px;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 16px;
    padding: 14px;
    border-width: 1px;
  }
  /* Highlight plan feature numbers (bold) */
  .plan-features li strong {
    color: var(--ink);
    font-weight: 600;
  }
  .plan.featured .plan-features li strong { color: var(--dark-text); }

  /* === PRICING === */
  .pricing-section {
    background: var(--bg);
  }
  .pricing-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }
  .pricing-side-note {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .pricing-side-note strong {
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-family: var(--display);
    font-size: 16px;
  }
  .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .plan {
    padding: 36px 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    position: relative;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
  }
  .plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px -16px rgba(15, 15, 15, 0.16);
    border-color: var(--accent);
  }
  .plan.featured {
    background: var(--ink);
    color: var(--dark-text);
    border-color: var(--ink);
    transform: scale(1.04);
    box-shadow: 0 24px 48px -16px rgba(15, 15, 15, 0.2);
  }
  .plan.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 40px 72px -16px rgba(15, 15, 15, 0.4), 0 0 32px -8px rgba(217, 168, 82, 0.22);
    border-color: var(--gold);
  }
  .plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .plan-name {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .plan-tagline {
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    color: var(--ink-soft);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .plan.featured .plan-tagline { color: var(--gold); }
  .plan-price {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 4px;
    letter-spacing: -0.04em;

  }
  .plan-price .currency {
    font-size: 28px;
    vertical-align: top;
    font-weight: 500;
    margin-right: 4px;
    color: var(--accent);
  }
  .plan.featured .plan-price .currency { color: var(--gold); }
  .plan-period {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--line);
  }
  .plan.featured .plan-period {
    color: var(--dark-text-soft);
    border-bottom-color: var(--dark-line);
  }
  .plan-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
  }
  .plan-features li {
    padding: 9px 0;
    font-size: 14px;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }
  .plan.featured .plan-features li { color: rgba(245, 239, 230, 0.85); }
  .plan-features li .check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
  }
  .plan.featured .plan-features li .check {
    background: rgba(217, 168, 82, 0.2);
    color: var(--gold);
  }
  .plan-features li.highlight {
    color: var(--ink);
    font-weight: 500;
  }
  .plan.featured .plan-features li.highlight { color: var(--dark-text); }
  .plan-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    border: 1.5px solid var(--ink);
    color: var(--ink);
  }
  .plan-cta:hover {
    background: var(--ink);
    color: var(--bg);
  }
  .plan.featured .plan-cta {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 8px 20px -4px rgba(199, 62, 29, 0.4);
  }
  .plan.featured .plan-cta:hover {
    background: var(--bg);
    color: var(--accent);
    border-color: var(--bg);
  }
  .pricing-foot {
    margin-top: 36px;
    text-align: center;
  }
  .pricing-foot .btn-outline {
    display: inline-flex;
    margin-top: 12px;
  }
  @media (max-width: 1000px) {
    .pricing-header { grid-template-columns: 1fr; gap: 24px; }
    .plans { grid-template-columns: 1fr; }
    .plan.featured { transform: none; }
    .plan.featured:hover { transform: translateY(-4px); }
  }
  @media (max-width: 640px) {
    .plan { padding: 28px 24px; border-radius: 18px; }
    .plan-price { font-size: 44px; }
    .plan-price .currency { font-size: 22px; }
    .plan-features li { font-size: 14px; padding: 8px 0; }
    .plan-period { padding-bottom: 18px; margin-bottom: 18px; }
  }

  /* === GROWTH TIMELINE === */
  .growth-section {
    background: var(--surface-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .growth-callout {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 56px 48px;
    margin-top: 40px;
    box-shadow: 0 24px 48px -24px rgba(15, 15, 15, 0.1);
  }
  .growth-disclaimer {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    color: var(--ink-muted);
    margin-bottom: 32px;
    line-height: 1.55;
    max-width: 720px;
  }
  .plan-toggle {
    display: inline-flex;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 2px;
  }
  .plan-toggle button {
    padding: 12px 22px;
    border: none;
    background: transparent;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
  }
  .plan-toggle button:hover { color: var(--ink); }
  .plan-toggle button.active {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 4px 12px rgba(15, 15, 15, 0.15);
  }
  .timeline-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .timeline-chart-wrap { position: relative; }
  .timeline-chart { width: 100%; height: auto; }
  .timeline-meta {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
  }
  .timeline-meta .stat-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
    margin-bottom: 4px;
  }
  .timeline-meta .stat-value {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .timeline-meta .stat-value .serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
  }
  .milestones h4 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .milestone {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .milestone:last-child { border-bottom: none; }
  .milestone .month {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
    color: var(--accent);
    padding-top: 1px;
  }
  .milestone .what {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  @media (max-width: 900px) {
    .growth-callout { padding: 32px 24px; border-radius: 20px; }
    .timeline-content { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 640px) {
    .growth-callout { padding: 24px 18px; }
    .growth-disclaimer { font-size: 14px; margin-bottom: 22px; }
    .plan-toggle { width: 100%; justify-content: center; margin-bottom: 28px; }
    .plan-toggle button { padding: 10px 14px; font-size: 12px; flex: 1; }
    .timeline-content { gap: 28px; }
    .timeline-meta { gap: 20px; padding-top: 16px; }
    .timeline-meta .stat-value { font-size: 22px; }
    .milestone { grid-template-columns: 90px 1fr; gap: 14px; padding: 12px 0; }
    .milestone .month { font-size: 15px; }
    .milestone .what { font-size: 13px; }
    .milestones h4 { font-size: 18px; margin-bottom: 16px; }
  }

  /* === WORK / PORTFOLIO === */
  .work-section { background: var(--bg); }
  .work-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 56px;
  }
  .work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .work-item {
    aspect-ratio: 4/5;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
  }
  .work-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(15, 15, 15, 0.2);
  }
  .work-item img,
  .work-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
  }
  .work-item:hover img,
  .work-item:hover video { transform: scale(1.04); }
  .work-meta {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.85) 30%, transparent);
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: white;
    transform: translateY(20%);
    opacity: 0.9;
    transition: all 0.4s var(--ease);
  }
  .work-item:hover .work-meta { transform: translateY(0); opacity: 1; }
  .work-meta .tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
  }
  .work-meta .name {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .work-item.video-item::after {
    content: '▶';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding-left: 3px;
  }
  @media (max-width: 900px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* === TRUST METRICS === */
  .metrics {
    background: var(--ink);
    color: var(--dark-text);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
  }
  .metrics::before {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow), transparent 65%);
    pointer-events: none;
  }
  .metrics-grid {
    display: grid;
    grid-template-columns: 1.4fr 3fr;
    gap: 60px;
    align-items: center;
  }
  .metrics-intro h3 {
    font-family: var(--display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .metrics-intro h3 .serif {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
  }
  .metrics-intro p { color: var(--dark-text-soft); font-size: 15px; line-height: 1.55; }

  .metrics-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .metric {
    border-left: 1px solid var(--dark-line-strong);
    padding-left: 20px;
    transition: transform .35s var(--ease), border-color .35s var(--ease);
  }
  .metric:hover { transform: translateY(-4px); border-left-color: var(--gold); }
  .metric:hover .num { color: var(--gold); }
  .metric.trust:hover { border-left-color: var(--green); }
  .metric.trust:hover .num { color: var(--green); }
  .metric .num {
    font-family: var(--display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.04em;
    margin-bottom: 8px;

  }
  .metric .num .serif { font-family: var(--serif); font-style: italic; font-weight: 700; }
  .metric .num .small { font-size: 0.5em; font-weight: 500; color: var(--dark-text); }
  .metric .label {
    font-family: var(--body);
    font-size: 13px;
    color: var(--dark-text-soft);
    line-height: 1.4;
  }
  @media (max-width: 900px) {
    .metrics-grid { grid-template-columns: 1fr; gap: 32px; }
    .metrics-stack { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  }

  /* === TESTIMONIAL === */
  /* === TESTIMONIAL CAROUSEL === */
  .testimonial {
    background: var(--bg);
    padding: 130px 0;
    overflow: hidden;
  }
  .testimonial-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .testimonial-header .section-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
  }
  .testimonial-header .section-title {
    margin: 0 auto;
    font-size: clamp(34px, 4.6vw, 56px);
  }
  .testimonial-carousel {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
  }
  .testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
    box-shadow: 0 8px 20px -8px rgba(15, 15, 15, 0.12);
  }
  .testimonial-arrow:hover {
    background: var(--accent);
    color: #FBF7EF;
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
  }
  .testimonial-arrow.prev { left: -10px; }
  .testimonial-arrow.next { right: -10px; }
  .testimonial-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
  @media (max-width: 880px) {
    .testimonial-arrow { display: none; }
  }
  .testimonial-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 8px;
  }
  .testimonial-track::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    box-shadow: 0 18px 48px -28px rgba(15, 15, 15, 0.16);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  .testimonial-card--has-media { grid-template-columns: 220px 1fr; }
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px -20px rgba(15, 15, 15, 0.22);
  }
  .testimonial-shot {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px -6px rgba(15, 15, 15, 0.15);
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .testimonial-shot:hover { opacity: 0.88; }
  .testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 70ch;
  }
  .testimonial-quote {
    font-family: var(--display);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
  }
  .testimonial-quote::before {
    content: '"';
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 90px;
    line-height: 0.5;
    position: absolute;
    top: 14px;
    left: -32px;
    opacity: 0.4;
  }
  .testimonial-quote .serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
  }
  .testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
  }
  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .testimonial-name {
    font-family: var(--body);
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 2px;
  }
  .testimonial-meta {
    font-size: 13px;
    color: var(--ink-muted);
    font-family: var(--mono);
  }
  .testimonial-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
  }
  .testimonial-tab {
    width: 40px; height: 3px;
    border-radius: 2px;
    background: var(--line);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
  }
  .testimonial-tab.active { background: var(--accent); width: 56px; }
  @media (max-width: 880px) {
    .testimonial { padding: 90px 0 80px; }
    .testimonial-header { margin-bottom: 36px; }
    .testimonial-card {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 28px 24px;
    }
    .testimonial-card--has-media { grid-template-columns: 1fr; }
    .testimonial-shot {
      max-width: 180px;
      width: 100%;
      margin: 0 auto;
    }
    .testimonial-quote {
      font-size: 19px;
      line-height: 1.45;
    }
    .testimonial-quote::before {
      font-size: 60px;
      top: 6px;
      left: -8px;
    }
    .testimonial-content { gap: 20px; }
    .testimonial-tabs { margin-top: 24px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .testimonial-track { scroll-behavior: auto; }
  }

  /* === FAQ === */
  .faq-section {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    margin-top: 60px;
  }
  .faq-side h3 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .faq-side p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .faq-side .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
  }
  .faq-list { }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-item:first-child { border-top: 1px solid var(--line); }
  .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--accent); }
  .faq-icon {
    width: 28px; height: 28px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: all 0.3s var(--ease);
    background: transparent;
  }
  .faq-item.open .faq-icon {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: rotate(45deg);
  }
  .faq-answer {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.35s ease, opacity 0.28s ease;
  }
  .faq-item.open .faq-answer {
    opacity: 1;
  }
  .faq-answer-inner {
    padding: 0 0 24px 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
    max-width: 680px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .faq-item.open .faq-answer-inner {
    opacity: 1;
    transform: none;
  }
  @media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 640px) {
    .faq-side h3 { font-size: 22px; }
    .faq-question { font-size: 16px; padding: 18px 0; }
    .faq-answer-inner { font-size: 14px; padding-bottom: 20px; }
  }

  /* === FINAL CTA === */
  .final-cta {
    background: var(--ink);
    color: var(--dark-text);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 640px) {
    .final-cta { padding: 90px 0; }
    .final-cta h2 { font-size: clamp(36px, 11vw, 56px); }
    .final-cta p { font-size: 15px; margin-bottom: 32px; }
    .final-cta .btn-primary { padding: 18px 32px; font-size: 16px; }
    .final-cta .whatsapp-btn { padding: 14px 24px; font-size: 14px; }
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle, rgba(199, 62, 29, 0.35) 0%, rgba(199, 62, 29, 0.08) 30%, transparent 60%);
    pointer-events: none;
    border-radius: 50%;
  }
  .final-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  .final-cta h2 {
    font-family: var(--display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    color: var(--dark-text);
  }
  .final-cta h2 .serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
  }
  .final-cta p {
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--dark-text-soft);
    margin-bottom: 44px;
    line-height: 1.55;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta .btn-cluster {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .final-cta .btn-primary {
    background: var(--accent);
    padding: 20px 40px;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 16px 48px -8px rgba(199, 62, 29, 0.6);
  }
  .final-cta .btn-primary:hover {
    background: white;
    color: var(--accent);
    box-shadow: 0 16px 48px -8px rgba(255, 255, 255, 0.4);
  }
  .cta-or-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  .cta-or-line {
    flex: 1;
    height: 1px;
    background: rgba(245, 239, 230, 0.2);
  }
  .cta-or-text {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-text-soft);
  }
  .final-cta .whatsapp-btn {
    background: transparent;
    border: 1.5px solid rgba(245, 239, 230, 0.3);
    color: var(--dark-text);
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--ease);
  }
  .final-cta .whatsapp-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
  }
  .final-cta .whatsapp-btn .wa-icon {
    width: 18px; height: 18px;
    fill: var(--green);
    transition: fill 0.3s;
  }
  .final-cta .whatsapp-btn:hover .wa-icon { fill: white; }
  .final-cta .micro-trust {
    font-size: 13px;
    color: var(--dark-text-soft);
    margin-top: 8px;
    font-family: var(--mono);
    letter-spacing: 0.04em;
  }

  /* === FOOTER === */
  footer {
    background: var(--bg);
    padding: 64px 0 32px;
    border-top: 1px solid var(--line);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand .logo { font-size: 30px; margin-bottom: 18px; display: inline-flex; }
  .footer-brand p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
    max-width: 340px;
    margin-bottom: 20px;
  }
  .footer-brand .socials {
    display: flex;
    gap: 10px;
  }
  .footer-brand .socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    font-size: 14px;
  }
  .footer-brand .socials a:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-2px);
    border-color: var(--ink);
  }
  .footer-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--ink-muted);
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom .made {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
  }
  @media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  /* === FLOATING WHATSAPP BUTTON === */
  .wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px -4px rgba(37, 211, 102, 0.5), 0 4px 12px -2px rgba(0,0,0,0.1);
    z-index: 99;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    animation: waEnter 0.6s var(--ease-bounce) 1s both;
  }
  .wa-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.3;
    animation: waPing 2.5s ease-in-out infinite;
    z-index: -1;
  }
  .wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 40px -4px rgba(37, 211, 102, 0.65);
  }
  .wa-float svg { width: 30px; height: 30px; fill: white; }
  .wa-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: var(--bg);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s var(--ease);
  }
  .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--ink);
  }
  .wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
  }
  @keyframes waEnter {
    from { transform: translateY(60px) scale(0.5); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
  }
  @keyframes waPing {
    0% { transform: scale(1); opacity: 0.3; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  @media (max-width: 600px) {
    .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
    .wa-float svg { width: 26px; height: 26px; }
  }

  /* === HERO COMPARE LINK === */
  .hero-compare-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    margin-bottom: 4px;
    font-family: var(--body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s var(--ease);
    position: relative;
  }
  .hero-compare-link:hover { color: var(--accent-2); }
  .hero-compare-link .arrow { transition: transform 0.3s var(--ease); }
  .hero-compare-link:hover .arrow { transform: translateX(3px); }

  /* === HOW IT WORKS — JOURNEY (Direction 2) === */
  .how-section {
    background: var(--dark-bg);
    color: var(--dark-text);
    border-top: 1px solid var(--dark-line-strong);
    padding-top: 84px;
    overflow: hidden;
    position: relative;
  }
  .how-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(199, 62, 29, 0.15), transparent 65%);
    pointer-events: none;
  }
  .how-section .section-eyebrow { color: var(--gold); }
  .how-section .section-eyebrow::before { background: var(--gold); }
  .how-section .section-title { color: var(--dark-text); }
  .how-section .section-title .serif { color: var(--gold); }
  .how-section .section-lead { color: var(--dark-text-soft); }

  .journey-track { margin-top: 48px; position: relative; }
  .journey-track::before { display: none; }
  .days-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
  }
  .day-cell { text-align: center; padding-top: 20px; position: relative; }
  .day-num {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text-soft);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .day-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--dark-surface);
    border: 2px solid var(--dark-line-strong);
    margin: 0 auto;
    position: relative;
    transition: all 0.4s var(--ease);
  }
  .day-dot.milestone {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 6px rgba(199, 62, 29, 0.18);
    width: 32px;
    height: 32px;
    margin-top: -3px;
  }
  .day-dot.milestone::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--gold);
    border-radius: 50%;
  }
  .day-dot.milestone.day7 {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 8px rgba(217, 168, 82, 0.3), 0 0 24px rgba(217, 168, 82, 0.5);
  }
  .day-dot.milestone.day7::after { background: var(--ink); }

  .milestones-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
  }
  .milestone-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-line);
    border-radius: 22px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
  }
  .milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .milestone-card:hover {
    transform: translateY(-4px);
    border-color: var(--dark-line-strong);
    background: var(--dark-surface-2);
  }
  .milestone-card:hover::before { opacity: 1; }
  .milestone-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--dark-line);
  }
  .milestone-step {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    line-height: 0.85;
    letter-spacing: -0.04em;
  }
  .milestone-day {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: rgba(217, 168, 82, 0.12);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
  }
  .milestone-card h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color: var(--dark-text);
  }
  .milestone-card p {
    color: var(--dark-text-soft);
    font-size: 14px;
    line-height: 1.6;
  }
  .milestone-card .channel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(37, 211, 102, 0.1);
    padding: 5px 10px;
    border-radius: 999px;
  }
  .milestone-card .channel::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
  }
  .journey-foot {
    margin-top: 60px;
    padding: 24px 32px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-line);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .journey-foot-text {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .journey-foot-text .serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    color: var(--gold);
  }
  .journey-foot-stat {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--dark-text-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .journey-foot-stat strong {
    color: var(--gold);
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 4px;
  }
  @media (max-width: 900px) {
    .milestones-row { grid-template-columns: 1fr; gap: 16px; }
    .journey-track::before { left: 6%; right: 6%; }
  }
  @media (max-width: 640px) {
    .day-num { font-size: 11px; }
    .milestone-card { padding: 24px 22px; }
    .milestone-step { font-size: 44px; }
    .milestone-card h3 { font-size: 22px; }
    .journey-foot { padding: 18px 20px; }
    .journey-foot-text { font-size: 16px; }
  }

  /* === DELIVERABLES — STACKED CARDS (Option 2) === */
  .delivery-stack {
    display: grid;
    gap: 18px;
    margin-top: 60px;
  }
  .delivery-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-line);
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
    transition: all 0.4s var(--ease);
    position: relative;
  }
  .delivery-card:hover {
    transform: translateY(-3px);
    border-color: var(--dark-line-strong);
    background: var(--dark-surface-2);
  }
  .delivery-content {
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .delivery-tag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .delivery-tag .ai-pill {
    background: rgba(199, 62, 29, 0.18);
    color: #FF8A6E;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
  }
  .delivery-card h3 {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    color: var(--dark-text);
  }
  .delivery-card h3 .serif {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
  }
  .delivery-card p {
    color: var(--dark-text-soft);
    font-size: 15px;
    line-height: 1.6;
    max-width: 520px;
  }
  .delivery-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--dark-line);
  }
  .delivery-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 14px 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-line);
    border-radius: 12px;
    text-align: center;
    transition: all 0.35s var(--ease);
  }
  .delivery-meta-item:hover { transform: translateY(-3px); border-color: var(--dark-line-strong); }
  .delivery-meta-item .qp { font-family:var(--mono); font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--dark-text-soft); }
  .delivery-meta-item strong {
    font-family: var(--display);
    font-size: 28px;
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .delivery-meta-item .qu { font-family:var(--mono); font-size:10px; color:var(--dark-text-soft); }
  .delivery-meta-item.feat { background:rgba(217,168,82,0.12); border-color:rgba(217,168,82,0.38); }
  .delivery-meta-item.feat strong { color:var(--gold); }
  .delivery-meta-item.feat .qp { color:var(--gold); }
  .delivery-visual {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  /* Reels visual */
  .visual-reel {
    position: relative;
    width: 160px;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
    transform: rotate(-3deg);
    transition: transform 0.5s var(--ease);
  }
  .delivery-card:hover .visual-reel { transform: rotate(0deg) scale(1.04); }
  .visual-reel video, .visual-reel img { width: 100%; height: 100%; object-fit: cover; }
  .delivery-reel-trigger { cursor: pointer; }
  .visual-reel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.6));
    z-index: 2;
    pointer-events: none;
  }
  .visual-reel .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 18px;
    z-index: 3;
    padding-left: 4px;
  }
  /* Statics visual */
  .visual-statics { position: relative; width: 240px; height: 220px; }
  .visual-statics .stack-img {
    position: absolute;
    width: 130px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.5);
    transition: transform 0.5s var(--ease);
    background: var(--dark-surface-2);
  }
  .visual-statics .stack-img img { width: 100%; height: 100%; object-fit: cover; }
  .visual-statics .stack-img[data-image] { cursor: pointer; }
  .visual-statics .stack-img:nth-child(1) { top: 30px; left: 0; transform: rotate(-6deg); z-index: 2; }
  .visual-statics .stack-img:nth-child(2) { top: 0; left: 60px; transform: rotate(2deg); z-index: 3; }
  .visual-statics .stack-img:nth-child(3) { top: 40px; right: 0; transform: rotate(8deg); z-index: 1; }
  .delivery-card:hover .visual-statics .stack-img:nth-child(1) { transform: rotate(-10deg) translateX(-8px); }
  .delivery-card:hover .visual-statics .stack-img:nth-child(2) { transform: rotate(0deg) translateY(-6px); }
  .delivery-card:hover .visual-statics .stack-img:nth-child(3) { transform: rotate(12deg) translateX(8px); }
  /* Carousel visual */
  .visual-carousel { position: relative; width: 240px; }
  .visual-carousel .car-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #2A1F18 0%, #3D2A20 100%);
    border-radius: 14px;
    border: 1px solid var(--dark-line);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 40px -12px rgba(0,0,0,0.5);
  }
  .visual-carousel .car-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    display: block;
  }
  .visual-carousel .car-num {
    position: relative;
    z-index: 1;
    font-family: var(--display);
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }
  .visual-carousel .car-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .visual-carousel .car-title .serif {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
  }
  .visual-carousel .car-arrow {
    position: absolute;
    bottom: 12px;
    z-index: 2;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.6);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    transition: background 0.2s;
    border: none;
  }
  .visual-carousel .car-arrow:hover { background: rgba(15, 15, 15, 0.85); }
  .visual-carousel .car-arrow-prev { left: 12px; }
  .visual-carousel .car-arrow-btn  { right: 12px; }
  .visual-carousel .car-dots {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
  }
  .visual-carousel .car-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(245, 239, 230, 0.3);
  }
  .visual-carousel .car-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }
  /* Stories visual */
  .visual-stories {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 280px;
  }
  .story-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent), var(--gold));
    padding: 3px;
    transition: transform 0.4s var(--ease);
    cursor: pointer;
  }
  .story-circle:hover { transform: scale(1.08); }
  .story-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--dark-bg);
    padding: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .story-circle-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .story-circle-inner .placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-surface-2), var(--dark-surface));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--display);
    font-weight: 600;
    font-size: 18px;
  }
  @media (max-width: 900px) {
    .delivery-card { grid-template-columns: 1fr; }
    .delivery-content { padding: 28px 24px 24px; }
    .delivery-card h3 { font-size: 30px; }
    .delivery-visual { min-height: 240px; padding: 30px 20px; }
  }

  /* === SCROLL REVEAL — fail-open ===
     Default: fully visible. Only hidden+animated when the js class is on <html>
     (set by an inline script in <head> before stylesheets paint). This way a
     missed observer, blocked JS, or slow connection never hides content. */
  .reveal { opacity: 1; transform: none; }

  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .js .reveal.in { opacity: 1; transform: translateY(0); }
  .js .reveal[data-delay="1"] { transition-delay: 0.08s; }
  .js .reveal[data-delay="2"] { transition-delay: 0.16s; }
  .js .reveal[data-delay="3"] { transition-delay: 0.24s; }
  .js .reveal[data-delay="4"] { transition-delay: 0.32s; }

  @media (prefers-reduced-motion: reduce) {
    .js .reveal { transform: none; transition: opacity 0.01s; }
  }

  /* === PROMO STRIP (toggleable in WP admin) === */
  .promo-strip {
    background: var(--ink);
    color: var(--gold);
    overflow: hidden;
    border-bottom: 1px solid var(--ink);
    padding: 11px 0;
    position: relative;
    z-index: 101;
  }
  .promo-strip::before, .promo-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
  }
  .promo-strip::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
  .promo-strip::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
  .promo-track {
    display: flex;
    width: max-content;
    animation: promo-scroll 40s linear infinite;
    will-change: transform;
  }
  .promo-strip:hover .promo-track { animation-play-state: paused; }
  .promo-item {
    font-family: var(--mono);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 28px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
  }
  .promo-item .promo-spark { color: var(--accent); font-size: 13px; }
  .promo-item strong {
    font-family: var(--display);
    font-weight: 700;
    color: var(--bg);
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 14.5px;
  }
  .promo-item .promo-code {
    background: var(--gold);
    color: var(--ink);
    padding: 3px 9px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11.5px;
    text-transform: none;
    letter-spacing: 0.04em;
  }
  @keyframes promo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (max-width: 720px) {
    .promo-strip { padding: 9px 0; }
    .promo-item { font-size: 11px; padding: 0 20px; }
    .promo-item strong { font-size: 12.5px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .promo-track { animation: none; }
  }

  /* === MOBILE MENU + SCROLL-TOP (universal chrome) === */
  .nav-burger {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  }
  .nav-burger:hover { border-color: var(--ink); }
  .nav-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  }
  @media (max-width: 880px) {
    .nav-burger { display: inline-flex; }
    .nav-cta { display: none !important; }
    .nav-links { display: none !important; }
  }

  /* Slide-in mobile menu panel */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-menu[aria-hidden="false"] {
    pointer-events: auto;
    visibility: visible;
  }
  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.5);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .mobile-menu[aria-hidden="false"] .mobile-menu-backdrop { opacity: 1; }
  .mobile-menu-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    background: var(--surface, #FBF7EF);
    box-shadow: -24px 0 60px -20px rgba(15, 15, 15, 0.25);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    padding: 28px 28px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu[aria-hidden="false"] .mobile-menu-panel { transform: translateX(0); }
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
  }
  .mobile-menu-head .logo {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .mobile-menu-head .logo-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
  }
  .mobile-menu-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .mobile-menu-close:hover { border-color: var(--ink); transform: rotate(90deg); }
  .mobile-menu-close span {
    position: absolute;
    top: 50%; left: 50%;
    width: 14px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
  }
  .mobile-menu-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  .mobile-menu-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
  }
  .mobile-menu-links a {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft, var(--line));
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
  }
  .mobile-menu-links a::after {
    content: '→';
    font-family: var(--mono);
    font-size: 18px;
    color: var(--ink-muted);
    transition: transform 0.25s var(--ease), color 0.25s var(--ease);
  }
  .mobile-menu-links a:hover {
    color: var(--accent);
    padding-left: 6px;
  }
  .mobile-menu-links a:hover::after {
    color: var(--accent);
    transform: translateX(4px);
  }
  .mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #FBF7EF;
    text-decoration: none;
    padding: 16px 22px;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
    margin-bottom: 28px;
  }
  .mobile-menu-cta:hover { background: var(--accent-2); transform: translateY(-1px); }
  .mobile-menu-cta .arrow { transition: transform 0.25s var(--ease); }
  .mobile-menu-cta:hover .arrow { transform: translateX(3px); }
  .mobile-menu-foot {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
  }
  .mobile-menu-foot a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  .mobile-menu-foot a:hover { color: var(--accent); }

  /* Scroll-to-top floating button */
  .scroll-top {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 90;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface, #FBF7EF);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.9);
    transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
    box-shadow: 0 12px 28px -10px rgba(15, 15, 15, 0.26);
  }
  .scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .scroll-top:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 18px 36px -10px rgba(15,15,15,0.32); }
  .st-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
  .st-ring circle { fill: none; stroke-width: 2.5; }
  .st-track { stroke: var(--line); }
  .st-prog { stroke: var(--accent); stroke-linecap: round; stroke-dasharray: 132; stroke-dashoffset: 132; transition: stroke-dashoffset 0.12s linear; }
  .st-arrow { position: relative; z-index: 1; font-size: 18px; font-weight: 700; color: var(--accent); line-height: 1; transition: transform 0.25s var(--ease); }
  .scroll-top:hover .st-arrow { transform: translateY(-2px); }
  @media (max-width: 600px) {
    .scroll-top { right: 16px; width: 44px; height: 44px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .btn, .btn .arrow, .ind-pill, .testimonial-card,
    .faq-answer, .faq-answer-inner, .plan-mini-chart-bars .bar,
    .ad-flow-bar, .mobile-menu-foot a { transition: none !important; }
    .ad-flow-bar { transform: scaleX(1) !important; }
    .faq-answer-inner { opacity: 1 !important; transform: none !important; }
  }
  @media (prefers-reduced-motion: reduce) {
    .mobile-menu-backdrop, .mobile-menu-panel, .scroll-top { transition: opacity 0.15s linear; }
    .mobile-menu-panel { transform: none !important; }
    .mobile-menu[aria-hidden="true"] .mobile-menu-panel { display: none; }
  }
  /* ===== GUARANTEE BAND (added) ===== */
  .guarantee-section { padding: 24px 0 84px; background: var(--bg); }
  @media (max-width: 768px) { .guarantee-section { padding: 10px 0 60px; } }
  .guarantee-band { max-width: 720px; margin: 0 auto; padding: 0 24px; }
  .guarantee-inner {
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, var(--surface), #FBF3E3);
    border: 2px solid var(--gold);
    border-radius: 28px;
    padding: 46px 44px 38px;
    box-shadow: 0 32px 72px -40px rgba(217,168,82,0.55);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    overflow: hidden;
  }
  .guarantee-inner::before { content:''; position:absolute; top:-70px; left:50%; transform:translateX(-50%); width:340px; height:220px; background:radial-gradient(circle, rgba(217,168,82,0.20), transparent 70%); pointer-events:none; }
  .guarantee-inner:hover { transform: translateY(-5px); box-shadow: 0 42px 86px -38px rgba(217,168,82,0.64); }
  .guarantee-seal { width:76px; height:76px; margin:0 auto 22px; border-radius:50%; background:linear-gradient(135deg, var(--gold), #C08A2E); display:flex; align-items:center; justify-content:center; position:relative; box-shadow:0 12px 28px -8px rgba(217,168,82,0.6); }
  .guarantee-seal svg { width:38px; height:38px; stroke:#fff; fill:none; stroke-width:1.7; }
  .guarantee-seal::after { content:''; position:absolute; right:-2px; bottom:-2px; width:27px; height:27px; border-radius:50%; background:var(--green); border:3px solid #FBF3E3; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E"); background-size:15px; background-repeat:no-repeat; background-position:center; }
  .guarantee-inner h3 { position:relative; font-family:var(--display); font-size:clamp(26px,3.4vw,38px); font-weight:600; line-height:1.08; letter-spacing:-0.02em; margin-bottom:12px; color:var(--ink); }
  .guarantee-inner h3 .serif { font-family:var(--serif); font-style:italic; color:var(--accent); }
  .guarantee-promise { position:relative; max-width:46ch; margin:0 auto 24px; color:var(--ink-soft); font-size:15.5px; line-height:1.6; }
  .guarantee-trust { display:flex; flex-wrap:wrap; justify-content:center; gap:10px 22px; margin-bottom:28px; }
  .guarantee-trust span { display:inline-flex; align-items:center; gap:7px; font-size:13.5px; color:var(--ink-soft); font-weight:600; }
  .guarantee-trust span::before { content:'✓'; color:var(--green); font-weight:800; }
  .guarantee-actions { display:flex; flex-direction:column; align-items:center; gap:14px; position:relative; }
  .guarantee-terms { font-size:12.5px; color:var(--ink-muted); font-weight:500; transition:color 0.2s; }
  .guarantee-terms:hover { color:var(--accent); }
  @media (max-width: 768px) { .guarantee-inner { padding: 36px 24px 32px; } }

  /* ===== STICKY MOBILE CTA (added) ===== */
  .sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 84; background: rgba(245,239,230,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 14px; display: none; align-items: center; gap: 12px; transform: translateY(110%); transition: transform 0.35s var(--ease); }
  .sticky-cta.visible { transform: translateY(0); }
  .sticky-cta .sc-text { flex: 1; min-width: 0; }
  .sticky-cta .sc-text b { font-family: var(--display); font-weight: 600; font-size: 15px; display: block; line-height: 1.1; color: var(--ink); }
  .sticky-cta .sc-text span { font-size: 12px; color: var(--ink-muted); }
  @media (max-width: 860px) { .sticky-cta { display: flex; } .wa-float { bottom: 84px; } .scroll-top { bottom: 150px; } }

/* ===== LOADER ===== */

  /* ============================ THE LOADER ============================ */
  .setu-loader{
    position:fixed; inset:0; z-index:9999;
    display:flex; align-items:center; justify-content:center; flex-direction:column;
    background:var(--bg);
    transition:opacity .55s ease, visibility .55s ease;
  }
  .setu-loader.is-done{ opacity:0; visibility:hidden; }

  .loader-inner{ text-align:center; animation:introUp .85s cubic-bezier(.2,.75,.2,1) both; }
  @keyframes introUp{ from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:none;} }

  .bridge{ width:clamp(210px,42vw,300px); height:auto; display:block; margin:0 auto; overflow:visible; }


  .loader-word{
    font-family:var(--display); font-weight:700; font-size:clamp(30px,7vw,40px);
    letter-spacing:-0.035em; color:var(--ink); margin-top:20px; line-height:1;
  }
  .loader-dot{
    display:inline-block; width:8px; height:8px; border-radius:50%;
    background:var(--accent); margin-left:3px; vertical-align:baseline;
    animation:dotPulse 1.6s ease-in-out infinite;
  }
  @keyframes dotPulse{ 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.55);opacity:.55;} }

  .loader-hint{
    font-family:var(--mono); font-size:11px; letter-spacing:0.2em; text-transform:uppercase;
    color:var(--ink-muted); margin-top:16px;
  }
  .loader-hint .dots i{ font-style:normal; animation:blink 1.4s infinite both; }
  .loader-hint .dots i:nth-child(2){ animation-delay:.18s; }
  .loader-hint .dots i:nth-child(3){ animation-delay:.36s; }
  @keyframes blink{ 0%,80%,100%{opacity:.2;} 40%{opacity:1;} }

  @media (prefers-reduced-motion: reduce){
    .loader-inner,.loader-dot,.loader-hint .dots i{ animation:none; }
  }

/* ══════════════════════════════════════════════════════════════════════════════
   TRANSFORMATION SECTION
   ══════════════════════════════════════════════════════════════════════════════ */
.setu-transform { padding: 110px 0; position: relative; }
.st-head { margin-bottom: clamp(40px,5vw,64px); max-width: 720px; }
.st-sub { font-size: 17px; font-weight: 300; line-height: 1.6; color: var(--text-muted); max-width: 620px; }
.st-sub b { color: var(--text-soft); font-weight: 500; }

/* ── Teacher grid ── */
.st-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(18px,3.5vw,52px); }
.st-lab { font-family: var(--font-mono, monospace); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); display: flex; align-items: center; gap: 8px; margin: 0 2px 14px; }
.st-lab .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); }
.st-col-after .st-lab { color: var(--accent); }
.st-col-after .st-lab .dot { background: var(--accent); }

/* Before raw card */
.st-raw { background: var(--surface, #fff); border: 1px solid var(--line, #e5e5e5); border-radius: 20px; padding: 16px; box-shadow: 0 10px 30px -20px rgba(15,15,15,.28); }
.st-raw-media { position: relative; border-radius: 13px; overflow: hidden; background: var(--surface-2); aspect-ratio: 1/1; }
.st-raw-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-tag { position: absolute; top: 11px; right: 11px; font-family: var(--font-mono, monospace); font-size: 9.5px; letter-spacing: .14em; color: var(--text-muted); background: rgba(251,247,239,.85); border: 1px solid var(--line, #e5e5e5); padding: 4px 8px; border-radius: 6px; backdrop-filter: blur(4px); }
.st-file { display: flex; align-items: center; gap: 8px; margin-top: 13px; padding: 0 2px; }
.st-file svg { width: 15px; height: 15px; color: var(--text-muted); flex: none; }
.st-file span { font-family: var(--font-mono, monospace); font-size: 12px; color: var(--text-muted); }
.st-file .kb { margin-left: auto; opacity: .7; }

/* Cue / node */
.st-cue { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.st-cue-line { width: 1px; flex: 1; min-height: 26px; background: repeating-linear-gradient(var(--line, #e5e5e5) 0 4px, transparent 4px 9px); }
.st-node { width: 62px; height: 62px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: #fff; box-shadow: 0 12px 26px -8px rgba(199,62,29,.35); flex: none; }
.st-node svg { width: 24px; height: 24px; }
.st-cue-cap { font-family: var(--font-mono, monospace); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text); text-align: center; line-height: 1.7; }
.st-cue-cap small { display: block; color: var(--text-muted); font-size: 9px; letter-spacing: .1em; }

/* After — IG frame */
.st-ig { width: 100%; max-width: 400px; margin: 0 auto; background: #fff; border: 1px solid var(--line, #e5e5e5); border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px -28px rgba(15,15,15,.42); transition: transform .4s ease, box-shadow .4s ease; }
.st-ig:hover { transform: translateY(-5px); box-shadow: 0 34px 70px -30px rgba(15,15,15,.5); }
.st-ig-top { display: flex; align-items: center; gap: 10px; padding: 13px 15px; }
.st-ig-av { width: 38px; height: 38px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--gold, #D9A852), var(--accent)); display: grid; place-items: center; color: #fff; font-family: var(--font-display, sans-serif); font-weight: 900; font-size: 16px; box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px rgba(217,168,82,.2); }
.st-ig-who { display: flex; flex-direction: column; line-height: 1.25; }
.st-ig-who b { font-size: 14px; font-weight: 600; }
.st-ig-who span { font-family: var(--font-mono, monospace); font-size: 10px; color: var(--text-muted); }
.st-ig-dots { margin-left: auto; font-weight: 700; color: var(--text); }
.st-ig-media { aspect-ratio: 4/5; background: var(--surface-2); }
.st-ig-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-ig-acts { display: flex; align-items: center; gap: 15px; padding: 12px 15px 6px; }
.st-ig-acts svg { width: 23px; height: 23px; color: var(--text); }
.st-ig-acts .save { margin-left: auto; }
.st-ig-likes { padding: 0 15px 3px; font-size: 13px; font-weight: 600; color: var(--text); }
.st-ig-cap { padding: 2px 15px 4px; font-size: 13px; line-height: 1.5; }
.st-ig-cap b { font-weight: 600; }
.st-ig-comments { padding: 1px 15px 14px; font-size: 12px; color: var(--text-muted); }
.st-real { margin-top: 16px; font-family: var(--font-mono, monospace); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); text-align: center; }
.st-real b { color: var(--text); font-weight: 500; }

/* ── Flip cards ── */
.setu-more { padding-top: clamp(48px,6vw,72px); }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,28px); }
.flip { aspect-ratio: 73/100; perspective: 1400px; cursor: pointer; }
.flip:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 20px; }
.flip-in { position: relative; width: 100%; height: 100%; transition: transform .6s cubic-bezier(0.22,1,0.36,1); transform-style: preserve-3d; }
.flip.flipped .flip-in { transform: rotateY(180deg); }
.peek .flip-in { animation: peek 1.1s cubic-bezier(0.22,1,0.36,1) .3s 1; }
@keyframes peek { 0% { transform: none; } 45% { transform: rotateY(26deg); } 100% { transform: none; } }
.face { position: absolute; inset: 0; border-radius: 20px; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; border: 1px solid var(--line, #e5e5e5); box-shadow: 0 14px 34px -22px rgba(15,15,15,.4); background: #fff; display: flex; flex-direction: column; }
.face.back { transform: rotateY(180deg); background: var(--surface, #fafafa); }
.tp-head { display: flex; align-items: center; gap: 8px; padding: 10px 12px; flex: none; }
.tp-av { width: 26px; height: 26px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--gold, #D9A852), var(--accent)); display: grid; place-items: center; color: #fff; font-family: var(--font-display, sans-serif); font-weight: 900; font-size: 12px; }
.tp-head b { font-size: 12.5px; font-weight: 600; }
.tp-head .who span { display: block; font-family: var(--font-mono, monospace); font-size: 8px; letter-spacing: .06em; color: var(--text-muted); }
.tp-head .time { display: none; }
.tp-img { flex: 1; min-height: 0; background: var(--surface-2); }
.tp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-cap { flex: none; padding: 8px 12px 10px; font-size: 11.5px; line-height: 1.4; }
.tp-cap b { font-weight: 600; }
.tr-img { flex: 1; min-height: 0; position: relative; background: #fff; }
.tr-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tr-tag { position: absolute; top: 10px; right: 10px; font-family: var(--font-mono, monospace); font-size: 8.5px; letter-spacing: .12em; color: var(--text-muted); background: rgba(251,247,239,.85); border: 1px solid var(--line, #e5e5e5); padding: 3px 6px; border-radius: 5px; }
.tr-foot { flex: none; display: flex; align-items: center; gap: 7px; padding: 10px 12px; }
.tr-foot svg { width: 13px; height: 13px; color: var(--text-muted); flex: none; }
.tr-foot span { font-family: var(--font-mono, monospace); font-size: 10.5px; color: var(--text-muted); }
.tr-foot .kb { margin-left: auto; opacity: .7; }
/* Flip badge — labeled pill */
.flip-badge {
  position: absolute;
  top: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(251,247,239,.95);
  border: 1px solid var(--line, #e5e5e5);
  box-shadow: 0 2px 8px rgba(15,15,15,.12);
  font-family: var(--font-mono, monospace);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent);
  white-space: nowrap;
  pointer-events: none;
}
.face.front .flip-badge { right: 10px; }
.face.back  .flip-badge { left: 10px; }

.cap { margin-top: 14px; display: flex; align-items: baseline; gap: 8px; }
.cap b { font-family: var(--font-display, sans-serif); font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.cap span { font-family: var(--font-mono, monospace); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }

/* Cards hint line */
.st-flip-hint {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

/* Desktop hover tilt */
@media (hover: hover) and (pointer: fine) {
  .flip:not(.flipped):hover .flip-in { transform: rotateY(18deg); }
}

@media (max-width: 860px) {
  .setu-transform { padding: 72px 0; }
  .st-grid { grid-template-columns: 1fr; gap: 0; }
  .st-col-before, .st-col-after { max-width: 420px; margin: 0 auto; width: 100%; }
  .st-cue { flex-direction: row; justify-content: center; gap: 16px; padding: 22px 0; }
  .st-cue-line { width: 40px; height: 1px; min-height: 0; flex: none; background: repeating-linear-gradient(90deg, var(--line, #e5e5e5) 0 4px, transparent 4px 9px); }
  .st-node-arrow { transform: rotate(90deg); }
  .st-lab { justify-content: center; }
  .cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; max-width: 360px; }
}
@media (prefers-reduced-motion: reduce) {
  .flip-in, .st-ig { transition: none; }
  .peek .flip-in { animation: none; }
  .flip:not(.flipped):hover .flip-in { transform: none; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   GALLERY LIGHTBOX — shared between Made page and Home page
   ══════════════════════════════════════════════════════════════════════════════ */
.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 80px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  cursor: default;
}
.work-lightbox.is-open { opacity: 1; }

/* z-index: 1 so the arrows (z-index: 2) always render above the image */
.work-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  z-index: 1;
  transform: scale(0.95) translateY(16px);
  transition: transform 0.3s var(--ease);
}
.work-lightbox.is-open .work-lightbox-inner { transform: scale(1) translateY(0); }

/* No background — image floats directly over the dark overlay, no black box */
.work-lightbox video,
.work-lightbox .lb-img {
  width: 100%;
  max-height: 82vh;
  border-radius: 12px;
  display: block;
}
.work-lightbox .lb-img { object-fit: contain; }

.work-lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 239, 230, 0.12);
  border: 1px solid rgba(245, 239, 230, 0.25);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.25s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.work-lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(90deg) scale(1.08);
}

/* z-index: 2 ensures arrows render above image even when inner overlaps padding zone */
.work-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 239, 230, 0.14);
  border: 1px solid rgba(245, 239, 230, 0.3);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.25s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.work-lightbox-arrow.prev { left: 16px; }
.work-lightbox-arrow.next { right: 16px; }
.work-lightbox-arrow:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.1); }
.work-lightbox-arrow:disabled { opacity: 0.3; cursor: default; }
.work-lightbox-inner .lb-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-family: var(--display);
  letter-spacing: 0.1em;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .work-lightbox { padding: 60px 16px; }
  .work-lightbox-close { top: -44px; width: 36px; height: 36px; font-size: 18px; }
  .work-lightbox-arrow { width: 40px; height: 40px; font-size: 16px; }
  .work-lightbox-arrow.prev { left: 6px; }
  .work-lightbox-arrow.next { right: 6px; }
}

/* ── Home work section CTA below tiles ────────────────────────────────────── */
.work-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Honest numbers block (The Story page) ────────────────────────────────── */
.numbers-honest {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}
.numbers-honest-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted);
}
.numbers-honest-body strong { color: var(--ink); }

