:root {
  --navy: #184870;
  --blue: #185070;
  --sky: #00b8f0;
  --accent-cyan: #00b8f0;
  --pale-cyan: #d8f7ff;
  --porcelain: #fbfdff;
  --ink: #184870;
  --muted: #607387;
  --line: #dbe7f0;
  --soft: #f4f8fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(24, 72, 112, .12);
  --shadow-deep: 0 42px 110px rgba(24, 72, 112, .25);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2 {
  color: #184870;
}

h3 {
  color: #00b8f0;
}

.skip {
  position: absolute;
  left: 14px;
  top: -80px;
  z-index: 99;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.skip:focus {
  top: 12px;
}

.shell {
  width: min(1760px, calc(100% - 24px));
  margin-inline: auto;
}

.topbar {
  background: linear-gradient(90deg, #184870, #185070);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  margin-left: 18px;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(24, 72, 112, .11);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(24, 72, 112, .08);
}

.header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 245px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(0, 184, 240, .55);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), transparent),
    var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 15px 30px rgba(24, 72, 112, .16);
}

.brand__mark--logo {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand__mark--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.04;
  font-weight: 950;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
}

.brand--footer strong,
.brand--footer small {
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  flex: 1 1 auto;
}

.nav a,
.nav-group__trigger {
  color: #185070;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.nav a:hover,
.nav-group:hover .nav-group__trigger {
  color: var(--sky);
}

.nav-group {
  position: relative;
}

.nav-group__trigger {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-group__trigger:after {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  width: min(430px, calc(100vw - 32px));
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(24, 72, 112, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 30px 80px rgba(24, 72, 112, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 8px;
}

.nav-dropdown a:hover {
  color: var(--navy);
  background: #f0f9fe;
}

.nav-dropdown strong {
  color: var(--navy);
  font-size: 14px;
}

.nav-dropdown span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.nav__button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  background: #00b8f0;
  color: #fff !important;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 184, 240, .24);
  white-space: nowrap;
}

.button:hover,
.button:focus-visible,
.nav__button:hover,
.nav__button:focus-visible {
  background: #00a6d8;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 184, 240, .30);
}

.button--accent {
  background: #00b8f0;
}

.button--ghost {
  background: rgba(0, 184, 240, .14);
  border: 1px solid rgba(0, 184, 240, .62);
  box-shadow: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero--signature {
  min-height: 820px;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 72, 112, .94), rgba(24, 72, 112, .68), rgba(24, 72, 112, .25)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero__media--signature {
  background:
    linear-gradient(90deg, rgba(0, 22, 43, .96), rgba(24, 72, 112, .78), rgba(24, 72, 112, .18)),
    linear-gradient(180deg, rgba(24, 72, 112, .04), rgba(24, 72, 112, .45)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.hero--signature:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--porcelain));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 84px 0 150px;
}

.hero-premium {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .58fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding: clamp(90px, 10vw, 132px) 0 210px;
}

.hero-premium__copy h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(52px, 7.3vw, 104px);
  line-height: .9;
  font-weight: 950;
  text-wrap: balance;
}

.hero-premium__copy p {
  max-width: 710px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 720;
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-proofline span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.09);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.executive-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.12)),
    rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(24px);
}

.executive-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.executive-card__top span {
  color: var(--pale-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.executive-card__top strong {
  max-width: 140px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-align: right;
}

.risk-meter {
  height: 10px;
  margin: 26px 0;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

.risk-meter span {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-cyan), #d8f7ff);
}

.executive-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.executive-card li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
}

.executive-card li strong {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.16);
  color: var(--accent-cyan);
}

.executive-card li span,
.mini-link {
  color: rgba(255,255,255,.9);
  font-weight: 830;
}

.mini-link {
  display: inline-flex;
  margin-top: 24px;
  color: #fff;
  border-bottom: 2px solid var(--accent-cyan);
}

.hero-command {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  transform: translateX(-50%);
}

.hero-command a {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  box-shadow: var(--shadow-deep);
}

.hero-command span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-command strong {
  display: block;
  font-size: 18px;
  line-height: 1.16;
  font-weight: 950;
}

.premium-editorial {
  background:
    linear-gradient(180deg, var(--porcelain), #fff);
}

.editorial-split,
.signature-room__grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.editorial-split h2,
.signature-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .92;
  font-weight: 950;
  text-wrap: balance;
}

.editorial-split p,
.signature-copy p {
  color: var(--muted);
  font-size: 19px;
  font-weight: 680;
}

.luxury-stack {
  display: grid;
  gap: 14px;
}

