:root {
  --brand: #07156f;
  --brand-dark: #030a3b;
  --accent: #f6c84f;
  --green: #35b86b;
  --ink: #102033;
  --muted: #647386;
  --line: #e6ebf1;
  --soft: #f6f6f6;
  --white: #ffffff;
  --night: #09172a;
  --shadow: 0 18px 44px rgba(13, 28, 47, 0.13);
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid rgba(246, 200, 79, 0.72);
  outline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--night);
  color: var(--white);
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--brand-dark);
  background: linear-gradient(135deg, #ffe07a, var(--accent));
  box-shadow: 0 14px 28px rgba(246, 200, 79, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(246, 200, 79, 0.36);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

.btn-outline {
  color: var(--brand);
  background: var(--white);
  border-color: rgba(7, 21, 111, 0.24);
}

.btn-card {
  width: 100%;
  color: var(--white);
  background: var(--brand);
  border-radius: 4px;
}

.btn-card:hover {
  color: var(--brand-dark);
  background: var(--accent);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(35, 131, 155, 0.82);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.nav-shell {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
  max-width: 225px;
}

.brand-logo {
  width: 100%;
  max-width: 225px;
  max-height: 62px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex: 1;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 2px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 850;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--accent);
  background: transparent;
}

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

.header-call {
  display: grid;
  gap: 2px;
  min-width: 180px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  text-align: right;
  text-transform: uppercase;
}

.header-call span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.header-call strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  background: var(--night);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(5, 13, 28, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1100;
  width: min(390px, 92vw);
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, rgba(53, 184, 107, 0.2), transparent 34%), var(--night);
  color: var(--white);
  transform: translateX(105%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 260ms ease, opacity 220ms ease, visibility 220ms ease;
  box-shadow: -30px 0 60px rgba(0, 0, 0, 0.28);
}

.menu-open .menu-overlay,
.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-head {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu .brand {
  min-width: 0;
  max-width: calc(100% - 58px);
}

.mobile-menu .brand-logo,
.footer-brand .brand-logo {
  background: var(--white);
}

.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 20px;
  font-weight: 900;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.drawer-card {
  margin: auto 16px 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.drawer-card strong {
  display: block;
  font-size: 18px;
}

.drawer-card p {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.75);
}

.hero {
  position: relative;
  min-height: 746px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero picture,
.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 14s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    radial-gradient(circle at 88% 18%, rgba(93, 187, 100, 0.34), transparent 28%),
    linear-gradient(90deg, rgba(3, 10, 59, 0.9) 0%, rgba(3, 30, 52, 0.68) 42%, rgba(44, 122, 69, 0.34) 100%),
    linear-gradient(0deg, rgba(3, 10, 59, 0.5), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 66px;
  line-height: 1.02;
  font-weight: 950;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.32);
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero.is-changing h1,
.hero.is-changing .hero-lead,
.hero.is-changing .hero-badge {
  opacity: 0;
  transform: translateY(12px);
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 11px 18px;
  border-radius: 10px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  font-size: 22px;
  font-weight: 950;
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 15px;
  font-weight: 950;
}

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

.hero-metrics {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 54px 0 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 13, 50, 0.34);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-safety-chips {
  position: absolute;
  top: 215px;
  right: max(52px, calc((100vw - var(--container)) / 2));
  z-index: 2;
  display: grid;
  gap: 16px;
  max-width: 240px;
}

.hero-safety-chips span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #31415a;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  font-weight: 850;
  animation: chipFloat 4.8s ease-in-out infinite;
}

.hero-safety-chips span:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-safety-chips span:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-safety-chips span:nth-child(4) {
  animation-delay: 1.05s;
}

.hero-safety-chips span::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.42);
}

.hero-slider-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 54%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  font-size: 46px;
  line-height: 1;
  animation: arrowGlow 2.8s ease-in-out infinite;
}

.hero-arrow-left {
  left: 52px;
}

.hero-arrow-right {
  right: 52px;
}

.hero-dot {
  position: relative;
  top: calc(100% - 38px);
  left: calc(50% - 28px);
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  transition: width 220ms ease, background 220ms ease;
}

.hero-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--accent);
}

.speed-strip {
  display: none;
}

.speed-strip-grid {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.speed-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.09);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading h2,
.about-copy h2,
.coverage-copy h2,
.faq-intro h2,
.cta-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.1;
  font-weight: 950;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.coverage-copy p,
