:root {
  --blue-primary: #1e63d9;
  --blue-dark: #1747b5;
  --blue-light: #4c8cff;
  --pink-primary: #ff1ea8;
  --pink-light: #ff53c2;
  --graphite: #2c2c2c;
  --white: #ffffff;
  --bg-soft: #f4f8ff;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 35px rgba(23, 71, 181, 0.12);
  --shadow-strong: 0 28px 60px rgba(23, 71, 181, 0.2);
  --gradient-main: linear-gradient(135deg, var(--blue-primary), var(--pink-primary));
  --gradient-soft: linear-gradient(135deg, rgba(76, 140, 255, 0.18), rgba(255, 83, 194, 0.2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: #132349;
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: var(--graphite);
  color: var(--white);
  z-index: 9999;
  clip: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-header {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 30, 168, 0.24);
}

.btn-secondary {
  background: rgba(30, 99, 217, 0.1);
  color: var(--blue-dark);
}

.btn-outline {
  border: 1px solid rgba(23, 71, 181, 0.35);
  color: var(--blue-dark);
  background: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
}

.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 42px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-family: "Lexend", sans-serif;
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem);
  line-height: 1.1;
  color: #10214f;
}

.section-head p {
  margin: 0;
  color: #4f5f8b;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #173987;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 130px;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}

.menu a {
  position: relative;
  padding: 0.4rem 0.15rem;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--pink-light);
  transition: width 0.25s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 83, 194, 0.25), transparent 36%),
    radial-gradient(circle at 85% 40%, rgba(76, 140, 255, 0.23), transparent 34%),
    linear-gradient(130deg, #0e296b 10%, #1f55c9 48%, #9a1f93 100%);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
  animation: auroraShift 10s ease-in-out infinite;
}

.aurora-1 {
  width: 520px;
  height: 520px;
  top: -22%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 83, 194, 0.36), rgba(255, 83, 194, 0));
}

.aurora-2 {
  width: 620px;
  height: 620px;
  bottom: -38%;
  left: -10%;
  background: radial-gradient(circle, rgba(76, 140, 255, 0.35), rgba(76, 140, 255, 0));
  animation-delay: 2.2s;
}

.tech-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 221, 255, 0.9), transparent);
  animation: dataFlow 5s linear infinite;
}

.tech-line-1 {
  width: 360px;
  top: 36%;
  left: 4%;
}

.tech-line-2 {
  width: 420px;
  top: 72%;
  right: 4%;
  animation-delay: 1.6s;
}

.tech-wave {
  position: absolute;
  border: 1px solid rgba(134, 228, 255, 0.4);
  border-radius: 999px;
  opacity: 0.5;
}

.tech-wave-1 {
  width: 360px;
  height: 160px;
  right: 16%;
  top: 18%;
  animation: holoPulse 2.9s ease-in-out infinite;
}

.tech-wave-2 {
  width: 410px;
  height: 190px;
  right: 10%;
  top: 14%;
  animation: holoPulse 2.9s ease-in-out infinite;
  animation-delay: 0.9s;
}

.particle-field {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(174, 236, 255, 0.85);
  box-shadow: 0 0 12px rgba(144, 228, 255, 0.9);
  animation: floatParticle 9s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.8rem, 4.5vw, 4.5rem);
  padding-top: 110px;
  padding-bottom: 56px;
}

.hero-text {
  max-width: 640px;
  padding-right: 0.7rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 0.95rem;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(208, 239, 255, 0.5);
  box-shadow: 0 8px 24px rgba(4, 20, 58, 0.23);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: "Lexend", sans-serif;
  font-size: clamp(2rem, 1.3rem + 2.8vw, 4rem);
  line-height: 1.07;
  margin: 18px 0 14px;
  max-width: 14ch;
  text-wrap: balance;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(8, 22, 63, 0.28);
}

.hero-subtitle {
  font-size: clamp(1rem, 0.95rem + 0.55vw, 1.25rem);
  max-width: 56ch;
  opacity: 0.95;
  color: rgba(242, 249, 255, 0.94);
}