.luxury-stack article,
.signature-list article {
  padding: 26px;
  border: 1px solid rgba(24, 72, 112,.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(24, 72, 112,.08);
}

.luxury-stack span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-cyan);
  font-weight: 950;
}

.luxury-stack strong,
.signature-list strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
}

.luxury-stack p,
.signature-list span {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.signature-room {
  background:
    radial-gradient(circle at 85% 0, rgba(0, 184, 240,.18), transparent 32%),
    linear-gradient(135deg, #f7fafc, #fff);
}

.signature-image {
  position: relative;
  overflow: visible;
}

.signature-image:before {
  content: "";
  position: absolute;
  inset: 28px -24px -24px 28px;
  border: 1px solid rgba(0, 184, 240,.28);
  border-radius: 18px;
}

.signature-image img {
  position: relative;
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-deep);
}

.signature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.scenario-strip {
  background:
    linear-gradient(180deg, #fff, #f7fbfe);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.scenario-grid article {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(24, 72, 112,.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), #fff),
    radial-gradient(circle at top left, rgba(0, 184, 240,.18), transparent 38%);
  box-shadow: 0 24px 70px rgba(24, 72, 112, .08);
}

.scenario-grid strong {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.05;
  font-weight: 950;
}

.scenario-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
}

.concept-lab-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 184, 240,.34), transparent 28%),
    linear-gradient(135deg, #184870, #185070 54%, #184870);
}

.concept-lab-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
  font-weight: 950;
}

.concept-lab-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.84);
  font-size: 21px;
  font-weight: 720;
}

.concept-lab {
  background:
    linear-gradient(180deg, #f7fbfe, #fff);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(230px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.concept-card {
  min-height: 660px;
  display: grid;
  grid-template-rows: 290px 1fr;
  border: 1px solid rgba(24, 72, 112,.1);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 34px 90px rgba(24, 72, 112,.11);
}

.concept-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-card div {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.concept-card span {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.concept-card h2 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: 34px;
  line-height: .98;
  font-weight: 950;
}

.concept-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.concept-card strong {
  margin-top: auto;
  color: var(--sky);
  font-size: 14px;
  font-weight: 950;
}

.concept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 48px 120px rgba(24, 72, 112,.18);
}

.concept-showcase {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.concept-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.concept-showcase:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, #fff);
}

.concept-showcase__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .44fr);
  gap: 54px;
  align-items: center;
}

.concept-showcase h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(54px, 7vw, 108px);
  line-height: .9;
  font-weight: 950;
}

.concept-showcase p {
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 720;
}

.concept-panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.13);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(22px);
}

.concept-panel span {
  color: var(--pale-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.concept-panel strong {
  display: block;
  margin: 12px 0 18px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.concept-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-panel li {
  padding: 12px 0 12px 18px;
  border-left: 3px solid var(--accent-cyan);
  color: rgba(255,255,255,.9);
  font-weight: 850;
}

.concept-experience {
  background: #fff;
}

.concept-experience__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.concept-experience h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 66px);
  line-height: .95;
  font-weight: 950;
}

.concept-experience p {
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
}

.experience-rail {
  display: grid;
  gap: 14px;
}

.experience-rail article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(24, 72, 112,.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fff, #f7fbfe);
  box-shadow: 0 24px 70px rgba(24, 72, 112,.08);
}

.experience-rail span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--accent-cyan);
  font-weight: 950;
}

.experience-rail strong {
  color: var(--navy);
  font-size: 25px;
  line-height: 1.06;
  font-weight: 950;
}

.hero-premium > *,
.hero-command > *,
.editorial-split > *,
.signature-room__grid > *,
.signature-list > *,
.scenario-grid > *,
.concept-showcase__inner > *,
.concept-experience__grid > *,
.experience-rail > * {
  min-width: 0;
}

.section__head h2,
.split h2,
.action-band h2,
.editorial h2 {
  font-size: clamp(31px, 4.2vw, 52px);
}

.editorial-split h2,
.signature-copy h2 {
  font-size: clamp(38px, 5.3vw, 66px);
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1,
.subhero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(46px, 7vw, 88px);
  line-height: .96;
  font-weight: 950;
  text-wrap: balance;
}

.hero p,
.subhero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__dock {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  transform: translateX(-50%);
}

