:root {
  color-scheme: dark;
  --bg: #0b1428;
  --gold: #ffcc5c;
  --gold-soft: #ffe7b8;
  --gold-bright: #ffd679;
  --gold-glow: rgba(255, 204, 92, 0.35);
  --blue: #6596cf;
  --text: #e7ecf6;
  --muted: #9fb1d4;
  --card: #151f3a;
  --border: rgba(101, 150, 207, 0.25);
}

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

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

body {
  font-family: "Spline Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(242, 184, 75, 0.16), transparent 55%),
    radial-gradient(circle at 80% 15%, rgba(247, 201, 107, 0.14), transparent 50%),
    radial-gradient(circle at 65% 65%, rgba(242, 184, 75, 0.18), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(101, 150, 207, 0.12), transparent 55%);
  position: relative;
  overflow-x: hidden;
  transition: filter 0.2s ease;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(125deg, rgba(255, 204, 92, 0.12) 0%, rgba(255, 204, 92, 0.12) 18%, transparent 18%),
    linear-gradient(315deg, rgba(101, 150, 207, 0.14) 0%, rgba(101, 150, 207, 0.14) 20%, transparent 20%),
    conic-gradient(from 180deg at 82% 18%, rgba(255, 214, 121, 0.18), transparent 65%),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 420px 420px, 360px 360px, 320px 320px, 120px 120px;
  background-position: 0 0, 100% 20%, 70% 10%, 0 0;
  opacity: 0.45;
  pointer-events: none;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 20, 38, 0.8), transparent 55%);
  pointer-events: none;
  opacity: 0.4;
}

.page > * {
  position: relative;
  z-index: 1;
}

.secondary-background {
  position: relative;
  isolation: isolate;
  background: radial-gradient(circle at 15% 20%, rgba(101, 150, 207, 0.18), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(73, 162, 147, 0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 214, 121, 0.12), transparent 58%),
    linear-gradient(160deg, rgba(10, 18, 36, 0.95), rgba(11, 26, 38, 0.98));
}

.secondary-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(140deg, rgba(101, 150, 207, 0.14) 0%, transparent 45%),
    linear-gradient(320deg, rgba(242, 184, 75, 0.12) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 420px 420px, 360px 360px, 140px 140px;
  background-position: 0 0, 100% 20%, 0 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.secondary-background > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(16, 27, 50, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 20, 38, 0.94);
  border-bottom-color: rgba(255, 204, 92, 0.24);
  box-shadow: 0 12px 30px rgba(6, 10, 20, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.logo img {
  width: 128px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(242, 184, 75, 0.3));
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a.is-active {
  color: var(--gold);
}

.nav a:hover,
.nav a:focus {
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  background: rgba(9, 15, 29, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav a.is-active {
  color: var(--gold);
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.btn {
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  font-family: "Spline Sans", sans-serif;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #141a2a;
  box-shadow: 0 10px 26px rgba(242, 184, 75, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(242, 184, 75, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--blue);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.btn-outline:hover {
  background: rgba(242, 184, 75, 0.1);
  border-color: rgba(242, 184, 75, 0.55);
}

.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(242, 184, 75, 0.22), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(101, 150, 207, 0.2), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-copy {
  max-width: 760px;
  text-align: center;
}

.trust-banner {
  margin-top: 50px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255, 204, 92, 0.18), rgba(12, 20, 38, 0.95));
  border: 1px solid rgba(255, 204, 92, 0.3);
  box-shadow: 0 18px 40px rgba(5, 10, 20, 0.45), 0 0 24px rgba(255, 204, 92, 0.12);
}

.trust-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  text-align: center;
  align-items: center;
}

.trust-heading h3 {
  font-size: 1.4rem;
  font-family: "Fraunces", serif;
  color: #f9f4e6;
}

.logo-marquee {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 204, 92, 0.2);
  background: rgba(12, 18, 34, 0.7);
  display: grid;
  gap: 2px;
}

.logo-row {
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 32px;
  padding: 18px 24px;
  animation: marquee 18s linear infinite;
  min-width: max-content;
}

.logo-track-reverse {
  animation-name: marquee-reverse;
}

.logo-track span {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  white-space: nowrap;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #f7f3ea;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
  justify-content: center;
}

.hero-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-metrics span {
  font-size: 1.4rem;
  font-weight: 600;
}

.hero-metrics small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}




.lane-sample {
  margin-top: 18px;
  padding-bottom: 12px;
  position: relative;
  z-index: 2;
}

.lane-sample-shell {
  border: 1px solid rgba(242, 184, 75, 0.3);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(20, 30, 55, 0.95), rgba(10, 17, 34, 0.98));
  box-shadow: 0 18px 40px rgba(4, 9, 20, 0.45), 0 0 24px rgba(242, 184, 75, 0.1);
  padding: 22px;
}

.lane-sample-head {
  margin-bottom: 14px;
}

.lane-sample-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.lane-sample-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 12px;
  align-items: end;
}

