:root {
  --green: #7fcf4f;
  --green-dark: #63b33a;
  --green-glow: rgba(127, 207, 79, 0.2);

  --navy: #66b3ff;
  --navy-mid: #eaf4ff;
  --navy-light: #f7fbff;

  --white: #ffffff;
  --text-dark: #16324a;
  --text-main: #244766;
  --muted: #5f7f9c;

  --accent: #7fcf4f;
  --border-soft: rgba(36, 71, 102, 0.12);
  --shadow-soft: 0 12px 32px rgba(41, 86, 126, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #f4faff;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  transition: all 0.2s ease;
}

/* ── NAV ── */
nav,
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px rgba(41, 86, 126, 0.08);
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1;
}

.nav-logo span {
  color: var(--green-dark);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: #ffffff;
}

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

.btn-primary:hover {
  background: #92dc66;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(127, 207, 79, 0.24);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: #ffffff;
}

.btn-large {
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
}

/* ── HERO ── */
.hero.hero-overlay {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 110px 20px 78px;
  background:
    radial-gradient(circle at top right, rgba(122, 196, 66, 0.10), transparent 26%),
    radial-gradient(circle at left center, rgba(28, 61, 99, 0.05), transparent 30%),
    linear-gradient(180deg, #eef5fb 0%, #f7fbff 42%, #ffffff 100%);
}

.hero.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 1;
}

.hero-overlay .hero-shell {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-overlay .hero-content {
  position: relative;
  z-index: 4;
  max-width: 620px;
  padding-top: 24px;
}

.hero-logo {
  width: clamp(180px, 18vw, 250px);
  margin-bottom: 22px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-soft);
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(127, 207, 79, 0.14);
  flex-shrink: 0;
}

.hero-overlay h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  max-width: 11ch;
}

.hero-overlay h1 em {
  font-style: normal;
  color: var(--green-dark);
}

.hero-overlay .hero-sub {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-image-layer img {
  position: absolute;
  right: -40px;
  bottom: -10px;
  width: min(1280px, 88vw);
  max-width: none;
  height: auto;
  opacity: 0.98;
  filter: drop-shadow(0 24px 40px rgba(20, 43, 72, 0.08));
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 16%,
    rgba(0, 0, 0, 0.45) 28%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(0, 0, 0, 1) 56%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 16%,
    rgba(0, 0, 0, 0.45) 28%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(0, 0, 0, 1) 56%
  );
}

.hero-image-layer::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 0;
  bottom: 0;
  height: 22%;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(247, 251, 255, 0.88) 0%,
    rgba(247, 251, 255, 0.42) 42%,
    rgba(247, 251, 255, 0.00) 100%
  );
}

.hero.hero-overlay::before,
.hero-image-layer,
.hero-image-layer::before,
.hero-image-layer::after {
  pointer-events: none;
}

/* ── SHARED SECTIONS ── */
section {
  padding: 96px 48px;
}

.section-label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

h2 {
  font-size: clamp(2.15rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 720px;
  line-height: 1.75;
}

.page-content > h2,
.page-content > .section-sub {
  max-width: 760px;
}

.page-content,
.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 140px 48px 64px;
  background: linear-gradient(160deg, #f7fbff 0%, #dff0ff 100%);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(127, 207, 79, 0.08), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(102, 179, 255, 0.12), transparent 32%);
  pointer-events: none;
}

.page-header-inner {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.page-kicker {
  display: inline-block;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-header h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-header p {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ── QUICK LINKS ── */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.quick-link-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.quick-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 207, 79, 0.32);
  box-shadow: 0 18px 48px rgba(41, 86, 126, 0.14);
}

.quick-link-card strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 6px;
}

.quick-link-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── PLANS ── */
.plans-section {
  background: #f7fbff;
}

.plans-header {
  margin-bottom: 56px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
  align-items: stretch;
}

.plan-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 207, 79, 0.32);
  box-shadow: 0 18px 48px rgba(41, 86, 126, 0.14);
}

