:root {
  --navy: #0b1d3a;
  --navy-deep: #061329;
  --navy-soft: #16365f;
  --cyan: #00b8ff;
  --cyan-deep: #0088c9;
  --aqua: #00e6d8;
  --amber: #ffc857;
  --neutral: #f3f6fa;
  --white: #ffffff;
  --ink: #10213d;
  --muted: #5d6c83;
  --line: #dce5ef;
  --danger: #b42318;
  --success: #087a6c;
  --warning: #8a5b00;
  --shadow-sm: 0 12px 34px rgba(11, 29, 58, 0.09);
  --shadow-md: 0 22px 55px rgba(11, 29, 58, 0.14);
  --shadow-lg: 0 34px 90px rgba(2, 15, 38, 0.26);
  --radius-sm: 0.75rem;
  --radius-md: 1.3rem;
  --radius-lg: 2rem;
  --container: 74rem;
  --header-height: 4.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
summary {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.7rem, 11vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 7vw, 3.45rem);
}

h3 {
  font-size: 1.28rem;
}

::selection {
  color: var(--navy);
  background: var(--aqua);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.section {
  position: relative;
  padding-block: 5.5rem;
  overflow: clip;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 0.55rem;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: #0878a6;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.65rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--aqua));
}

.eyebrow-light {
  color: var(--aqua);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.75rem;
}

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

.section-heading h2 {
  margin-bottom: 1.15rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1.15rem;
  font-size: 0.83rem;
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(115deg, var(--cyan), var(--aqua));
  box-shadow: 0 12px 28px rgba(0, 184, 255, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 36px rgba(0, 230, 216, 0.3);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(11, 29, 58, 0.18);
}

.button-outline:hover {
  color: var(--cyan-deep);
  border-color: rgba(0, 184, 255, 0.48);
  box-shadow: 0 13px 30px rgba(11, 29, 58, 0.1);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(3, 18, 43, 0.22);
}

.button-secondary {
  min-height: 2.9rem;
  color: #007a98;
  background: rgba(0, 184, 255, 0.08);
  border-color: rgba(0, 184, 255, 0.26);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #0878a6;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.text-link-light {
  color: var(--aqua);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 239, 0.9);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(11, 29, 58, 0.1);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  width: 12rem;
  align-items: center;
}

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

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  place-content: center;
  gap: 0.3rem;
  padding: 0;
  background: var(--neutral);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.js-ready .menu-toggle {
  display: grid;
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
  border-radius: 1rem;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 1rem;
  left: 1rem;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: var(--shadow-lg);
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.js-ready .site-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.65rem);
  visibility: hidden;
}

.js-ready .site-header.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav > a:not(.button) {
  padding: 0.75rem 0.85rem;
  color: var(--navy);
  border-radius: 0.65rem;
  font-size: 0.92rem;
  font-weight: 680;
}

.site-nav > a:not(.button):hover {
  color: #0878a6;
  background: var(--neutral);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 3.75rem) 0 2.3rem;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 184, 255, 0.19), transparent 29rem),
    radial-gradient(circle at 20% 87%, rgba(0, 230, 216, 0.11), transparent 26rem),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 58%, #09264a);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3rem 3rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5rem);
  pointer-events: none;
}

.hero-orb-one {
  top: 8rem;
  right: -12rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(0, 184, 255, 0.2), transparent 68%);
}

.hero-orb-two {
  bottom: -13rem;
  left: -8rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(0, 230, 216, 0.12), transparent 70%);
}

.fiber-trail {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  box-shadow:
    0 -0.45rem 0 rgba(0, 184, 255, 0.2),
    0 0.45rem 0 rgba(0, 230, 216, 0.16);
  opacity: 0.35;
  transform-origin: left;
}

.fiber-trail-one {
  top: 26%;
  left: 55%;
  width: 42%;
  transform: rotate(-12deg);
}