.hero-benefits {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-benefits li {
  padding: 0.48rem 0.68rem;
  border-radius: 12px;
  border: 1px solid rgba(199, 234, 255, 0.35);
  background: rgba(9, 25, 66, 0.24);
  font-weight: 600;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
  padding: 0.95rem 1.72rem;
  font-size: 1.02rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(7, 22, 63, 0.26);
}

.hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: -120% -60%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 66%);
  transform: translateX(-65%) rotate(12deg);
}

.hero-actions .btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.hero-actions .btn:hover::after {
  animation: glowSweep 0.75s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #6f4dff 0%, #ff2ca6 90%);
  box-shadow: 0 16px 36px rgba(201, 49, 171, 0.38), 0 0 22px rgba(134, 94, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(201, 49, 171, 0.5), 0 0 30px rgba(134, 94, 255, 0.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #19bb66 0%, #0d9b4b 92%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(10, 151, 73, 0.36), 0 0 18px rgba(39, 212, 122, 0.24);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(10, 151, 73, 0.48), 0 0 26px rgba(39, 212, 122, 0.34);
}

.hero-actions .btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.hero-proof {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(210, 237, 255, 0.3);
  background: rgba(7, 21, 57, 0.25);
  max-width: 520px;
}

.hero-proof p {
  margin: 0;
  line-height: 1.45;
  opacity: 0.95;
}

.hero-stars {
  margin-bottom: 5px;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.hero-visual {
  align-self: center;
  position: relative;
  min-height: 530px;
}

.glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: var(--radius-lg);
}

.device-laptop {
  position: absolute;
  left: 4%;
  top: 8%;
  width: min(430px, 92%);
  min-height: 290px;
  padding: 14px;
  animation: heroFloat 4.2s ease-in-out infinite;
}

.device-topbar {
  display: flex;
  gap: 0.4rem;
}

.device-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.device-screen {
  margin-top: 10px;
  border-radius: 20px;
  padding: 18px;
  min-height: 240px;
  background:
    radial-gradient(circle at 80% 20%, rgba(112, 223, 255, 0.32), transparent 40%),
    linear-gradient(165deg, rgba(12, 33, 92, 0.95), rgba(7, 18, 50, 0.95));
  border: 1px solid rgba(149, 222, 255, 0.32);
}

.speed-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  align-items: end;
  margin-bottom: 16px;
}

.speed-chart span {
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #90e7ff, #4b8cff);
  animation: chartPulse 2.8s ease-in-out infinite;
}

.speed-chart span:nth-child(1) {
  height: 42px;
}

.speed-chart span:nth-child(2) {
  height: 66px;
  animation-delay: 0.2s;
}

.speed-chart span:nth-child(3) {
  height: 86px;
  animation-delay: 0.4s;
}

.speed-chart span:nth-child(4) {
  height: 58px;
  animation-delay: 0.6s;
}

.signal-grid {
  height: 72px;
  border-radius: 10px;
  border: 1px solid rgba(165, 228, 255, 0.34);
  background-image:
    linear-gradient(rgba(142, 218, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 218, 255, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
  position: relative;
}

.signal-grid::after {
  content: "";
  position: absolute;
  inset: 12px 10px;
  border-radius: 8px;
  border: 1px dashed rgba(116, 201, 255, 0.58);
}

.screen-stats {
  margin-top: 14px;
}

.screen-stats strong {
  display: block;
  font-size: 1.25rem;
}

.screen-stats p {
  margin: 2px 0 0;
  opacity: 0.86;
}

.device-phone {
  position: absolute;
  right: 4%;
  top: 20%;
  width: 160px;
  min-height: 300px;
  border-radius: 32px;
  padding: 14px;
  animation: phoneFloat 3.8s ease-in-out infinite;
}

.phone-notch {
  width: 64px;
  height: 8px;
  border-radius: 999px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.5);
}

.phone-screen {
  border-radius: 24px;
  min-height: 248px;
  padding: 20px 12px;
  background: linear-gradient(165deg, rgba(13, 41, 107, 0.95), rgba(7, 21, 57, 0.95));
  border: 1px solid rgba(169, 226, 255, 0.3);
  display: grid;
  align-content: center;
  text-align: center;
  gap: 0.55rem;
}

.phone-screen p {
  margin: 0;
  opacity: 0.85;
}

.phone-screen strong {
  font-size: 1.2rem;
}

.phone-screen span {
  font-size: 0.95rem;
  color: #9fdcff;
}

.wifi-hologram {
  position: absolute;
  inset: 38% 24% auto 28%;
  height: 130px;
  pointer-events: none;
}

.holo-arc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid transparent;
  border-top-color: rgba(135, 229, 255, 0.95);
  border-radius: 50%;
  animation: holoPulse 2.1s ease-in-out infinite;
}

.holo-arc-1 {
  width: 90px;
  height: 90px;
  top: 10px;
}

.holo-arc-2 {
  width: 64px;
  height: 64px;
  top: 22px;
  animation-delay: 0.25s;
}

.holo-arc-3 {
  width: 38px;
  height: 38px;
  top: 34px;
  animation-delay: 0.45s;
}

.holo-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b4eeff;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(126, 218, 255, 0.85);
}

