:root {
  --navy-950: #05072d;
  --navy-900: #070b3d;
  --navy-800: #10145d;
  --navy-700: #191b73;
  --blue-500: #2767ff;
  --orange-600: #ed4b00;
  --orange-500: #ff5a00;
  --orange-400: #ff7a1a;
  --ink: #10142f;
  --muted: #646980;
  --line: #e5e7f0;
  --surface: #f6f7fb;
  --white: #fff;
  --green: #1dab61;
  --shadow: 0 24px 70px rgba(7, 11, 61, .13);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(39, 103, 255, .35);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 12px 28px rgba(237, 75, 0, .24);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(237, 75, 0, .32);
}

.button-ghost {
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(7, 11, 61, .18);
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .32);
  backdrop-filter: blur(14px);
}

.button-outline {
  color: var(--navy-900);
  background: var(--white);
  border-color: rgba(7, 11, 61, .22);
}

.button-white {
  color: var(--navy-900);
  background: var(--white);
}

.button-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}

.button-large {
  min-height: 54px;
  padding-inline: 26px;
}

.button-full {
  width: 100%;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(7, 11, 61, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(7, 11, 61, .08);
}

.header-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 170px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #34384f;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange-500);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .button {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--navy-900);
  border-radius: 4px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 82px;
  right: 0;
  left: 0;
  padding: 16px 20px 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 32px rgba(7, 11, 61, .1);
}

.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  padding: 13px 4px;
  border: 0;
  color: var(--navy-900);
  background: none;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 750;
}

.hero {
  position: relative;
  height: clamp(600px, 67vw, 760px);
  max-height: calc(100vh - 40px);
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .75s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 7s ease;
}

.hero-slide.is-active .hero-media img {
  transform: scale(1);
}

.hero-copy-left .hero-media img {
  object-position: center;
}

.hero-copy-right .hero-media img {
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 7, 44, .94) 0%, rgba(4, 7, 44, .72) 32%, rgba(4, 7, 44, .08) 67%, rgba(4, 7, 44, .08) 100%);
}

.hero-copy-right .hero-overlay {
  background: linear-gradient(90deg, rgba(4, 7, 44, .04) 0%, rgba(4, 7, 44, .13) 42%, rgba(4, 7, 44, .78) 69%, rgba(4, 7, 44, .96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}

.hero-content > * {
  min-width: 0;
  max-width: 610px;
}

.hero-copy-right .hero-content {
  align-items: flex-end;
  text-align: left;
}

.hero-copy-right .hero-content > * {
  width: 47%;
  max-width: 550px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--orange-500);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff9c62;
}

.eyebrow span {
  width: 23px;
  height: 2px;
  background: var(--orange-500);
}

.hero h1,
.hero h2 {
  margin: 0;
  max-width: 650px;
  color: var(--white);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .98;
  overflow-wrap: anywhere;
}

.hero h2 {
  font-size: clamp(44px, 4.7vw, 72px);
}

.hero h1 em,
.hero h2 em {
  color: var(--orange-500);
  font-style: normal;
}

.hero-text {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .83);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 650;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, .18);
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background .2s ease;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, .22);
}

.carousel-arrow svg {
  width: 22px;
}

.carousel-prev {
  left: max(18px, calc((100% - 1260px) / 2));
}

.carousel-next {
  right: max(18px, calc((100% - 1260px) / 2));
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .42);
  border-radius: 999px;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.carousel-dots button.is-active {
  width: 30px;
  background: var(--orange-500);
}

.quick-actions {
  position: relative;
  z-index: 6;
  margin-top: -1px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.quick-grid > a,
.quick-grid > button {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 25px 22px;
  border: 0;
  background: var(--white);
  border-right: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}

.quick-grid > :first-child {
  border-left: 1px solid var(--line);
}

.quick-grid > a:hover,
.quick-grid > button:hover {
  background: #fafaff;
}

.quick-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--orange-500);
  background: #fff2eb;
  border-radius: 14px;
}

.quick-icon svg {
  width: 23px;
}

.quick-grid strong,
.quick-grid small {
  display: block;
}

.quick-grid strong {
  color: var(--navy-900);
  font-size: 14px;
}

.quick-grid small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.quick-arrow {
  width: 18px;
  color: #a6aabd;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.coverage-copy h2,
.support-card h2,
.faq-card h2,
.closing-cta h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 53px);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.plans-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 90, 0, .08), transparent 24%),
    linear-gradient(180deg, #fff, #f8f9fc);
}

.plans-scroller {
  display: flex;
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  padding: 18px 4px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.plans-scroller::-webkit-scrollbar {
  display: none;
}

.plan-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 4px;
}

.plan-slider-head p,
.plan-slider-head span {
  margin: 0;
}

.plan-slider-head strong,
.plan-slider-head span {
  display: block;
}

.plan-slider-head strong {
  color: var(--navy-900);
  font-size: 14px;
}

.plan-slider-head span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.plan-slider-controls {
  display: flex;
  gap: 8px;
}

.plan-slider-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(7, 11, 61, .07);
}

.plan-slider-controls button:hover {
  color: var(--white);
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.plan-slider-controls svg {
  width: 20px;
}

.plan-slider-progress {
  height: 4px;
  overflow: hidden;
  margin: 0 4px 24px;
  background: #e4e6ee;
  border-radius: 999px;
}

.plan-slider-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange-500), var(--blue-500));
  border-radius: inherit;
  transition: width .25s ease;
}

.plan-card {
  position: relative;
  min-width: 0;
  flex: 0 0 calc((100% - 32px) / 3);
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(7, 11, 61, .055);
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan-card:hover {
  border-color: rgba(255, 90, 0, .38);
  box-shadow: 0 22px 55px rgba(7, 11, 61, .1);
  transform: translateY(-7px);
}

.plan-card.featured {
  padding-top: 39px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(39, 103, 255, .32), transparent 38%),
    linear-gradient(160deg, var(--navy-700), var(--navy-950));
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(7, 11, 61, .25);
  transform: translateY(-9px);
}