.faq-intro p,
.cta-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.intro-section {
  background: var(--soft);
}

.intro-section .section-heading {
  margin-left: 0;
  text-align: left;
}

.intro-section .section-heading h2 {
  font-size: 52px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.package-card,
.service-grid article,
.process-grid article,
.review-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(14, 33, 53, 0.05);
}

.benefit-card {
  padding: 26px 24px;
  min-height: 245px;
}

.benefit-icon {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 4px;
  background: rgba(7, 21, 111, 0.08);
}

.signal-icon::before,
.signal-icon::after,
.clock-icon::before,
.clock-icon::after,
.infinity-icon::before,
.infinity-icon::after,
.headset-icon::before,
.headset-icon::after {
  content: "";
  position: absolute;
}

.signal-icon::before {
  left: 14px;
  bottom: 14px;
  width: 7px;
  height: 14px;
  border-radius: 4px;
  background: var(--brand);
  box-shadow: 11px -8px 0 var(--accent), 22px -18px 0 var(--brand);
}

.signal-icon::after {
  inset: 12px;
  border-bottom: 4px solid var(--brand);
  border-right: 4px solid var(--brand);
  transform: rotate(-45deg);
  border-radius: 4px;
  opacity: 0.25;
}

.clock-icon::before {
  inset: 12px;
  border: 4px solid var(--brand);
  border-radius: 50%;
}

.clock-icon::after {
  left: 27px;
  top: 18px;
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 7px 13px 0 -1px var(--brand);
  transform-origin: bottom center;
  transform: rotate(-35deg);
}

.infinity-icon::before {
  inset: 15px 10px;
  border: 4px solid var(--brand);
  border-radius: 50% 50% 50% 50%;
  transform: rotate(45deg);
}

.infinity-icon::after {
  inset: 15px 10px;
  border: 4px solid var(--accent);
  border-radius: 50% 50% 50% 50%;
  transform: rotate(-45deg);
  opacity: 0.8;
}

.headset-icon::before {
  left: 13px;
  top: 12px;
  width: 30px;
  height: 27px;
  border: 4px solid var(--brand);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.headset-icon::after {
  left: 12px;
  top: 29px;
  width: 32px;
  height: 14px;
  border-left: 7px solid var(--accent);
  border-right: 7px solid var(--accent);
  border-radius: 4px;
}

.benefit-card h3,
.service-grid h3,
.process-grid h3,
.review-card strong {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
}

.benefit-card p,
.service-grid p,
.process-grid p,
.review-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.package-section,
.coverage-section,
.faq-section {
  background: var(--soft);
}

.package-section {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 120px;
  color: var(--white);
  background: var(--night);
}

.package-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(1, 8, 20, 0.78), rgba(1, 8, 20, 0.78)),
    url("../img/pioneer-hero.jpg") center / cover no-repeat;
  filter: blur(5px);
  transform: scale(1.04);
}

.package-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 200, 79, 0.12), transparent 28%),
    radial-gradient(circle at 80% 35%, rgba(53, 184, 107, 0.14), transparent 28%);
  pointer-events: none;
}

.package-section > .container {
  position: relative;
  z-index: 1;
}

.package-section .container {
  width: min(calc(100% - 96px), 1720px);
}

.package-section .section-heading {
  max-width: 860px;
  margin-bottom: 84px;
}

.package-section .section-heading .eyebrow {
  display: none;
}

.package-section .section-heading h2 {
  display: inline-block;
  padding: 8px 22px 11px;
  color: var(--white);
  background: rgba(65, 65, 65, 0.82);
  font-size: 60px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.package-section .section-heading p:not(.eyebrow) {
  display: none;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 72px;
}

.package-card {
  position: relative;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  padding: 52px 42px 42px;
  overflow: hidden;
  text-align: left;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: none;
  backdrop-filter: blur(3px);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.package-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.22);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.reveal-on-scroll:nth-child(2n) {
  transition-delay: 80ms;
}

.reveal-on-scroll:nth-child(3n) {
  transition-delay: 150ms;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055) translate3d(-1.2%, -0.6%, 0);
  }
}

@keyframes chipFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes arrowGlow {
  0%, 100% {
    opacity: 0.58;
  }
  50% {
    opacity: 0.94;
  }
}

.package-card::before {
  display: none;
}

