/* ============================================================
   DOWSNUX — Design System
   ============================================================ */
:root{
  /* Color */
  --bg:           #06112B;
  --bg-2:         #0A1638;
  --surface:      #0E1B3F;
  --surface-2:    #142549;
  --line:         rgba(255,255,255,0.08);
  --line-strong:  rgba(255,255,255,0.16);

  --ink:          #F2F3F0;
  --ink-2:        #C9CFDD;
  --ink-muted:    #8B96B5;
  --ink-soft:     #5A6585;

  --gold:         #D4B36A;
  --gold-2:       #E8C77A;
  --gold-deep:    #A88543;
  --gold-glow:    rgba(212,179,106,0.18);

  --danger:       #E08572;
  --ok:           #7BC9A1;

  /* Type */
  --f-display:'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --f-body:   'Manrope', ui-sans-serif, system-ui, sans-serif;
  --f-mono:   'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Scale */
  --t-9: clamp(48px, 6.2vw, 96px);
  --t-8: clamp(40px, 4.4vw, 72px);
  --t-7: clamp(32px, 3.2vw, 52px);
  --t-6: clamp(26px, 2.4vw, 38px);
  --t-5: 22px;
  --t-4: 18px;
  --t-3: 16px;
  --t-2: 14px;
  --t-1: 12px;
  --t-0: 11px;

  /* Spacing rhythm */
  --pad-x: clamp(20px, 5vw, 88px);

  /* Radius */
  --r-1: 6px;
  --r-2: 10px;
  --r-3: 14px;
  --r-4: 20px;
  --r-5: 28px;

  --ease: cubic-bezier(.4, .14, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html, body{
  margin:0; padding:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--t-3);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img{ display:block; max-width:100%; }
button{ font-family: inherit; cursor: pointer; }

/* ------------ Utilities ------------ */
.wrap{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.eyebrow{
  font-family: var(--f-mono);
  font-size: var(--t-0);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:"";
  width: 28px; height: 1px; background: var(--gold);
  display: inline-block;
}
h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p{ margin: 0; }

.section{
  padding: clamp(80px, 9vw, 140px) 0;
  position: relative;
}
.section-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 30%, var(--line-strong) 70%, transparent);
  width: 100%;
}

/* ------------ Buttons ------------ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: all .35s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary{
  background: var(--gold);
  color: #1A1308;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 16px 40px -16px var(--gold-glow);
}
.btn-primary:hover{
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 22px 50px -18px rgba(212,179,106,0.4);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover{
  border-color: var(--gold);
  color: var(--gold);
}
.btn-sm{ padding: 11px 16px; font-size: 13px; }
.btn-arrow svg{ transition: transform .3s var(--ease); }
.btn-arrow:hover svg{ transform: translateX(3px); }

/* ------------ Cards & surfaces ------------ */
.card{
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: 28px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.card:hover{
  border-color: var(--line-strong);
}

/* ------------ Section header ------------ */
.section-head{
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 780px;
}
.section-head h2{
  font-size: var(--t-7);
}

/* ------------ Animations ------------ */
@keyframes fadeUp{
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse{
  0%,100%{ opacity:.4; }
  50%{ opacity: 1; }
}
@keyframes shimmer{
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* ------------ Navigation ------------ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all .35s var(--ease);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.nav.scrolled .nav-inner{
  padding: 10px 0;
}
.nav.scrolled{
  background: rgba(6,17,43,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand{
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.brand img{ height: 36px; width: auto; }
.brand-logo{
  height: 84px;
  width: auto;
  display: block;
  transition: height .3s var(--ease);
}
.nav.scrolled .brand-logo{
  height: 60px;
}
.footer-logo{
  height: 60px;
  width: auto;
  display: block;
}
.brand-tag{
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
  margin-left: 4px;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a{
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
  transition: color .25s var(--ease);
  position: relative;
}
.nav-links a:hover{ color: var(--gold); }
.nav-actions{
  display: flex; align-items: center; gap: 14px;
}
.lang-toggle{
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.lang-toggle button{
  background: transparent;
  border: 0;
  color: var(--ink-muted);
  padding: 6px 12px;
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.lang-toggle button.active{
  background: var(--gold);
  color: #1A1308;
}
@media (max-width: 920px){
  .nav-links{ display: none; }
}

/* ------------ Scroll progress ------------ */
.scroll-progress{
  position: fixed; top: 0; left: 0; height: 2px; z-index: 60;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  width: 0%;
  transition: width .15s linear;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: clamp(80px, 9vw, 140px);
  overflow: hidden;
}
.hero-bg{
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(212,179,106,0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 100%, rgba(107,127,168,0.10), transparent 60%);
}
.hero-grid-bg{
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
}
.hero-dots{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 24%, #000 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 24%, #000 70%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.dotted-surface{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-inner{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1080px){
  .hero-inner{ grid-template-columns: 1fr; gap: 48px; }
}
.hero h1{
  font-size: var(--t-9);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-top: 24px;
  margin-bottom: 28px;
}
.hero h1 .accent{
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  font-family: var(--f-display);
}
.hero h1 .strike{
  position: relative;
  white-space: nowrap;
}
.hero h1 .strike::after{
  content:"";
  position: absolute; left: -2%; right: -2%; top: 52%;
  height: 5px; background: var(--gold);
  border-radius: 99px;
  transform-origin: left;
  animation: strikeIn 1.2s var(--ease) 0.6s both;
}
@keyframes strikeIn{
  from{ transform: scaleX(0); }
  to  { transform: scaleX(1); }
}
.hero-sub{
  color: var(--ink-2);
  font-size: var(--t-5);
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-cta{
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-cta-meta{
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex; align-items: center; gap: 12px;
}
.hero-cta-meta .dot{ width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* Hero visual */
.hero-visual{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
.hero-stack{
  position: absolute; inset: 0;
}
.hero-card{
  position: absolute;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-4);
  background: linear-gradient(180deg, rgba(20,37,73,0.85) 0%, rgba(10,22,56,0.85) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 22px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6);
  transform-origin: center;
}
.hero-card.hc1{
  top: 0; left: 0; width: 78%;
  animation: floatA 9s ease-in-out infinite;
}
.hero-card.hc2{
  bottom: 18%; right: 0; width: 64%;
  animation: floatB 11s ease-in-out infinite;
}
.hero-card.hc3{
  bottom: 0; left: 8%; width: 56%;
  animation: floatA 13s ease-in-out infinite reverse;
}
@keyframes floatA{
  0%,100%{ transform: translateY(0) rotate(-1deg); }
  50%{    transform: translateY(-12px) rotate(0deg); }
}
@keyframes floatB{
  0%,100%{ transform: translateY(0) rotate(1.5deg); }
  50%{    transform: translateY(10px) rotate(0deg); }
}
.hc-head{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.hc-title{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hc-dots{ display:flex; gap:5px; }
.hc-dots span{
  width:7px; height:7px; border-radius:50%; background: var(--line-strong);
}
.hc-dots span:nth-child(1){ background: #E08572; }
.hc-dots span:nth-child(2){ background: var(--gold); }
.hc-dots span:nth-child(3){ background: var(--ok); }

.code-line{
  font-family: var(--f-mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
}
.code-line .tk-key{ color: #E8C77A; }
.code-line .tk-str{ color: #7BC9A1; }
.code-line .tk-mut{ color: var(--ink-muted); }
.code-line .cursor{
  display: inline-block;
  width: 7px; height: 14px;
  background: var(--gold);
  vertical-align: middle;
  animation: pulse 1.1s steps(2) infinite;
}

.metric-row{
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
}
.metric-row .m-val{
  font-family: var(--f-display); font-weight:600;
  font-size: 32px; color: var(--gold);
  letter-spacing: -0.02em;
}
.metric-row .m-unit{
  font-family: var(--f-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-muted);
}
.bar-row{ display:flex; flex-direction:column; gap: 10px; }
.bar{ position: relative; height: 7px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.bar > i{
  position: absolute; left:0; top:0; bottom:0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2));
  border-radius: 99px;
  animation: barGrow 1.6s var(--ease) forwards;
}
@keyframes barGrow{ from{ width: 0; } }
.bar-label{
  display:flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-muted);
}

/* AI chat preview card */
.chat-msg{
  display:flex; gap:10px; margin-bottom: 10px;
  font-size: 12.5px;
  align-items: flex-start;
}
.chat-av{
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface-2);
  flex-shrink: 0;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--f-mono); font-size: 9px;
  color: var(--gold);
  border: 1px solid var(--line);
}
.chat-msg.ai .chat-av{ background: var(--gold); color: #1A1308; border-color: var(--gold); }
.chat-bubble{
  background: rgba(255,255,255,0.04);
  padding: 8px 11px; border-radius: 10px;
  color: var(--ink-2);
  line-height: 1.4;
}
.chat-msg.ai .chat-bubble{
  background: var(--gold-glow);
  color: var(--ink);
}

/* Hero floating chips */
.hero-chip{
  position: absolute;
  padding: 8px 12px;
  background: rgba(20,37,73,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-chip .dot{ width: 6px; height: 6px; background: var(--ok); border-radius: 50%; }
.hero-chip.chip-1{ top: 4%; right: 4%; animation: floatA 8s ease-in-out infinite; }
.hero-chip.chip-2{ bottom: 8%; left: -4%; animation: floatB 10s ease-in-out infinite; }

/* ============================================================
   Marquee (clients strip + service ticker)
   ============================================================ */
.marquee{
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  gap: 64px;
  background: rgba(255,255,255,0.015);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track{
  display: flex; align-items: center; gap: 64px;
  animation: scroll 35s linear infinite;
  flex-shrink: 0;
  padding-left: 64px;
}
@keyframes scroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-100%); }
}
.marquee-item{
  display: flex; align-items: center; gap: 14px;
  white-space: nowrap;
  color: var(--ink-muted);
  font-family: var(--f-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.marquee-item .star{ color: var(--gold); }

/* ============================================================
   Value Prop (Section 3)
   ============================================================ */
.value-prop p{
  font-size: var(--t-5);
  color: var(--ink-2);
  max-width: 880px;
  line-height: 1.6;
  text-wrap: pretty;
}
.value-prop p + p{ margin-top: 22px; }
.value-prop .highlight{
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   Pain points (Section 5) - interactive
   ============================================================ */
.pain-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 780px){ .pain-grid{ grid-template-columns: 1fr; } }
.pain-card{
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  cursor: pointer;
  transition: all .3s var(--ease);
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.pain-card:hover{ border-color: var(--gold); transform: translateY(-2px); }
.pain-card.checked{
  background: linear-gradient(180deg, rgba(212,179,106,0.10), rgba(212,179,106,0.02));
  border-color: var(--gold);
  color: var(--ink);
}
.pain-check{
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
  margin-top: 1px;
}
.pain-card.checked .pain-check{
  background: var(--gold);
  border-color: var(--gold);
}
.pain-card.checked .pain-check svg{ color: #1A1308; }
.pain-card:not(.checked) .pain-check svg{ opacity: 0; transform: scale(0.6); }
.pain-card .pain-check svg{
  width: 14px; height: 14px;
  transition: all .25s var(--ease);
}
.pain-tally{
  margin-top: 32px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(212,179,106,0.12), rgba(107,127,168,0.06));
  border: 1px solid var(--gold);
  border-radius: var(--r-3);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pain-tally-text{ color: var(--ink); font-size: 16px; line-height: 1.5; max-width: 640px; }
.pain-tally-text strong{ color: var(--gold); }

/* ============================================================
   Solution (Section 6)
   ============================================================ */
.solution-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px){ .solution-layout{ grid-template-columns: 1fr; gap: 40px; } }
.solution-body{
  font-size: 17px; color: var(--ink-2); line-height: 1.65;
}
.solution-body p + p{ margin-top: 18px; }
.solution-body strong{ color: var(--ink); font-weight: 500; }
.solution-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.stat{
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
}
.stat-num{
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
}
.stat-label{
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

/* ============================================================
   Benefits (Section 7)
   ============================================================ */
.benefit-list{
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.benefit-row{
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding .35s var(--ease);
}
.benefit-row:hover{ padding-left: 16px; padding-right: 16px; }
.benefit-num{
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.benefit-text h3{
  font-size: var(--t-6);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.benefit-text p{
  color: var(--ink-muted);
  max-width: 720px;
  font-size: 15px;
}
.benefit-icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease);
  color: var(--ink-muted);
}
.benefit-row:hover .benefit-icon{
  background: var(--gold);
  border-color: var(--gold);
  color: #1A1308;
  transform: rotate(45deg);
}
@media (max-width: 720px){
  .benefit-row{ grid-template-columns: 44px 1fr; gap: 20px; padding: 24px 0; }
  .benefit-icon{ display: none; }
}

/* ============================================================
   Social proof (Section 8)
   ============================================================ */
.proof-head-meta{
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.proof-head-meta .bullet{ width:4px; height:4px; border-radius:50%; background: var(--gold); }
.proof-head-meta strong{ color: var(--gold); font-weight: 500; }

.testimonial-shell{
  position: relative;
  margin-top: 48px;
  padding: 56px clamp(28px, 4vw, 64px);
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  min-height: 360px;
  overflow: hidden;
}
.testimonial-shell::before{
  content: "";
  position: absolute; top: 24px; left: 36px;
  font-family: var(--f-display);
  font-size: 200px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.10;
  pointer-events: none;
}
.testimonial-shell::before{ content: open-quote; }
.testimonial-slide{
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 780px){
  .testimonial-slide{ grid-template-columns: 1fr; gap: 24px; }
}
.testimonial-body{ position: relative; }
.testimonial-tag{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.testimonial-quote{
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author{
  display: flex; flex-direction: column;
  gap: 2px;
}
.author-name{
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--ink);
  font-size: 15px;
}
.author-role{
  color: var(--ink-muted);
  font-size: 13px;
}
.testimonial-aside{
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
  padding-left: 36px;
  border-left: 1px solid var(--line);
}
@media (max-width: 780px){
  .testimonial-aside{ padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}
.testimonial-result{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.testimonial-result-num{
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.testimonial-result-sub{
  color: var(--ink-2);
  font-size: 14px;
  max-width: 200px;
}

.testimonial-controls{
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
}
.testimonial-dots{
  display: flex; gap: 8px;
}
.testimonial-dot{
  width: 36px; height: 3px; border-radius: 99px;
  background: var(--line-strong);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.testimonial-dot.active{ background: var(--gold); }
.testimonial-nav{
  display: flex; gap: 8px;
}
.testimonial-nav button{
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.testimonial-nav button:hover{ border-color: var(--gold); color: var(--gold); }

.client-logos{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
@media (max-width: 780px){ .client-logos{ grid-template-columns: repeat(2, 1fr); } }
.client-logo{
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  display: flex; align-items: center; justify-content: center;
  min-height: 110px;
  transition: all .3s var(--ease);
}
.client-logo:hover{ border-color: var(--line-strong); background: rgba(255,255,255,0.04); }
.client-logo img{
  max-height: 50px; max-width: 80%;
  width: auto; height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity .3s var(--ease);
}
.client-logo:hover img{ opacity: 1; }
.client-logo.preserve img{ filter: none; opacity: 1; }

/* ============================================================
   Offer (Section 9)
   ============================================================ */
.offer-card{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--gold);
  border-radius: var(--r-5);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(212,179,106,0.04) 0%, rgba(6,17,43,1) 100%);
}
@media (max-width: 920px){ .offer-card{ grid-template-columns: 1fr; } }
.offer-left{
  padding: clamp(36px, 5vw, 64px);
}
.offer-left h3{
  font-size: var(--t-7);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.offer-lede{
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 540px;
}
.offer-features{
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
@media (max-width: 640px){ .offer-features{ grid-template-columns: 1fr; } }
.offer-features li{
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.4;
}
.offer-features li svg{
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.offer-right{
  background:
    radial-gradient(ellipse at top right, rgba(212,179,106,0.10), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: clamp(36px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px;
  border-left: 1px solid var(--line);
}
@media (max-width: 920px){ .offer-right{ border-left: 0; border-top: 1px solid var(--line); } }
.offer-price-label{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.offer-price{
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1.1;
}
.offer-price-sub{
  color: var(--ink-muted);
  font-size: 14px;
  margin-top: 8px;
  max-width: 260px;
  line-height: 1.5;
}
.offer-meta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.offer-meta-item{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.offer-meta-item strong{
  display: block;
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-top: 4px;
  font-weight: 500;
}
.offer-extra{
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   Objections (Section 10) - accordion
   ============================================================ */
.obj-list{
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 40px;
}
.obj-item{
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  background: var(--surface);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.obj-item.open{ border-color: var(--gold); }
.obj-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: var(--t-5);
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  gap: 24px;
}
.obj-head .obj-quote-mark{
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 48px;
}
.obj-head .obj-chev{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.obj-item.open .obj-chev{
  background: var(--gold);
  color: #1A1308;
  transform: rotate(180deg);
}
.obj-body{
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.obj-body-inner{
  padding: 0 28px 28px 76px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}
.obj-item.open .obj-body{ max-height: 400px; }

/* ============================================================
   Guarantee (Section 11)
   ============================================================ */
.guarantee{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px clamp(32px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  background:
    radial-gradient(ellipse at left, rgba(212,179,106,0.08), transparent 70%),
    var(--surface);
  position: relative;
  overflow: hidden;
}
@media (max-width: 780px){ .guarantee{ grid-template-columns: 1fr; gap: 24px; padding: 36px; } }
.shield{
  width: 180px; height: 180px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.shield-ring{
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: ringRotate 30s linear infinite;
}
.shield-ring::before, .shield-ring::after{
  content:""; position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.shield-ring::before{ top: -4px; left: 50%; transform: translateX(-50%); }
.shield-ring::after{ bottom: -4px; left: 50%; transform: translateX(-50%); }
@keyframes ringRotate{
  from{ transform: rotate(0); }
  to  { transform: rotate(360deg); }
}
.shield-core{
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(180deg, rgba(212,179,106,0.18), rgba(6,17,43,0.6));
  border: 1px solid var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.shield-num{
  font-family: var(--f-display);
  font-size: 60px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.shield-unit{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.guarantee-body h3{
  font-size: var(--t-6);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.guarantee-body p{
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
}

/* ============================================================
   Urgency (Section 12)
   ============================================================ */
.urgency{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 780px){ .urgency{ grid-template-columns: 1fr; } }
.urgency-card{
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  position: relative;
}
.urgency-card .u-tag{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.urgency-card h3{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  line-height: 1.25;
}
.urgency-card p{
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.urgency-meter{
  margin-top: 24px;
  display: flex; gap: 4px;
}
.urgency-meter span{
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
}
.urgency-meter span.filled{ background: var(--gold); }

/* ============================================================
   FAQ (Section 13)
   ============================================================ */
.faq-layout{
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 920px){ .faq-layout{ grid-template-columns: 1fr; } }
.faq-aside{
  position: sticky;
  top: 100px;
}
.faq-aside .eyebrow{ margin-bottom: 16px; }
.faq-aside h2{
  font-size: var(--t-7);
  margin-bottom: 20px;
}
.faq-aside p{
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.faq-list{
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  gap: 24px;
  transition: color .25s var(--ease);
}
.faq-q:hover{ color: var(--gold); }
.faq-q .plus{
  width: 16px; height: 16px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position: absolute;
  background: currentColor;
  transition: transform .35s var(--ease);
}
.faq-q .plus::before{ left: 0; right: 0; top: 50%; height: 1.5px; }
.faq-q .plus::after{ top: 0; bottom: 0; left: 50%; width: 1.5px; }
.faq-item.open .faq-q{ color: var(--gold); }
.faq-item.open .faq-q .plus::after{ transform: rotate(90deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}
.faq-a-inner{ padding: 0 0 24px; max-width: 620px; }
.faq-item.open .faq-a{ max-height: 500px; }

/* ============================================================
   Final CTA (Section 14)
   ============================================================ */
.final-cta{
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.final-cta-bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212,179,106,0.18), transparent 60%);
}
.final-cta-inner{
  position: relative;
  text-align: center;
  max-width: 920px; margin: 0 auto;
}
.final-cta h2{
  font-size: var(--t-8);
  margin-bottom: 24px;
  line-height: 1.05;
}
.final-cta-lede{
  color: var(--ink-2);
  font-size: var(--t-5);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 40px;
}
.final-cta-meta{
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.final-cta-meta .dot{ width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* ============================================================
   PS (Section 15)
   ============================================================ */
.ps-block{
  padding: 56px clamp(32px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  background: var(--surface);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
}
@media (max-width: 720px){ .ps-block{ grid-template-columns: 1fr; gap: 16px; } }
.ps-label{
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.03em;
  font-style: italic;
}
.ps-body{
  font-size: 17px; line-height: 1.65;
  color: var(--ink-2);
}
.ps-body a{ color: var(--gold); text-decoration: none; }

/* ============================================================
   Footer
   ============================================================ */
.footer{
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  margin-top: 64px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 780px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-col h4{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a{
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  transition: color .25s var(--ease);
}
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand{ display: flex; flex-direction: column; gap: 18px; max-width: 320px; }
.footer-brand img{ height: 44px; width: auto; }
.footer-brand p{ color: var(--ink-muted); font-size: 14px; line-height: 1.55; }

/* ============================================================
   Contact Modal
   ============================================================ */
.modal-overlay{
  position: fixed; inset: 0; z-index: 100;
  background: rgba(3, 8, 22, 0.72);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-overlay.open{ opacity: 1; pointer-events: auto; }
.modal{
  width: 100%; max-width: 540px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-4);
  padding: 40px;
  transform: translateY(20px);
  transition: transform .35s var(--ease);
  position: relative;
}
.modal-overlay.open .modal{ transform: translateY(0); }
.modal-close{
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover{ border-color: var(--gold); color: var(--gold); }
.modal h3{
  font-size: 26px;
  margin-bottom: 8px;
}
.modal-lede{ color: var(--ink-muted); margin-bottom: 28px; font-size: 14.5px; }
.field{ margin-bottom: 16px; }
.field label{
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea{
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--r-2);
  font-family: var(--f-body);
  font-size: 15px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.field.error input, .field.error select, .field.error textarea{
  border-color: var(--danger);
}
.field-error{
  margin-top: 6px;
  font-size: 12px;
  color: var(--danger);
}
.modal .btn{ width: 100%; justify-content: center; margin-top: 8px; }
.lgpd-note{
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.modal-success{
  text-align: center;
  padding: 24px 0;
}
.submit-error{
  margin: 4px 0 14px;
  padding: 10px 14px;
  border: 1px solid var(--danger);
  background: rgba(224,133,114,0.08);
  border-radius: var(--r-2);
  color: var(--danger);
  font-size: 13px;
  line-height: 1.5;
}
.btn[disabled]{
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.modal-success .ok-ring{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #1A1308;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ============================================================
   Misc
   ============================================================ */
::selection{ background: var(--gold); color: #1A1308; }
