  :root {
    --bg: #F5EFE6; --surface: #FBF7EF; --surface-2: #EFE8DB;
    --ink: #0F0F0F; --ink-soft: #3D3833; --ink-muted: #8B8278;
    --line: #E5DDD0; --line-soft: #EFE8DB;
    --accent: #C73E1D; --accent-2: #E54E2D;
    --accent-soft: rgba(199, 62, 29, 0.08);
    --gold: #D9A852; --gold-soft: rgba(217, 168, 82, 0.12);
    --green: #25D366;
    --display: 'Satoshi', sans-serif; --serif: 'Satoshi', sans-serif;
    --body: 'Geist', sans-serif; --mono: 'Geist Mono', monospace;
    --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: 16.5px; }
  @media (max-width: 640px) { body { font-size: 16px; line-height: 1.6; } }
  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 { background: var(--accent); color: white; }

  /* === PROMO STRIP === */
  .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: 640px) { .promo-strip { padding: 9px 0; } .promo-item { font-size: 11px; padding: 0 20px; gap: 10px; } .promo-item strong { font-size: 12px; } .promo-item .promo-code { font-size: 10px; padding: 2px 7px; } }

  /* === 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; }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; margin: 0; padding: 0; }
  .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-links a.active { color: var(--accent); font-weight: 600; }
  .nav-links a.active::after { width: 100%; }
  .nav-cta { background: var(--accent); color: white; padding: 10px 22px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.3s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
  .nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 8px 16px -4px var(--accent-glow); }
  .nav-cta .arrow { transition: transform 0.25s var(--ease); }
  .nav-cta:hover .arrow { transform: translateX(2px); }
  @media (max-width: 880px) { .nav-links { display: none !important; } .nav-cta { display: none !important; } }

  /* === HERO === */
  .ask-hero { padding: 90px 0 70px; position: relative; }
  .ask-hero-eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
  .ask-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
  .ask-hero h1 { font-family: var(--display); font-size: clamp(44px, 6vw, 80px); font-weight: 600; line-height: 0.96; letter-spacing: -0.045em; color: var(--ink); margin-bottom: 28px; max-width: 18ch; }
  .ask-hero h1 .serif { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--accent); }
  .ask-hero p { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); line-height: 1.55; max-width: 580px; margin-bottom: 36px; }
  .ask-hero-meta { display: flex; flex-wrap: wrap; gap: 14px 28px; font-family: var(--mono); font-size: 12px; color: var(--ink-muted); letter-spacing: 0.06em; text-transform: uppercase; }
  .ask-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
  .ask-hero-meta span::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
  @media (max-width: 640px) { .ask-hero { padding: 60px 0 50px; } .ask-hero h1 { font-size: clamp(40px, 11vw, 56px); } }

  /* === FAQ CATEGORY SECTIONS === */
  .ask-cat { padding: 80px 0; border-top: 1px solid var(--line); }
  .ask-cat:nth-of-type(odd) { background: var(--surface); }
  .ask-cat-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 80px; align-items: start; }
  .ask-cat-side { position: sticky; top: 110px; }
  .ask-cat-eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
  .ask-cat-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
  .ask-cat-title { font-family: var(--display); font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 16px; }
  .ask-cat-title .serif { font-family: var(--serif); font-style: italic; color: var(--accent); }
  .ask-cat-lead { font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 380px; }
  .ask-cat-count { display: inline-block; margin-top: 16px; padding: 4px 12px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; font-family: var(--mono); font-size: 11px; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; }

  .faq-list { display: block; }
  .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 height animation + .faq-answer-inner fade-slide handled by global.css + global.js */
  .faq-answer-inner { padding: 0 0 24px 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; max-width: 720px; }
  .faq-answer-inner strong { color: var(--ink); font-weight: 600; }
  .faq-answer-inner a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent-soft); }
  .faq-answer-inner a:hover { border-bottom-color: var(--accent); }

  @media (max-width: 900px) {
    .ask-cat { padding: 60px 0; }
    .ask-cat-grid { grid-template-columns: 1fr; gap: 32px; }
    .ask-cat-side { position: static; }
    .faq-question { font-size: 16px; padding: 18px 0; }
    .faq-answer-inner { font-size: 14.5px; padding-bottom: 20px; }
  }

  /* === CLOSING CTA SLAB === */
  .ask-close { background: var(--ink); color: var(--bg); padding: 90px 0; }
  .ask-close-inner { max-width: 720px; margin: 0 auto; text-align: center; }
  .ask-close-eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; display: inline-flex; align-items: center; gap: 12px; }
  .ask-close-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
  .ask-close h2 { font-family: var(--display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 18px; }
  .ask-close h2 .serif { font-family: var(--serif); font-style: italic; color: var(--gold); }
  .ask-close p { font-size: 16.5px; line-height: 1.6; color: rgba(245, 239, 230, 0.75); margin-bottom: 32px; }
  .ask-close-cta { display: inline-flex; align-items: center; gap: 12px; background: var(--green); color: white; padding: 16px 32px; border-radius: 999px; font-family: var(--body); font-size: 15.5px; font-weight: 600; text-decoration: none; transition: all 0.3s var(--ease); box-shadow: 0 14px 40px -12px rgba(37, 211, 102, 0.4); }
  .ask-close-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 48px -10px rgba(37, 211, 102, 0.5); }
  .ask-close-meta { margin-top: 24px; font-family: var(--mono); font-size: 11.5px; color: rgba(245, 239, 230, 0.5); letter-spacing: 0.08em; }

  /* === FOOTER === */
  footer { background: var(--ink); color: var(--bg); padding: 80px 0 32px; }
  .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(245, 239, 230, 0.1); }
  .footer-brand .logo { color: var(--bg); font-size: 28px; }
  .footer-brand p { color: rgba(245, 239, 230, 0.65); font-size: 14px; line-height: 1.6; margin: 18px 0 22px; max-width: 320px; }
  .socials { display: flex; gap: 12px; }
  .socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(245, 239, 230, 0.08); display: inline-flex; align-items: center; justify-content: center; color: var(--bg); text-decoration: none; font-size: 14px; transition: background 0.2s, transform 0.2s; }
  .socials a:hover { background: var(--accent); transform: translateY(-2px); }
  .footer-col h5 { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 239, 230, 0.5); margin-bottom: 18px; }
  .footer-col ul { list-style: none; padding: 0; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(245, 239, 230, 0.85); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-family: var(--mono); font-size: 12px; color: rgba(245, 239, 230, 0.45); letter-spacing: 0.04em; flex-wrap: wrap; gap: 12px; }
  .footer-bottom .made span { color: var(--accent); }
  @media (max-width: 880px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
  }

  /* === FLOATING WHATSAPP === */
  .wa-fab { position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 95; box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5); text-decoration: none; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
  .wa-fab:hover { transform: scale(1.08); box-shadow: 0 18px 44px -8px rgba(37, 211, 102, 0.6); }
  .wa-fab svg { width: 28px; height: 28px; fill: white; }
  @media (max-width: 600px) { .wa-fab { right: 16px; bottom: 16px; width: 50px; height: 50px; } .wa-fab svg { width: 24px; height: 24px; } }

  /* === REVEAL ANIMATIONS === */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal[data-delay="1"] { transition-delay: 0.08s; }
  .reveal[data-delay="2"] { transition-delay: 0.16s; }
  .reveal[data-delay="3"] { transition-delay: 0.24s; }

  /* === 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; } }

  .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); 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-size: 24px; }
  .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); 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: var(--surface); 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-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; }
  .mobile-menu-foot a:hover { color: var(--accent); }

    .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; } }

  @media (prefers-reduced-motion: reduce) {
    .promo-track { animation: none; }
    .reveal { transition: none; transform: none; opacity: 1; }
    .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; }
  }