.package-card.featured {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.package-card.featured-alt::before {
  background: linear-gradient(90deg, var(--accent), #ffd166);
}

.package-tag {
  align-self: flex-start;
  margin-bottom: 32px;
  padding: 5px 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  line-height: 0.98;
  white-space: nowrap;
}

.speed-number {
  font-size: 94px;
  font-weight: 300;
  letter-spacing: -0.08em;
}

.speed-unit {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.package-price {
  margin: 44px 0 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.package-price span {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 24px;
  font-weight: 400;
}

.package-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  line-height: 1.45;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 0;
}

.package-card li::before {
  display: none;
}

.package-card .btn {
  margin-top: auto;
  min-height: 88px;
  border-radius: 6px;
  color: var(--brand);
  background: #ffc51b;
  font-size: 28px;
  font-weight: 950;
}

.package-card .btn:hover {
  color: var(--brand);
  background: #ffd34d;
}

.about-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark), #0d2440);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(53, 184, 107, 0.22), transparent 26%),
    radial-gradient(circle at 95% 20%, rgba(246, 200, 79, 0.2), transparent 24%);
  pointer-events: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 58px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy h2,
.about-copy p,
.about-copy .eyebrow {
  color: var(--white);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 30px;
}

.mini-stat-grid div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.mini-stat-grid strong,
.mini-stat-grid span {
  display: block;
}

.mini-stat-grid strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.mini-stat-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  padding: 28px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: inset 0 0 0 4px var(--white);
}

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

.map-card {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.process-section {
  background: var(--night);
}

.process-section .section-heading h2,
.process-section .section-heading p {
  color: var(--white);
}

.process-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.process-grid article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

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

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

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

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 28px;
}

.review-card p {
  margin-top: 0;
  color: #3c4a5b;
  font-size: 17px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(14, 33, 53, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-section {
  padding: 88px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--green));
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 40px;
  align-items: center;
}

.cta-grid h2,
.cta-grid p,
.cta-grid .eyebrow {
  color: var(--white);
}

.cta-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-line {
  display: block;
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.contact-line span,
.contact-line strong {
  display: block;
}

.contact-line span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line strong {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.35;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #071225;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding: 72px 0;
}

.footer-brand {
  color: var(--white);
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

.footer-grid p {
  margin: 14px 0 0;
}

.footer-grid nav {
  display: grid;
  align-content: start;
}

.footer-grid nav a,
.footer-grid p a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid nav a {
  margin-top: 9px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .desktop-nav a {
    padding: 0 8px;
    font-size: 12px;
  }

  .header-actions .btn-ghost {
    display: none;
  }

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

  .package-card {
    min-height: 620px;
    padding: 42px 34px 34px;
  }

  .speed-number {
    font-size: 78px;
  }

  .speed-unit {
    font-size: 22px;
  }

  .package-price {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 86px;
  }

  .site-header {
    position: sticky;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(8, 19, 34, 0.08);
    backdrop-filter: blur(18px);
  }

  .desktop-nav,
  .header-actions .btn {
    display: none;
  }

  .header-call {
    display: none;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
    max-width: 235px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 74px 0 64px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: 54px;
  }

  .hero-lead {
    max-width: 560px;
    font-size: 18px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-safety-chips {
    display: none;
  }

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

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .coverage-copy h2,
  .faq-intro h2,
  .cta-grid h2 {
    font-size: 36px;
  }

  .benefit-grid,
  .service-grid,
  .review-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .package-card {
    min-height: 560px;
  }

  .package-section .section-heading h2 {
    font-size: 40px;
  }

  .about-grid,
  .coverage-grid,
  .faq-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 36px;
  }

  .coverage-grid {
    gap: 32px;
  }

  .cta-grid {
    gap: 28px;
  }
}

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

  .package-section .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    max-width: 218px;
  }

  .brand-logo {
    max-width: 218px;
    max-height: 50px;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 10, 59, 0.92) 0%, rgba(3, 30, 52, 0.76) 58%, rgba(44, 122, 69, 0.36) 100%),
      linear-gradient(0deg, rgba(3, 10, 59, 0.68), transparent 54%);
  }

  .hero img {
    object-position: 61% center;
  }

  .hero-content {
    padding: 58px 0 46px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-metrics div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
  }

  .hero-metrics dt {
    font-size: 26px;
  }

  .speed-strip-grid,
  .benefit-grid,
  .package-grid,
  .service-grid,
  .review-grid,
  .process-grid,
  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .speed-strip span {
    min-height: 52px;
  }

  .section {
    padding: 66px 0;
  }

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

  .section-heading h2,
  .about-copy h2,
  .coverage-copy h2,
  .faq-intro h2,
  .cta-grid h2 {
    font-size: 30px;
  }

  .section-heading p:not(.eyebrow),
  .about-copy p,
  .coverage-copy p,
  .faq-intro p,
  .cta-grid p {
    font-size: 16px;
  }

  .benefit-card,
  .service-grid article,
  .process-grid article,
  .review-card {
    padding: 22px;
  }

  .package-card {
    min-height: auto;
    padding: 30px 24px 24px;
  }

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

  .speed-number {
    font-size: 72px;
  }

  .speed-unit {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .package-price {
    margin: 20px 0 24px;
    padding-bottom: 22px;
    font-size: 26px;
  }

  .package-card ul {
    gap: 14px;
    font-size: 20px;
  }

  .coverage-actions {
    flex-direction: column;
  }

  .coverage-actions .btn {
    width: 100%;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
    height: 360px;
  }

  .cta-section {
    padding: 66px 0;
  }

  .footer-grid {
    padding: 54px 0;
    gap: 30px;
  }
}