.hero__dock article {
  min-height: 115px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.hero__dock strong {
  display: block;
  font-size: 28px;
  font-weight: 950;
}

.hero__dock span {
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 750;
}

.section {
  padding: clamp(62px, 8vw, 108px) 0;
}

.section--soft {
  background: var(--soft);
}

.section--ink {
  background:
    radial-gradient(circle at top left, rgba(8, 125, 163, .26), transparent 34%),
    linear-gradient(135deg, var(--navy), #184870);
  color: #fff;
}

.section__head {
  max-width: 870px;
  margin-bottom: 34px;
}

.section__head h2,
.split h2,
.action-band h2,
.editorial h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  font-weight: 950;
  text-wrap: balance;
}

.section__head p,
.split p,
.editorial p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.section__head--light h2,
.section__head--light p {
  color: #fff;
}

.pg-state-preview .section__head {
  max-width: none;
  text-align: center;
}

.pg-state-preview .section__head h2 {
  width: 100%;
  font-size: clamp(34px, 3.4vw, 58px);
  white-space: nowrap;
}

.pg-state-preview .section__head p:not(.kicker) {
  max-width: 920px;
  margin-inline: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.info-card,
.link-grid a,
.step-card,
.panel,
.quote-preview,
.area-grid article,
.carrier-table article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.product-card span,
.carrier-table span {
  display: block;
  margin: 18px 20px 8px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3,
.info-card h3,
.step-card h3 {
  margin: 0 20px 10px;
  color: #00b8f0;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 950;
}

.product-card p,
.info-card p,
.step-card p {
  margin: 0 20px 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.product-card:hover,
.link-grid a:hover,
.quote-preview:hover {
  transform: translateY(-3px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 34px;
  align-items: center;
}

.panel {
  padding: 32px;
}

.panel--blue {
  background: var(--navy);
}

.panel--blue h2,
.panel--blue li {
  color: #fff;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #185070;
  font-weight: 850;
}

.check-list li:before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 5px rgba(0, 184, 240, .14);
}

.step-grid,
.link-grid,
.carrier-strip,
.area-grid,
.carrier-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  min-height: 235px;
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.step-card span {
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 950;
}

.step-card h3,
.step-card p {
  margin-left: 0;
  margin-right: 0;
}

.step-card h3 {
  color: #00b8f0;
}

.step-card p {
  color: #fff;
}

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

.carrier-strip article {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(24, 72, 112, .12);
  border-radius: 8px;
  background: #fff;
}

.carrier-strip strong,
.carrier-strip span {
  display: block;
}

.carrier-strip strong {
  color: var(--navy);
  font-weight: 950;
}

.carrier-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.carrier-strip img,
.carrier-table img {
  display: block;
  width: 100%;
  max-width: 148px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.subhero {
  padding: clamp(72px, 9vw, 118px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(24, 72, 112, .96), rgba(24, 80, 112, .90)),
    var(--navy);
}

.subhero--dark {
  background:
    radial-gradient(circle at 12% 0, rgba(0, 184, 240, .26), transparent 34%),
    linear-gradient(135deg, #184870, #184870);
}

.subhero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
  gap: 34px;
  align-items: center;
}

.subhero img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}

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

.link-grid a,
.quote-preview {
  min-height: 128px;
  padding: 22px;
}

.link-grid strong,
.quote-preview strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.15;
  font-weight: 950;
}

.link-grid span,
.quote-preview span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

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

.carrier-table article {
  padding: 22px;
}

.carrier-table strong,
.carrier-table em {
  display: block;
}

.carrier-table strong {
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
}

.carrier-table span {
  margin: 10px 0;
}

.carrier-table em {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

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

.area-grid article {
  padding: 24px;
}

.area-grid h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 28px;
}

.area-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-grid span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.editorial {
  max-width: 920px;
}

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

.timeline article {
  padding: 20px;
  border-left: 5px solid var(--accent-cyan);
  background: var(--soft);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  color: var(--navy);
  font-weight: 950;
}

.timeline span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.quote-shell {
  padding: clamp(54px, 7vw, 94px) 0;
  background:
    radial-gradient(circle at top right, rgba(8, 125, 163, .16), transparent 30%),
    var(--soft);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}

.quote-side,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-side {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.quote-side h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.quote-side p {
  color: var(--muted);
  font-weight: 700;
}

.quote-progress {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.quote-progress span {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 950;
}

.quote-progress .is-active {
  background: var(--blue);
  color: #fff;
}

.quote-visual {
  display: grid;
  place-items: end start;
  min-height: 220px;
  margin-top: 22px;
  padding: 22px;
  border-radius: 14px;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  background:
    linear-gradient(135deg, rgba(24, 72, 112, .82), rgba(0, 97, 151, .55)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.quote-form {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #cbd9e6;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.product-fields {
  display: none;
  padding: 22px;
  border-radius: 12px;
  background: var(--soft);
}

.product-fields.is-active {
  display: grid;
  gap: 16px;
}

.product-fields h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
}

.product-fields p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-success {
  padding: 16px;
  border: 1px solid rgba(8, 125, 163, .25);
  border-radius: 8px;
  background: #eaf8fc;
  color: var(--navy);
  font-weight: 900;
}

.action-band {
  padding: 30px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.action-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.action-band h2 {
  color: #fff;
}

.action-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-weight: 700;
}

.action-band .button {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(0, 184, 240, .24);
}

.footer {
  padding: 30px 0 20px;
  color: #d8f7ff;
  background: #184870;
}

.footer__shell {
  display: grid;
  gap: 20px;
}

.footer__brand-band {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 20px;
  border: 1px solid rgba(216, 231, 239, .95);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 47, 87, .18);
}

.footer .brand {
  min-width: 0;
  gap: 12px;
  color: #184870;
}

.footer .brand__mark {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer .brand strong {
  color: #184870;
  font-size: 18px;
}

.footer .brand small {
  margin-top: 3px;
  color: #184870;
  font-size: 12px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  align-items: start;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer__grid a,
.footer__grid span,
.footer__grid p {
  display: block;
  margin: 0 0 6px;
  color: #d8f7ff;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.footer__grid a:hover,
.footer__grid a:focus-visible {
  color: #fff;
}

.footer__compact a,
.footer__states a {
  margin-bottom: 4px;
}

.footer__copy {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #d8f7ff;
  font-size: 11px;
  font-weight: 750;
}

@media (max-width: 1180px) {
  .footer__brand-band {
    gap: 16px;
    text-align: left;
  }

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

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

@media (max-width: 560px) {
  .footer {
    padding: 24px 0 18px;
  }

  .footer__brand-band,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand-band {
    padding: 16px;
  }

  .footer .brand {
    align-items: flex-start;
  }
}

.proof-grid,
.trust-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article,
.trust-wall article,
.guide-main,
.guide-side,
.area-grid a {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.proof-grid article,
.trust-wall article {
  min-height: 220px;
  padding: 24px;
}

.proof-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(0, 184, 240, .12);
  color: var(--accent-cyan);
  font-weight: 950;
}

.proof-grid strong,
.trust-wall strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 950;
}

.proof-grid p,
.trust-wall span {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 720;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(24, 72, 112, .07);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 720;
}

.state-layout,
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-cloud span {
  padding: 10px 13px;
  border: 1px solid rgba(24, 72, 112, .12);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.guide-main,
.guide-side {
  padding: 28px;
}

.guide-main h2 {
  margin-top: 0;
}

.guide-side {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 12px;
}

.guide-side strong {
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
}

.guide-side a {
  padding: 13px 14px;
  border-radius: 8px;
  background: #f0f9fe;
  color: var(--blue);
  font-weight: 950;
}

.area-grid a {
  display: grid;
  gap: 10px;
  min-height: 142px;
  padding: 22px;
}

.area-grid a:hover {
  transform: translateY(-2px);
}

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

.pg-local-hero {
  padding: clamp(68px, 8vw, 112px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 184, 240, .26), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.pg-local-hero--bridge {
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 184, 240, .22), transparent 30%),
    linear-gradient(135deg, #184870, #185070);
}

.pg-local-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.pg-local-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  font-weight: 950;
}

.pg-local-hero p {
  max-width: 820px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  font-weight: 720;
}

.pg-local-hero img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}

.local-flow-grid,
.registry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.local-flow-grid article,
.registry-grid article,
.bridge-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.local-flow-grid strong,
.bridge-card strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 950;
}

.local-flow-grid p,
.bridge-card p,
.bridge-card span {
  display: block;
  color: var(--muted);
  font-weight: 720;
}

.bridge-card span {
  margin-top: 10px;
  color: var(--accent-cyan);
  font-size: 24px;
  font-weight: 950;
}

.bridge-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 950;
}

.registry-grid article strong {
  display: block;
  color: var(--accent-cyan);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.registry-grid article span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .product-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carrier-table,
  .area-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__inner > span:first-child {
    display: none;
  }

  .header__inner {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    font-weight: 950;
  }

  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: 1fr 1fr;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .nav-group {
    display: grid;
  }

  .nav-group__trigger,
  .nav a {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 9px;
    border-radius: 8px;
    background: var(--soft);
    text-align: center;
    font-size: 12px;
  }

  .nav-group__trigger:after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    display: grid;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: #f8fcff;
  }

  .nav-dropdown a {
    min-height: auto;
    place-items: start;
    text-align: left;
    background: #fff;
  }

  .nav__button {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: 640px;
  }

  .hero__content {
    padding: 58px 0 190px;
  }

  .hero__dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 18px;
  }

  .subhero__grid,
  .split,
  .quote-layout,
  .action-band__inner {
    grid-template-columns: 1fr;
  }

  .subhero img {
    min-height: 280px;
  }

  .quote-side {
    position: static;
  }
}

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

  .topbar a {
    margin-left: 8px;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .hero h1,
  .subhero h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero p,
  .subhero p {
    font-size: 17px;
  }

  .product-grid,
  .carrier-strip,
  .carrier-table,
  .area-grid,
  .link-grid,
  .step-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero__dock {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: -120px;
    padding-bottom: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-bottom: 155px;
  }
}

/* Premium polish layer */
.hero--signature .hero-premium__copy h1 {
  max-width: 1080px;
  font-size: clamp(56px, 7.6vw, 112px);
  letter-spacing: 0;
}

.hero--signature .hero-premium__copy p {
  max-width: 760px;
  font-size: clamp(20px, 2vw, 25px);
}

.product-card,
.info-card,
.link-grid a,
.step-card,
.panel,
.quote-preview,
.area-grid article,
.carrier-table article,
.carrier-strip article,
.luxury-stack article,
.signature-list article,
.hero-command a,
.button {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.product-card,
.info-card,
.panel,
.quote-preview,
.area-grid article,
.carrier-table article {
  border-radius: 12px;
}

.product-card {
  background:
    linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 26px 82px rgba(24, 72, 112, .10);
}

.product-card:hover,
.hero-command a:hover,
.luxury-stack article:hover,
.signature-list article:hover,
.carrier-table article:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 100px rgba(24, 72, 112, .16);
}

.product-card img {
  aspect-ratio: 1.38;
}

.section__head {
  margin-bottom: 42px;
}

.carrier-strip article {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-form,
.quote-side {
  border-radius: 18px;
  box-shadow: 0 34px 96px rgba(24, 72, 112, .12);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(8, 125, 163, .18);
  border-color: var(--sky);
}

@media (max-width: 1160px) {
  .hero-premium {
    grid-template-columns: 1fr;
    padding-bottom: 235px;
  }

  .executive-card {
    max-width: 620px;
  }

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

  .editorial-split,
  .signature-room__grid {
    grid-template-columns: 1fr;
  }

  .signature-list {
    grid-template-columns: 1fr;
  }

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

  .concept-showcase__inner,
  .concept-experience__grid {
    grid-template-columns: 1fr;
  }

  .concept-showcase {
    min-height: auto;
    padding: 86px 0 120px;
  }

  .signature-image img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .hero--signature {
    min-height: auto;
  }

  .hero-premium {
    padding: 70px 0 28px;
  }

  .hero--signature .hero-premium__copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-command {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    transform: none;
    margin-top: -8px;
    padding-bottom: 34px;
  }

  .executive-card {
    padding: 20px;
  }

  .editorial-split h2,
  .signature-copy h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .signature-image:before {
    display: none !important;
  }

  .signature-image {
    overflow: hidden;
  }

  .signature-image img {
    min-height: 320px;
    border-radius: 12px;
  }

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

  .scenario-grid article {
    min-height: 205px;
  }

  .concept-lab-hero {
    min-height: 460px;
  }

  .concept-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .concept-card {
    min-height: auto;
    grid-template-rows: 220px 1fr;
  }

  .concept-showcase h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .concept-panel {
    padding: 22px;
  }

  .experience-rail article {
    grid-template-columns: 1fr;
  }

  .hero-proofline span {
    width: 100%;
  }
}

/* Five truly different concept directions */
.bespoke {
  color: #fff;
  overflow: hidden;
}

.option-mark {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.private-grid,
.command-grid,
.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .56fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.bespoke-private {
  min-height: 820px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,20,38,.95), rgba(24, 72, 112,.68)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=88") center/cover;
}

.private-copy h1,
.command-grid h1,
.local-copy h1,
.studio-copy h1,
.carrier-market__head h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(50px, 7vw, 108px);
  line-height: .9;
  font-weight: 950;
}

.private-copy p,
.command-grid p,
.local-copy p,
.studio-copy p,
.carrier-market__head p {
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 730;
}

.private-dossier {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-deep);
}

.private-dossier strong {
  color: #fff;
  font-size: 42px;
  line-height: .95;
}

.private-dossier span,
.private-dossier small {
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.dossier-lines {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.dossier-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}

.dossier-lines i:nth-child(1) { width: 88%; }
.dossier-lines i:nth-child(2) { width: 65%; }
.dossier-lines i:nth-child(3) { width: 74%; }
.dossier-lines i:nth-child(4) { width: 52%; }

.private-after,
.local-proof,
.studio-stories,
.market-disclaimer {
  padding: clamp(56px, 8vw, 104px) 0;
  background: #fff;
}

.private-after__grid,
.local-proof__grid,
.studio-stories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.private-after article,
.local-proof article,
.studio-stories article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(24, 72, 112,.1);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f7fbfe);
  box-shadow: 0 26px 80px rgba(24, 72, 112,.09);
}

.private-after span,
.studio-stories span {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.private-after strong,
.local-proof strong,
.studio-stories strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.private-after p,
.local-proof p,
.studio-stories p,
.market-disclaimer p {
  color: var(--muted);
  font-weight: 700;
}

.command-center {
  min-height: 820px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 75% 18%, rgba(8,125,163,.34), transparent 28%),
    linear-gradient(135deg, #184870, #184870 62%, #185070);
}

.command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.command-actions a {
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--accent-cyan);
  color: #fff;
  font-weight: 950;
}

.command-actions a + a {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
}

.command-board {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-deep);
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-weight: 950;
}

