:root {
  --ink: #173042;
  --muted: #5f7180;
  --paper: #fbf8f1;
  --white: #ffffff;
  --navy: #17486a;
  --blue: #2372a3;
  --sky: #d9edf7;
  --mint: #d9efe2;
  --gold: #d99b2b;
  --coral: #c95f4b;
  --line: rgba(23, 48, 66, 0.14);
  --shadow: 0 22px 60px rgba(23, 48, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 155, 43, 0.18), transparent 32rem),
    linear-gradient(180deg, #f7fbfd 0%, var(--paper) 42%, #eef8f2 100%);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-grid,
.hero-grid,
.split,
.contact-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.header-inner {
  grid-template-columns: 1fr auto;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: 54px;
  height: 54px;
  padding: 3px;
  border-radius: 14px;
  background: #f7fbfd;
  box-shadow: 0 10px 24px rgba(23, 72, 106, 0.18);
  filter: hue-rotate(126deg) saturate(0.82) brightness(0.82);
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text span,
.small-note,
.center-note,
.section-intro {
  color: var(--muted);
}

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

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
  background: var(--sky);
}

.nav .nav-cta {
  color: var(--white);
  background: var(--coral);
}

.hero {
  overflow: hidden;
  padding: 90px 0 76px;
  background:
    linear-gradient(135deg, rgba(23, 72, 106, 0.95), rgba(35, 114, 163, 0.82)),
    linear-gradient(90deg, var(--navy), var(--blue));
  color: var(--white);
}

.hero-grid,
.split,
.contact-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 8vw, 5.75rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #1f2d36;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(217, 155, 43, 0.34);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-full {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card,
.info-panel,
.stats-panel,
.card,
.comparison-box,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  color: var(--ink);
}

.logo-placeholder {
  display: grid;
  aspect-ratio: 3 / 2;
  min-height: 180px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  overflow: hidden;
}

.logo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-section {
  padding: 82px 0;
}

.content-section.alt {
  background: rgba(255, 255, 255, 0.48);
}

.reverse {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.reverse > :first-child {
  grid-column: 2;
}

.reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.info-panel,
.stats-panel,
.contact-form {
  padding: 28px;
}

.info-panel {
  background: linear-gradient(180deg, var(--white), var(--mint));
}

.info-panel ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.stats-panel {
  display: grid;
  gap: 14px;
  background: var(--navy);
  color: var(--white);
}

.stats-panel div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

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

.stats-panel span {
  color: rgba(255, 255, 255, 0.76);
}

.card-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card,
.comparison-box {
  padding: 24px;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.options-grid {
  align-items: stretch;
}

.options-grid .card {
  display: grid;
  align-content: start;
  min-height: 190px;
}

.card:nth-child(1) {
  border-top: 5px solid var(--blue);
}

.card:nth-child(2) {
  border-top: 5px solid var(--gold);
}

.card:nth-child(3) {
  border-top: 5px solid var(--coral);
}

.card:nth-child(4) {
  border-top: 5px solid var(--mint);
}

.card:nth-child(5) {
  border-top: 5px solid var(--navy);
}

.card:nth-child(6) {
  border-top: 5px solid var(--sky);
}

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

.comparison-box {
  background: linear-gradient(180deg, var(--white), #f4fbff);
}

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.carrier-card {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(217, 237, 247, 0.52)),
    var(--white);
  box-shadow: 0 14px 34px rgba(23, 48, 66, 0.1);
}

.carrier-card h3 {
  color: var(--navy);
}

.carrier-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.center-note {
  margin: 22px auto 0;
  text-align: center;
}

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

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  color: var(--white);
  background: linear-gradient(135deg, #173042, #17486a);
}

.contact-section .section-label {
  color: var(--gold);
}

.contact-section a,
.contact-section p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-details {
  margin-top: 24px;
}

.contact-form {
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 48, 66, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(35, 114, 163, 0.16);
}

.hidden {
  display: none;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #102a3d;
}

.footer-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

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

.site-footer p {
  margin-bottom: 0;
}

.footer-note {
  font-size: 0.9rem;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  padding: 40px 20px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #173042, #17486a);
}

.thanks-panel {
  width: min(760px, 100%);
}

.thanks-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.thanks-panel p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

@media (max-width: 880px) {
  .header-inner,
  .hero-grid,
  .split,
  .reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reverse > :first-child,
  .reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .nav {
    flex-wrap: wrap;
    padding-bottom: 16px;
  }

  .card-grid,
  .comparison-grid,
  .carrier-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

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

  .brand-text span {
    font-size: 0.8rem;
  }

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