@media (max-width: 390px) {
  .brand {
    max-width: 188px;
  }

  .brand-logo {
    max-width: 188px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .speed-number {
    font-size: 58px;
  }

  .speed-unit {
    font-size: 18px;
  }

  .package-price {
    font-size: 24px;
  }
}

/* Premium Smile-inspired visual pass for the primary above-the-fold areas. */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(29, 105, 139, 0.95), rgba(65, 154, 173, 0.88)),
    rgba(35, 131, 155, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header .container {
  width: min(calc(100% - 72px), 1860px);
}

.nav-shell {
  min-height: 92px;
  gap: 42px;
}

.brand {
  min-width: 250px;
  max-width: 250px;
}

.brand-logo {
  width: 100%;
  max-width: 250px;
  max-height: 68px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.14));
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
  box-shadow: none;
}

.desktop-nav {
  gap: 48px;
}

.desktop-nav a {
  min-height: 92px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--accent);
}

.desktop-nav a span {
  margin-left: 12px;
  font-size: 20px;
  line-height: 1;
}

.header-call {
  min-width: 255px;
  min-height: 92px;
  justify-content: center;
  padding-left: 36px;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.header-call span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 700;
}

.header-call strong {
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.04em;
}

.menu-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.menu-toggle span {
  background: var(--white);
}

.hero {
  min-height: 820px;
  isolation: isolate;
}

.hero img {
  object-position: center;
  transform-origin: center;
}

.hero-shade {
  background:
    radial-gradient(circle at 88% 10%, rgba(54, 179, 119, 0.34), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(246, 200, 79, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(2, 8, 28, 0.9) 0%, rgba(7, 43, 69, 0.72) 48%, rgba(42, 133, 154, 0.46) 100%),
    linear-gradient(0deg, rgba(2, 8, 28, 0.7), transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 28, 0.48));
  pointer-events: none;
}

.hero-content {
  z-index: 3;
  padding: 190px 0 118px;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  color: #ffc51b;
  background: rgba(60, 60, 60, 0.78);
  font-size: 19px;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 800px;
  margin-top: 18px;
  color: var(--white);
  font-size: 74px;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 23px;
  line-height: 1.55;
}