.field.compact {
  margin-bottom: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.field.compact input {
  min-height: 44px;
}

.field.compact select {
  min-height: 44px;
}

.autocomplete-field {
  position: relative;
}

.location-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 35;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 204, 92, 0.24);
  background: rgba(10, 17, 34, 0.96);
  box-shadow: 0 16px 24px rgba(4, 8, 18, 0.45);
  max-height: 176px;
  overflow-y: auto;
  display: none;
}

.location-menu.is-open {
  display: block;
}

.location-option {
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--text);
  font-size: 0.82rem;
  cursor: pointer;
}

.location-option:hover,
.location-option.is-active {
  background: rgba(255, 204, 92, 0.18);
  color: var(--gold-soft);
}

.lane-sample-form .btn {
  min-height: 44px;
  white-space: nowrap;
  grid-column: 1 / -1;
  justify-self: center;
}

.lane-sample-note {
  margin-top: 10px;
  min-height: 20px;
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.trusted-by {
  padding: 8px 0 34px;
}

.trusted-by .trust-banner {
  margin-top: 8px;
}

.trust-strip {
  padding: 22px 0;
  background: linear-gradient(120deg, rgba(242, 184, 75, 0.2), rgba(15, 22, 41, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 40px;
  max-width: 720px;
}

.section-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  margin-bottom: 12px;
}

.method {
  padding: 90px 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.method-card {
  background: linear-gradient(165deg, rgba(26, 36, 62, 0.95), rgba(15, 23, 44, 0.98));
  border: 1px solid rgba(242, 184, 75, 0.2);
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 184, 75, 0.5);
  box-shadow: 0 18px 35px rgba(5, 10, 20, 0.4), 0 0 22px rgba(242, 184, 75, 0.16);
}

.method-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(242, 184, 75, 0.24);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(242, 184, 75, 0.16);
}

.split {
  padding: 90px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.panel {
  background: linear-gradient(170deg, rgba(27, 38, 66, 0.96), rgba(14, 22, 42, 0.98));
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(242, 184, 75, 0.28);
  box-shadow: 0 20px 45px rgba(4, 8, 18, 0.3), 0 0 26px rgba(242, 184, 75, 0.16);
}

.panel.alt {
  background: linear-gradient(160deg, rgba(35, 47, 76, 0.85), rgba(16, 27, 50, 1));
  border-color: rgba(247, 201, 107, 0.35);
}


.carrier-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.carrier-panel-copy {
  max-width: 620px;
}

.carrier-panel-copy p {
  margin-bottom: 0;
}

.carrier-panel-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.panel h2 {
  font-family: "Fraunces", serif;
  margin-bottom: 12px;
}

.panel p {
  color: var(--muted);
  margin-bottom: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

input {
  background: rgba(7, 11, 24, 0.8);
  border: 1px solid rgba(101, 150, 207, 0.35);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
}

select {
  background: rgba(7, 11, 24, 0.8);
  border: 1px solid rgba(101, 150, 207, 0.35);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
}

input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 184, 75, 0.2);
}

select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 184, 75, 0.2);
}

.helper {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.carrier-notes {
  margin-top: 0;
  border-left: 2px solid var(--gold-bright);
  padding-left: 16px;
  color: var(--muted);
}

.network {
  padding: 90px 0;
}

.about {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-cards {
  display: grid;
  gap: 16px;
}

.about-cards div {
  background: linear-gradient(160deg, rgba(24, 35, 62, 0.95), rgba(14, 22, 42, 0.98));
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 204, 92, 0.22);
  box-shadow: 0 16px 30px rgba(6, 10, 20, 0.35);
}

.about-cards h3 {
  margin-bottom: 8px;
  color: var(--gold);
}

.faq {
  padding: 90px 0;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq details {
  background: linear-gradient(165deg, rgba(24, 36, 62, 0.95), rgba(12, 18, 34, 0.98));
  border-radius: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 204, 92, 0.2);
  color: var(--muted);
  box-shadow: 0 16px 26px rgba(5, 10, 20, 0.3);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.faq summary::marker {
  color: var(--gold);
}

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

.page-hero {
  padding: 110px 0 70px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.page-hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-copy p {
  color: var(--muted);
}

.page-hero-card {
  background: linear-gradient(160deg, rgba(25, 36, 64, 0.96), rgba(12, 18, 34, 0.98));
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 204, 92, 0.24);
  box-shadow: 0 16px 30px rgba(4, 8, 18, 0.35);
}

.page-hero-card h3 {
  margin-bottom: 12px;
  color: var(--gold);
}

.page-hero-card ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.page-hero-card ul li::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}

.story,
.solution-stack {
  padding: 70px 0;
}

.services-segments {
  padding: 30px 0 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-segment {
  background: linear-gradient(160deg, rgba(24, 36, 62, 0.95), rgba(12, 18, 34, 0.98));
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 204, 92, 0.22);
  box-shadow: 0 16px 30px rgba(6, 10, 20, 0.3);
}

.service-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 8px;
}