.plan-card.featured:hover {
  transform: translateY(-15px);
}

.popular {
  position: absolute;
  top: -13px;
  right: 24px;
  left: 24px;
  padding: 7px 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-label {
  margin: 0;
  color: var(--orange-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.featured .plan-label {
  color: #ff9d63;
}

.plan-card h3 {
  margin: 8px 0 2px;
  color: var(--navy-900);
  font-size: 24px;
  line-height: 1;
}

.plan-card h3 strong {
  font-size: 49px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.featured h3 {
  color: var(--white);
}

.plan-use {
  min-height: 42px;
  margin: 9px 0 23px;
  color: var(--muted);
  font-size: 13px;
}

.featured .plan-use {
  color: rgba(255, 255, 255, .68);
}

.plan-price {
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  color: var(--navy-900);
}

.plan-price > span {
  margin: 9px 4px 0 0;
  font-size: 15px;
  font-weight: 800;
}

.plan-price > strong {
  font-size: 51px;
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: 1;
}

.plan-price > sup {
  margin-top: 4px;
  font-size: 19px;
  font-weight: 850;
}

.plan-price > small {
  align-self: flex-end;
  margin: 0 0 6px 4px;
  color: var(--muted);
  font-size: 11px;
}

.featured .plan-price {
  color: var(--white);
}

.featured .plan-price > small {
  color: rgba(255, 255, 255, .58);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured ul {
  border-color: rgba(255, 255, 255, .14);
}

.plan-card li {
  position: relative;
  padding-left: 23px;
  color: #44495f;
  font-size: 13px;
}

.plan-card li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--orange-600);
  background: #fff0e7;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.featured li {
  color: rgba(255, 255, 255, .82);
}

.featured li::before {
  color: var(--white);
  background: var(--orange-500);
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.plan-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 27px;
  padding: 20px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.plan-note > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.plan-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.plan-note strong {
  color: var(--navy-900);
}

.phone-pulse {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--orange-500);
  background: #fff1e9;
  border-radius: 50%;
}

.phone-pulse svg {
  width: 22px;
}

.plan-note > a {
  color: var(--orange-600);
  font-size: 13px;
  font-weight: 800;
}

.speed-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 45%, rgba(39, 103, 255, .3), transparent 28%),
    radial-gradient(circle at 25% 15%, rgba(255, 90, 0, .18), transparent 23%),
    linear-gradient(135deg, #030526 0%, #070b3d 52%, #11166f 100%);
}

.speed-section::before,
.speed-stars {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.speed-section::before {
  opacity: .3;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(500px) rotateX(64deg) scale(1.7) translateY(22%);
  transform-origin: bottom;
}

.speed-stars {
  opacity: .62;
  background-image:
    radial-gradient(circle at 12% 18%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 32% 72%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 62% 22%, #ff8a42 0 1px, transparent 2px),
    radial-gradient(circle at 84% 67%, #fff 0 1px, transparent 2px),
    radial-gradient(circle at 91% 17%, #6da0ff 0 1px, transparent 2px);
  background-size: 190px 190px, 230px 230px, 260px 260px, 310px 310px, 360px 360px;
  animation: speed-stars 12s linear infinite;
}

.speed-stars::before,
.speed-stars::after {
  position: absolute;
  inset: 0;
  content: "";
  background-repeat: repeat;
}

.speed-stars::before {
  opacity: .7;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .95) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(109, 160, 255, .9) 0 1.2px, transparent 2px);
  background-position: 20px 30px, 90px 110px;
  background-size: 150px 150px, 240px 240px;
  animation: stars-twinkle 3.8s ease-in-out infinite alternate;
}

.speed-stars::after {
  opacity: .45;
  background-image:
    radial-gradient(circle, rgba(255, 138, 66, .95) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, .9) 0 1.5px, transparent 2.3px);
  background-position: 65px 80px, 140px 35px;
  background-size: 280px 280px, 330px 330px;
  animation: stars-twinkle 5.2s 1.1s ease-in-out infinite alternate-reverse;
}

.speed-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.speed-copy {
  max-width: 570px;
}

.speed-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -.055em;
  line-height: .98;
}

.speed-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}

.speed-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.speed-stats div {
  min-width: 0;
  padding: 17px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.speed-stats strong,
.speed-stats span {
  display: block;
}

.speed-stats strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.speed-stats span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.rocket-stage {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.rocket-stage::before {
  position: absolute;
  inset: 8% 8%;
  content: "";
  background: radial-gradient(circle, rgba(39, 103, 255, .25), transparent 66%);
  filter: blur(12px);
}

.speed-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  animation: orbit-drift 13s linear infinite;
}

.orbit-one {
  width: 420px;
  height: 220px;
}

.orbit-two {
  width: 510px;
  height: 300px;
  opacity: .45;
  animation-duration: 18s;
  animation-direction: reverse;
}

.rocket-trail {
  position: absolute;
  left: 5%;
  top: 65%;
  width: 66%;
  height: 18px;
  background: linear-gradient(90deg, transparent, rgba(39, 103, 255, .25), #4a83ff, #fff);
  border-radius: 999px;
  filter: blur(5px);
  transform: rotate(-34deg);
  transform-origin: right;
  animation: rocket-trail 1.5s ease-in-out infinite alternate;
}

.rocket {
  position: absolute;
  z-index: 3;
  left: 51%;
  top: 43%;
  width: 145px;
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, .4));
  transform: translate(-50%, -50%) rotate(34deg);
  animation: rocket-fly 3s ease-in-out infinite;
}

.rocket svg {
  overflow: visible;
  stroke-width: 3;
}

.rocket-body {
  fill: #fff;
  stroke: #fff;
}

.rocket-window {
  fill: var(--blue-500);
  stroke: #9cbcff;
}

.rocket-fin {
  fill: var(--orange-500);
  stroke: #ff9b63;
}

.rocket-flame {
  stroke: none;
  transform-origin: 60px 112px;
}

.flame-a {
  fill: var(--orange-500);
  animation: flame 1s ease-in-out infinite alternate;
}

.flame-b {
  fill: #ffd36c;
  animation: flame .65s ease-in-out infinite alternate-reverse;
}

.speed-badge {
  position: absolute;
  z-index: 4;
  right: 2%;
  bottom: 9%;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  color: var(--white);
  text-align: center;
  background: linear-gradient(145deg, var(--orange-500), var(--orange-600));
  border: 7px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  box-shadow: 0 25px 55px rgba(237, 75, 0, .36);
  animation: badge-pulse 2.5s ease-in-out infinite;
}

.speed-badge span,
.speed-badge b {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.speed-badge strong {
  font-size: 43px;
  line-height: .9;
}

.data-particle {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px #6d9cff;
  animation: data-run 2.7s linear infinite;
}

.particle-a { left: 13%; top: 67%; }
.particle-b { left: 5%; top: 79%; animation-delay: -.8s; }
.particle-c { left: 24%; top: 86%; animation-delay: -1.7s; }

@keyframes rocket-fly {
  0%, 100% { transform: translate(-50%, -50%) rotate(32deg) translate(0, 4px); }
  35% { transform: translate(-50%, -50%) rotate(35deg) translate(10px, -13px); }
  68% { transform: translate(-50%, -50%) rotate(33deg) translate(-4px, -19px); }
}

@keyframes rocket-trail {
  from { opacity: .45; transform: rotate(-34deg) scaleX(.82); }
  to { opacity: 1; transform: rotate(-34deg) scaleX(1.08); }
}

@keyframes flame {
  from { transform: scaleY(.82); opacity: .75; }
  to { transform: scaleY(1.17); opacity: 1; }
}

@keyframes badge-pulse {
  50% { transform: scale(1.05); box-shadow: 0 30px 72px rgba(237, 75, 0, .5); }
}

@keyframes data-run {
  from { transform: translate(0, 0) scale(.6); opacity: 0; }
  15% { opacity: 1; }
  to { transform: translate(330px, -230px) scale(1.2); opacity: 0; }
}

@keyframes speed-stars {
  to { background-position: 190px -190px, 230px -230px, 260px -260px, 310px -310px, 360px -360px; }
}

@keyframes stars-twinkle {
  0%, 100% { opacity: .28; filter: brightness(.75); }
  45% { opacity: .95; filter: brightness(1.45); }
  70% { opacity: .5; filter: brightness(1); }
}

@keyframes orbit-drift {
  to { transform: translate(-50%, -50%) rotate(338deg); }
}

.benefits-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 25, 103, .98), rgba(4, 7, 44, .99)),
    url("../images/hero-performance.webp") center/cover;
}