.fiber-trail-two {
  right: 68%;
  bottom: 24%;
  width: 33%;
  transform: rotate(9deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 3.75rem;
}

.hero-copy {
  max-width: 42rem;
}

.hero-copy h1 {
  margin-bottom: 1.35rem;
  color: var(--white);
}

.hero-copy h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  background: linear-gradient(105deg, var(--cyan), var(--aqua) 62%, var(--amber));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 3vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.hero-note svg {
  width: 1.05rem;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  fill: none;
  stroke: var(--aqua);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero-visual {
  position: relative;
  width: min(100%, 32rem);
  margin-inline: auto;
}

.connection-card {
  position: relative;
  padding: 1.1rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(4, 18, 44, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.connection-card::after {
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(130deg, rgba(0, 184, 255, 0.45), transparent 42%, rgba(0, 230, 216, 0.2));
  border-radius: inherit;
  content: "";
  filter: blur(1.5rem);
  opacity: 0.42;
}

.connection-top,
.connection-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.connection-top {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connection-top > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.connection-top i {
  width: 0.48rem;
  height: 0.48rem;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 0.28rem rgba(0, 230, 216, 0.12);
}

.connection-status {
  padding: 0.35rem 0.6rem;
  color: var(--navy);
  background: var(--amber);
  border-radius: 999px;
  font-size: 0.64rem;
}

.connected-home {
  position: relative;
  display: grid;
  min-height: 19rem;
  place-items: center;
  overflow: hidden;
}

.connected-home::before {
  position: absolute;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(0, 184, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 3rem rgba(0, 184, 255, 0.025),
    0 0 0 6rem rgba(0, 230, 216, 0.018);
}

.home-roof {
  position: absolute;
  z-index: 2;
  top: 4rem;
  width: 12rem;
  height: 6rem;
  background: linear-gradient(145deg, rgba(0, 184, 255, 0.95), rgba(0, 230, 216, 0.75));
  clip-path: polygon(50% 0, 100% 78%, 88% 100%, 50% 43%, 12% 100%, 0 78%);
  filter: drop-shadow(0 0.8rem 1.5rem rgba(0, 184, 255, 0.24));
}

.home-body {
  position: absolute;
  z-index: 3;
  top: 8.4rem;
  width: 8.8rem;
  height: 7.4rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.3rem 0.3rem 1.1rem 1.1rem;
  box-shadow: 0 1.6rem 3rem rgba(1, 12, 30, 0.45);
}

.home-window {
  position: absolute;
  top: 1.45rem;
  left: 1.15rem;
  width: 1.8rem;
  height: 1.8rem;
  background: rgba(255, 200, 87, 0.92);
  border: 0.3rem solid rgba(7, 29, 62, 0.7);
  border-radius: 0.3rem;
  box-shadow: 0 0 1.4rem rgba(255, 200, 87, 0.4);
}

.home-door {
  position: absolute;
  right: 1.15rem;
  bottom: 0;
  width: 2rem;
  height: 3.3rem;
  background: rgba(8, 28, 60, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.35rem 0.35rem 0 0;
}

.home-door::after {
  position: absolute;
  top: 50%;
  left: 0.35rem;
  width: 0.2rem;
  height: 0.2rem;
  background: var(--amber);
  border-radius: 50%;
  content: "";
}

.home-core {
  position: absolute;
  top: 1rem;
  left: 50%;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  background: rgba(7, 26, 57, 0.86);
  border: 1px solid rgba(0, 230, 216, 0.38);
  border-radius: 1rem;
  box-shadow: 0 0 2rem rgba(0, 230, 216, 0.22);
  transform: translateX(-50%);
}

.home-core img {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
}

.signal {
  position: absolute;
  z-index: 4;
  top: 2rem;
  left: 50%;
  border: 1px solid var(--aqua);
  border-color: var(--aqua) transparent transparent;
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.75;
}

.signal-one {
  width: 3rem;
  height: 3rem;
}

.signal-two {
  top: 0.75rem;
  width: 5.5rem;
  height: 5.5rem;
  opacity: 0.46;
}

.signal-three {
  top: -0.5rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.2;
}

.device-node {
  position: absolute;
  z-index: 4;
  width: 0.58rem;
  height: 0.58rem;
  background: var(--cyan);
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow:
    0 0 0 0.35rem rgba(0, 184, 255, 0.1),
    0 0 1.2rem var(--cyan);
}

.device-node::after {
  position: absolute;
  top: 50%;
  width: 3.1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  content: "";
  transform-origin: left;
}

.device-one {
  top: 43%;
  left: 13%;
}

.device-one::after {
  transform: rotate(16deg);
}

.device-two {
  top: 37%;
  right: 13%;
}

.device-two::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--cyan));
  transform: rotate(-16deg);
  transform-origin: right;
}

.device-three {
  right: 22%;
  bottom: 16%;
}

.device-three::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--aqua));
  transform: rotate(25deg);
  transform-origin: right;
}

.connection-bottom {
  padding: 0.9rem 0.2rem 0.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.connection-bottom div {
  display: flex;
  flex-direction: column;
}

.connection-bottom div span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.connection-bottom strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.3;
}

.connection-bottom > a {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-chip {
  position: absolute;
  z-index: 6;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: rgba(9, 32, 67, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(1, 12, 30, 0.3);
  font-size: 0.72rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.floating-chip svg {
  width: 1rem;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-chip > span {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem rgba(0, 230, 216, 0.12);
}

.chip-streaming {
  top: 28%;
  left: -2.2rem;
}

.chip-devices {
  right: -1.4rem;
  bottom: 24%;
}

.benefit-strip {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.15rem;
  margin-top: 3.8rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.2rem;
  backdrop-filter: blur(12px);
}

.benefit-strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem;
  border-radius: 0.9rem;
}

.benefit-strip-icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--aqua);
  background: rgba(0, 230, 216, 0.08);
  border: 1px solid rgba(0, 230, 216, 0.15);
  border-radius: 0.8rem;
}

.benefit-strip-icon svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-strip-item div {
  display: flex;
  flex-direction: column;
}

.benefit-strip-item strong {
  color: var(--white);
  font-size: 0.88rem;
}

.benefit-strip-item small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

/* Plans */
.plans {
  background:
    radial-gradient(circle at 50% 0, rgba(0, 184, 255, 0.08), transparent 26rem),
    var(--neutral);
}

.plans-grid {
  display: grid;
  align-items: stretch;
  gap: 1.25rem;
}

.plan-card {
  position: relative;
  display: flex;
  padding: 1.65rem;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.plan-card:hover {
  border-color: rgba(0, 184, 255, 0.42);
  box-shadow: var(--shadow-md);
  transform: translateY(-0.35rem);
}

.plan-featured {
  background:
    radial-gradient(circle at 100% 0, rgba(0, 230, 216, 0.13), transparent 15rem),
    linear-gradient(165deg, #ffffff, #f6fcff);
  border-color: rgba(0, 184, 255, 0.55);
  box-shadow: 0 25px 58px rgba(0, 113, 163, 0.16);
}

.plan-ribbon {
  position: absolute;
  top: 0;
  right: 1.4rem;
  padding: 0.45rem 0.75rem;
  color: var(--navy);
  background: var(--amber);
  border-radius: 0 0 0.7rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.1rem 0 1rem;
}

.plan-type {
  color: #0878a6;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-indicator {
  width: 2.6rem;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--cyan), var(--aqua));
  border-radius: 999px;
  box-shadow: 0 0 1rem rgba(0, 184, 255, 0.3);
}

.plan-card h3 {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  font-size: 2.15rem;
}

.plan-card h3 strong {
  font-size: clamp(3.1rem, 13vw, 4.25rem);
  line-height: 0.95;
}

.plan-card > p {
  min-height: 3.2rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.plans-promo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--navy), #0f487c);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(11, 29, 58, 0.18);
  text-align: center;
}

.plans-promo-banner span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
}

