/* ============ TOKENS ============ */
:root{
  --brand: #E8590A;
  --brand-light: #FEF0E7;
  --brand-dark: #A33D05;
  --text-primary:  #1C1917;
  --text-muted:    #78716C;
  --surface:       #F5F4F2;
  --white:         #FFFFFF;
  --border:        #E7E5E4;
  --radius-card:   16px;
  --radius-btn:    10px;
  --font:          'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(28,25,23,.04), 0 1px 1px rgba(28,25,23,.03);
  --shadow-md: 0 6px 24px -8px rgba(28,25,23,.10), 0 2px 6px rgba(28,25,23,.05);
  --shadow-lg: 0 20px 48px -16px rgba(232,89,10,.22), 0 8px 20px -8px rgba(28,25,23,.08);
}

/* Theme overrides */
[data-theme="azul"]{
  --brand: #1D4ED8;
  --brand-light: #EFF6FF;
  --brand-dark: #1E40AF;
}
[data-theme="verde"]{
  --brand: #16A34A;
  --brand-light: #F0FDF4;
  --brand-dark: #15803D;
}
[data-theme="roxo"]{
  --brand: #7C3AED;
  --brand-light: #F5F3FF;
  --brand-dark: #6D28D9;
}
[data-theme="grafite"]{
  --brand: #374151;
  --brand-light: #F9FAFB;
  --brand-dark: #1F2937;
}

/* ============ RESET ============ */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font);
  font-size:17px;
  line-height:1.55;
  color:var(--text-primary);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer;border:none;background:none}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,p{margin:0}

/* ============ LAYOUT ============ */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
@media (min-width:768px){
  .container{padding:0 40px}
}

section{padding:72px 0}
@media (min-width:768px){ section{padding:112px 0} }

.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  letter-spacing:.04em;
  color:var(--brand);
  text-transform:uppercase;
  margin-bottom:16px;
}
.section-title{
  font-size:clamp(28px,4vw,44px);
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.1;
  margin-bottom:16px;
  text-wrap:balance;
}
.section-sub{
  font-size:clamp(16px,2vw,19px);
  color:var(--text-muted);
  max-width:620px;
  text-wrap:pretty;
}
.section-head{margin-bottom:56px}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:600;
  font-size:16px;
  padding:14px 22px;
  border-radius:var(--radius-btn);
  transition:transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space:nowrap;
  line-height:1;
}
.btn-primary{
  background:var(--brand);
  color:var(--white);
  box-shadow:0 1px 2px rgba(163,61,5,.2), inset 0 -1px 0 rgba(0,0,0,.1);
}
.btn-primary:hover{background:var(--brand-dark);transform:translateY(-1px);box-shadow:0 6px 16px -4px rgba(232,89,10,.45)}
.btn-primary:active{transform:translateY(0)}

.btn-ghost{
  background:transparent;
  color:var(--text-primary);
  padding:14px 16px;
}
.btn-ghost:hover{color:var(--brand)}

.btn-secondary{
  background:var(--white);
  color:var(--text-primary);
  border:1px solid var(--border);
}
.btn-secondary:hover{border-color:var(--text-primary)}

.btn-lg{font-size:17px;padding:18px 28px}

/* ============ NAV ============ */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(12px);
  -webkit-backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease;
}
.nav.scrolled{border-bottom-color:var(--border)}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
  gap:24px;
}
.logo{
  font-size:22px;
  font-weight:700;
  letter-spacing:-.03em;
  color:var(--text-primary);
}
.logo .dot{color:var(--brand)}

.nav-links{
  display:none;
  gap:4px;
  list-style:none;
  padding:0;
  margin:0;
}
@media (min-width:960px){
  .nav-links{display:flex}
}
.nav-links a{
  display:inline-block;
  padding:10px 14px;
  font-size:15px;
  font-weight:500;
  color:var(--text-muted);
  border-radius:8px;
  transition:color .15s ease, background .15s ease;
}
.nav-links a:hover{color:var(--text-primary);background:var(--surface)}

.nav-ctas{display:flex;align-items:center;gap:4px}
.nav-ctas .btn-ghost{display:none}
@media (min-width:640px){ .nav-ctas .btn-ghost{display:inline-flex} }