.benefits-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.section-kicker.light {
  color: #ff9c62;
}

.benefits-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 850;
  letter-spacing: -.05em;
  line-height: 1.05;
}

.benefits-copy > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 27px;
  color: #ff9d63;
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  transition: transform .2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

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

.benefits-grid article {
  min-height: 218px;
  padding: 27px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  transition: background .2s ease, transform .2s ease;
}

.benefits-grid article:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-4px);
}

.benefits-grid article > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ff9d63;
  background: rgba(255, 90, 0, .14);
  border: 1px solid rgba(255, 123, 27, .24);
  border-radius: 14px;
}

.benefits-grid article > span svg {
  width: 24px;
}

.benefits-grid h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.benefits-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

.coverage-section {
  background: var(--surface);
}

.coverage-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 70px;
  align-items: center;
  padding: 62px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.coverage-card::before {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 260px;
  height: 260px;
  content: "";
  background: radial-gradient(circle, rgba(255, 90, 0, .15), transparent 68%);
}

.coverage-copy {
  position: relative;
}

.coverage-copy p:not(.section-kicker) {
  max-width: 540px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.coverage-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.coverage-trust span {
  padding: 7px 11px;
  color: #4d5268;
  background: var(--surface);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.coverage-form {
  padding: 30px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(7, 11, 61, .24);
}

.coverage-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.field-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d8dbe7;
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(39, 103, 255, .12);
  outline: 0;
}

textarea {
  min-height: 96px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.form-hint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .56);
  font-size: 11px;
}

.form-status {
  display: none;
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 13px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0c6b3a;
  background: #e9faef;
  border: 1px solid #b9ebca;
}

.form-status.is-error {
  color: #9a2c19;
  background: #fff0ed;
  border: 1px solid #ffc9bf;
}

.coverage-form .form-status.is-success,
.coverage-form .form-status.is-error {
  border: 0;
}

.support-section {
  background: var(--white);
}

.support-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.support-card,
.faq-card {
  padding: 48px;
  border-radius: 26px;
}

.primary-support {
  color: var(--white);
  background:
    radial-gradient(circle at 95% 5%, rgba(39, 103, 255, .32), transparent 32%),
    linear-gradient(150deg, var(--navy-700), var(--navy-950));
}

.support-card h2 {
  color: var(--white);
}

.support-links {
  display: grid;
  gap: 9px;
  margin-top: 31px;
}

.support-links a,
.support-links button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 17px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.support-links a:hover,
.support-links button:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateX(3px);
}

.support-links span,
.support-links small {
  display: block;
  min-width: 0;
  grid-column: 1;
}

