/* styles.css — Minimal premium + animations */

:root{
  --bg:#ffffff;
  --text:#0b0d16;
  --muted:#6b7280;
  --line:#e7e7ea;
  --soft:#f6f6f7;
  --shadow: 0 18px 55px rgba(10,14,26,.10);
  --shadow2: 0 10px 26px rgba(10,14,26,.08);
  --max: 1040px;
  --radius: 18px;
  --speed: 700ms;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height:1.55;
  overflow-x:hidden;
}
a{color:inherit}
.muted{color:var(--muted)}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.strong{font-weight:900}

/* Top bar */
.top{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; font-weight:900}
.brandMark{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: var(--text);
  color:#fff;
  font-size:13px;
}
.brandText{letter-spacing:.2px}
.links{display:flex; gap:14px; align-items:center}
.links a{
  text-decoration:none;
  color:var(--muted);
  font-weight:800;
  position:relative;
}
.links a::after{
  content:"";
  position:absolute; left:0; bottom:-6px;
  width:0; height:2px;
  background: var(--text);
  transition: width 220ms ease;
}
.links a:hover{color:var(--text)}
.links a:hover::after{width:100%}

.actions{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  font-weight:900;
  box-shadow:none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.btn:hover{background: var(--soft); transform: translateY(-1px)}
.btn.primary{
  background: var(--text);
  color:#fff;
  border-color: var(--text);
  box-shadow: var(--shadow2);
}
.btn.primary:hover{filter: brightness(0.95)}
.btn.ghost{background: transparent}
.btn.wide{width:100%}

/* Burger */
.burger{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  border-radius: 14px;
  background:#fff;
  padding:0;
}
.burger span{
  display:block;
  width:18px;height:2px;
  background: var(--text);
  margin:5px auto;
}
.mobileMenu{
  display:none;
  border-top:1px solid var(--line);
  padding:12px 18px 18px;
}
.mobileMenu a{display:block; padding:10px 0; text-decoration:none; font-weight:900; color:var(--text)}
.mobileMenu .btn{margin-top:8px}

/* Hero */
.hero{
  position:relative;
  padding: 54px 0 34px;
}
.bg{position:absolute; inset:0; overflow:hidden; pointer-events:none}
.gridlines{
  position:absolute; inset:-2px;
  background:
    linear-gradient(to right, rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(closest-side at 50% 20%, #000 45%, transparent 80%);
  opacity:.55;
}
.blob{
  position:absolute;
  width: 560px; height: 560px;
  border-radius: 999px;
  filter: blur(28px);
  opacity:.18;
  transform: translate3d(0,0,0);
  animation: float 10s ease-in-out infinite;
}
.b1{left:-140px; top:-220px; background: #000;}
.b2{right:-160px; top:-180px; background: #7c5cff;}
@keyframes float{
  0%,100%{transform: translate(0,0) scale(1)}
  50%{transform: translate(20px,18px) scale(1.03)}
}

.heroInner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.kicker{
  margin:0 0 12px;
  color:var(--muted);
  font-weight:900;
  display:flex; align-items:center; gap:10px;
}
.dot{
  width:10px;height:10px;border-radius:999px;background: var(--text);
  box-shadow: 0 0 0 6px rgba(0,0,0,.06);
}

.title{
  margin:0 0 14px;
  font-size: clamp(34px, 4.8vw, 64px);
  letter-spacing:-.7px;
  line-height:1.05;
}
.underline{
  position:relative;
  display:inline-block;
}
.underline::after{
  content:"";
  position:absolute; left:0; bottom: .12em;
  height: .18em; width: 100%;
  background: rgba(0,0,0,.08);
  z-index:-1;
  border-radius: 999px;
  transform: scaleX(.92);
  transform-origin:left;
  animation: underlineIn 900ms ease both;
}
@keyframes underlineIn{
  from{transform: scaleX(.2); opacity:.2}
  to{transform: scaleX(.92); opacity:1}
}

.lead{
  margin:0;
  max-width:65ch;
  font-size:18px;
  color: #2b2f3a;
}
.heroCtas{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}

.heroMeta{
  margin-top:20px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.metaItem{
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background:#fff;
}

/* Hero side card */
.heroCard{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  padding:16px;
}
.hcTop{display:flex; justify-content:space-between; align-items:center; gap:10px}
.hcTitle{font-weight:1000}
.hcBadge{
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: var(--soft);
  font-weight:900;
  color: var(--muted);
}
.hcBody{margin-top:12px}
.hcRow{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.hcRow:last-child{border-bottom:none}
.hcFoot{margin-top:14px; display:grid; gap:10px}

/* Sections */
.section{padding: 56px 0; border-top:1px solid var(--line)}
.section.alt{background: linear-gradient(#fff, #fafafa)}
.sectionHead{
  display:flex; justify-content:space-between; gap:16px;
  align-items:flex-end; flex-wrap:wrap;
  margin-bottom: 18px;
}
.section h2{
  margin:0;
  font-size: 28px;
  letter-spacing:-.2px;
}
.pillRow{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:900;
  color: var(--muted);
}

/* Pricing grid */
.pricing{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.priceCard{
  grid-column: span 4;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background:#fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.priceCard:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  border-color: rgba(0,0,0,.16);
}
.priceCard.featured{
  border-color: var(--text);
  box-shadow: var(--shadow);
  position:relative;
}
.ribbon{
  position:absolute;
  top:14px; right:14px;
  padding:6px 10px;
  border-radius:999px;
  background: var(--text);
  color:#fff;
  font-weight:900;
  font-size:12px;
}
.pcHead{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.pcHead h3{margin:0; font-size:18px}
.price{font-weight:1000}
.list{margin:12px 0 0; padding-left:18px}
.list li{margin:6px 0}
.pcFoot{margin-top:14px; display:grid; gap:10px}
.note{margin-top:14px}
.noteBox{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding:14px;
  font-weight:800;
}

/* Steps */
.steps{display:grid; grid-template-columns: repeat(12, 1fr); gap:14px}
.step{
  grid-column: span 6;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  background:#fff;
}
.step .n{
  width:44px;height:44px;border-radius: 14px;
  border:1px solid var(--line);
  display:grid; place-items:center;
  font-weight:1000;
}
.step h4{margin:0 0 6px; font-size:16px}
.ctaLine{margin-top:18px}

/* Proofs */
.proofGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.proofCard{
  grid-column: span 4;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background:#fff;
}
.proofNum{
  font-size: 44px;
  font-weight:1000;
  letter-spacing:-.6px;
}

/* FAQ */
.faq details{
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background:#fff;
  margin: 10px 0;
}
.faq summary{cursor:pointer; font-weight:900}
.faq p{margin:10px 0 0}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.contactCard{
  grid-column: span 4;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background:#fff;
}
.big{font-weight:1000; font-size:18px; text-decoration:none}
.footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-top:18px;
}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(18px);
}
.reveal.in{
  opacity:1;
  transform:none;
  transition: opacity var(--speed) ease, transform var(--speed) cubic-bezier(.2,.7,.2,1);
}
.delay{transition-delay:.12s}
.delay2{transition-delay:.10s}
.delay3{transition-delay:.16s}
.delay4{transition-delay:.22s}

/* WhatsApp button */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  z-index: 999;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.whatsapp-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(0,0,0,.28);
}

/* Responsive */
@media (max-width: 980px){
  .heroInner{grid-template-columns: 1fr}
}
@media (max-width: 920px){
  .links{display:none}
  .burger{display:block}
  .pricing .priceCard{grid-column: span 6}
  .proofCard{grid-column: span 6}
  .step{grid-column: span 12}
}
@media (max-width: 600px){
  .hero{padding-top: 38px}
  .lead{font-size:16px}
  .pricing .priceCard{grid-column: span 12}
  .proofCard{grid-column: span 12}
  .contactCard{grid-column: span 12}
  .whatsapp-float{right:16px; bottom:16px}
  .br{display:none}
}