.plans-promo-banner strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.plans-promo-banner-featured {
  background: linear-gradient(135deg, var(--cyan-deep), var(--navy));
}

.plan-price {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  margin-bottom: 0.35rem;
  padding: 2.35rem 1rem 2.35rem;
  border: 1px solid rgba(255, 200, 87, 0.35);
  border-radius: 1.15rem;
  background: linear-gradient(135deg, #ffd86b 0%, #ffc857 45%, #f2b400 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 16px 38px rgba(255, 200, 87, 0.22);
  color: #0b2d4f;
  font-weight: 800;
}

.plan-price-value {
  font-size: clamp(2.25rem, 4.4vw, 3.15rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #0b2d4f;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.plan-price-caption {
  color: #0b2d4f;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.plan-price-period {
  color: #5b3d00;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.95;
}

.plan-price-original {
  position: absolute;
  top: 0.2rem;
  left: 0.9rem;
  right: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.1rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.2rem;
  color: #7a8293;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(123, 130, 147, 0.35);
}


.plan-bonus {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(0, 184, 255, 0.2);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 184, 255, 0.08), rgba(0, 230, 216, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.plan-bonus-tag {
  color: #0878a6;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-bonus-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.plan-bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  color: var(--navy);
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(0, 184, 255, 0.18);
}

.plan-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 1.75rem;
  color: #43536b;
  font-size: 0.9rem;
}

.plan-card li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.14), rgba(0, 230, 216, 0.16));
  border: 1px solid rgba(0, 184, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.plan-card li::after {
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 0.35rem;
  height: 0.2rem;
  border-bottom: 1.5px solid #0878a6;
  border-left: 1.5px solid #0878a6;
  content: "";
  transform: rotate(-45deg);
}

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

.plan-note {
  margin: 0.7rem 0 0;
  color: #6b7585;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.plans-note {
  max-width: 50rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* Benefits */
.benefits {
  color: var(--white);
  background:
    linear-gradient(150deg, var(--navy-deep), var(--navy) 60%, #092a50);
}

.benefits::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 1.6rem 1.6rem;
  content: "";
  opacity: 0.2;
  mask-image: linear-gradient(90deg, transparent, black 40%, black);
}

.benefits-glow {
  position: absolute;
  top: -15rem;
  right: -10rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(0, 184, 255, 0.18), transparent 67%);
  border-radius: 50%;
}

.benefits-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 3rem;
}