.holo-beam {
  position: absolute;
  top: 46%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(130, 220, 255, 0.9), transparent);
}

.holo-beam-1 {
  left: -18%;
  transform: rotate(-10deg);
}

.holo-beam-2 {
  right: -18%;
  transform: rotate(10deg);
}

.floating-cards {
  position: absolute;
  inset: 0;
}

.float-card {
  position: absolute;
  padding: 0.46rem 0.72rem;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #f4fbff;
  border: 1px solid rgba(180, 230, 255, 0.5);
  background: rgba(8, 30, 74, 0.42);
  animation: heroFloat 4.4s ease-in-out infinite;
}

.float-card:nth-child(1) {
  left: 1%;
  top: 5%;
}

.float-card:nth-child(2) {
  right: 1%;
  top: 7%;
  animation-delay: 0.4s;
}

.float-card:nth-child(3) {
  left: -2%;
  top: 56%;
  animation-delay: 0.8s;
}

.float-card:nth-child(4) {
  right: -3%;
  top: 62%;
  animation-delay: 1.1s;
}

.float-card:nth-child(5) {
  left: 36%;
  bottom: 3%;
  animation-delay: 1.4s;
}

.why {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: #ffffff;
}

.why .container.why-container {
  width: min(1280px, 92%);
}

.why-decor {
  display: none;
}

.why-decor-blue {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -80px;
  background: rgba(37, 99, 235, 0.5);
}

.why-decor-purple {
  width: 320px;
  height: 320px;
  bottom: 4%;
  right: -90px;
  background: rgba(139, 92, 246, 0.48);
}

.why-container {
  position: relative;
  z-index: 1;
}

.why-head {
  max-width: 860px;
  margin-bottom: 64px;
}

.why-head p {
  color: #3d4f7b;
}

.why-head h2 {
  margin-bottom: 14px;
}

.why-line {
  display: block;
  width: 80px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #8b5cf6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.why-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid #dbe6ff;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(18, 45, 110, 0.06);
  padding: 30px;
  min-height: 278px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
  isolation: isolate;
}

.why-card::before {
  content: none;
}

.why-card:hover {
  transform: translateY(-2px);
  border-color: #c4d7ff;
  box-shadow: 0 12px 24px rgba(18, 45, 110, 0.1);
}