.hamburger{
  display:inline-flex;
  width:44px;height:44px;
  align-items:center;justify-content:center;
  border-radius:10px;
  font-size:24px;
  color:var(--text-primary);
}
.hamburger:hover{background:var(--surface)}
@media (min-width:960px){ .hamburger{display:none} }

.mobile-menu{
  position:fixed;
  inset:72px 0 0 0;
  background:var(--white);
  padding:24px;
  z-index:99;
  transform:translateY(-8px);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  border-top:1px solid var(--border);
}
.mobile-menu.open{opacity:1;transform:none;pointer-events:auto}
.mobile-menu a{
  display:block;
  padding:16px 4px;
  font-size:18px;
  font-weight:500;
  border-bottom:1px solid var(--border);
}
.mobile-menu .btn{width:100%;margin-top:20px}

/* ============ HERO ============ */
.hero{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  min-height:70vh;
  display:flex;
  align-items:center;
  padding:80px 0 112px;
  color:var(--white);
  isolation:isolate;
  overflow:hidden;
}
@media (min-width:900px){
  .hero{min-height:90vh;padding:120px 0 144px}
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background-image:url('https://static.vecteezy.com/ti/fotos-gratis/p1/75899742-o-negocio-mulher-dentro-cidade-feliz-e-retrato-ao-ar-livre-para-trabalhando-em-criativo-carreira-ou-trabalho-face-empreendedor-e-confiante-pessoa-profissional-desenhador-e-empregado-sorrir-em-urbano-telhado-dentro-brasil-foto.jpg');
  background-size:cover;
  background-position:center 30%;
  z-index:-2;
  animation:slowZoom 22s ease-in-out infinite alternate;
}
.hero::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.35) 80%, rgba(0,0,0,0.2) 100%);
  z-index:-1;
}
@keyframes slowZoom{from{transform:scale(1)}to{transform:scale(1.08)}}

.hero-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  width:100%;
}
@media (min-width:768px){ .hero-inner{padding:0 40px} }

.hero-content{
  max-width:640px;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(16,185,129,.18);
  border:1px solid rgba(52,211,153,.5);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  padding:10px 16px 10px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:#6EE7B7;
  margin-bottom:28px;
  letter-spacing:.01em;
}
.hero-eyebrow .dot{
  width:8px;height:8px;border-radius:50%;
  background:#34D399;
  box-shadow:0 0 0 4px rgba(52,211,153,.25);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 4px rgba(52,211,153,.25)}
  50%{box-shadow:0 0 0 8px rgba(52,211,153,.05)}
}

.hero h1{
  font-size:clamp(40px,6.4vw,76px);
  font-weight:700;
  letter-spacing:-.035em;
  line-height:1;
  margin-bottom:24px;
  text-wrap:balance;
  color:var(--white);
  text-shadow:0 2px 40px rgba(0,0,0,.35);
}
.hero p.lede{
  font-size:clamp(17px,2vw,22px);
  color:rgba(255,255,255,.7);
  line-height:1.45;
  margin-bottom:36px;
  max-width:560px;
  text-wrap:pretty;
}
.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.hero .btn-secondary{
  background:rgba(255,255,255,.1);
  color:var(--white);
  border:1px solid rgba(255,255,255,.3);
  backdrop-filter:blur(8px);
}
.hero .btn-secondary:hover{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.5)}