.support-links span {
  grid-row: 1;
  font-weight: 800;
  line-height: 1.25;
}

.support-links small {
  grid-row: 2;
  margin-top: 2px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.4;
}

.support-links svg {
  width: 19px;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.faq-list {
  margin-top: 25px;
}

.faq-list details {
  border-bottom: 1px solid #dde0ea;
}

.faq-list summary {
  position: relative;
  padding: 18px 36px 18px 0;
  color: var(--navy-900);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--orange-500);
  border-radius: 2px;
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -4px 0 19px;
  color: var(--muted);
  font-size: 14px;
}

.closing-cta {
  padding: 66px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 40%, rgba(255, 255, 255, .15), transparent 28%),
    linear-gradient(120deg, var(--orange-600), var(--orange-500));
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.closing-cta h2 {
  max-width: 700px;
  color: var(--white);
}

.closing-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, .64);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr 1.15fr;
  gap: 52px;
}

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

.footer-brand p {
  max-width: 320px;
  margin: 19px 0 0;
}

.footer-grid h2 {
  margin: 8px 0 17px;
  color: var(--white);
  font-size: 14px;
}

.footer-grid a,
.footer-grid button {
  display: block;
  margin: 9px 0;
  padding: 0;
  color: rgba(255, 255, 255, .62);
  background: none;
  border: 0;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  transition: color .2s ease;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--white);
}

.footer-contact > a {
  color: #ff9c62;
  font-size: 19px;
  font-weight: 800;
}

.footer-contact p {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1fb764;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 15px 36px rgba(9, 86, 47, .3);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-float svg {
  width: 30px;
}

.assistant {
  position: fixed;
  z-index: 90;
  right: 92px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.assistant-invite {
  padding: 9px 13px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7, 11, 61, .18);
  transition: opacity .2s ease, transform .2s ease;
}

.assistant:has(.assistant-panel:not([hidden])) .assistant-invite {
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
}

.assistant-toggle {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-700), var(--blue-500));
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 15px 36px rgba(7, 11, 61, .34);
  cursor: pointer;
  transition: transform .2s ease;
}

.assistant-toggle:hover {
  transform: translateY(-4px) scale(1.04);
}

.assistant-toggle svg {
  width: 29px;
}

.assistant-toggle-status {
  position: absolute;
  top: 0;
  right: 0;
  width: 13px;
  height: 13px;
  background: #20c768;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(400px, calc(100vw - 28px));
  max-height: min(650px, calc(100vh - 110px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 85px rgba(3, 5, 28, .32);
  animation: modal-in .25s ease;
}

.assistant-panel[hidden] {
  display: none;
}

.assistant-panel header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
}

.assistant-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.assistant-avatar > span {
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: #20c768;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.assistant-panel header div {
  min-width: 0;
  flex: 1;
}

.assistant-panel header strong,
.assistant-panel header small {
  display: block;
}

.assistant-panel header small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
}

.assistant-panel header small i {
  width: 6px;
  height: 6px;
  background: #5cf09a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(92, 240, 154, .13);
}

