:root {
  --bg: #edf2fb;
  --bg-soft: #f4f7fc;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --text: #10182b;
  --muted: #5b6780;
  --border: #d7e0ef;
  --primary: #0a1c52;
  --primary-dark: #071338;
  --red: #d21f3a;
  --red-deep: #7a1022;
  --blue: #2a58de;
  --blue-deep: #123b9c;
  --focus: #ffbf47;
  --success: #0c7a43;
  --error: #aa1831;
  --shadow-sm: 0 10px 24px rgba(10, 28, 82, 0.08);
  --shadow-md: 0 18px 46px rgba(10, 28, 82, 0.12);
  --shadow-lg: 0 24px 56px rgba(10, 28, 82, 0.16);
  --radius-sm: 0.85rem;
  --radius-md: 1.2rem;
  --radius-lg: 1.7rem;
  --container: min(100% - 1.5rem, 76rem);
  --header-height-mobile: 4.2rem;
  --header-height-desktop: 4.6rem;
  --header-video-trim: 10px;
}

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

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(210, 31, 58, 0.11), transparent 24rem),
    radial-gradient(circle at bottom left, rgba(42, 88, 222, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

body.modal-open {
  overflow: hidden;
}

img,
picture,
svg,
iframe,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--blue);
  text-underline-offset: 0.16em;
}

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

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 999;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--primary);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

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

.small-text {
  font-size: 0.95rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

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

h1 {
  margin-bottom: 0;
  max-width: 14ch;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.16rem;
}

.section {
  padding: 4.25rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at top left, rgba(42, 88, 222, 0.08), transparent 18rem),
    radial-gradient(circle at bottom right, rgba(210, 31, 58, 0.08), transparent 18rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.75rem;
}

.section-heading-left {
  margin-bottom: 1rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero {
  padding: 2rem 0 3.25rem;
}

.page-hero {
  padding: 2rem 0 2.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}

.hero-orb-red {
  top: -6rem;
  right: -7rem;
  width: 17rem;
  height: 17rem;
  background: radial-gradient(circle, rgba(210, 31, 58, 0.42), transparent 70%);
}

.hero-orb-blue {
  bottom: -8rem;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(42, 88, 222, 0.32), transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 28, 82, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 28, 82, 0.04) 1px, transparent 1px);
  background-size: 1.25rem 1.25rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 88%);
}

.copy-stack,
.split-layout,
.form-grid,
.faq-list,
.stats-grid,
.process-grid,
.footer-grid,
.cards-two,
.cards-three,
.contact-grid,
.contact-primary-grid {
  display: grid;
  gap: 1rem;
}

.card,
.info-panel,
.contact-card,
.contact-form,
.modal-panel,
.faq-list details,
.stat-card,
.map-card,
.footer-panel {
  background: var(--surface);
  border: 1px solid rgba(215, 224, 239, 0.95);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.card,
.info-panel,
.contact-card,
.contact-form,
.stat-card,
.map-card,
.footer-panel {
  padding: 1.35rem;
}

.feature-list,
.check-list,
.list-muted,
.contact-list-plain {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.feature-list li + li,
.check-list li + li,
.list-muted li + li,
.contact-list-plain li + li {
  margin-top: 0.35rem;
}

.route-card span:last-child,
.card p,
.copy-stack p,
.contact-card p,
.contact-list p,
.timeline li span,
.faq-list p,
.section-heading p,
.page-hero-copy p,
.stat-card p,
.map-card p,
.footer-panel p,
.footer-panel address,
.note,
.list-muted li {
  color: var(--muted);
}

.site-header,
.site-header-premium {
  position: sticky;
  top: 0;
  z-index: 80;
}

.site-header-premium {
  min-height: var(--header-height-mobile);
  overflow: visible;
  background: #0a1c52;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(7, 23, 67, 0.16);
  isolation: isolate;
}

.site-header-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.site-header-video-strip {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.site-header-video-strip-desktop {
  display: none;
}

.site-header-video-strip-mobile {
  display: flex;
}

.site-header-video {
  width: calc(50% + (var(--header-video-trim) * 2));
  min-width: calc(50% + (var(--header-video-trim) * 2));
  max-width: none;
  height: calc(100% + (var(--header-video-trim) * 2));
  margin: calc(var(--header-video-trim) * -1);
  object-fit: fill;
  object-position: center;
  clip-path: inset(var(--header-video-trim));
  filter: saturate(1.02) contrast(1.03) brightness(0.81);
  flex: 0 0 auto;
}

.site-header-premium::before,
.site-header-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header-premium::before {
  background:
    linear-gradient(90deg, rgba(6, 18, 54, 0.44), rgba(6, 18, 54, 0.16) 24%, rgba(6, 18, 54, 0.04) 52%, rgba(6, 18, 54, 0.34) 100%);
}

.site-header-premium::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01) 30%, rgba(0, 0, 0, 0.1));
  opacity: 0.24;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height-mobile);
  overflow: visible;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  isolation: isolate;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 0.05rem -0.2rem;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018) 54%, rgba(255, 255, 255, 0.006) 76%, transparent 100%);
  backdrop-filter: blur(1.6px) saturate(101%);
  -webkit-backdrop-filter: blur(1.6px) saturate(101%);
  box-shadow: 0 2px 6px rgba(7, 23, 67, 0.025);
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: clamp(6rem, 13vw, 8rem);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(7, 23, 67, 0.12));
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.95rem;
  height: 2.95rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.nav-toggle span:not(.nav-toggle-label) {
  display: block;
  width: 100%;
  height: 0.14rem;
  border-radius: 999px;
  background: var(--primary);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.38rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid rgba(10, 28, 82, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.45rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav[hidden] {
  display: none;
}

.site-nav.is-open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.8rem 0.9rem;
  border-radius: 0.8rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(10, 28, 82, 0.06);
}

.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, var(--red), var(--primary));
}