/* Hero entry animation */
@media (prefers-reduced-motion: no-preference){
  .hero-eyebrow, .hero h1, .hero p.lede, .hero-ctas{
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp .8s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-eyebrow{animation-delay:.1s}
  .hero h1{animation-delay:.2s}
  .hero p.lede{animation-delay:.35s}
  .hero-ctas{animation-delay:.5s}
}
@keyframes fadeUp{to{opacity:1;transform:none}}

/* ============ STICKY BOTTOM BAR ============ */
.sticky-bar{
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:50;
  background:var(--brand);
  color:var(--white);
  box-shadow:0 -8px 32px -8px rgba(28,25,23,.25);
  transform:translateY(0);
  transition:transform .3s cubic-bezier(0.4,0,0.2,1);
}
.sticky-bar.hidden{transform:translateY(100%)}
.sticky-bar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 20px 12px 20px;
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
@media (min-width:900px){
  .sticky-bar-inner{padding:14px 56px 14px 24px;flex-wrap:nowrap;gap:20px}
}
.sticky-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(0,0,0,.18);
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  white-space:nowrap;
  flex:0 0 auto;
}
.sticky-badge .pulse{
  width:8px;height:8px;border-radius:50%;
  background:#34D399;
  animation:stickyPulse 1.6s ease-in-out infinite;
}
@keyframes stickyPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(52,211,153,.7)}
  50%{box-shadow:0 0 0 6px rgba(52,211,153,0)}
}
.sticky-copy{
  flex:1;
  font-size:14px;
  font-weight:500;
  line-height:1.35;
  min-width:0;
}
.sticky-copy strong{font-weight:700}
.sticky-copy-desktop{display:none}
.sticky-copy-mobile{display:block}
@media (min-width:900px){
  .sticky-copy{font-size:15px}
  .sticky-copy-desktop{display:block}
  .sticky-copy-mobile{display:none}
}
.sticky-cta{
  background:var(--white);
  color:var(--brand);
  padding:12px 20px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  transition:transform .15s ease, box-shadow .2s ease;
  flex:1 0 100%;
  justify-content:center;
}
@media (min-width:560px){.sticky-cta{flex:0 0 auto}}
.sticky-cta:hover{transform:translateY(-1px);box-shadow:0 6px 14px -4px rgba(0,0,0,.25)}
.sticky-close{
  background:transparent;
  color:rgba(255,255,255,.7);
  width:32px;height:32px;
  border-radius:8px;
  display:inline-grid;
  place-items:center;
  font-size:18px;
  transition:background .2s ease, color .2s ease;
  flex:0 0 auto;
  position:absolute;
  top:6px;right:8px;
}
@media (min-width:900px){
  .sticky-close{position:static}
}
.sticky-close:hover{background:rgba(0,0,0,.18);color:var(--white)}

body{padding-bottom:140px}
@media (min-width:560px){body{padding-bottom:96px}}
@media (min-width:900px){body{padding-bottom:72px}}

/* ============ PRODUCT CARDS (overlapping hero) ============ */
.products-float{
  position:relative;
  margin-top:-120px;
  z-index:5;
  background:transparent;
  padding:0 0 72px;
}
@media (min-width:900px){
  .products-float{margin-top:-150px;padding:0 0 112px}
}
.products-float .product-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
@media (min-width:768px){
  .products-float .product-grid{grid-template-columns:repeat(3,1fr);gap:24px}
}
.products-float .product-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  padding:32px 28px;
  box-shadow:0 20px 50px -20px rgba(28,25,23,.18), 0 4px 10px -4px rgba(28,25,23,.06);
}

/* ============ TRUST BAR ============ */
.trust{
  background:var(--brand);
  color:var(--white);
  padding:20px 0;
}
.trust-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px 24px;
}
@media (min-width:768px){
  .trust-row{grid-template-columns:repeat(4,1fr)}
}
.trust-item{
  display:flex;align-items:center;gap:10px;
  font-size:14px;font-weight:500;
}
.trust-item i{font-size:22px;opacity:.9;flex:0 0 auto}

/* ============ PRODUCTS ============ */
.products{background:var(--white)}
.product-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
@media (min-width:768px){
  .product-grid{grid-template-columns:repeat(3,1fr);gap:24px}
}
.product-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  padding:32px;
  display:flex;
  flex-direction:column;
  gap:16px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative;
  overflow:hidden;
}
.product-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:transparent;
}
.product-card::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, var(--brand-light) 0%, transparent 40%);
  opacity:0;
  transition:opacity .25s ease;
  pointer-events:none;
}
.product-card:hover::before{opacity:.5}
.product-card > *{position:relative}

.product-icon{
  width:56px;height:56px;border-radius:14px;
  background:var(--brand-light);
  color:var(--brand);
  display:grid;place-items:center;
  font-size:28px;
  margin-bottom:8px;
}
.product-card h3{
  font-size:22px;font-weight:700;letter-spacing:-.015em;
}
.product-card p{color:var(--text-muted);font-size:15px;line-height:1.5}

.product-highlight{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--surface);
  padding:8px 12px;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  color:var(--brand-dark);
  margin-top:auto;
  width:fit-content;
}
.product-highlight i{font-size:16px}

.product-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  color:var(--brand);
  padding-top:8px;
  border-top:1px solid var(--border);
  margin-top:8px;
}
.product-cta i{transition:transform .2s ease}
.product-card:hover .product-cta i{transform:translateX(4px)}