.hero-badge {
  color: var(--white);
  background: rgba(65, 65, 65, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}

.hero-badge-icon {
  color: var(--brand-dark);
  background: #ffc51b;
}

.hero-actions .btn-primary {
  min-height: 60px;
  padding: 0 30px;
  color: var(--brand-dark);
  background: #ffc51b;
  border-radius: 6px;
  font-size: 18px;
}

.hero-actions .btn-light {
  min-height: 60px;
  padding: 0 30px;
  border-radius: 6px;
  font-size: 18px;
}

.hero-safety-chips {
  top: 250px;
  right: max(56px, calc((100vw - 1720px) / 2));
  max-width: 290px;
}

.hero-safety-chips span {
  color: var(--white);
  background: rgba(15, 25, 33, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-safety-chips span::before {
  background: #ffc51b;
  box-shadow: inset 0 0 0 6px rgba(7, 21, 111, 0.12);
}

.hero-arrow {
  top: 50%;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-arrow-left {
  left: 34px;
}

.hero-arrow-right {
  right: 34px;
}

.hero-dot {
  z-index: 4;
}

.package-section {
  padding: 126px 0 136px;
  background: #071016;
}

.package-section::before {
  background:
    linear-gradient(0deg, rgba(2, 7, 9, 0.72), rgba(2, 7, 9, 0.72)),
    linear-gradient(90deg, rgba(7, 31, 43, 0.82), rgba(36, 75, 62, 0.46)),
    url("../img/pioneer-hero.jpg") center / cover no-repeat;
  filter: blur(9px) saturate(0.88);
  transform: scale(1.08);
}

.package-section::after {
  background:
    linear-gradient(90deg, rgba(9, 34, 43, 0.26), rgba(18, 40, 34, 0.24)),
    radial-gradient(circle at 16% 20%, rgba(255, 197, 27, 0.12), transparent 27%),
    radial-gradient(circle at 82% 34%, rgba(42, 133, 154, 0.18), transparent 30%);
}

.package-section .container {
  width: min(calc(100% - 112px), 1780px);
}

.package-section .section-heading {
  margin-bottom: 86px;
}

.package-section .section-heading h2 {
  padding: 9px 24px 12px;
  color: var(--white);
  background: rgba(72, 72, 72, 0.82);
  font-size: 66px;
  letter-spacing: -0.025em;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 78px 78px;
}

.package-card {
  min-height: 720px;
  padding: 52px 42px 42px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.5));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28);
}

.package-tag {
  display: inline-block;
  margin-bottom: 34px;
  padding: 4px 8px 5px;
  color: var(--white);
  background: rgba(74, 74, 74, 0.86);
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: 0.075em;
}

.package-card h3 {
  align-items: flex-end;
  gap: 11px;
}

.speed-number {
  color: var(--white);
  font-size: 96px;
  font-weight: 300;
  letter-spacing: -0.075em;
}

.speed-unit {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 25px;
  font-weight: 650;
}

.package-price {
  margin: 44px 0 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  font-size: 31px;
  font-weight: 550;
}

.package-price span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 25px;
  font-weight: 400;
}

.package-card ul {
  gap: 10px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 25px;
  line-height: 1.45;
}

.package-card li {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0 4px 1px;
  background: rgba(78, 78, 78, 0.52);
}

.package-card .btn {
  min-height: 86px;
  border-radius: 6px;
  color: #07156f;
  background: #ffc51b;
  font-size: 30px;
  font-weight: 950;
}

.package-card .btn:hover {
  color: #07156f;
  background: #ffd44c;
  box-shadow: 0 16px 34px rgba(255, 197, 27, 0.22);
}