.assistant-panel header button {
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.assistant-messages {
  max-height: 270px;
  min-height: 158px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 17px 16px 12px;
  background:
    radial-gradient(circle at 100% 0, rgba(39, 103, 255, .08), transparent 35%),
    #f7f8fc;
}

.assistant-message {
  max-width: 88%;
  padding: 10px 12px 7px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.45;
}

.assistant-message p {
  margin: 0;
}

.assistant-message time {
  display: block;
  margin-top: 4px;
  color: inherit;
  opacity: .48;
  font-size: 9px;
  line-height: 1;
  text-align: right;
}

.assistant-message.bot {
  align-self: flex-start;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.assistant-message.user {
  align-self: flex-end;
  color: var(--white);
  background: var(--blue-500);
  border-bottom-right-radius: 4px;
}

.assistant-message.typing {
  width: 58px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.assistant-message.typing span {
  width: 6px;
  height: 6px;
  background: #8d93ad;
  border-radius: 50%;
  animation: assistant-typing 1s ease-in-out infinite;
}

.assistant-message.typing span:nth-child(2) { animation-delay: .15s; }
.assistant-message.typing span:nth-child(3) { animation-delay: .3s; }

.assistant-action {
  align-self: flex-start;
  padding: 8px 11px;
  color: var(--orange-600);
  background: #fff0e8;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.assistant-action:hover {
  background: #ffe2d2;
  transform: translateY(-1px);
}

.assistant-suggestions-label {
  margin: 0;
  padding: 12px 14px 2px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.assistant-suggestions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 8px 12px 12px;
}

.assistant-suggestions button {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: var(--navy-800);
  text-align: left;
  background: #f4f6ff;
  border: 1px solid #e4e8f8;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.assistant-suggestions button:hover {
  background: #eef1ff;
  border-color: rgba(39, 103, 255, .3);
  transform: translateY(-1px);
}

.assistant-suggestions button > svg {
  width: 22px;
  flex: 0 0 auto;
  color: var(--orange-500);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.assistant-suggestions button span,
.assistant-suggestions button strong,
.assistant-suggestions button small {
  min-width: 0;
  display: block;
}

.assistant-suggestions button strong {
  font-size: 10px;
  line-height: 1.2;
}

.assistant-suggestions button small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assistant-panel > form {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  padding: 11px 12px 7px;
  border-top: 1px solid var(--line);
}

.assistant-panel > form input {
  min-height: 42px;
  padding-inline: 14px;
  background: #f7f8fc;
  border-color: #e2e5ef;
  border-radius: 999px;
  font-size: 12px;
}

.assistant-panel > form button {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--orange-500);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.assistant-panel > form button:hover {
  transform: scale(1.05);
}

.assistant-panel > form.is-busy button {
  opacity: .58;
  pointer-events: none;
}

.assistant-panel > form svg {
  width: 20px;
}

.assistant-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 0 12px 10px;
  color: #8a8fa4;
  font-size: 8px;
}

.assistant-privacy svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@keyframes assistant-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 28, .75);
  backdrop-filter: blur(7px);
  animation: fade-in .2s ease;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: min(850px, calc(100vh - 40px));
  overflow: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 100px rgba(3, 5, 28, .42);
  animation: modal-in .28s ease;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 17px;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #64697c;
  background: #f0f1f6;
  border: 0;
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.modal-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px 64px 20px 28px;
  background: #fafaff;
  border-bottom: 1px solid var(--line);
}

.modal-brand img {
  width: 112px;
}

.modal-brand p,
.modal-brand span {
  margin: 0;
}

.modal-brand p {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.modal-brand span {
  color: var(--muted);
  font-size: 11px;
}

.modal-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 10px;
  background: var(--surface);
}

.modal-tabs button {
  min-height: 42px;
  padding: 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.modal-tabs button[aria-selected="true"] {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(7, 11, 61, .08);
}

.modal-body {
  padding: 32px;
}

.tab-panel[hidden] {
  display: none;
}

.modal-kicker {
  margin: 0 0 6px;
  color: var(--orange-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tab-panel h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.tab-panel > p:not(.modal-kicker):not(.modal-alternative) {
  margin: 10px 0 23px;
  color: var(--muted);
  font-size: 14px;
}

.tab-panel form > label,
.tab-panel .form-grid > label {
  display: block;
  margin-bottom: 14px;
  color: #3b3f54;
  font-size: 12px;
  font-weight: 750;
}

.tab-panel label input,
.tab-panel label select,
.tab-panel label textarea {
  margin-top: 6px;
  font-weight: 400;
}

.tab-panel form > .button {
  margin-top: 5px;
}

.modal-alternative {
  margin: 17px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.modal-alternative a {
  color: var(--orange-600);
  font-weight: 800;
}

.client-billing {
  margin-top: 4px;
}

.client-billing[hidden],
.invoice-detail[hidden] {
  display: none;
}

.client-billing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 17px 19px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border-radius: 16px;
}

.client-billing-head span,
.client-billing-head strong {
  display: block;
}

.client-billing-head span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.client-billing-head strong {
  margin-top: 2px;
  font-size: 18px;
}

.client-billing-head button,
.invoice-detail > header > button,
.invoice-code button {
  padding: 8px 11px;
  color: var(--navy-900);
  background: var(--white);
  border: 0;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.invoice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.invoice-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 17px;
  background: #f7f8fc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.invoice-card.is-overdue {
  background: #fff7f4;
  border-color: #ffd2c4;
}

.invoice-card > div,
.invoice-card small {
  min-width: 0;
  display: block;
}

.invoice-card .invoice-status {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 4px 8px;
  color: #17673d;
  background: #e7f8ee;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.invoice-card.is-overdue .invoice-status {
  color: #a3331d;
  background: #ffe4dc;
}

.invoice-card small {
  color: var(--muted);
  font-size: 11px;
}

.invoice-card > strong {
  grid-column: 1;
  color: var(--navy-900);
  font-size: 22px;
}

.invoice-card > .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 42px;
  padding-inline: 14px;
  font-size: 11px;
}

.invoice-detail {
  margin-top: 18px;
  padding: 18px;
  background: #f6f7fb;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.invoice-detail > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.invoice-detail > header span,
.invoice-detail > header h3 {
  display: block;
  margin: 0;
}

.invoice-detail > header span {
  color: var(--orange-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.invoice-detail > header h3 {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 18px;
}

.invoice-viewer {
  width: 100%;
  height: min(62vh, 620px);
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.invoice-codes {
  display: grid;
  gap: 10px;
  margin-top: 13px;
}

.invoice-code {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 10px;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.invoice-code span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.invoice-code code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--navy-900);
  font-size: 12px;
}

.invoice-code button {
  color: var(--white);
  background: var(--navy-800);
}

.invoice-empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: #f7f8fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 12px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  margin: 5px 0 14px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  flex: 0 0 auto;
}

.support-options {
  display: grid;
  gap: 10px;
}

.hours-box {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 12px;
  font-size: 12px;
}

.hours-box strong {
  color: var(--navy-900);
}

.home-campaign {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 5, 38, .98) 0%, rgba(3, 5, 38, .9) 38%, rgba(3, 5, 38, .2) 70%, rgba(3, 5, 38, .42) 100%),
    url("../images/copa-liveonenet-2026.webp") center/cover;
}

.home-campaign::after {
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), #ffd34d, #20c768, var(--blue-500));
}

.home-campaign-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.home-campaign h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  letter-spacing: -.055em;
  line-height: .98;
}

.home-campaign-copy > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
}

.campaign-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
}

.campaign-pills span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.coverage-locations {
  background: #f7f8fc;
}

.location-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.location-cloud a {
  padding: 12px 16px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 8px 24px rgba(7, 11, 61, .05);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.location-cloud a:hover {
  color: var(--orange-600);
  border-color: rgba(255, 90, 0, .35);
  transform: translateY(-2px);
}

.local-page {
  padding-top: 82px;
  background: #f8f9fc;
}

.local-page .site-header {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 30px rgba(7, 11, 61, .08);
}

.local-hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 35%, rgba(39, 103, 255, .34), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(255, 90, 0, .2), transparent 30%),
    linear-gradient(135deg, #030526, #10145d);
}

.local-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(500px) rotateX(62deg) scale(1.6) translateY(24%);
  transform-origin: bottom;
}

