:root {
  --bg: #02031d;
  --bg-2: #050834;
  --blue: #2f35f0;
  --blue-2: #101465;
  --purple: #4b1767;
  --pink: #f19edc;
  --pink-2: #f78add;
  --cyan: #09e9ff;
  --white: #ffffff;
  --text: #f7f5ff;
  --muted: #d0cef4;
  --dark-text: #060a2a;
  --card: rgba(255, 255, 255, .08);
  --card-border: rgba(255, 255, 255, .16);
  --shadow: 0 26px 70px rgba(0, 0, 0, .32);
  --radius: 28px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 9%, rgba(48, 56, 240, .95), transparent 34%),
    radial-gradient(circle at 73% 18%, rgba(93, 28, 105, .78), transparent 32%),
    linear-gradient(110deg, #2230d8 0%, #070c4d 36%, #030426 66%, #050322 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.25) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(0,238,255,.22) 1px, transparent 1.5px);
  background-size: 34px 34px, 55px 55px;
  opacity: .18;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(39, 52, 219, .45), transparent 44%, rgba(58, 12, 72, .48));
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-space {
  padding: 88px 0;
  scroll-margin-top: 110px;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--pink);
  color: var(--dark-text);
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(9, 9, 56, .82), rgba(9, 9, 56, .26), transparent);
  backdrop-filter: blur(12px);
}

.header.scrolled {
  background: rgba(5, 5, 38, .84);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .28);
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  flex: 0 0 auto;
}

.brand img {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  transform: translateX(-50%);
  transition: width .24s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
  transition: .25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

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

.btn-pink {
  background: var(--pink);
  color: var(--dark-text);
  box-shadow: 0 18px 35px rgba(241, 158, 220, .22);
}

.btn-pink:hover {
  background: #ffa7e6;
  box-shadow: 0 22px 42px rgba(241, 158, 220, .33);
}

.btn-white {
  background: var(--white);
  color: var(--dark-text);
}

.btn-outline {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .20);
}

.full {
  width: 100%;
}

.icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-cta {
  min-height: 54px;
  padding-inline: 26px;
  border-radius: 10px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 900px;
  padding-top: 168px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 52% 45%, rgba(0, 234, 255, .13), transparent 22%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 52px;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 22px;
  padding: 0 16px;
  border: 1px solid rgba(0, 233, 255, .42);
  border-radius: 999px;
  background: rgba(0, 157, 255, .22);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.offer {
  margin-bottom: 38px;
}

.speed-line {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.speed-number {
  display: block;
  font-size: clamp(96px, 10vw, 176px);
  line-height: .78;
  font-weight: 900;
  letter-spacing: -0.085em;
  color: var(--white);
}

.mega-badge,
.only-badge {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 9px;
  border-radius: 6px;
  background: var(--pink);
  color: #3441dc;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-badge {
  margin-bottom: 9px;
  font-size: clamp(26px, 3vw, 42px);
}

.price-line {
  display: grid;
  grid-template-columns: auto auto auto auto 1fr;
  align-items: end;
  gap: 10px;
  margin-top: -4px;
}

.only-badge {
  grid-column: 1 / 3;
  width: fit-content;
  font-size: 15px;
}

.currency {
  grid-column: 1;
  color: var(--pink);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 900;
  line-height: .9;
}

.price-number {
  grid-column: 2;
  color: var(--white);
  font-size: clamp(78px, 8vw, 128px);
  line-height: .76;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.cents {
  grid-column: 3;
  color: var(--white);
  font-size: clamp(46px, 5vw, 74px);
  line-height: .84;
  font-weight: 900;
  margin-left: -8px;
}

.month {
  grid-column: 4;
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 7px;
}

.hero-btn {
  min-width: 280px;
  margin-bottom: 36px;
}

.legal-text {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,158,220,.30), transparent 65%);
  filter: blur(8px);
}

.hero-mascot {
  position: relative;
  width: min(680px, 100%);
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, .32));
  animation: floatMascot 4.6s ease-in-out infinite;
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.section-head {
  max-width: 650px;
}

.section-head.wide {
  max-width: 850px;
}

.section-head.centered {
  max-width: 750px;
  margin-inline: auto;
  text-align: left;
}

