* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #06110c;
  --bg2: #0a1c12;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f4fff7;
  --muted: #b8c8bd;
  --green: #22d466;
  --green2: #0fac4a;
  --gold: #ffd66b;
  --line: rgba(255, 255, 255, 0.13);
  --line-green: rgba(34, 212, 102, 0.38);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 5%, rgba(34, 212, 102, 0.24), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(255, 214, 107, 0.10), transparent 28%),
    linear-gradient(135deg, #06110c 0%, #07170f 55%, #020806 100%);
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(34, 212, 102, 0.06), transparent 44%),
    radial-gradient(circle at 55% 52%, rgba(255, 255, 255, 0.035), transparent 38%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #062013;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 16px 40px rgba(34, 212, 102, 0.26);
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-size: 12px;
}

.nav-btn {
  background: rgba(34, 212, 102, 0.14);
  border: 1px solid rgba(34, 212, 102, 0.42);
  color: #e7ffed;
  padding: 12px 17px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s;
}

.nav-btn:hover,
.btn:hover,
.plan-link:hover,
.big-whats:hover {
  transform: translateY(-2px);
}

main {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 28px;
  padding: 30px 0 58px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e6ffed;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(34, 212, 102, 0.9);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  max-width: 650px;
  margin-top: 22px;
}

.cities-box {
  margin-top: 24px;
  max-width: 650px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--line-green);
  background:
    linear-gradient(135deg, rgba(34, 212, 102, 0.16), rgba(255, 214, 107, 0.065)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.cities-label {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.city-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.city-row strong {
  min-height: 66px;
  padding: 0 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: clamp(24px, 3.3vw, 40px);
  line-height: 1;
  letter-spacing: -1.5px;
  color: #06170d;
  background: linear-gradient(135deg, #f7fff8, #d9ffe6);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 -10px 24px rgba(34, 212, 102, 0.10);
}

.city-row strong:last-child {
  min-width: 112px;
  font-size: 18px;
  color: #eaffef;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.target-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  max-width: 650px;
}

.target-row span {
  padding: 10px 12px;
  border-radius: 999px;
  color: #eaffef;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 17px;
  font-weight: 950;
  transition: 0.2s;
}

.primary {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #031109;
  box-shadow: 0 18px 48px rgba(34, 212, 102, 0.24);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.065);
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 212, 102, 0.24), transparent 36%),
    linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px var(--green);
}

.hero-card h2 {
  font-size: 34px;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.hero-card p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quick-plans {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.quick-plans div {
  padding: 15px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.075);
}

.quick-plans span,
.quick-plans small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.quick-plans strong {
  display: block;
  font-size: 30px;
  margin: 5px 0;
  letter-spacing: -1px;
}

.big-whats {
  margin-top: 22px;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  background: #fff;
  color: #082113;
  font-weight: 950;
  transition: 0.2s;
  position: relative;
  z-index: 1;
}

.card-note {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.section {
  padding: 62px 0;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px;
}

.section-title span,
.cta span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.section-title h2 {
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -1.5px;
  margin-top: 8px;
}

.section-title p {
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

.audience-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.audience-card,
.step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 24px;
  padding: 22px;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(34, 212, 102, 0.16);
  font-size: 25px;
}

.audience-card h3,
.step h3 {
  margin-top: 14px;
  font-size: 20px;
}

.audience-card p,
.step p {
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.55;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.plan {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 26px;
}

.plan.featured {
  background: linear-gradient(160deg, rgba(34, 212, 102, 0.20), rgba(255, 255, 255, 0.06));
  border-color: rgba(34, 212, 102, 0.42);
}

.plan-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dfffe9;
  font-size: 12px;
  font-weight: 950;
}

.plan h3 {
  font-size: 48px;
  margin-top: 24px;
  letter-spacing: -2px;
}

.plan p {
  color: var(--text);
  font-size: 20px;
  margin-top: 8px;
}

.plan small {
  display: block;
  color: var(--muted);
  margin-top: 7px;
}

.plan-link {
  margin-top: 22px;
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line);
  font-weight: 950;
  transition: 0.2s;
}

.step b {
  color: var(--green);
  font-size: 14px;
}

.cta {
  margin: 42px 0 70px;
  border-radius: 34px;
  border: 1px solid rgba(34, 212, 102, 0.34);
  background: linear-gradient(135deg, rgba(34, 212, 102, 0.20), rgba(255, 214, 107, 0.10));
  padding: 38px;
  text-align: center;
}

.cta h2 {
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -1px;
  margin-top: 8px;
}

.cta p {
  color: var(--muted);
  margin: 12px 0 24px;
}

.legal {
  display: block;
  color: var(--muted);
  margin-top: 16px;
  font-size: 12px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 24px 16px;
}

@media (max-width: 930px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 36px;
  }

  .hero-content {
    max-width: none;
  }

  .hero h1,
  .lead,
  .cities-box {
    max-width: none;
  }

  .hero-card {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .topbar,
  main {
    width: min(100% - 24px, 1140px);
  }

  .brand small,
  .nav-btn {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -2px;
  }

  .lead {
    font-size: 16px;
  }

  .city-row {
    grid-template-columns: 1fr;
  }

  .city-row strong,
  .city-row strong:last-child {
    min-height: 58px;
    width: 100%;
    font-size: clamp(28px, 9vw, 38px);
  }

  .target-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .actions,
  .actions .btn {
    width: 100%;
  }

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

  .section {
    padding: 44px 0;
  }

  .cta {
    padding: 28px 18px;
    border-radius: 26px;
  }
}