/* ============ STEPS ============ */
.steps{background:var(--surface)}
.steps-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  position:relative;
}
@media (min-width:768px){
  .steps-grid{grid-template-columns:repeat(3,1fr);gap:24px}
}
.step{
  display:flex;
  flex-direction:column;
  gap:12px;
  position:relative;
}
.step-num{
  font-size:64px;
  font-weight:700;
  color:var(--brand);
  line-height:.9;
  letter-spacing:-.04em;
  opacity:.9;
}
.step-icon{
  width:44px;height:44px;
  border-radius:12px;
  background:var(--white);
  color:var(--brand);
  display:grid;place-items:center;
  font-size:24px;
  border:1px solid var(--border);
  margin-bottom:4px;
}
.step h3{font-size:22px;font-weight:700;letter-spacing:-.015em}
.step p{color:var(--text-muted);font-size:16px}

/* connector line desktop */
@media (min-width:768px){
  .steps-grid::before{
    content:"";
    position:absolute;
    top:32px;
    left:16.66%;
    right:16.66%;
    height:2px;
    background:repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
    z-index:0;
  }
  .steps-grid.visible::before{
    animation:drawLine 1s ease .2s forwards;
  }
}
@keyframes drawLine{
  from{clip-path:inset(0 100% 0 0)}
  to{clip-path:inset(0 0 0 0)}
}

/* ============ SIMULATOR ============ */
.simulator{background:var(--surface)}
.sim-wrap{
  max-width:720px;
  margin:0 auto;
  background:var(--white);
  border-radius:24px;
  padding:32px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
}
@media (min-width:768px){
  .sim-wrap{padding:48px}
}
.sim-tabs{
  display:flex;
  background:var(--surface);
  padding:4px;
  border-radius:12px;
  margin-bottom:32px;
  gap:2px;
}
.sim-tab{
  flex:1;
  padding:12px 8px;
  font-size:14px;
  font-weight:600;
  color:var(--text-muted);
  border-radius:8px;
  transition:background .2s ease, color .2s ease;
}
@media (min-width:480px){ .sim-tab{font-size:15px;padding:12px 16px} }
.sim-tab.active{
  background:var(--white);
  color:var(--text-primary);
  box-shadow:var(--shadow-sm);
}