.board-top span {
  color: var(--accent-cyan);
}

.board-meter {
  height: 16px;
  margin: 28px 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
}

.board-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #00b8f0, var(--accent-cyan));
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.board-grid article,
.command-flow article {
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
}

.board-grid strong,
.board-grid span,
.command-flow strong,
.command-flow span {
  display: block;
}

.board-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.command-flow {
  padding: 44px 0;
  background: #184870;
}

.command-flow__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.command-flow article {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
}

.command-flow span {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 950;
}

.local-authority {
  min-height: 780px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, #f7fbfe 0%, #f7fbfe 46%, #184870 46%, #185070 100%);
  color: var(--navy);
}

.local-grid {
  grid-template-columns: minmax(340px, .72fr) minmax(0, 1fr);
}

.local-map-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-deep);
}

.local-map-card span {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  font-weight: 950;
}

.local-map-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.local-copy {
  color: #fff;
}

.local-proof {
  background: var(--soft);
}

.protection-studio {
  min-height: 850px;
  position: relative;
  display: grid;
  align-items: end;
  background: #184870;
}

.studio-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 72, 112,.08), rgba(0,20,38,.92)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=2200&q=88") center/cover;
}

.studio-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
}

.studio-stories {
  background:
    linear-gradient(90deg, #fff 0 52%, #f1f6fa 52% 100%);
}

.studio-stories article:nth-child(2) {
  transform: translateY(-28px);
}

.carrier-market {
  padding: clamp(74px, 9vw, 128px) 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 184, 240,.22), transparent 26%),
    linear-gradient(180deg, #fff, #eef6fb);
}