.home-landing {
  padding: 0.8rem 0 2rem;
}

.home-landing-inner {
  width: min(100%, 92rem);
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.home-hero-cluster {
  position: relative;
  width: min(100%, 88rem);
  display: grid;
  justify-items: center;
}

.home-brand {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 0.08rem;
}

.home-brand-logo {
  width: min(74vw, 14.8rem);
  filter: drop-shadow(0 14px 28px rgba(10, 28, 82, 0.08));
}

.home-brand-tagline {
  max-width: 20rem;
  margin: 0.6rem auto 0;
  font-size: 0.97rem;
  line-height: 1.45;
  color: #55627b;
}

.home-bubbles-desktop {
  display: none;
}

.home-mobile-top,
.home-mobile-bottom {
  display: grid;
  justify-items: center;
  width: 100%;
  pointer-events: none;
}

.home-mobile-top {
  margin-bottom: 0.18rem;
}

.home-mobile-bottom {
  margin-top: 0.28rem;
}

.home-speech-bubble {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 12.8rem;
  min-width: 12.2rem;
  min-height: 4.9rem;
  padding: 0.86rem 1rem;
  border-radius: 1.08rem;
  text-decoration: none;
  text-align: center;
  color: #fff;
  overflow: visible;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.home-speech-bubble span {
  max-width: 9.5ch;
  color: #fff;
  font-size: clamp(1rem, 4.35vw, 1.14rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
  pointer-events: none;
}

.home-speech-bubble::before,
.home-speech-bubble::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-speech-bubble-red {
  background: linear-gradient(135deg, var(--red), #b41731);
  box-shadow:
    0 20px 40px rgba(10, 28, 82, 0.2),
    0 0 0 2px rgba(110, 10, 26, 0.72),
    0 0 24px rgba(110, 10, 26, 0.6),
    0 0 0 0 rgba(110, 10, 26, 0.2);
  filter: drop-shadow(0 0 8px rgba(110, 10, 26, 0.46));
  animation: bubbleGlowPulseRedStrong 1.35s ease-in-out infinite;
}

.home-speech-bubble-blue {
  background: linear-gradient(135deg, var(--blue), #173d9f);
  box-shadow:
    0 20px 40px rgba(10, 28, 82, 0.2),
    0 0 0 2px rgba(9, 43, 130, 0.72),
    0 0 24px rgba(9, 43, 130, 0.6),
    0 0 0 0 rgba(9, 43, 130, 0.2);
  filter: drop-shadow(0 0 8px rgba(9, 43, 130, 0.46));
  animation: bubbleGlowPulseBlueStrong 1.35s ease-in-out infinite;
}

.home-speech-bubble:hover,
.home-speech-bubble:focus-visible {
  animation-play-state: paused;
  transform: translateY(-0.14rem) scale(1.02);
}

.home-bubble-mobile-top::before {
  width: 0.98rem;
  height: 0.98rem;
  left: 50%;
  bottom: -0.42rem;
  margin-left: -0.22rem;
  background: linear-gradient(135deg, var(--red), #b41731);
}

.home-bubble-mobile-top::after {
  width: 0.58rem;
  height: 0.58rem;
  left: 50%;
  bottom: -0.9rem;
  margin-left: 0.58rem;
  background: linear-gradient(135deg, var(--red), #b41731);
}

.home-bubble-mobile-bottom::before {
  width: 0.98rem;
  height: 0.98rem;
  left: 50%;
  top: -0.42rem;
  margin-left: -0.8rem;
  background: linear-gradient(135deg, var(--blue), #173d9f);
}

.home-bubble-mobile-bottom::after {
  width: 0.58rem;
  height: 0.58rem;
  left: 50%;
  top: -0.9rem;
  margin-left: 0rem;
  background: linear-gradient(135deg, var(--blue), #173d9f);
}

@keyframes bubbleGlowPulseRedStrong {
  0%, 100% {
    box-shadow:
      0 20px 40px rgba(10, 28, 82, 0.2),
      0 0 0 2px rgba(110, 10, 26, 0.72),
      0 0 24px rgba(110, 10, 26, 0.6),
      0 0 0 0 rgba(110, 10, 26, 0.2);
    filter: drop-shadow(0 0 8px rgba(110, 10, 26, 0.46));
  }
  50% {
    box-shadow:
      0 26px 50px rgba(10, 28, 82, 0.26),
      0 0 0 3px rgba(110, 10, 26, 0.98),
      0 0 42px rgba(110, 10, 26, 0.95),
      0 0 0 12px rgba(110, 10, 26, 0.22);
    filter: drop-shadow(0 0 18px rgba(110, 10, 26, 0.78));
  }
}

@keyframes bubbleGlowPulseBlueStrong {
  0%, 100% {
    box-shadow:
      0 20px 40px rgba(10, 28, 82, 0.2),
      0 0 0 2px rgba(9, 43, 130, 0.72),
      0 0 24px rgba(9, 43, 130, 0.6),
      0 0 0 0 rgba(9, 43, 130, 0.2);
    filter: drop-shadow(0 0 8px rgba(9, 43, 130, 0.46));
  }
  50% {
    box-shadow:
      0 26px 50px rgba(10, 28, 82, 0.26),
      0 0 0 3px rgba(9, 43, 130, 0.98),
      0 0 42px rgba(9, 43, 130, 0.95),
      0 0 0 12px rgba(9, 43, 130, 0.22);
    filter: drop-shadow(0 0 18px rgba(9, 43, 130, 0.78));
  }
}


.home-bubbles-desktop {
  z-index: 5;
}

.home-mobile-top,
.home-mobile-bottom {
  position: relative;
  z-index: 5;
}

.home-speech-bubble {
  z-index: 5;
}

.home-speech-bubble span {
  position: relative;
  z-index: 2;
  display: block;
}

.home-speech-bubble::before,
.home-speech-bubble::after {
  z-index: 1;
}

.page-hero-copy {
  display: grid;
  gap: 0.4rem;
  max-width: 52rem;
}

.page-hero-split-inner {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.page-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 20rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(215, 224, 239, 0.95);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,252,0.98)),
    radial-gradient(circle at top right, rgba(42,88,222,0.08), transparent 34%),
    radial-gradient(circle at bottom left, rgba(210,31,58,0.08), transparent 32%);
  box-shadow: var(--shadow-md);
}

.page-hero-visual img {
  width: 100%;
  max-width: 100%;
  max-height: min(68vh, 38rem);
  object-fit: contain;
  border-radius: 1rem;
  filter: drop-shadow(0 16px 26px rgba(10, 28, 82, 0.12));
}

.contact-primary-grid {
  align-items: start;
}

.contact-form-wrap,
.contact-side-wrap {
  display: grid;
  gap: 1rem;
}

.contact-map-card iframe {
  width: 100%;
  min-height: 20rem;
  border: 0;
  border-radius: 1.2rem;
}

.contact-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--primary);
  border-color: rgba(10, 28, 82, 0.24);
  transform: translateX(0.08rem);
}

.contact-mobile-details {
  display: block;
  border: 1px solid rgba(215, 224, 239, 0.95);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.contact-mobile-details summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
}

.contact-mobile-details summary::-webkit-details-marker {
  display: none;
}

.contact-mobile-details summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 0.9rem;
  font-size: 1.35rem;
  line-height: 1;
}

.contact-mobile-details[open] summary::after {
  content: "–";
}

.contact-mobile-details-panel {
  display: grid;
  gap: 1rem;
  padding: 0 1rem 1rem;
}

.contact-desktop-block {
  display: none;
}

.faq-list {
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list summary + * {
  margin-top: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

label span {
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--text);
  border: 1px solid rgba(10, 28, 82, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(42, 88, 222, 0.45);
  box-shadow: 0 0 0 4px rgba(42, 88, 222, 0.12);
  outline: none;
}

textarea {
  resize: vertical;
}

[aria-invalid="true"] {
  border-color: rgba(170, 24, 49, 0.5);
}

.form-grid {
  gap: 0.9rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-0.1rem);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--primary));
  box-shadow: 0 16px 34px rgba(10, 28, 82, 0.2);
}

.site-footer {
  padding: 2.2rem 0;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(215, 224, 239, 0.9);
}

.footer-grid {
  gap: 1rem;
}

.footer-panel strong {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 82, 0.52);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100% - 1.5rem, 42rem);
  margin: 1rem auto;
  padding: 1.2rem;
}

.modal-close {
  margin-left: auto;
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 28, 82, 0.08);
}