.why-card:hover::before {
  transform: none;
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #8b5cf6);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
  margin-bottom: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-icon-wrap svg {
  width: 27px;
  height: 27px;
  color: #ffffff;
  stroke-width: 2.4;
}

.why-card:hover .why-icon-wrap {
  transform: none;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.why-card h3 {
  margin: 0 0 10px;
  font-family: "Lexend", sans-serif;
  font-size: 1.22rem;
  line-height: 1.24;
  color: #152a5e;
}

.why-card p {
  margin: 0;
  color: #33466f;
  font-size: 0.99rem;
  line-height: 1.65;
}

.why-cta {
  margin-top: 48px;
  text-align: center;
  border-radius: 28px;
  padding: 42px 28px;
  border: 1px solid #dbe6ff;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 33, 79, 0.06);
}

.why-cta h3 {
  margin: 0 0 10px;
  font-family: "Lexend", sans-serif;
  font-size: clamp(1.5rem, 1.1rem + 1.1vw, 2rem);
  color: #152a5e;
}

.why-cta p {
  margin: 0 auto;
  max-width: 760px;
  color: #3c4f7a;
}

.why-cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.why-btn-primary,
.why-btn-secondary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, #2563eb, #8b5cf6);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-btn-primary::after,
.why-btn-secondary::after {
  content: "";
  position: absolute;
  inset: -120% -50%;
  background: linear-gradient(100deg, transparent 36%, rgba(255, 255, 255, 0.7) 50%, transparent 64%);
  transform: translateX(-65%) rotate(12deg);
  transition: none;
}

.why-btn-primary:hover,
.why-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(76, 29, 149, 0.36);
}

.why-btn-primary:hover::after,
.why-btn-secondary:hover::after {
  transform: translateX(-65%) rotate(12deg);
}

.why-btn-secondary {
  background: linear-gradient(135deg, #1e4ed8, #7c3aed);
}

.plans {
  background: linear-gradient(180deg, #eff5ff, #ffffff);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(23, 71, 181, 0.13);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card h3 {
  margin: 6px 0;
  font-family: "Lexend", sans-serif;
}

.plan-card p {
  margin: 0;
  color: #41517f;
}

.plan-card ul {
  margin: 10px 0 16px;
  display: grid;
  gap: 0.45rem;
  color: #24396d;
}

.plan-card ul li {
  position: relative;
  padding-left: 1.3rem;
}

.plan-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pink-primary);
  font-size: 1.1rem;
}

.plan-badge {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(23, 71, 181, 0.1);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.plan-badge.hot {
  background: rgba(255, 30, 168, 0.12);
  color: #a10d66;
}

.plan-card.featured {
  transform: scale(1.05);
  border: 2px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient-main) border-box;
  box-shadow: var(--shadow-strong);
}

.plans-cta {
  margin-top: 30px;
  text-align: center;
}

.results {
  background: radial-gradient(circle at 10% 15%, rgba(76, 140, 255, 0.12), transparent 35%), #ffffff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.result-card {
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  border: 1px solid rgba(23, 71, 181, 0.16);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.result-card strong {
  display: block;
  font-size: clamp(1.9rem, 1.5rem + 1.3vw, 2.8rem);
  font-family: "Lexend", sans-serif;
  color: var(--blue-dark);
}

.result-card span {
  color: #44527c;
  font-weight: 600;
}

.cta {
  padding-top: 40px;
}

.cta-box {
  border-radius: 30px;
  text-align: center;
  color: var(--white);
  padding: 56px 30px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.25), transparent 40%),
    linear-gradient(120deg, #1747b5, #1e63d9 52%, #ff1ea8);
  box-shadow: var(--shadow-strong);
}

.cta-box h2 {
  font-family: "Lexend", sans-serif;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 1.4rem + 1.5vw, 2.5rem);
}

.cta-box p {
  margin: 0 0 22px;
  opacity: 0.95;
}