@media (max-width: 1280px) {
  .site-header .container {
    width: min(calc(100% - 36px), 1180px);
  }

  .nav-shell {
    gap: 22px;
  }

  .brand {
    min-width: 210px;
    max-width: 210px;
  }

  .brand-logo {
    max-width: 210px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .desktop-nav a {
    font-size: 18px;
  }

  .header-call {
    min-width: 210px;
    padding-left: 22px;
  }

  .header-call strong {
    font-size: 20px;
  }

  .package-grid {
    gap: 38px;
  }
}

@media (max-width: 991px) {
  .site-header {
    position: sticky;
    color: var(--white);
    background:
      linear-gradient(90deg, rgba(29, 105, 139, 0.98), rgba(65, 154, 173, 0.94)),
      rgba(35, 131, 155, 0.96);
    box-shadow: 0 12px 28px rgba(8, 19, 34, 0.12);
  }

  .site-header .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
    max-width: 214px;
  }

  .brand-logo {
    max-width: 214px;
    max-height: 54px;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 78px 0 68px;
  }

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

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .package-section .container {
    width: min(calc(100% - 34px), 820px);
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .package-card {
    min-height: auto;
    padding: 38px 30px 30px;
  }

  .package-section .section-heading h2 {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 68px;
  }

  .brand {
    max-width: 188px;
  }

  .brand-logo {
    max-width: 188px;
    max-height: 48px;
  }

  .hero {
    min-height: 630px;
  }

  .hero-content {
    padding: 58px 0 52px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-light {
    min-height: 54px;
    font-size: 16px;
  }

  .package-section {
    padding: 76px 0 88px;
  }

  .package-section .section-heading h2 {
    font-size: 34px;
  }

  .package-card {
    padding: 30px 24px 24px;
  }

  .package-tag {
    margin-bottom: 22px;
    font-size: 20px;
  }

  .speed-number {
    font-size: 70px;
  }

  .speed-unit {
    font-size: 20px;
  }

  .package-price {
    margin: 24px 0 28px;
    padding-bottom: 28px;
    font-size: 25px;
  }

  .package-price span {
    font-size: 20px;
  }

  .package-card ul {
    font-size: 19px;
  }

  .package-card .btn {
    min-height: 64px;
    font-size: 21px;
  }
}

/* Precision pass: closer teal header shape and sharp transparent package cards. */
:root {
  --smile-teal: #267f99;
  --smile-teal-light: #5aa8ba;
  --smile-card: rgba(0, 0, 0, 0.42);
  --smile-label: rgba(72, 72, 72, 0.84);
  --smile-copy: rgba(221, 221, 221, 0.76);
  --smile-yellow: #ffc51b;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(31, 114, 145, 0.93) 0%, rgba(38, 127, 153, 0.9) 48%, rgba(90, 168, 186, 0.88) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.site-header .container {
  width: 100%;
  max-width: none;
  padding: 0 40px;
}

.nav-shell {
  min-height: 136px;
  gap: 44px;
}

.site-header .brand {
  min-width: 270px;
  max-width: 270px;
}

.site-header .brand-logo {
  max-width: 270px;
  max-height: 82px;
  mix-blend-mode: multiply;
  filter: contrast(1.16) saturate(1.18);
}

.desktop-nav {
  gap: clamp(28px, 4.2vw, 74px);
}

.desktop-nav a {
  min-height: 136px;
  color: rgba(255, 255, 255, 0.94);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(18px, 1.42vw, 25px);
  font-weight: 800;
  letter-spacing: 0.005em;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--smile-yellow);
}

.header-actions {
  align-self: stretch;
  gap: 0;
}

.header-call {
  align-self: stretch;
  min-width: 310px;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.header-call span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.05;
}

.header-call strong {
  margin-top: 8px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.05;
}

.hero {
  min-height: 810px;
}

.hero-content {
  padding-top: 212px;
}

.hero .eyebrow,
.hero-badge,
.package-section .section-heading h2,
.package-tag,
.package-card li {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.package-section {
  padding: 118px 0 138px;
  background: #071015;
}

.package-section::before {
  background:
    linear-gradient(0deg, rgba(3, 8, 10, 0.62), rgba(3, 8, 10, 0.62)),
    linear-gradient(90deg, rgba(14, 45, 50, 0.58), rgba(33, 59, 49, 0.28)),
    url("../img/pioneer-hero.jpg") center / cover no-repeat;
  filter: blur(12px) saturate(0.78) brightness(0.88);
  transform: scale(1.1);
}

.package-section::after {
  background:
    linear-gradient(180deg, rgba(18, 46, 50, 0.14), rgba(4, 12, 14, 0.28)),
    radial-gradient(circle at 12% 18%, rgba(255, 197, 27, 0.09), transparent 22%),
    radial-gradient(circle at 86% 24%, rgba(83, 164, 176, 0.18), transparent 28%);
}

.package-section .container {
  width: min(calc(100% - 126px), 1784px);
}

.package-section .section-heading {
  margin-bottom: 118px;
}

.package-section .section-heading h2 {
  padding: 8px 22px 12px;
  color: var(--white);
  background: var(--smile-label);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(48px, 4.45vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.028em;
  text-transform: none;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 86px 76px;
}

.package-card {
  min-height: 742px;
  padding: 52px 42px 42px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.34)),
    var(--smile-card);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.39)),
    rgba(0, 0, 0, 0.46);
}

.package-tag {
  margin-bottom: 30px;
  padding: 5px 7px 6px;
  color: #f7f7f7;
  background: var(--smile-label);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-top: 5px;
  align-items: flex-end;
  gap: 9px;
  line-height: 0.92;
}

.speed-number {
  color: rgba(255, 255, 255, 0.96);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(86px, 6.7vw, 112px);
  font-weight: 250;
  letter-spacing: -0.08em;
}

.speed-unit {
  margin-bottom: 10px;
  color: rgba(230, 230, 230, 0.82);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 44px 0 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
}