.contact-bubble {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  min-width: 8rem;
  padding: 0.95rem 1.2rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--primary));
  box-shadow: 0 16px 34px rgba(10, 28, 82, 0.26);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-bubble:hover,
.contact-bubble:focus-visible {
  transform: translateY(-0.12rem);
}

.contact-bubble.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 48rem) {
  .site-header-premium {
    min-height: var(--header-height-desktop);
  }

  .site-header-video-strip-mobile {
    display: none;
  }

  .site-header-video-strip-desktop {
    display: flex;
  }

  .site-header-video-strip-desktop .site-header-video {
    width: calc(25% + (var(--header-video-trim) * 2));
    min-width: calc(25% + (var(--header-video-trim) * 2));
    object-fit: cover;
  }

  .header-inner {
    min-height: var(--header-height-desktop);
  }

  .brand {
    padding: 0.18rem 0.5rem;
  }

  .brand::before {
    inset: 0.04rem -0.18rem;
    backdrop-filter: blur(1.9px) saturate(101%);
    -webkit-backdrop-filter: blur(1.9px) saturate(101%);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.12rem;
    width: auto;
    min-width: 0;
    padding: 0.22rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav[hidden] {
    display: flex !important;
  }

  .site-nav a {
    color: #fff;
    padding: 0.68rem 0.82rem;
    white-space: nowrap;
    font-size: 0.92rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
  }

  .nav-cta {
    margin-left: 0.2rem;
    color: var(--primary) !important;
    background: linear-gradient(135deg, #fff, #eef3ff);
  }

  .home-landing {
    padding: 2rem 0 2.8rem;
  }

  .home-landing-inner {
    gap: 1rem;
  }

  .home-mobile-top,
  .home-mobile-bottom {
    display: none;
  }

  .home-hero-cluster {
    width: min(100%, 90rem);
    min-height: 31rem;
  }

  .home-bubbles-desktop {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .home-bubbles-desktop .home-speech-bubble {
    position: absolute;
    pointer-events: auto;
    max-width: 16rem;
    min-width: 16rem;
    min-height: 5.4rem;
    padding: 1rem 1.14rem;
    border-radius: 1.14rem;
  }

  .home-bubbles-desktop .home-speech-bubble span {
    max-width: 10.6ch;
    font-size: clamp(1.08rem, 0.9vw, 1.22rem);
    line-height: 1.04;
  }

  .home-bubble-left {
    left: 16.5%;
    top: 22.5%;
  }

  .home-bubble-right {
    right: 16.5%;
    top: 22.5%;
  }

  .home-bubble-left::before {
    right: -0.36rem;
    bottom: -0.12rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, var(--red), #b41731);
  }

  .home-bubble-left::after {
    right: -1.18rem;
    bottom: -0.74rem;
    width: 0.6rem;
    height: 0.6rem;
    background: linear-gradient(135deg, var(--red), #b41731);
  }

  .home-bubble-right::before {
    left: -0.36rem;
    bottom: -0.12rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, var(--blue), #173d9f);
  }

  .home-bubble-right::after {
    left: -1.18rem;
    bottom: -0.74rem;
    width: 0.6rem;
    height: 0.6rem;
    background: linear-gradient(135deg, var(--blue), #173d9f);
  }

  .home-brand {
    padding-top: 4.15rem;
  }

  .home-brand-logo {
    width: min(100%, 27.5rem);
  }

  .home-brand-tagline {
    max-width: 50rem;
    margin-top: 0.95rem;
    font-size: 1.12rem;
  }

  .page-hero-split-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(21rem, 0.92fr);
    gap: 2.3rem;
  }

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

  .full-width {
    grid-column: 1 / -1;
  }

  .footer-grid,
  .cards-two,
  .cards-three,
  .split-layout,
  .stats-grid,
  .contact-primary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-primary-grid {
    grid-template-columns: minmax(23rem, 1.04fr) minmax(22rem, 0.96fr);
    gap: 1.2rem;
  }

  .contact-desktop-block {
    display: block;
  }

  .contact-mobile-details {
    display: none;
  }

  .contact-map-card iframe {
    min-height: 31rem;
  }
}

@media (min-width: 64rem) {
  .home-landing {
    padding: 2.2rem 0 3rem;
  }

  .home-hero-cluster {
    width: min(100%, 96rem);
    min-height: 34rem;
  }

  .home-bubbles-desktop .home-speech-bubble {
    max-width: 17.5rem;
    min-width: 17.5rem;
    min-height: 5.8rem;
    padding: 1.08rem 1.24rem;
  }

  .home-bubbles-desktop .home-speech-bubble span {
    max-width: 11ch;
    font-size: clamp(1.14rem, 0.86vw, 1.32rem);
  }

  .home-bubble-left {
    left: 19%;
    top: 23%;
  }

  .home-bubble-right {
    right: 19%;
    top: 23%;
  }

  .home-brand {
    padding-top: 4.55rem;
  }

  .home-brand-logo {
    width: min(100%, 30rem);
  }

  .home-brand-tagline {
    max-width: 56rem;
    font-size: 1.16rem;
  }
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
}

.cookie-consent__inner {
  width: min(100%, 76rem);
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(215, 224, 239, 0.95);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 56px rgba(10, 28, 82, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-consent__copy {
  display: grid;
  gap: 0.45rem;
}

.cookie-consent__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.cookie-consent__title {
  margin: 0;
  max-width: none;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.cookie-consent__text {
  margin: 0;
  color: var(--muted);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-consent__button {
  min-height: 3rem;
}

.cookie-consent__button-secondary {
  color: var(--primary);
  background: rgba(10, 28, 82, 0.08);
  box-shadow: none;
}

.cookie-consent__link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-consent__details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(215, 224, 239, 0.95);
}

.cookie-consent__grid {
  display: grid;
  gap: 0.85rem;
}

.cookie-consent__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(215, 224, 239, 0.95);
  border-radius: 1.1rem;
  background: rgba(244, 247, 252, 0.9);
}

.cookie-consent__option-copy {
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
}

.cookie-consent__option-copy strong {
  color: var(--text);
}

.cookie-consent__toggle-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 3.5rem;
  height: 2rem;
}

.cookie-consent__toggle-wrap input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
}

.cookie-consent__toggle {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(10, 28, 82, 0.18);
  transition: background 0.2s ease;
}

.cookie-consent__toggle::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(10, 28, 82, 0.18);
  transition: transform 0.2s ease;
}

.cookie-consent__toggle-wrap input:checked + .cookie-consent__toggle {
  background: linear-gradient(135deg, var(--red), var(--primary));
}

.cookie-consent__toggle-wrap input:checked + .cookie-consent__toggle::after {
  transform: translateX(1.5rem);
}

.cookie-consent__toggle-wrap input:disabled + .cookie-consent__toggle {
  background: rgba(10, 28, 82, 0.34);
}

.cookie-consent__toggle-wrap input:focus-visible + .cookie-consent__toggle {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

@media (min-width: 48rem) {
  .cookie-consent__inner {
    padding: 1.2rem 1.25rem;
  }

  .cookie-consent__actions {
    margin-top: 1.1rem;
  }
}

@media (max-width: 40rem) {
  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-consent__inner {
    padding: 0.95rem;
    border-radius: 1.2rem;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-consent__button,
  .cookie-consent__link {
    width: 100%;
  }

  .cookie-consent__link {
    text-align: left;
  }

  .cookie-consent__option {
    align-items: start;
  }
}
