﻿:root {
  --blue-900: #0a2f66;
  --blue-800: #0f4fa8;
  --blue-700: #1e63c7;
  --blue-050: #f5f9ff;
  --blue-100: #eaf3ff;
  --green-700: #17884a;
  --green-600: #1fa95c;
  --green-500: #25bf67;
  --text-900: #122033;
  --text-700: #41546e;
  --text-500: #6d7d91;
  --white: #ffffff;
  --border: #d6e2f1;
  --shadow-sm: 0 8px 20px rgba(14, 50, 97, 0.08);
  --shadow-md: 0 18px 40px rgba(14, 50, 97, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --transition: 180ms ease;
  --header-offset: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-900);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue-800);
  text-decoration: none;
}

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.15;
}

h3 {
  font-size: 1.2rem;
}

section {
  scroll-margin-top: var(--header-offset);
}

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

.section {
  padding: 3.25rem 0;
}

.section-light {
  background: #f7fbff;
}

.section-blue {
  background: linear-gradient(180deg, #eef6ff 0%, #e4f0ff 100%);
}

.section-white {
  background: #ffffff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  color: var(--blue-900);
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--blue-800);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.section-heading h2,
.info-copy h2 {
  font-size: clamp(1.32rem, 2.04vw, 1.79rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-heading p,
.info-copy p,
.step-card p,
.content-card p,
.handoff-box p,
.hero-note,
.media-card figcaption,
.faq-content,
.small-text {
  color: var(--text-700);
}

.topbar {
  background: var(--blue-900);
  color: var(--white);
  font-size: 0.95rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
}

.topbar-text {
  margin: 0;
}

.topbar-button {
  background: transparent;
  border: 0;
  color: var(--white);
  font-weight: 700;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(214, 226, 241, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-900);
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--green-700));
  font-weight: 800;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  margin-top: 0.22rem;
  color: var(--text-500);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-900);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  font: inherit;
}

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

.btn:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(31, 169, 92, 0.28);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  box-shadow: 0 12px 26px rgba(31, 169, 92, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 1.05rem 1.5rem;
  font-size: 1rem;
}

.hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at top left, rgba(55, 132, 242, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.52rem, 2.88vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 30ch;
}

.hero-lead {
  max-width: 58ch;
  color: var(--text-700);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.hero-badges span {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-700);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-note {
  color: var(--text-500);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* === IMAGE STABILITY / CLS REDUCTION === */
.hero-media {
  min-height: 300px;
}

.media-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9eff7;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.media-tall {
  aspect-ratio: 4 / 5;
}

.media-card img,
.content-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card figcaption {
  padding: 0.85rem 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-500);
  background: var(--white);
}

.trust-strip {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: var(--blue-050);
}

.trust-item span {
  color: var(--text-700);
  font-size: 0.94rem;
}

.steps-grid,
.cards-grid-3,
.city-links-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

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

.step-card,
.content-card,
.handoff-box,
.faq-item,
.cta-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.step-card,
.content-card {
  padding: 1.1rem;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-900);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.center-actions {
  text-align: center;
  margin-top: 2rem;
}

.info-grid,
.split-panel,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

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

.footer-grid > div:nth-child(2){
padding-top:0;
}

.info-grid,
.split-panel {
  gap: 2rem;
}

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

.content-card figure {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9eff7;
  border-radius: 6px;
  margin: 0 0 1rem;
}

.content-card > img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.handoff-box {
  padding: 1.5rem;
}

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

.city-links-grid a {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-weight: 700;
  color: var(--blue-900);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.city-links-grid a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 800;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--blue-800);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-700);
}

.cta-banner-section {
  padding-top: 2rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #0d3b7e 0%, #1661c7 100%);
  color: var(--white);
}

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

.site-footer {
  background: #0c2242;
  color: rgba(255, 255, 255, 0.94);
  padding-top: 3rem;
}

.footer-grid {
  gap: 2rem;
  padding-bottom: 2rem;
}

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

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
}

.small-text {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

dialog {
  width: min(92vw, 560px);
  border: 0;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

dialog::backdrop {
  background: rgba(8, 20, 40, 0.55);
}

.handoff-dialog-inner {
  padding: 1.5rem;
}

.handoff-dialog-inner h2 {
  margin-bottom: 0.75rem;
}

.handoff-dialog-inner p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-700);
}

.handoff-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.handoff-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--text-500);
}

.image-size,
.img-size,
.img-dimensions,
.image-dimensions {
  display: none !important;
  visibility: hidden !important;
}


/* =========================
   COOKIE CONSENT BANNER
========================= */

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10000;
  display: none;
  max-width: 620px;
  margin-inline: auto;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.cookie-banner.is-visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.cookie-actions .btn {
  padding: 0.55rem 0.85rem;
  font-size: 0.86rem;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 5.8rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner.is-visible {
    display: flex;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   MOBILE STICKY CTA BAR
========================= */

.mobile-sticky-cta {
  display:none;
  min-height:70px;
}


.mobile-sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
}

.mobile-sticky-cta-text {
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.25;
  text-align: center;
  margin: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .info-grid,
  .split-panel,
  .steps-grid,
  .cards-grid-3,
  .trust-strip-inner,
  .city-links-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow-md);
  }

  .site-nav.open,
  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 96px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: block;
    background: rgba(12, 34, 66, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 1rem;
  }

  .topbar-inner,
  .header-inner,
  .hero-actions {
    align-items: stretch;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.6rem 0;
    text-align: center;
  }

  .hero {
    padding-top: 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .btn,
  .btn-lg,
  .topbar-button {
    width: 100%;
  }

  .brand-text small {
    display: none;
  }

  .hero-media {
    min-height: 0;
    margin-top: 0;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .media-card {
    max-width: 100%;
    margin-inline: auto;
  }
}