.package-price strong {
  color: var(--white);
  font-size: 32px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.package-price span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(220, 220, 220, 0.76);
  font-size: 25px;
  font-weight: 350;
}

.package-price small {
  color: rgba(220, 220, 220, 0.7);
  font-size: 14px;
  font-weight: 450;
}

.package-card ul {
  gap: 7px;
  margin-bottom: 44px;
  color: var(--smile-copy);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 350;
  line-height: 1.38;
  letter-spacing: 0.035em;
}

.package-card li {
  display: inline;
  width: fit-content;
  max-width: 100%;
  padding: 0 4px 1px;
  color: rgba(225, 225, 225, 0.74);
  background: rgba(78, 78, 78, 0.62);
}

.package-card .btn {
  min-height: 90px;
  border: 0;
  border-radius: 6px;
  color: #052354;
  background: var(--smile-yellow);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.package-card .btn:hover {
  color: #052354;
  background: #ffd249;
  box-shadow: 0 18px 40px rgba(255, 197, 27, 0.22);
}

@media (max-width: 1280px) {
  .site-header .container {
    padding: 0 24px;
  }

  .nav-shell {
    min-height: 112px;
  }

  .site-header .brand {
    min-width: 220px;
    max-width: 220px;
  }

  .site-header .brand-logo {
    max-width: 220px;
    max-height: 70px;
  }

  .desktop-nav a {
    min-height: 112px;
    font-size: 18px;
  }

  .header-call {
    min-width: 235px;
    min-height: 112px;
    padding-left: 24px;
  }

  .header-call span {
    font-size: 19px;
  }

  .header-call strong {
    font-size: 21px;
  }

  .package-section .container {
    width: min(calc(100% - 52px), 1180px);
  }

  .package-grid {
    gap: 34px;
  }

  .package-card {
    min-height: 680px;
    padding: 42px 32px 32px;
  }

  .package-tag {
    font-size: 22px;
  }

  .package-card ul {
    font-size: 20px;
  }

  .package-card .btn {
    min-height: 72px;
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .site-header .container {
    padding: 0 14px;
  }

  .nav-shell {
    min-height: 74px;
  }

  .site-header .brand {
    min-width: 0;
    max-width: 210px;
  }

  .site-header .brand-logo {
    max-width: 210px;
    max-height: 54px;
  }

  .hero-content {
    padding-top: 82px;
  }

  .package-section .container {
    width: min(calc(100% - 34px), 820px);
  }

  .package-section .section-heading {
    margin-bottom: 48px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .package-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header .brand {
    max-width: 178px;
  }

  .site-header .brand-logo {
    max-width: 178px;
    max-height: 46px;
  }

  .package-section .section-heading h2 {
    font-size: 34px;
  }

  .package-card {
    padding: 30px 23px 24px;
  }

  .package-tag {
    font-size: 19px;
  }

  .package-card h3 {
    gap: 7px;
  }

  .speed-number {
    font-size: 68px;
  }

  .speed-unit {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .package-price {
    display: block;
    margin: 24px 0 28px;
    padding-bottom: 28px;
    white-space: normal;
  }

  .package-price strong {
    font-size: 25px;
  }

  .package-price span {
    margin-top: 8px;
    font-size: 18px;
  }

  .package-price small {
    font-size: 12px;
  }

  .package-card ul {
    font-size: 18px;
  }

  .package-card .btn {
    min-height: 62px;
    font-size: 21px;
  }
}

/* Screenshot match: clean transparent package cards. */
.package-section .container {
  width: min(calc(100% - 88px), 1768px);
}

.package-grid {
  gap: 74px 72px;
}

.package-card {
  min-height: 812px;
  padding: 66px 58px 58px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 17px;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.52) 46%, rgba(0, 0, 0, 0.36) 100%),
    rgba(0, 0, 0, 0.34);
  box-shadow: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 1);
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.4) 100%),
    rgba(0, 0, 0, 0.38);
}