.local-hero.is-campaign {
  background:
    linear-gradient(90deg, rgba(3, 5, 38, .98), rgba(3, 5, 38, .88) 42%, rgba(3, 5, 38, .08) 76%),
    var(--local-art) center/cover;
}

.local-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
}

.local-hero-copy {
  max-width: 720px;
  padding: 86px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
}

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

.local-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(43px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .97;
}

.local-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}

.local-address-card {
  width: min(570px, 100%);
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 17px 19px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.local-address-card span {
  color: #ff9c62;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.local-address-card strong {
  font-size: 18px;
}

.local-address-card small {
  color: rgba(255, 255, 255, .65);
}

.local-content-section,
.local-faq-section {
  background: var(--white);
}

.local-two-column {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.local-two-column h2,
.local-streets-section h2,
.local-faq-section h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(36px, 4vw, 55px);
  letter-spacing: -.05em;
  line-height: 1.03;
}

.local-two-column > div > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
}

.local-check-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.local-check-list li {
  position: relative;
  padding-left: 29px;
  color: #34394f;
}

.local-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--orange-500);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.local-plan-card,
.social-campaign-card {
  position: sticky;
  top: 110px;
  padding: 33px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(39, 103, 255, .4), transparent 38%),
    linear-gradient(155deg, var(--navy-700), var(--navy-950));
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.local-plan-card > span,
.social-campaign-card > span {
  color: #ff9c62;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.local-plan-card > strong {
  display: block;
  margin: 12px 0 7px;
  font-size: 58px;
  letter-spacing: -.06em;
  line-height: 1;
}

.local-plan-card > strong small,
.local-plan-card > strong sup {
  font-size: 20px;
}

.local-plan-card p,
.social-campaign-card p {
  color: rgba(255, 255, 255, .66);
}

.social-campaign-card h2 {
  margin: 13px 0 23px;
  color: var(--white);
  font-size: 30px;
}