.benefits-copy {
  max-width: 36rem;
}

.benefits-copy h2 {
  margin-bottom: 1.2rem;
  color: var(--white);
}

.benefits-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.use-grid {
  display: grid;
  gap: 1rem;
}

.use-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.2rem;
  backdrop-filter: blur(12px);
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.use-card:hover {
  background: rgba(255, 255, 255, 0.095);
  transform: translateY(-0.2rem);
}

.use-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--aqua);
  background: rgba(0, 230, 216, 0.08);
  border: 1px solid rgba(0, 230, 216, 0.18);
  border-radius: 0.8rem;
}

.use-icon svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.use-card h3 {
  margin-bottom: 0.45rem;
  color: var(--white);
}

.use-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.86rem;
}

/* Process */
.process {
  background: var(--white);
}

.process-list {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 3rem;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-number {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: #0878a6;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 0.55rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-line {
  display: none;
}

.coverage-banner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 230, 216, 0.18), transparent 19rem),
    linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.coverage-banner > * {
  position: relative;
  z-index: 2;
}

.coverage-banner h2 {
  max-width: 42rem;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: clamp(1.85rem, 6vw, 2.8rem);
}

.coverage-banner p:not(.eyebrow) {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.coverage-rings {
  position: absolute;
  z-index: 1;
  right: -6rem;
  bottom: -7rem;
  width: 20rem;
  height: 20rem;
}

.coverage-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 230, 216, 0.14);
  border-radius: 50%;
}

.coverage-rings span:nth-child(2) {
  inset: 3rem;
  border-color: rgba(0, 184, 255, 0.2);
}

.coverage-rings span:nth-child(3) {
  inset: 6rem;
  background: rgba(0, 230, 216, 0.06);
  border-color: rgba(0, 230, 216, 0.3);
}

/* FAQ */
.faq {
  background: var(--neutral);
}

.faq-grid {
  display: grid;
  gap: 2.5rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.04);
}

.faq-list details[open] {
  border-color: rgba(0, 184, 255, 0.38);
}

.faq-list summary {
  position: relative;
  padding: 1.1rem 3.1rem 1.1rem 1.15rem;
  color: var(--navy);
  font-weight: 760;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary span {
  position: absolute;
  top: 50%;
  right: 1.05rem;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--neutral);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 1.5px;
  background: #0878a6;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

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

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

.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 184, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.contact::after {
  position: absolute;
  right: -9rem;
  bottom: -15rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(0, 230, 216, 0.1), transparent 68%);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: 3rem;
}

.contact-copy {
  max-width: 38rem;
}

