:root {
  --bg: #0f1218;
  --bg-soft: #171c24;
  --surface: #1d2531;
  --text: #ecf3ff;
  --muted: #a8bad2;
  --brand: #0698f4;
  --brand-strong: #0070c9;
  --accent: #f4c400;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(6, 152, 244, 0.2), transparent 40%),
    radial-gradient(circle at 85% 12%, rgba(244, 196, 0, 0.12), transparent 35%),
    linear-gradient(150deg, #0c1016 0%, #0f1218 45%, #141a22 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.25;
  z-index: -1;
}

.bg-orb-one {
  background: var(--brand);
  top: -12vw;
  left: -16vw;
}

.bg-orb-two {
  background: var(--accent);
  top: 52vh;
  right: -20vw;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(12, 16, 22, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 170px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  border-radius: 10px;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.mobile-toggle span + span {
  margin-top: 8px;
}

main {
  padding-bottom: 40px;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
.plan header p {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.06;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
}

p {
  margin: 0;
}

.hero {
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hero-copy p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.hero-trust span {
  color: #c7d7ea;
  font-size: 0.9rem;
}

.hero-trust strong {
  color: var(--accent);
  margin-right: 8px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(6, 152, 244, 0.2), rgba(244, 196, 0, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 500px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-chip {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 22, 31, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 0.82rem;
}

.hero-chip-top {
  top: 16px;
  left: 16px;
}

.hero-chip-bottom {
  right: 16px;
  bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 999px;
  color: #031121;
  background: linear-gradient(115deg, var(--accent), #ffd74a);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(244, 196, 0, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.86rem;
}

.btn-ghost {
  background: rgba(8, 13, 21, 0.5);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.section-head {
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(26, 33, 44, 0.95), rgba(20, 26, 35, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.feature-card p {
  color: var(--muted);
  margin-top: 8px;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.steps li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(17, 23, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.steps span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 10px;
  color: #07152a;
  background: var(--brand);
}

.steps p {
  color: var(--muted);
  font-size: 0.92rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.plan {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #101722, #0f131b);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan header p {
  font-size: 2rem;
}

.plan header small {
  color: var(--muted);
}

.plan ul {
  margin: 0;
  padding: 18px 20px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.plan ul li {
  color: #d5e1f2;
  font-size: 0.9rem;
}

.plan ul li::before {
  content: "• ";
  color: var(--accent);
}

.prices {
  padding: 0 12px 14px;
  display: grid;
  gap: 8px;
}

.plan-option {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
}

.plan-label {
  margin: 0;
  color: #f0f6ff;
  font-weight: 700;
  font-size: 0.9rem;
}

.plan-wa-btn {
  margin-top: 10px;
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  color: #07121f;
  font-weight: 800;
  font-size: 0.86rem;
  background: linear-gradient(115deg, var(--accent), #ffd74a);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.plan-wa-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.plan-basic header {
  background: linear-gradient(130deg, rgba(6, 152, 244, 0.2), transparent 70%);
}

.plan-performance header {
  background: linear-gradient(130deg, rgba(0, 112, 201, 0.25), transparent 70%);
}

.plan-vip header {
  background: linear-gradient(130deg, rgba(244, 196, 0, 0.22), transparent 70%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.about-grid p + p {
  margin-top: 10px;
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: #111822;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.results-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1620;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(17, 23, 32, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  padding: 16px 18px;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: var(--muted);
  padding: 0 18px 16px;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

.cta-box {
  margin-top: 22px;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(130deg, rgba(6, 152, 244, 0.12), rgba(244, 196, 0, 0.1));
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 14, 0.9);
  padding: 48px 0;
}

.footer-wrap {
  text-align: center;
}

.footer-wrap img {
  width: 180px;
  margin: 0 auto 14px;
}

.footer-wrap p {
  color: var(--muted);
  max-width: 740px;
  margin: 0 auto;
}

.footer-wrap small {
  display: block;
  margin-top: 10px;
  color: #8ca0ba;
}

.store-badges {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  background: #10161f;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 10px 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge small {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.store-badge strong {
  font-size: 1.05rem;
  font-family: "Sora", sans-serif;
}

.app-hero .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.app-hero .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}

.app-hero .store-badges {
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #062012;
  background: #3ddc84;
  box-shadow: 0 20px 40px rgba(15, 220, 132, 0.35);
  z-index: 30;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 88px;
    background: #101722;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .btn-sm {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }

  .results-grid,
  .steps,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .hero-chip {
    font-size: 0.72rem;
    padding: 8px 12px;
  }
}