.carrier-market__head {
  margin-bottom: 34px;
}

.carrier-market__head h1,
.carrier-market__head p {
  color: var(--navy);
}

.carrier-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.carrier-logo-wall article {
  min-height: 155px;
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(24, 72, 112,.09);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 72px rgba(24, 72, 112,.08);
}

.carrier-logo-wall img {
  max-width: 150px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.carrier-logo-wall strong,
.carrier-logo-wall span {
  display: block;
}

.carrier-logo-wall strong {
  color: var(--navy);
  font-weight: 950;
}

.carrier-logo-wall span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.market-disclaimer {
  background: var(--navy);
  color: #fff;
}

.market-disclaimer strong {
  display: block;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .96;
}

.market-disclaimer p {
  max-width: 860px;
  color: rgba(255,255,255,.82);
  font-size: 20px;
}

@media (max-width: 980px) {
  .private-grid,
  .command-grid,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .local-authority {
    background: linear-gradient(180deg, #f7fbfe, #185070);
  }

  .private-after__grid,
  .local-proof__grid,
  .studio-stories__grid,
  .command-flow__grid,
  .carrier-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .bespoke-private,
  .command-center,
  .local-authority,
  .protection-studio {
    min-height: auto;
    padding: 74px 0;
  }

  .private-copy h1,
  .command-grid h1,
  .local-copy h1,
  .studio-copy h1,
  .carrier-market__head h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .private-after__grid,
  .local-proof__grid,
  .studio-stories__grid,
  .command-flow__grid,
  .carrier-logo-wall,
  .board-grid,
  .local-map-card {
    grid-template-columns: 1fr;
  }

  .private-dossier {
    min-height: 360px;
  }

  .studio-copy {
    padding-bottom: 0;
  }

  .studio-stories article:nth-child(2) {
    transform: none;
  }
}

/* Progressive-inspired HIA quote-first page */
.pg-hero {
  min-height: 620px;
  padding: clamp(48px, 7vw, 86px) 0 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 184, 240,.22), transparent 28%),
    linear-gradient(135deg, rgba(24, 72, 112, .78), rgba(24, 80, 112, .66) 52%, rgba(24, 72, 112, .46)),
    url("../img/hero-diverse-insurance-team.png") center / cover no-repeat;
}