.service-segment h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.service-best-for {
  margin-top: 16px;
  color: var(--text);
}

.service-best-for strong {
  color: var(--gold);
}

.story-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.story-panel {
  background: linear-gradient(160deg, rgba(24, 36, 62, 0.95), rgba(12, 18, 34, 0.98));
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 204, 92, 0.24);
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-list h4 {
  color: var(--gold);
  margin-bottom: 6px;
}

.leadership {
  padding: 70px 0 90px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.leader-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(24, 36, 62, 0.95), rgba(12, 18, 34, 0.98));
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 204, 92, 0.2);
}

.leader-photo {
  display: block;
  width: 124px;
  height: 124px;
  border-radius: 20px;
  object-fit: cover;
  margin: 0 auto 16px;
  opacity: 0.92;
  filter: saturate(0.9) contrast(1.05);
  box-shadow: 0 14px 28px rgba(5, 9, 18, 0.4), 0 0 0 1px rgba(255, 204, 92, 0.24);
}


.leader-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.leader-name a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #111b33;
  background: linear-gradient(145deg, rgba(255, 214, 121, 0.95), rgba(242, 184, 75, 0.88));
  border-radius: 999px;
  border: 1px solid rgba(255, 242, 211, 0.55);
  box-shadow: 0 8px 16px rgba(8, 14, 29, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.leader-name a:hover,
.leader-name a:focus-visible {
  color: #0a152d;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(8, 14, 29, 0.4);
}

.leader-name svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.solution-grid article {
  background: linear-gradient(160deg, rgba(24, 36, 62, 0.95), rgba(12, 18, 34, 0.98));
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 204, 92, 0.22);
}

.solution-grid h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.cta-panel {
  padding: 70px 0 90px;
  text-align: center;
}

.cta-panel .container {
  background: linear-gradient(120deg, rgba(255, 204, 92, 0.2), rgba(15, 22, 41, 0.92));
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(255, 204, 92, 0.3);
}


.services-cta-panel .container {
  padding: 44px 32px 52px;
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
}

.services-cta-panel h2,
.services-cta-panel p {
  margin: 0;
}

.services-cta-panel p {
  max-width: 760px;
}

.services-cta-panel .btn {
  margin-top: 6px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: start;
}

.network ul {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.network ul li::before {
  content: "•";
  color: var(--gold);
  margin-right: 10px;
}

.metric-cards {
  display: grid;
  gap: 16px;
}

.metric-cards div {
  background: linear-gradient(150deg, rgba(27, 39, 65, 0.92), rgba(14, 22, 42, 0.98));
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  box-shadow: 0 16px 30px rgba(6, 10, 20, 0.35), inset 0 0 20px rgba(242, 184, 75, 0.06);
}

.final-cta {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(242, 184, 75, 0.25), rgba(16, 27, 50, 0.92));
  border-top: 1px solid rgba(242, 184, 75, 0.25);
}

.final-cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 38px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--gold);
  border-color: rgba(255, 204, 92, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(242, 184, 75, 0.2);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 24, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  padding: 20px;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #121b33;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(242, 184, 75, 0.22);
  width: min(420px, 100%);
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .page {
  filter: blur(6px);
  transition: filter 0.2s ease;
}

.modal-content h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 12px;
}

.success {
  color: var(--gold);
  min-height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

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

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

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

  .mobile-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .balanced-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .balanced-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(360px, 100%);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 90px 0 70px;
  }

  .header-inner {
    align-items: center;
  }

  .trust-banner {
    padding: 20px;
  }

  .final-cta .container {
    align-items: flex-start;
  }

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

  .balanced-grid > :last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 1080px) {
  .lane-sample-form {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 560px) {
  .lane-sample-form {
    grid-template-columns: 1fr;
  }
}

.policy-hero {
  padding-bottom: 48px;
}

.policy-layout {
  display: grid;
  gap: 18px;
  padding-bottom: 90px;
}

.policy-card {
  background: linear-gradient(160deg, rgba(24, 36, 62, 0.95), rgba(12, 18, 34, 0.98));
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 204, 92, 0.2);
  box-shadow: 0 14px 30px rgba(5, 10, 22, 0.28);
}

.policy-card h2 {
  margin-bottom: 10px;
}

.policy-card h3 {
  color: var(--gold);
  margin: 18px 0 8px;
}

.policy-card p + p {
  margin-top: 12px;
}

.policy-card ul {
  margin-top: 10px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.policy-card a {
  color: var(--gold);
}

.policy-card strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .carrier-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