.site-footer {
  margin-top: 90px;
  background: linear-gradient(180deg, #173987, #2c2c2c);
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  padding: 50px 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-logo {
  width: 130px;
  margin-bottom: 10px;
}

.footer-grid h4 {
  margin: 0 0 10px;
  font-family: "Lexend", sans-serif;
}

.footer-grid li {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 16px 10px;
  font-size: 0.93rem;
}

.reveal-up,
.reveal-up-delay {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up-delay {
  transition-delay: 0.17s;
}

.reveal-up.is-visible,
.reveal-up-delay.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.location-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 8%, rgba(76, 140, 255, 0.38), transparent 38%),
    radial-gradient(circle at 88% 22%, rgba(255, 83, 194, 0.28), transparent 42%),
    linear-gradient(130deg, #1a4db8, #245ed4 40%, #b52a9e);
  color: var(--white);
  position: relative;
}

.location-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  background-size: 24px 24px, 300% 100%;
  opacity: 0.22;
  pointer-events: none;
  animation: shimmer 10s linear infinite;
}

.location-header {
  position: relative;
  z-index: 2;
  padding: 24px 4%;
}

.location-main {
  width: min(1140px, 92%);
  margin: 0 auto;
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.location-panel {
  max-width: 460px;
}

.location-panel h1 {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem);
  line-height: 1.05;
}

.location-panel p {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.03rem;
  opacity: 0.92;
}

.location-panel select {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 1rem;
  font-size: 1rem;
  color: #24305e;
  font-weight: 600;
  outline: 2px solid transparent;
}

.location-panel select:focus-visible {
  outline-color: var(--pink-primary);
}

.location-panel small {
  display: block;
  margin-top: 9px;
  opacity: 0.86;
}

.mascot-stage {
  display: grid;
  place-items: center;
}

.mascot {
  width: min(420px, 92%);
  filter: drop-shadow(0 22px 45px rgba(13, 21, 48, 0.33));
  animation: mascotFloat 3.6s ease-in-out infinite;
}

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    margin-right: -60px;
  }

  .menu {
    position: fixed;
    top: 78px;
    right: 4%;
    left: 4%;
    background: rgba(15, 29, 74, 0.96);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-header {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding-top: 120px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero h1 {
    max-width: 16ch;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-benefits {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    min-height: 500px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why {
    padding: 120px 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card.featured {
    transform: none;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-main {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 24px;
  }

  .location-panel {
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 70px 0;
  }

  .hero-text {
    text-align: center;
  }

  .hero-badge,
  .hero h1,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .hero-benefits li {
    text-align: left;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    max-width: none;
    text-align: center;
  }

  .plans-grid,
  .results-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why {
    padding: 104px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
    padding: 26px;
  }

  .why-cta {
    padding: 34px 20px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .device-laptop {
    left: 2%;
    width: 88%;
    min-height: 260px;
  }

  .device-screen {
    min-height: 210px;
  }

  .device-phone {
    right: 3%;
    top: 27%;
    width: 132px;
    min-height: 260px;
  }

  .phone-screen {
    min-height: 205px;
  }

  .wifi-hologram {
    inset: 36% 15% auto 16%;
  }

  .float-card {
    font-size: 0.8rem;
  }

  .float-card:nth-child(1),
  .float-card:nth-child(2),
  .float-card:nth-child(3),
  .float-card:nth-child(4),
  .float-card:nth-child(5) {
    left: auto;
    right: auto;
  }

  .float-card:nth-child(1) {
    top: 2%;
    left: 0;
  }

  .float-card:nth-child(2) {
    top: 2%;
    right: 0;
  }

  .float-card:nth-child(3) {
    top: 70%;
    left: 0;
  }

  .float-card:nth-child(4) {
    top: 70%;
    right: 0;
  }

  .float-card:nth-child(5) {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1%;
  }

  .location-header {
    padding: 18px 4%;
  }
}

@keyframes dataFlow {
  0% {
    transform: translateX(-34px);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: translateX(56px);
    opacity: 0;
  }
}

@keyframes auroraShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.05);
    opacity: 0.72;
  }
}

@keyframes floatParticle {
  0% {
    transform: translateY(18px) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-24px) scale(1.2);
    opacity: 0;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes holoPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.04);
  }
}

@keyframes chartPulse {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

@keyframes glowSweep {
  from {
    transform: translateX(-65%) rotate(12deg);
  }
  to {
    transform: translateX(40%) rotate(12deg);
  }
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes shimmer {
  to {
    background-position: 0 0, -220% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