.package-card.featured,
.package-card.featured-alt {
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.package-tag {
  margin: 0 0 58px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  line-height: 0.86;
}

.speed-number {
  color: #ffffff;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(106px, 7.6vw, 140px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.speed-unit {
  margin-bottom: 9px;
  color: rgba(235, 235, 235, 0.88);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin: 78px 0 78px;
  padding-bottom: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  white-space: nowrap;
}

.package-price strong {
  color: #ffffff;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.package-price span {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
  color: rgba(222, 222, 222, 0.78);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 33px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
}

.package-price small {
  color: rgba(222, 222, 222, 0.76);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.package-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 58px;
  padding: 0;
  color: rgba(221, 221, 221, 0.78);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.055em;
  list-style: none;
}

.package-card li {
  display: block;
  width: auto;
  max-width: none;
  padding: 0;
  color: rgba(221, 221, 221, 0.78);
  background: transparent;
}

.package-card li::before {
  display: none;
}

.package-card .btn {
  min-height: 118px;
  width: 100%;
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  color: #06285f;
  background: #ffc51b;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: none;
}

.package-card .btn:hover {
  color: #06285f;
  background: #ffd04a;
  box-shadow: none;
}

@media (max-width: 1500px) {
  .package-card {
    padding: 52px 40px 40px;
  }

  .package-tag {
    font-size: 28px;
  }

  .speed-number {
    font-size: 98px;
  }

  .speed-unit {
    font-size: 25px;
  }

  .package-price {
    gap: 18px;
  }

  .package-price strong {
    font-size: 34px;
  }

  .package-price span {
    font-size: 26px;
  }

  .package-price small {
    font-size: 13px;
  }

  .package-card ul {
    font-size: 23px;
  }

  .package-card .btn {
    min-height: 86px;
    font-size: 31px;
  }
}

@media (max-width: 1280px) {
  .package-section .container {
    width: min(calc(100% - 42px), 1180px);
  }

  .package-grid {
    gap: 34px;
  }

  .package-card {
    min-height: 720px;
    padding: 48px 36px 36px;
    border-radius: 14px;
  }

  .package-tag {
    margin-bottom: 42px;
    font-size: 25px;
  }

  .speed-number {
    font-size: 92px;
  }

  .speed-unit {
    font-size: 24px;
  }

  .package-price {
    gap: 16px;
    margin: 54px 0 54px;
    padding-bottom: 54px;
  }

  .package-price strong {
    font-size: 31px;
  }

  .package-price span {
    font-size: 24px;
  }

  .package-price small {
    font-size: 13px;
  }

  .package-card ul {
    gap: 10px;
    font-size: 21px;
  }

  .package-card .btn {
    min-height: 78px;
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .package-section .container {
    width: min(calc(100% - 24px), 520px);
  }

  .package-card {
    padding: 32px 24px 24px;
    border-radius: 12px;
  }

  .package-tag {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .speed-number {
    font-size: 74px;
  }

  .speed-unit {
    margin-bottom: 7px;
    font-size: 19px;
  }

  .package-price {
    display: block;
    margin: 34px 0 34px;
    padding-bottom: 34px;
    white-space: normal;
  }

  .package-price strong {
    font-size: 26px;
  }

  .package-price span {
    display: flex;
    margin-top: 10px;
    font-size: 19px;
  }

  .package-price small {
    font-size: 12px;
  }

  .package-card ul {
    gap: 8px;
    font-size: 18px;
    letter-spacing: 0.035em;
  }

  .package-card .btn {
    min-height: 64px;
    font-size: 22px;
  }
}

/* Final header color: premium Pioneer midnight blue. */
.site-header {
  background:
    radial-gradient(circle at 8% 20%, rgba(41, 119, 255, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(3, 13, 56, 0.98) 0%, rgba(5, 30, 96, 0.96) 43%, rgba(13, 86, 139, 0.94) 100%) !important;
  border-bottom: 1px solid rgba(112, 178, 255, 0.26);
  box-shadow: 0 14px 44px rgba(4, 17, 55, 0.2), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 58%);
  pointer-events: none;
}

.site-header .container {
  position: relative;
  z-index: 1;
}

.site-header .brand-logo {
  padding: 12px 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  mix-blend-mode: normal;
  filter: none;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.95);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #ffc51b;
}

.header-call {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.14));
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.header-call span,
.header-call strong {
  color: #ffffff;
}

.menu-toggle {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

@media (max-width: 991px) {
  .site-header {
    background:
      radial-gradient(circle at 8% 20%, rgba(41, 119, 255, 0.18), transparent 34%),
      linear-gradient(90deg, rgba(3, 13, 56, 0.98) 0%, rgba(5, 30, 96, 0.97) 52%, rgba(13, 86, 139, 0.95) 100%) !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand-logo {
    padding: 8px 10px;
  }
}

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