.sim-field{margin-bottom:24px}
.sim-label{
  display:block;
  font-size:14px;font-weight:600;
  margin-bottom:10px;
  color:var(--text-primary);
}
.sim-input-wrap{
  position:relative;
  display:flex;
  align-items:center;
  background:var(--surface);
  border-radius:12px;
  border:1px solid transparent;
  transition:border-color .2s ease, background .2s ease;
  overflow:hidden;
}
.sim-input-wrap:focus-within{
  border-color:var(--brand);
  background:var(--white);
  box-shadow:0 0 0 4px rgba(232,89,10,.12);
}
.sim-prefix{
  padding:0 4px 0 18px;
  font-size:18px;font-weight:600;color:var(--text-muted);
}
.sim-input{
  flex:1;
  background:transparent;
  border:none;
  outline:none;
  padding:18px 18px 18px 4px;
  font-family:inherit;
  font-size:20px;
  font-weight:600;
  color:var(--text-primary);
  letter-spacing:-.01em;
  width:100%;
  min-width:0;
}
.sim-input::placeholder{color:#A8A29E;font-weight:500}

.sim-slider{
  -webkit-appearance:none;appearance:none;
  width:100%;
  height:6px;
  background:var(--surface);
  border-radius:3px;
  margin-top:16px;
  outline:none;
}
.sim-slider::-webkit-slider-thumb{
  -webkit-appearance:none;appearance:none;
  width:24px;height:24px;
  border-radius:50%;
  background:var(--brand);
  cursor:pointer;
  border:3px solid var(--white);
  box-shadow:0 2px 8px rgba(232,89,10,.35);
  transition:transform .15s ease;
}
.sim-slider::-webkit-slider-thumb:hover{transform:scale(1.1)}
.sim-slider::-moz-range-thumb{
  width:24px;height:24px;border-radius:50%;
  background:var(--brand);cursor:pointer;
  border:3px solid var(--white);
  box-shadow:0 2px 8px rgba(232,89,10,.35);
}

.sim-result{
  background:linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius:16px;
  padding:28px;
  color:var(--white);
  margin:32px 0 20px;
  position:relative;
  overflow:hidden;
}
.sim-result::before{
  content:"";
  position:absolute;
  top:-40px;right:-40px;
  width:200px;height:200px;
  background:radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
}
.sim-result-label{
  font-size:14px;
  opacity:.85;
  margin-bottom:8px;
  font-weight:500;
}
.sim-result-amount{
  font-size:clamp(36px,6vw,52px);
  font-weight:700;
  letter-spacing:-.03em;
  line-height:1;
  font-variant-numeric:tabular-nums;
}
.sim-result-detail{
  font-size:14px;
  opacity:.85;
  margin-top:10px;
}

.sim-note{
  font-size:13px;
  color:var(--text-muted);
  text-align:center;
  margin-top:16px;
}
.sim-cta{width:100%}

/* ============ TESTIMONIALS ============ */
.testimonials{background:var(--white);overflow:hidden}
.testi-track{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:8px 24px 32px;
  margin:0 -24px;
  scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{display:none}
@media (min-width:768px){
  .testi-track{
    padding-left:0;padding-right:0;
    margin:0;
    overflow:visible;
    display:grid;
    grid-template-columns:repeat(3,1fr);
  }
}
.testi-card{
  flex:0 0 85%;
  scroll-snap-align:start;
  background:var(--surface);
  border-radius:var(--radius-card);
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:16px;
  border:1px solid var(--border);
}
@media (min-width:768px){ .testi-card{flex:unset} }

.testi-stars{
  display:flex;gap:2px;color:var(--brand);
  font-size:18px;
}
.testi-text{
  font-size:16px;
  line-height:1.55;
  color:var(--text-primary);
  flex:1;
  text-wrap:pretty;
}
.testi-who{
  display:flex;align-items:center;gap:12px;
  padding-top:16px;
  border-top:1px solid var(--border);
}
.testi-avatar{
  width:44px;height:44px;
  border-radius:50%;
  background:var(--brand);
  color:var(--white);
  display:grid;place-items:center;
  font-weight:700;
  font-size:17px;
}
.testi-name{font-weight:600;font-size:15px}
.testi-role{font-size:13px;color:var(--text-muted)}

/* ============ APP CTA ============ */
.appcta{
  background:var(--brand);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.appcta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(163,61,5,.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 100%, rgba(255,255,255,.1) 0%, transparent 60%);
  pointer-events:none;
}
.appcta-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:center;
  position:relative;
}
@media (min-width:900px){
  .appcta-grid{grid-template-columns:1.2fr .8fr;gap:64px}
}
.appcta h2{
  font-size:clamp(32px,4.5vw,52px);
  font-weight:700;
  letter-spacing:-.03em;
  line-height:1.05;
  margin-bottom:20px;
  text-wrap:balance;
}
.appcta p{
  font-size:19px;
  opacity:.92;
  margin-bottom:32px;
  max-width:500px;
}
.appcta-ctas{display:flex;flex-wrap:wrap;gap:12px}
.btn-white{
  background:var(--white);
  color:var(--brand);
}
.btn-white:hover{background:#FFF7F1;transform:translateY(-1px)}
.btn-white-ghost{
  background:rgba(255,255,255,.12);
  color:var(--white);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(6px);
}
.btn-white-ghost:hover{background:rgba(255,255,255,.2)}

/* phone mockup */
.phone-wrap{
  display:flex;
  justify-content:center;
}
.phone{
  width:260px;
  height:540px;
  background:#1C1917;
  border-radius:44px;
  padding:12px;
  position:relative;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,255,255,.1) inset;
  transform:rotate(-3deg);
}
.phone-notch{
  position:absolute;
  top:20px;left:50%;transform:translateX(-50%);
  width:90px;height:26px;
  background:#1C1917;
  border-radius:999px;
  z-index:2;
}
.phone-screen{
  width:100%;height:100%;
  background:linear-gradient(180deg, var(--brand-dark) 0%, #7A2D03 100%);
  border-radius:32px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding:44px 20px 24px;
  color:var(--white);
  position:relative;
}
.phone-status{
  display:flex;justify-content:space-between;
  font-size:11px;font-weight:600;
  padding:0 8px;
  margin-bottom:24px;
}
.phone-status i{font-size:13px}
.phone-hello{
  font-size:13px;opacity:.7;margin-bottom:4px;
}
.phone-name{
  font-size:18px;font-weight:600;margin-bottom:24px;
}
.phone-balance-card{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  border-radius:14px;
  padding:16px;
  margin-bottom:14px;
  backdrop-filter:blur(10px);
}
.phone-bc-label{
  font-size:11px;opacity:.75;margin-bottom:6px;
  display:flex;align-items:center;gap:6px;
}
.phone-bc-amount{font-size:22px;font-weight:700;letter-spacing:-.02em}
.phone-btn{
  background:var(--white);
  color:var(--brand);
  text-align:center;
  padding:13px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  margin-top:auto;
}
.phone-logo{
  text-align:center;
  font-weight:700;
  font-size:15px;
  margin-top:14px;
  opacity:.8;
  letter-spacing:-.02em;
}

/* ============ FAQ ============ */
.faq{background:var(--white)}
.faq-list{
  max-width:780px;
  margin:0 auto;
}
.faq-item{
  border-bottom:1px solid var(--border);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:24px 4px;
  text-align:left;
  font-size:clamp(17px,2vw,19px);
  font-weight:600;
  color:var(--text-primary);
  transition:color .2s ease;
}
.faq-q:hover{color:var(--brand)}
.faq-q i{
  font-size:22px;
  color:var(--brand);
  flex:0 0 auto;
  transition:transform .3s ease;
}
.faq-item.open .faq-q i{transform:rotate(45deg)}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease, padding .3s ease;
  font-size:16px;
  line-height:1.6;
  color:var(--text-muted);
  padding:0 4px;
}
.faq-item.open .faq-a{
  padding:0 4px 28px;
  max-height:400px;
}

/* ============ FOOTER ============ */
.footer{
  background:#0C0A09;
  color:#D6D3D1;
  padding:64px 0 32px;
}
.footer-top{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid #292524;
}
@media (min-width:768px){
  .footer-top{grid-template-columns:1.3fr 1fr 1fr 1fr;gap:48px}
}
.footer-brand .logo{color:var(--white);font-size:24px;margin-bottom:12px;display:inline-block}
.footer-brand .tagline{font-size:15px;color:#A8A29E;margin-bottom:24px;max-width:280px}
.footer-social{display:flex;gap:10px}
.footer-social a{
  width:40px;height:40px;border-radius:10px;
  background:#1C1917;
  display:grid;place-items:center;
  font-size:18px;color:#D6D3D1;
  transition:background .2s ease, color .2s ease;
}
.footer-social a:hover{background:var(--brand);color:var(--white)}

.footer-col h4{
  font-size:13px;font-weight:600;
  color:var(--white);
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.footer-col a{color:#A8A29E;font-size:15px;transition:color .15s ease}
.footer-col a:hover{color:var(--white)}

.footer-compliance{
  padding-top:32px;
  display:flex;
  flex-direction:column;
  gap:16px;
  font-size:13px;
  color:#78716C;
  line-height:1.6;
}
.footer-compliance-links{
  display:flex;flex-wrap:wrap;gap:16px 24px;
  justify-content:space-between;
  align-items:center;
  padding-top:16px;
  border-top:1px solid #1C1917;
}
.footer-compliance-links a{color:#A8A29E}
.footer-compliance-links a:hover{color:var(--white)}

/* ============ ANIMATIONS ============ */
[data-animate]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .5s cubic-bezier(0.4,0,0.2,1),
             transform .5s cubic-bezier(0.4,0,0.2,1);
}
[data-animate].visible{opacity:1;transform:none}

[data-animate="delay-1"]{transition-delay:.1s}
[data-animate="delay-2"]{transition-delay:.2s}
[data-animate="delay-3"]{transition-delay:.3s}
[data-animate][data-delay="100"]{transition-delay:.1s}
[data-animate][data-delay="200"]{transition-delay:.2s}
[data-animate][data-delay="300"]{transition-delay:.3s}

/* ============ WAVE DIVIDERS ============ */
.wave{
  margin-top:-2px;
  line-height:0;
  overflow:hidden;
}
.wave svg{display:block;width:100%;height:64px}
body{overflow-x:hidden}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  [data-animate]{opacity:1;transform:none;transition:none}
}
