:root {
  --bg: #07091a;
  --bg2: #0d1130;
  --blue: #2563eb;
  --blue2: #1d4ed8;
  --green: #10b981;
  --gold: #f59e0b;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --card: rgba(255, 255, 255, .04);
  --border: rgba(255, 255, 255, .08);
  --radius: 16px;
  --font: 'Plus Jakarta Sans', sans-serif
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.6
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%
}

/* ── MESH BG ── */
.mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden
}

.mesh::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, .18) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite
}

.mesh::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, .12) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite reverse
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.1) translate(30px, -20px)
  }
}

.wrap {
  position: relative;
  z-index: 1
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 26, .8);
  border-bottom: 1px solid var(--border);
  transition: all .3s
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.5px
}

.nav-brand svg {
  color: var(--blue)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .875rem;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--text)
}

.btn-nav {
  background: var(--blue);
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: all .2s;
  will-change: transform
}

.btn-nav:hover {
  background: var(--blue2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, .4)
}

.lang-sw {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 3px
}

.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: .8rem;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s
}

.lang-btn.on {
  background: rgba(37, 99, 235, .3);
  color: #fff
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  position: relative
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, .12);
  border: 1px solid rgba(37, 99, 235, .3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  color: #93c5fd;
  margin-bottom: 32px;
  opacity: 0
}

.hero-badge::before {
  content: '⚡';
  font-size: 1em
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0
}

.hero-title span {
  background: linear-gradient(135deg, #60a5fa, var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all .25s;
  will-change: transform;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, .5)
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  transition: all .25s
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .04)
}

.hero-disclaimer {
  margin-top: 20px;
  font-size: .75rem;
  color: rgba(148, 163, 184, .6);
  opacity: 0
}

.hero-visual {
  margin-top: 56px;
  opacity: 0
}

.google-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 28px;
  backdrop-filter: blur(12px)
}

.google-card .rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem
}

.google-card .info {
  text-align: left
}

.google-card .info strong {
  display: block;
  font-size: .95rem;
  font-weight: 700
}

.google-card .info small {
  font-size: .75rem;
  color: var(--muted)
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 600;
  margin-top: 4px
}

/* ── STATS ── */
#stats {
  padding: 60px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .02)
}

.stats-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center
}

.stat-item {
  opacity: 0
}

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #60a5fa, var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-label {
  color: var(--muted);
  font-size: .875rem;
  margin-top: 4px
}

/* ── SECTIONS ── */
section {
  padding: 100px 5%
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8
}

.center {
  text-align: center
}

.center.section-sub,
.section-sub.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

/* ── STEPS ── */
#steps {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(37, 99, 235, .05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.steps-grid {
  max-width: 1000px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative
}

.step-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 32px 24px;
  opacity: 0;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s
}

.step-card:hover {
  border-color: rgba(37, 99, 235, .5);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .1)
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease
}

.step-card:hover::before {
  transform: scaleX(1)
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(199 222 243);
  line-height: 1;
  margin-bottom: 16px
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, .2);
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem
}

.step-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #e2e8f0
}

.step-desc {
  color: #94a3b8;
  font-size: .9rem;
  line-height: 1.7
}

/* ── BENEFITS ── */
.benefits-grid {
  max-width: 1100px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transition: all .3s
}

.benefit-card:hover {
  border-color: rgba(16, 185, 129, .3);
  background: rgba(16, 185, 129, .04)
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(16, 185, 129, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0
}

.benefit-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: .95rem
}

.benefit-text span {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.7
}

/* ── PRICING ── */
#pricing {
  background: var(--bg2)
}

.pricing-card {
  max-width: 480px;
  margin: 56px auto 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, .1), rgba(16, 185, 129, .06));
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  opacity: 0;
  position: relative;
  overflow: hidden
}

.pricing-card::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  padding: 4px 40px;
  transform: rotate(35deg);
  letter-spacing: 1px
}

.price-val {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 700;
  margin-right: 4px
}

.price-period {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 4px
}

.price-features {
  list-style: none;
  margin: 32px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0
}

.pricing-cta {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: all .25s;
  will-change: transform
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, .5)
}

.price-note {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6
}

/* ── TRUST ── */
#trust {
  padding: 60px 5%;
  background: rgba(255, 255, 255, .015);
  border-top: 1px solid var(--border)
}

.trust-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px
}

.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px
}

.trust-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px
}

.trust-text span {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.7
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transition: border-color .2s
}

.faq-item.open {
  border-color: rgba(37, 99, 235, .3)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  gap: 12px;
  user-select: none
}

.faq-arrow {
  color: var(--muted);
  transition: transform .3s;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--blue)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8
}

.faq-item.open .faq-a {
  max-height: 200px
}

.faq-a-inner {
  padding: 0 24px 20px
}

/* ── FINAL CTA ── */
#cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(16, 185, 129, .06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

#cta .hero-ctas {
  margin-top: 36px
}

/* ── FOOTER ── */
footer {
  padding: 48px 5% 32px;
  border-top: 1px solid var(--border)
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start
}

.footer-brand {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-disc {
  color: var(--muted);
  font-size: .75rem;
  max-width: 380px;
  line-height: 1.7
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.footer-links a {
  color: var(--muted);
  font-size: .875rem;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--text)
}

.footer-copy {
  text-align: center;
  color: rgba(148, 163, 184, .4);
  font-size: .75rem;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto
}

/* ── MAGNETIC BTN SPELL ── */
.magnetic {
  display: inline-block;
  position: relative
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  nav {
    padding: 0 4%
  }

  #hero {
    padding: 90px 4% 50px
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .footer-links {
    flex-direction: column;
    gap: 12px
  }

  .pricing-card {
    padding: 36px 24px
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }
}