.section-head h1,
.section-head h2,
.support-card h2,
.contact-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: .93;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.section-head p:not(.tag),
.support-card p:not(.tag),
.contact-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.region-panel,
.plan-card,
.step-card,
.chip-image-card,
.support-card,
.contact-form,
.info-box {
  border: 1px solid var(--card-border);
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.region-panel {
  padding: 34px;
  border-radius: var(--radius);
}

.region-panel h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

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

.region-card {
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(5, 8, 52, .58);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  transition: .22s ease;
}

.region-card:hover,
.region-card.active {
  border-color: rgba(241, 158, 220, .85);
  background: rgba(241, 158, 220, .13);
  color: var(--pink);
  transform: translateY(-2px);
}

.selected-region {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, .16);
  color: var(--muted);
  font-size: 15px;
}

.selected-region strong {
  color: var(--white);
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  border-radius: var(--radius);
}

.plan-card.featured {
  background: linear-gradient(140deg, rgba(139, 75, 224, .72), rgba(255,255,255,.08));
  box-shadow: 0 30px 78px rgba(111, 61, 209, .28);
  transform: translateY(-10px);
}

.plan-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.plan-heading h3 {
  max-width: 220px;
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.plan-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--pink);
  color: #182052;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-card p {
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.plan-price {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(48px, 4.6vw, 68px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.plan-price small {
  margin-right: 8px;
  color: var(--pink);
  font-size: 26px;
  letter-spacing: 0;
}

.plan-price span {
  color: var(--muted);
  font-size: 20px;
  letter-spacing: 0;
}

.plan-price.consult {
  font-size: clamp(42px, 4.2vw, 58px);
}

.plan-price.custom {
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.04em;
}

.plan-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}

.plan-card .btn {
  margin-top: auto;
}

.plans-note {
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.step-card {
  min-height: 260px;
  padding: 34px 28px;
  border-radius: 24px;
}

.step-card span {
  display: block;
  margin-bottom: 28px;
  color: #F19EDC;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.step-card h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.chip-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.chip-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 34px;
}

.chip-benefits div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}

.chip-benefits strong,
.chip-benefits span {
  display: block;
}

.chip-benefits strong {
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.chip-benefits span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.chip-image-card {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 38px;
  border-radius: var(--radius);
  overflow: hidden;
}

.chip-image-card img {
  width: min(590px, 100%);
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, .36));
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px;
  border-radius: var(--radius);
}

.support-card > div {
  max-width: 680px;
}

.support-card .btn {
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.info-box {
  margin-top: 16px;
  padding: 20px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}

.info-box strong {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 34px;
  border-radius: var(--radius);
}

.contact-form label {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  outline: 0;
  background: rgba(4, 5, 37, .82);
  color: var(--white);
  font-weight: 800;
  transition: .2s ease;
}

.contact-form textarea {
  min-height: 118px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.48);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(241,158,220,.86);
  box-shadow: 0 0 0 4px rgba(241,158,220,.14);
}

.footer {
  padding: 64px 0 34px;
  background: rgba(0, 0, 21, .62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr .8fr;
  gap: 64px;
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-brand img {
  width: 160px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.footer-col h3 {
  margin: 0 0 22px;
  color: var(--pink);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  transition: .2s ease;
}

.footer-col a:hover {
  color: var(--pink);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--dark-text);
  box-shadow: 0 20px 45px rgba(241, 158, 220, .38);
  transition: .22s ease;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1080px) {
  .navbar {
    gap: 18px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-grid,
  .about-grid,
  .chip-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 134px;
    min-height: auto;
  }

  .hero-content,
  .section-head {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 420px;
  }

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

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

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .navbar {
    min-height: 76px;
  }

  .brand img {
    width: 140px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(5, 6, 42, .96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 16px 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .section-space {
    padding: 68px 0;
  }

  .hero-grid {
    gap: 24px;
  }

  .legal-text {
    font-size: 12px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-mascot {
    width: min(540px, 110%);
  }

  .support-card,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-card {
    padding: 34px;
  }
}

@media (max-width: 680px) {
  .section-head h1,
  .section-head h2,
  .support-card h2,
  .contact-copy h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .speed-number {
    font-size: clamp(86px, 25vw, 118px);
  }

  .price-number {
    font-size: clamp(74px, 22vw, 104px);
  }

  .price-line {
    gap: 7px;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
  }

  .region-grid,
  .plans-grid,
  .steps-grid,
  .chip-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .chip-image-card {
    min-height: auto;
    padding: 22px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    gap: 34px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
  }
}