.pg-nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.pg-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.pg-brand span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-weight: 950;
}

.pg-brand strong,
.pg-nav a,
.pg-login {
  color: #fff;
  font-weight: 950;
}

.pg-nav nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.pg-login {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
}

.pg-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.pg-copy__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% + 576px), calc(100vw - 24px), 1616px);
  margin: 0 0 16px 50%;
  transform: translateX(-50%);
}

.pg-copy__eyebrow p {
  margin: 0;
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
  font-weight: 900;
}

.pg-copy h1 {
  max-width: 1040px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .94;
  font-weight: 950;
  text-align: center;
}

.pg-copy span {
  display: block;
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.88);
  font-size: 22px;
  font-weight: 720;
  text-align: center;
}

.pg-quote-card {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: 1.1fr minmax(190px, .55fr) minmax(250px, .7fr) auto;
  gap: 16px;
  align-items: end;
  margin: 10px auto 0;
  padding: 22px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 42px 110px rgba(24, 72, 112, .26);
}

.pg-quote-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.pg-quote-intro p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.pg-quote-card label {
  margin: 0;
}

.pg-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--accent-cyan);
  color: #fff !important;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  box-shadow: 0 14px 28px rgba(0, 184, 240, .24);
  white-space: nowrap;
}

.pg-primary:hover,
.pg-primary:focus-visible {
  background: #00a6d8;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 184, 240, .30);
}