.social-campaign-card a {
  display: block;
  margin-top: 9px;
  padding: 13px 15px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.local-streets-section {
  background: #f7f8fc;
}

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

.cep-grid a,
.neighborhood-grid a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(7, 11, 61, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cep-grid a:hover,
.neighborhood-grid a:hover,
.cep-grid a.is-current {
  border-color: rgba(255, 90, 0, .4);
  box-shadow: 0 18px 42px rgba(7, 11, 61, .09);
  transform: translateY(-4px);
}

.cep-grid span,
.neighborhood-grid span {
  color: var(--orange-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cep-grid strong,
.neighborhood-grid strong {
  margin-top: 8px;
  color: var(--navy-900);
  font-size: 16px;
}

.cep-grid small,
.neighborhood-grid small {
  margin-top: 5px;
  color: var(--muted);
}

.local-links-section {
  padding: 38px 0;
  color: rgba(255, 255, 255, .7);
  background: var(--navy-950);
}

.local-links-section p {
  margin: 0 0 14px;
  color: var(--white);
  font-weight: 800;
}

.local-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.local-link-cloud a {
  padding: 8px 11px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  font-size: 11px;
}

.local-link-cloud a:hover,
.local-link-cloud a.is-current {
  color: var(--white);
  background: var(--orange-500);
  border-color: var(--orange-500);
}

@keyframes fade-in {
  from { opacity: 0; }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 32px, 920px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    padding-inline: 34px;
  }

  .hero-copy-right .hero-content {
    align-items: flex-end;
  }

  .hero-copy-right .hero-content > * {
    width: 50%;
  }

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

  .quick-grid > :nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .quick-grid > :nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .plans-scroller {
    gap: 18px;
  }

  .plan-card {
    flex-basis: calc((100% - 18px) / 2);
  }

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

  .plan-card.featured:hover {
    transform: translateY(-7px);
  }

  .benefits-layout,
  .coverage-card,
  .support-layout,
  .local-two-column {
    grid-template-columns: 1fr;
  }

  .speed-layout {
    grid-template-columns: 1fr;
  }

  .speed-copy {
    max-width: 720px;
  }

  .rocket-stage {
    width: min(680px, 100%);
    min-height: 460px;
    margin-inline: auto;
  }

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

  .local-plan-card,
  .social-campaign-card {
    position: static;
  }

  .benefits-layout {
    gap: 42px;
  }

  .coverage-card {
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 30px;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 70px;
  }

  .header-shell {
    gap: 10px;
    min-width: 0;
  }

  .brand {
    width: 136px;
  }

  .header-client {
    display: none;
  }

  .header-actions .header-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    height: clamp(700px, calc(100svh - 70px), 820px);
    min-height: 700px;
    max-height: 820px;
  }

  .hero-media img,
  .hero-copy-left .hero-media img,
  .hero-copy-right .hero-media img {
    object-position: center top;
  }

  .hero-slide .hero-overlay,
  .hero-copy-right .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 7, 44, .04) 0%, rgba(4, 7, 44, .08) 39%, rgba(4, 7, 44, .7) 60%, rgba(4, 7, 44, .98) 82%, rgba(4, 7, 44, 1) 100%);
  }

  .hero-content,
  .hero-copy-right .hero-content {
    width: var(--shell);
    max-width: calc(100vw - 28px);
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 0 96px;
    text-align: left;
  }

  .hero-copy-right .hero-content > *,
  .hero-content > * {
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(34px, 9.8vw, 46px);
    line-height: .98;
  }

  .hero-text {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-proof {
    display: none;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-dots {
    right: auto;
    bottom: 20px;
    left: 18px;
    transform: none;
  }

  .quick-actions {
    overflow: hidden;
  }

  .quick-grid {
    width: auto;
    margin: 0;
    display: flex;
    overflow-x: auto;
    padding: 0 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .quick-grid::-webkit-scrollbar {
    display: none;
  }

  .quick-grid > a,
  .quick-grid > button,
  .quick-grid > :nth-child(3) {
    min-width: min(82vw, 300px);
    padding: 20px 16px;
    border: 0;
    border-right: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .section {
    padding: 72px 0;
  }

  .home-campaign {
    padding: 76px 0;
    background:
      linear-gradient(180deg, rgba(3, 5, 38, .15) 0%, rgba(3, 5, 38, .55) 38%, rgba(3, 5, 38, .98) 72%),
      url("../images/copa-liveonenet-2026.webp") 66% center/cover;
  }

  .home-campaign-copy {
    padding-top: 250px;
  }

  .local-page {
    padding-top: 70px;
  }

  .local-hero {
    min-height: 610px;
  }

  .local-hero.is-campaign {
    background:
      linear-gradient(180deg, rgba(3, 5, 38, .12), rgba(3, 5, 38, .62) 46%, rgba(3, 5, 38, .98) 78%),
      var(--local-art) 66% center/cover;
  }

  .local-hero-copy {
    padding: 245px 0 65px;
  }

  .local-hero:not(.is-campaign) .local-hero-copy {
    padding-top: 70px;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .coverage-copy h2,
  .support-card h2,
  .faq-card h2,
  .closing-cta h2 {
    font-size: 36px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .plans-section .shell {
    width: 100%;
  }

  .plans-section .section-heading,
  .plan-note,
  .plan-slider-head,
  .plan-slider-progress {
    width: calc(100% - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .plans-scroller {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 14px 14px 24px;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .plans-scroller::-webkit-scrollbar {
    display: none;
  }

  .plan-card {
    flex-basis: auto;
    min-width: min(82vw, 320px);
    scroll-snap-align: center;
  }

  .plan-slider-controls {
    display: none;
  }

  .speed-section {
    padding: 75px 0;
  }

  .speed-copy h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .speed-stats {
    grid-template-columns: 1fr;
  }

  .speed-stats div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 12px;
  }

  .speed-stats span {
    margin-top: 0;
  }

  .rocket-stage {
    min-height: 390px;
    transform: scale(.88);
    margin-block: -20px;
  }

  .plan-note {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 4px;
  }

  .benefits-layout {
    gap: 36px;
  }

  .benefits-copy h2 {
    font-size: 39px;
  }

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

  .benefits-grid article {
    min-height: 0;
  }

  .coverage-section {
    padding-inline: 14px;
  }

  .coverage-card {
    width: 100%;
    padding: 34px 24px 24px;
    border-radius: 24px;
  }

  .coverage-form {
    padding: 22px;
  }

  .field-action {
    grid-template-columns: 1fr;
  }

  .support-card,
  .faq-card {
    padding: 34px 24px;
  }

  .closing-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .closing-actions .button {
    width: 100%;
  }

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

  .cep-grid,
  .neighborhood-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

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

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-height: 94vh;
    border-radius: 24px 24px 0 0;
  }

  .modal-brand {
    padding: 20px 56px 16px 20px;
  }

  .modal-brand img {
    width: 95px;
  }

  .modal-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(6, minmax(82px, 1fr));
  }

  .modal-body {
    padding: 25px 20px 32px;
  }

  .invoice-list {
    grid-template-columns: 1fr;
  }

  .invoice-viewer {
    height: 58vh;
  }

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

  .form-grid .wide {
    grid-column: auto;
  }

  .hours-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .assistant {
    right: 80px;
    bottom: 15px;
  }

  .assistant-invite {
    display: none;
  }

  .assistant-toggle {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .site-header {
    height: 68px;
  }

  .brand {
    width: 130px;
  }

  .header-actions .header-cta {
    display: none;
  }

  .mobile-nav {
    top: 68px;
  }

  .hero {
    height: clamp(700px, calc(100svh - 68px), 820px);
    min-height: 700px;
  }

  .home-campaign h2,
  .local-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .home-campaign-copy {
    padding-top: 225px;
  }

  .local-hero-copy {
    padding-top: 225px;
  }

  .local-hero:not(.is-campaign) .local-hero-copy {
    padding-top: 58px;
  }

  .local-address-card {
    padding: 14px;
  }

  .hero-content,
  .hero-copy-right .hero-content {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
    padding-bottom: 92px;
  }

  .hero h1,
  .hero h2 {
    max-width: 100%;
    font-size: clamp(32px, 9.2vw, 42px);
    letter-spacing: -.047em;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 17px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .support-links a,
  .support-links button {
    padding: 16px;
  }

  .quick-grid > a,
  .quick-grid > button,
  .quick-grid > :nth-child(3) {
    min-width: calc(100vw - 44px);
  }

  .section-heading h2,
  .coverage-copy h2,
  .support-card h2,
  .faq-card h2,
  .closing-cta h2,
  .benefits-copy h2 {
    font-size: 33px;
  }

  .plan-card {
    min-width: calc(100vw - 42px);
  }

  .plan-slider-head {
    align-items: flex-start;
  }

  .speed-section {
    padding: 64px 0 45px;
  }

  .rocket-stage {
    left: 50%;
    width: 520px;
    min-height: 350px;
    margin-left: -260px;
    transform: scale(.67);
  }

  .assistant {
    right: 76px;
  }

  .assistant-panel {
    position: fixed;
    right: 8px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 8px;
    width: auto;
    max-height: calc(100svh - 94px - env(safe-area-inset-bottom));
    border-radius: 24px 24px 18px 18px;
  }

  .assistant-messages {
    min-height: 136px;
    max-height: min(250px, 32svh);
  }

  .assistant-suggestions button {
    padding: 9px;
  }

  .assistant-panel > form input {
    font-size: 16px;
  }

  .coverage-section {
    padding-inline: 0;
  }

  .coverage-card,
  .support-card,
  .faq-card {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .modal-tabs {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
  }

  .client-billing-head {
    align-items: flex-start;
  }

  .invoice-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .invoice-card > .button {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .invoice-code {
    grid-template-columns: 1fr;
  }

  .invoice-code button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ===== LiveOneNet — animações intensificadas (estrelas, fogo, meteoros, asteroide) ===== */
.speed-section { overflow: hidden; }

.speed-stars { opacity: .85; animation-duration: 8s; }
.speed-stars::before { opacity: .85; animation-duration: 2.6s; }
.speed-stars::after { opacity: .6; animation-duration: 3.4s; }

.rocket-flame { filter: drop-shadow(0 0 6px rgba(255, 150, 0, .95)) drop-shadow(0 0 14px rgba(255, 80, 0, .55)); }
.flame-a { animation: lon-fire .22s ease-in-out infinite alternate; }
.flame-b { animation: lon-fire .15s ease-in-out infinite alternate-reverse; }
.rocket::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 73%;
  width: 48px;
  height: 92px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 55% 62% at 50% 0%, rgba(255, 232, 150, .98), rgba(255, 140, 0, .72) 38%, rgba(255, 60, 0, .28) 64%, transparent 80%);
  border-radius: 46% 46% 50% 50% / 20% 20% 80% 80%;
  filter: blur(5px);
  z-index: -1;
  animation: lon-exhaust .16s ease-in-out infinite alternate;
}
@keyframes lon-fire {
  0% { transform: scaleY(.78) scaleX(1.06); opacity: .8; }
  55% { transform: scaleY(1.28) scaleX(.88); opacity: 1; }
  100% { transform: scaleY(1.06) scaleX(1.1); opacity: .92; }
}
@keyframes lon-exhaust {
  from { transform: translateX(-50%) scaleY(.74) scaleX(1.02); opacity: .65; }
  to { transform: translateX(-50%) scaleY(1.2) scaleX(.86); opacity: 1; }
}

.speed-meteor {
  position: absolute;
  z-index: 1;
  top: -4%;
  width: 140px;
  height: 2px;
  pointer-events: none;
  opacity: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(207, 224, 255, .1) 40%, #cfe0ff 75%, #fff);
  filter: drop-shadow(0 0 6px rgba(150, 185, 255, .9));
}
.meteor-1 { left: 6%; animation: lon-meteor 10s linear infinite; animation-delay: 2.5s; }
.meteor-2 { left: 52%; width: 100px; animation: lon-meteor 14s linear infinite; animation-delay: 8s; }
@keyframes lon-meteor {
  0% { opacity: 0; transform: translate(-50px, -50px) rotate(32deg) scaleX(.3); }
  3% { opacity: 1; }
  13% { opacity: 1; transform: translate(330px, 205px) rotate(32deg) scaleX(1); }
  17% { opacity: 0; transform: translate(390px, 243px) rotate(32deg) scaleX(1); }
  100% { opacity: 0; transform: translate(390px, 243px) rotate(32deg); }
}

.speed-asteroid {
  position: absolute;
  z-index: 1;
  top: 16%;
  left: -8%;
  width: 34px;
  height: 30px;
  pointer-events: none;
  opacity: 0;
  border-radius: 46% 54% 60% 40% / 50% 42% 58% 50%;
  background: radial-gradient(circle at 34% 30%, #a4937e, #5b5046 58%, #2c2722);
  box-shadow: inset -5px -5px 9px rgba(0, 0, 0, .55), 0 0 14px rgba(0, 0, 0, .45);
  animation: lon-asteroid 24s linear infinite;
  animation-delay: 6s;
}
.speed-asteroid::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: 8px;
  top: 6px;
  background: radial-gradient(circle at 40% 40%, #4a4138, #2c2722);
  border-radius: 50%;
}
.speed-asteroid::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  right: 6px;
  bottom: 7px;
  background: #38312b;
  border-radius: 50%;
}
@keyframes lon-asteroid {
  0% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  4% { opacity: 1; }
  38% { opacity: 1; transform: translate(58vw, 86px) rotate(210deg); }
  46% { opacity: 0; transform: translate(70vw, 104px) rotate(250deg); }
  100% { opacity: 0; transform: translate(70vw, 104px) rotate(250deg); }
}

/* Mantém a animação decorativa do herói viva mesmo com "reduzir movimento" do sistema */
@media (prefers-reduced-motion: reduce) {
  .speed-stars { animation-duration: 8s !important; animation-iteration-count: infinite !important; }
  .speed-stars::before { animation-duration: 2.6s !important; animation-iteration-count: infinite !important; }
  .speed-stars::after { animation-duration: 3.4s !important; animation-iteration-count: infinite !important; }
  .rocket { animation-duration: 3s !important; animation-iteration-count: infinite !important; }
  .rocket-trail { animation-duration: 1.5s !important; animation-iteration-count: infinite !important; }
  .flame-a { animation-duration: .22s !important; animation-iteration-count: infinite !important; }
  .flame-b { animation-duration: .15s !important; animation-iteration-count: infinite !important; }
  .rocket::after { animation-duration: .16s !important; animation-iteration-count: infinite !important; }
  .speed-orbit { animation-duration: 13s !important; animation-iteration-count: infinite !important; }
  .orbit-two { animation-duration: 18s !important; animation-iteration-count: infinite !important; }
  .speed-badge { animation-duration: 2.5s !important; animation-iteration-count: infinite !important; }
  .data-particle { animation-duration: 2.7s !important; animation-iteration-count: infinite !important; }
  .meteor-1 { animation-duration: 10s !important; animation-iteration-count: infinite !important; }
  .meteor-2 { animation-duration: 14s !important; animation-iteration-count: infinite !important; }
  .speed-asteroid { animation-duration: 24s !important; animation-iteration-count: infinite !important; }
}