.plan-card.featured {
  border: 2px solid var(--green);
  background: linear-gradient(160deg, rgba(127, 207, 79, 0.08) 0%, rgba(255, 255, 255, 0.98) 60%);
  box-shadow: 0 16px 36px rgba(127, 207, 79, 0.14);
}

.plan-top {
  text-align: center;
  margin-bottom: 12px;
}

.plan-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(127, 207, 79, 0.14);
  color: var(--green-dark);
  letter-spacing: 0.04em;
}

.plan-speed {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: var(--text-dark);
}

.plan-speed span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-name {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.plan-price {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: 'Poppins', sans-serif;
}

.plan-price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-desc {
  margin: 16px 0 18px;
  text-align: center;
  color: var(--muted);
  line-height: 1.65;
  min-height: 72px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--muted);
}

.plan-features li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 800;
  flex-shrink: 0;
}

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

.plan-facts-link {
  display: block;
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.plan-facts-link:hover {
  color: var(--green-dark);
}

.plan-note {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.plan-note p {
  color: var(--muted);
}

.plan-note a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.plan-note a:hover {
  text-decoration: underline;
}

.plans-subnav {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 0.5px solid var(--border-soft);
  padding: 4px 0;              /* 👈 shrink vertical space */
  margin: 0;
}

.plans-subnav .page-content {
  padding: 0 20px;             /* 👈 keep side spacing only */
}

.plans-subnav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;     /* 👈 centers the buttons nicely */
  padding: 5px 0;              /* 👈 tight vertical spacing */
}

.plans-subnav-links a {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;           /* 👈 BIGGEST fix (was 10px) */
  border-radius: 999px;
  background: rgba(127, 207, 79, 0.1);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;          /* 👈 slightly smaller text */
  line-height: 1;              /* 👈 removes extra height */
}

.plans-subnav-links a:hover {
  background: rgba(127, 207, 79, 0.18);
  color: var(--green-dark);
}

/* ── FEATURES / CONTENT GRIDS ── */
.features-section {
  background: #eef7ff;
  border-top: 1px solid var(--border-soft);
}

.features-grid,
.text-grid,
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.features-grid {
  max-width: 1100px;
  margin: 56px auto 0;
}

.text-grid,
.support-options {
  margin-top: 40px;
}

.feature-card,
.content-card,
.support-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.feature-card:hover,
.content-card:hover,
.support-box:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 207, 79, 0.28);
  box-shadow: 0 18px 48px rgba(41, 86, 126, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.feature-icon,
.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(127, 207, 79, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-icon svg,
.highlight-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.content-card h3,
.support-box h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.feature-card p,
.content-card p,
.content-card li,
.support-box p,
.support-box li {
  color: var(--muted);
  line-height: 1.7;
}

.content-card ul,
.support-box ul {
  padding-left: 18px;
}

.content-card ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-card li::marker,
.support-box li::marker {
  color: var(--green-dark);
}

.page-content a:not(.btn):not(.quick-link-card) {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.page-content a:not(.btn):not(.quick-link-card):hover {
  text-decoration: underline;
}

/* ── SUPPORT OPTIONS ── */
.support-options {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.support-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}

.support-box h3 {
  margin-bottom: 12px;
}

.support-box p {
  margin: 0 0 16px;
}

.support-action {
  margin-top: auto;
}

.support-action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── SERVICES ── */
.services-section {
  background: #f7fbff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 56px auto 0;
}

.service-card {
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  border-color: rgba(127, 207, 79, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(41, 86, 126, 0.14);
}

.service-card.wide {
  grid-column: 1 / -1;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 24px;
  max-width: 540px;
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  background: rgba(127, 207, 79, 0.12);
  color: var(--green-dark);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ── CONTACT ── */
.contact-section {
  background: #edf6ff;
  border-top: 1px solid var(--border-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 56px auto 0;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(127, 207, 79, 0.1);
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.96rem;
}

.contact-value a {
  color: var(--text-dark);
  text-decoration: none;
}

.contact-value a:hover {
  color: var(--green-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
}

input,
textarea,
select {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(127, 207, 79, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: rgba(36, 71, 102, 0.45);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

select option {
  background: #ffffff;
  color: var(--text-dark);
}

/* ── LEGAL ── */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.legal-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  line-height: 1.7;
}

.legal-content ul {
  margin: 10px 0 18px 22px;
}

/* ── SUPPORT BANNER ── */
.support-banner {
  background: linear-gradient(135deg, rgba(127, 207, 79, 0.12) 0%, rgba(102, 179, 255, 0.12) 100%);
  border: 1px solid rgba(127, 207, 79, 0.2);
  border-radius: 18px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.support-banner h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.support-banner p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ── COVERAGE ── */
.coverage-section {
  background: #f7fbff;
  border-top: 1px solid var(--border-soft);
}

.coverage-counties {
  margin-top: 10px;
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.coverage-map-card,
.coverage-info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.coverage-map-card {
  padding: 18px;
}

.coverage-info-card {
  padding: 30px;
}

.coverage-info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.coverage-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coverage-list li {
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coverage-list li::before {
  content: '•';
  color: var(--green-dark);
  font-size: 1.15rem;
  line-height: 1;
}

.coverage-note {
  margin-top: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  padding: 42px 20px;
  background: #0d1b2a;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h4 {
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-brand {
  font-size: 20px;
  font-weight: 700;
}

.footer-copy {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.65;
}

/* ── MOBILE MENU ── */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3100;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  position: absolute;
  transition: 0.25s ease;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: rgba(14, 29, 46, 0.26);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.mobile-menu-panel {
  width: min(90vw, 380px);
  height: 100%;
  background: rgba(247, 251, 255, 0.98);
  border-left: 1px solid var(--border-soft);
  box-shadow: -10px 0 32px rgba(20, 43, 72, 0.12);
  padding: 86px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  position: relative;
}

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

.mobile-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--green-dark);
}

.mobile-accent {
  color: var(--green-dark) !important;
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-divider {
  width: 100%;
  height: 1px;
  background: var(--border-soft);
  margin: 4px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .hero-image-layer img {
    right: -120px;
    width: min(980px, 78vw);
  }
}

@media (max-width: 1100px) {
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  nav,
  .site-nav {
    padding: 14px 18px;
  }

  .nav-links,
  .nav-actions .btn,
  .nav-actions a.btn {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero.hero-overlay {
    min-height: auto;
    padding: 96px 16px 56px;
  }

  .hero-overlay .hero-content {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-overlay h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11vw, 4.25rem);
    line-height: 1.02;
  }

  .hero-overlay .hero-sub {
    max-width: 100%;
    font-size: 1.04rem;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-image-layer {
    opacity: 0.38;
  }

  .hero-image-layer img {
    right: -180px;
    bottom: 0;
    width: 900px;
  }

  .support-options,
  .services-grid,
  .contact-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 20px;
  }

  .page-header {
    padding: 110px 20px 52px;
  }

  .page-header-inner {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .hero {
    padding: 44px 16px 60px;
  }

  .hero-logo {
    width: clamp(160px, 46vw, 220px);
    margin-bottom: 18px;
  }

  .hero-badge {
    margin-bottom: 18px;
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 11vw, 3.7rem);
    line-height: 1.03;
  }

  .hero-sub {
    margin-bottom: 24px;
    font-size: 1.03rem;
    line-height: 1.65;
  }

  .section-label,
  .page-kicker {
    font-size: 0.78rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 28px;
  }

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

  .services-grid,
  .contact-grid,
  .coverage-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .support-banner {
    padding: 28px 22px;
  }

  .service-card,
  .feature-card,
  .content-card,
  .support-box,
  .coverage-info-card {
    padding: 24px;
  }

  .highlight-icon,
  .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .highlight-icon svg,
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
}