.pg-quote-card > a {
  grid-column: 1 / -1;
  justify-self: end;
  color: var(--blue);
  font-weight: 950;
}

.pg-product-picker,
.pg-trust,
.pg-learn {
  padding: clamp(58px, 8vw, 104px) 0;
  background: #fff;
}

.pg-product-picker h2,
.pg-trust h2,
.pg-learn h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 950;
  text-align: center;
}

.pg-product-picker__intro {
  max-width: 860px;
  margin: -8px auto 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 760;
  line-height: 1.45;
  text-align: center;
}

.pg-bundles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.pg-bundles a,
.pg-products a,
.pg-ways a,
.pg-learn-list a {
  border: 1px solid rgba(24, 72, 112,.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 72, 112, .08);
}

.pg-bundles a {
  padding: 22px;
  border-top: 5px solid var(--accent-cyan);
}

.pg-bundles strong,
.pg-bundles span,
.pg-ways strong,
.pg-ways span,
.pg-learn-list strong,
.pg-learn-list span {
  display: block;
}

.pg-bundles strong {
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
}

.pg-bundles span,
.pg-ways span,
.pg-learn-list span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.pg-products {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.pg-products a {
  min-height: 108px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px;
  color: var(--navy);
  text-align: center;
  font-size: 13px;
  font-weight: 950;
}

.pg-products span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 184, 240, .1);
  color: var(--accent-cyan);
  font-size: 18px;
}

.pg-products svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pg-ways {
  padding: 34px 0;
  background: var(--soft);
}

.pg-ways__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pg-ways a {
  padding: 22px;
}

.pg-ways strong {
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
}

.pg-trust {
  text-align: center;
  background:
    linear-gradient(180deg, #fff, #f7fbfe);
}

.pg-trust p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
}

.pg-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.pg-stats article {
  padding: 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(24, 72, 112, .08);
}

.pg-stats strong {
  display: block;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.pg-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

.pg-learn {
  background: #fff;
}

.pg-learn__grid {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr);
  gap: 44px;
  align-items: start;
}

.pg-learn h2 {
  text-align: left;
}

.pg-learn p {
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
}

.pg-learn-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pg-learn-list a {
  min-height: 130px;
  padding: 22px;
}

.pg-learn-list strong {
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
}