.contact-copy h2 {
  margin-bottom: 1.15rem;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-points > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-point-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--aqua);
  background: rgba(0, 230, 216, 0.08);
  border: 1px solid rgba(0, 230, 216, 0.17);
  border-radius: 0.85rem;
}

.contact-point-icon svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-points div div {
  display: flex;
  flex-direction: column;
}

.contact-points strong {
  color: var(--white);
  font-size: 0.9rem;
}

.contact-points small {
  color: rgba(255, 255, 255, 0.5);
}

.form-card {
  padding: 1.15rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 1.15rem;
  padding: 0.35rem;
}

.form-heading span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-row-address {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 760;
}

.form-field label > span {
  color: #0878a6;
}

.form-field label small {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field select,
.copy-fallback textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #ccd8e5;
  border-radius: 0.7rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.form-field input::placeholder {
  color: #94a0b0;
}

.form-field input:focus,
.form-field select:focus,
.copy-fallback textarea:focus {
  background: var(--white);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 184, 255, 0.12);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.copy-fallback textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.form-field input.is-invalid,
.form-field select.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.field-error {
  display: block;
  min-height: 1rem;
  margin-top: 0.25rem;
  color: var(--danger);
  font-size: 0.7rem;
  line-height: 1.3;
}

.form-submit {
  width: 100%;
}

.form-privacy {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.form-status {
  min-height: 1.2rem;
  margin-top: 0.8rem;
  font-size: 0.76rem;
  text-align: center;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-warning {
  color: var(--warning);
}

.copy-fallback {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--neutral);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
}

.copy-fallback label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 760;
}

.copy-fallback textarea {
  min-height: 9rem;
  margin-bottom: 0.7rem;
  resize: vertical;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #040d1d;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
  padding-block: 2.8rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2;
}

.footer-brand small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
}

.footer-main nav a {
  font-size: 0.8rem;
  font-weight: 650;
}

.footer-main nav a:hover {
  color: var(--aqua);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.6rem;
  padding-block: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--aqua);
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--aqua), #67f3b1);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 64, 71, 0.26);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 38px rgba(0, 64, 71, 0.34);
  transform: translateY(-0.2rem) scale(1.03);
}

.whatsapp-float svg {
  width: 1.65rem;
  fill: currentColor;
}

/* Reveal */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (min-width: 36rem) {
  .hero-actions {
    align-items: center;
    flex-direction: row;
  }

  .floating-chip {
    display: inline-flex;
  }

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

  .form-card {
    padding: 1.6rem;
  }

  .footer-bottom {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (min-width: 48rem) {
  :root {
    --header-height: 5rem;
  }

  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .section {
    padding-block: 7rem;
  }

  .brand {
    width: 13.2rem;
  }

  .menu-toggle,
  .js-ready .menu-toggle {
    display: none;
  }

  .site-nav,
  .js-ready .site-nav {
    position: static;
    align-items: center;
    flex-direction: row;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    padding: 0.55rem 0.65rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 49rem;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-strip-item + .benefit-strip-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-card {
    padding: 1.7rem;
  }

  .plan-featured {
    transform: translateY(-0.5rem);
  }

  .plan-featured:hover {
    transform: translateY(-0.85rem);
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .process-list li {
    padding: 1.4rem 2.5rem 1.4rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .process-list li + li {
    padding-left: 2.5rem;
  }

  .process-line {
    position: absolute;
    top: 1.9rem;
    right: -1.25rem;
    display: block;
    width: calc(100% - 2.5rem);
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 184, 255, 0.42), rgba(0, 230, 216, 0.16));
  }

  .process-line::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    background: var(--aqua);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
  }

  .coverage-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 2.6rem;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 4rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
    gap: 4rem;
  }

  .contact-copy {
    position: sticky;
    top: calc(var(--header-height) + 2.5rem);
  }

  .footer-main {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .whatsapp-float {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (min-width: 64rem) {
  .site-nav {
    gap: 0.5rem;
  }

  .site-nav > a:not(.button) {
    padding-inline: 0.75rem;
    font-size: 0.88rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(27rem, 0.95fr);
    gap: 5rem;
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 6.1vw, 5.25rem);
  }

  .benefit-strip {
    margin-top: 4.8rem;
  }

  .benefits-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }

  .coverage-banner {
    padding: 3rem 3.2rem;
  }

  .contact-grid {
    gap: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