@media (max-width: 980px) {
  .proof-grid,
  .trust-wall,
  .area-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .state-layout,
  .guide-layout,
  .pg-local-hero__grid {
    grid-template-columns: 1fr;
  }

  .guide-side {
    position: static;
  }

  .pg-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pg-nav nav {
    flex-wrap: wrap;
  }

  .pg-hero__grid,
  .pg-learn__grid {
    grid-template-columns: 1fr;
  }

  .pg-quote-card {
    grid-template-columns: 1fr 1fr;
  }

  .pg-quote-intro,
  .pg-quote-card > a {
    grid-column: 1 / -1;
  }

  .pg-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (max-width: 650px) {
  .proof-grid,
  .trust-wall,
  .area-grid--compact,
  .local-flow-grid,
  .registry-grid {
    grid-template-columns: 1fr;
  }

  .pg-hero {
    min-height: auto;
  }

  .pg-nav nav {
    gap: 12px;
  }

  .pg-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .pg-state-preview .section__head h2 {
    white-space: normal;
  }

  .pg-copy__eyebrow {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .pg-copy__eyebrow p {
    width: 100%;
    text-align: center;
  }

  .pg-quote-card {
    grid-template-columns: 1fr;
  }

  .pg-primary,
  .pg-quote-card > a {
    justify-self: stretch;
  }

  .pg-bundles,
  .pg-ways__grid,
  .pg-stats,
  .pg-learn-list {
    grid-template-columns: 1fr;
  }

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

}

.nav-link.is-active {
  color: var(--accent-cyan);
}

.hia-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: clamp(74px, 9vw, 124px) 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(24, 72, 112, .86), rgba(24, 80, 112, .68)),
    url("../img/hero-diverse-insurance-team.png") center / cover no-repeat;
}

.hia-page-hero--contact {
  background:
    linear-gradient(110deg, rgba(24, 72, 112, .84), rgba(0, 184, 240, .34)),
    url("../img/hero-diverse-insurance-team.png") center / cover no-repeat;
}

.hia-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.hia-page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .94;
  font-weight: 950;
  text-wrap: balance;
}

.hia-page-hero p:not(.kicker) {
  max-width: 850px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 720;
}

.hia-page-hero .kicker {
  color: var(--pale-cyan);
}

.hia-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hia-hero-panel,
.hia-side-note,
.hia-form,
.hia-card-grid article,
.hia-contact-methods a {
  border: 1px solid rgba(24, 72, 112, .13);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 72, 112, .10);
}

.hia-hero-panel {
  padding: 26px;
  color: var(--navy);
}

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

.hia-hero-panel strong {
  font-size: 24px;
  font-weight: 950;
}

.hia-hero-panel span {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--accent-cyan);
  color: var(--muted);
  font-weight: 760;
}

.hia-content-grid,
.hia-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(520px, 1.24fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: start;
}

.hia-content-grid h2,
.hia-form-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  font-weight: 950;
  text-wrap: balance;
}

.hia-content-grid p,
.hia-form-layout p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 710;
}

.hia-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hia-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.hia-card-grid article {
  padding: 24px;
}

.hia-card-grid strong,
.hia-card-grid span {
  display: block;
}

.hia-card-grid strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.12;
  font-weight: 950;
}

.hia-card-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 720;
}

.hia-side-note {
  padding: 28px;
}

.hia-side-note strong {
  display: block;
  color: var(--accent-cyan);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.hia-form {
  padding: clamp(20px, 3vw, 34px);
}

.hia-form__notice,
.form-result {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 184, 240, .10);
  color: var(--navy);
  font-weight: 850;
}

.hia-form fieldset {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.hia-form legend {
  width: 100%;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hia-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.hia-form input,
.hia-form select,
.hia-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(24, 72, 112, .18);
  border-radius: 10px;
  background: #fbfdff;
  color: var(--navy);
  font: inherit;
  font-weight: 720;
}

.hia-form textarea {
  min-height: 120px;
  resize: vertical;
}

.full-field {
  margin-top: 14px;
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  margin-top: 12px;
  color: var(--muted) !important;
  line-height: 1.45;
}

.check-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-cyan);
}

.hia-contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hia-contact-methods a {
  padding: 18px;
}

.hia-contact-methods strong,
.hia-contact-methods span {
  display: block;
}

.hia-contact-methods strong {
  color: var(--accent-cyan);
  font-weight: 950;
}

.hia-contact-methods span {
  margin-top: 4px;
  color: var(--navy);
  font-weight: 900;
}

.form-result:empty {
  display: none;
}

@media (max-width: 1050px) {
  .hia-page-hero__grid,
  .hia-content-grid,
  .hia-form-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 650px) {
  .hia-page-hero {
    min-height: auto;
    padding: 56px 0;
  }

  .hia-page-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .field-grid,
  .hia-card-grid,
  .hia-card-grid--four {
    grid-template-columns: 1fr;
  }

  .hia-form .pg-primary {
    width: 100%;
  }
}
