*,:before,:after{box-sizing:border-box;border:0 solid}html{line-height:1.5;-webkit-text-size-adjust:100%;tab-size:4}h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{margin:0}ol,ul,menu{list-style:none;margin:0;padding:0}button,input,select,textarea{font:inherit;color:inherit;border-radius:0}button{background:transparent}button,a{touch-action:manipulation}img{height:auto}button:not(:disabled){cursor:pointer}fieldset{margin:0;padding:0;min-width:0}table{border-collapse:collapse}


/* Same approved fonts, served from stable public paths on every host. */
@font-face {
  font-family: "Geist";
  src: url("fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist", Arial, sans-serif;
  --font-geist-mono: "Geist Mono", monospace;
  --navy: #061e43;
  --navy-2: #0a2d5d;
  --blue: #075fba;
  --blue-bright: #0d7ad9;
  --red: #d20d1a;
  --ink: #0b1f38;
  --muted: #5c6b7a;
  --line: #dbe3eb;
  --soft: #f3f7fb;
  --white: #ffffff;
  --background: #ffffff;
  --foreground: #0b1f38;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: var(--navy);
  color: #dce9f8;
  font-size: 12px;
  letter-spacing: .02em;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(7, 35, 71, .08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  min-width: max-content;
}

.brand-lockup {
  display: grid;
  min-width: 244px;
  gap: 7px;
}

.brand-name {
  display: flex;
  align-items: baseline;
  line-height: .8;
  letter-spacing: -.04em;
}

.brand-name strong {
  font-size: 29px;
  font-weight: 900;
}

.brand-name strong:last-child {
  color: var(--blue);
}

.brand-descriptor {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: #687787;
}

.brand-descriptor b {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .27em;
}

.brand-descriptor i {
  display: block;
  height: 2px;
  background: var(--red);
}

.brand-light .brand-name strong:first-child {
  color: var(--white);
}

.brand-light .brand-name strong:last-child {
  color: #70b9f6;
}

.brand-light .brand-descriptor {
  color: #aebdd1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #26384d;
  font-size: 14px;
  font-weight: 700;
}

.nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
}

.nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}

.nav > a:not(.button):hover::after,
.nav > a:not(.button):focus-visible::after {
  right: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 9px 24px rgba(7, 95, 186, .2);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  background: #084f98;
  box-shadow: 0 12px 28px rgba(7, 95, 186, .28);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 0 18px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(35, 132, 222, .2), transparent 34%),
    linear-gradient(114deg, #061e43 0%, #082a56 52%, #0a3567 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -210px;
  top: -310px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .018);
}

.hero-grid {
  min-height: 660px;
  padding-top: 84px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, .87fr);
  align-items: center;
  gap: 76px;
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero-kicker {
  color: #9bcdf6;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.45vw, 80px);
  line-height: .94;
  letter-spacing: -.045em;
  font-weight: 700;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: #9fd1fb;
}

.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: #d2dfed;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.hero .button {
  background: var(--red);
  box-shadow: 0 12px 28px rgba(210, 13, 26, .24);
}

.hero .button:hover,
.hero .button:focus-visible {
  background: #b90914;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: 5px;
}

.text-link:hover,
.text-link:focus-visible {
  border-bottom-color: var(--white);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 620px;
  margin-top: 47px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.trust-row div {
  display: grid;
  gap: 6px;
}

.trust-row strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.trust-row span {
  color: #aebed0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}

.hero-visual {
  position: relative;
}

.brand-art-card {
  position: relative;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .31);
  transform: rotate(1.1deg);
}

.brand-art-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(6, 30, 67, .1);
  border-radius: 8px;
  pointer-events: none;
}

.brand-art-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.hero-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 14%, transparent 14% 100%);
}

.confidence-strip {
  position: relative;
  background: var(--navy);
  border-bottom: 1px solid #dce5ee;
  box-shadow: 0 18px 45px rgba(18, 42, 69, .12);
}

.confidence-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.confidence-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 24px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.confidence-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.confidence-check {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(210, 13, 26, .24);
}

.confidence-item > div {
  display: grid;
  gap: 5px;
}

.confidence-item strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.confidence-item > div > span {
  color: #91a8c0;
  font-size: 10px;
  line-height: 1.5;
}

.section {
  padding-top: 116px;
  padding-bottom: 116px;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 3.7vw, 54px);
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 700;
}

.section-heading > p,
.split-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.split-heading,
.coverage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .7fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p,
.coverage-heading > p {
  margin: 0 0 4px;
}

.coverage-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
}

.coverage-group {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e2ec;
  border-radius: 16px;
  box-shadow: 0 24px 65px rgba(16, 43, 72, .1);
}

.coverage-group::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--red);
}

.coverage-business::before {
  background: var(--blue);
}

.coverage-group-head {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 18px;
  padding: 35px 36px 23px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(24, 122, 214, .3), transparent 38%),
    var(--navy);
}

.coverage-business .coverage-group-head {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .13), transparent 38%),
    linear-gradient(145deg, #075fba, #084a91);
}

.coverage-group-number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.coverage-group-head p {
  margin: 0 0 7px;
  color: #9fcff8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.coverage-group-head h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.04;
  letter-spacing: -.03em;
}

.coverage-group-intro {
  min-height: 74px;
  margin: 0;
  padding: 22px 36px;
  color: #56687b;
  background: #f6f9fc;
  border-bottom: 1px solid #dfe7ef;
  font-size: 13px;
  line-height: 1.65;
}

.panel-kicker {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.coverage-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1 1 auto;
  padding: 7px 36px 9px;
}

.coverage-product {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: 13px;
  min-height: 88px;
  padding: 15px 0;
  border-bottom: 1px solid #e2e9f0;
  transition: color .2s ease, padding .2s ease;
}

.coverage-product:last-child {
  border-bottom: 0;
}

.coverage-product-index {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf6ff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.coverage-personal .coverage-product-index {
  color: var(--red);
  background: #fff0f1;
}

.coverage-product h4 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 14px;
}

.coverage-product p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.coverage-product-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #7b8da0;
  border: 1px solid #d9e3ec;
  border-radius: 50%;
  font-size: 13px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.coverage-product:hover,
.coverage-product:focus-visible {
  padding-left: 5px;
}

.coverage-product:hover .coverage-product-arrow,
.coverage-product:focus-visible .coverage-product-arrow {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.coverage-personal .coverage-product:hover .coverage-product-arrow,
.coverage-personal .coverage-product:focus-visible .coverage-product-arrow {
  background: var(--red);
  border-color: var(--red);
}

.coverage-group-action {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 18px 36px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: background .2s ease;
}

.coverage-business .coverage-group-action {
  background: var(--blue);
}

.coverage-group-action:hover,
.coverage-group-action:focus-visible {
  background: var(--navy);
}

.coverage-closer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 28px;
  padding: 25px 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
}

.coverage-closer > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.coverage-closer > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.coverage-closer p {
  margin: 0;
  color: #b7c8da;
  font-size: 13px;
  line-height: 1.6;
}

.coverage-closer p strong {
  color: #fff;
}

.coverage-closer a {
  flex: 0 0 auto;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.why-section {
  position: relative;
  overflow: hidden;
  padding-top: 126px;
  padding-bottom: 126px;
  background:
    radial-gradient(circle at 14% 15%, rgba(26, 132, 225, .3), transparent 31%),
    radial-gradient(circle at 92% 82%, rgba(210, 13, 26, .18), transparent 28%),
    linear-gradient(125deg, #03142d 0%, #06254c 52%, #073363 100%);
  color: var(--white);
}

.why-section::before {
  content: "WHY";
  position: absolute;
  left: 50%;
  top: 45px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: min(26vw, 390px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.06em;
  pointer-events: none;
}

.why-section::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -330px;
  bottom: -350px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 92px rgba(255, 255, 255, .018);
}

.section-label-light {
  color: #8ec9fc;
}

.why-section h2,
.quote-section h2 {
  color: var(--white);
}

.why-section .shell {
  position: relative;
  z-index: 2;
}

.why-heading {
  max-width: 920px;
  margin: 0 auto 58px;
  text-align: center;
}

.why-heading .section-label {
  justify-content: center;
}

.why-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(47px, 5vw, 72px);
  line-height: .99;
  letter-spacing: -.045em;
}

.why-lead {
  max-width: 770px;
  margin: 28px auto 0;
  color: #bfd0e2;
  font-size: 17px;
  line-height: 1.78;
}

.why-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .34);
}

.why-feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--red) 0 35%, var(--blue) 35% 100%);
}

.why-feature-lead {
  display: grid;
  align-content: center;
  padding: 52px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 0 100%, rgba(31, 132, 222, .28), transparent 42%),
    var(--navy);
}

.why-feature-kicker {
  margin-bottom: 16px;
  color: #8dc9fc;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.why-feature-lead h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.why-feature-lead > p {
  margin: 22px 0 0;
  color: #afc2d7;
  font-size: 13px;
  line-height: 1.75;
}

.why-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 35px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.why-feature-stats > div {
  display: grid;
  gap: 5px;
}

.why-feature-stats strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.why-feature-stats span {
  color: #7894b1;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.why-journey {
  display: grid;
  color: var(--ink);
  background: #fff;
}

.why-journey article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 180px;
  padding: 32px 42px;
  border-bottom: 1px solid #dfe7ef;
  transition: background .2s ease, transform .2s ease;
}

.why-journey article:last-child {
  border-bottom: 0;
}

.why-journey article:hover {
  background: #f3f8fd;
}

.why-step {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 9px 22px rgba(210, 13, 26, .2);
}

.why-journey article:nth-child(2) .why-step {
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(7, 95, 186, .2);
}

.why-journey article:nth-child(3) .why-step {
  background: var(--navy);
  box-shadow: 0 9px 22px rgba(6, 30, 67, .2);
}

.why-journey p {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.why-journey h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.why-journey article div > span {
  color: #617184;
  font-size: 11px;
  line-height: 1.65;
}

.why-button {
  background: var(--red);
  box-shadow: 0 13px 32px rgba(210, 13, 26, .26);
}

.why-button:hover,
.why-button:focus-visible {
  background: #b90914;
}

.why-close {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 25px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.why-close > div {
  display: grid;
  gap: 7px;
}

.why-close strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.why-close span {
  color: #9eb4ca;
  font-size: 11px;
  line-height: 1.55;
}

.why-close .button span {
  color: inherit;
  font-size: 15px;
}

.why-close .button {
  flex: 0 0 auto;
}

.why-close p {
  margin: 0;
}

.about-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  min-height: 650px;
  background: #fff;
  border: 1px solid #d9e3ec;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(18, 44, 72, .11);
}

.about-portrait {
  position: relative;
  min-height: 560px;
  margin: -28px 0 -28px -28px;
  overflow: visible;
  background: var(--navy);
  border-radius: 14px;
  box-shadow: 0 24px 65px rgba(3, 23, 50, .24);
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 21, 47, .76) 100%);
  border-radius: 14px;
  pointer-events: none;
}

.portrait-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 14px;
}

.portrait-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(4, 21, 47, .76);
  border-left: 4px solid var(--red);
  backdrop-filter: blur(10px);
}

.portrait-caption strong {
  color: var(--white);
  font-size: 16px;
}

.portrait-caption span {
  color: #aac0d8;
  font-size: 12px;
}

.experience-badge {
  position: absolute;
  z-index: 4;
  top: 38px;
  right: -42px;
  width: 126px;
  height: 126px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  color: #fff;
  background: var(--red);
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(85, 5, 12, .28);
  text-align: center;
}

.experience-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 37px;
  line-height: .9;
}

.experience-badge span {
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-copy {
  padding: 68px 68px 68px 86px;
}

.about-copy h2 {
  max-width: 650px;
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 700;
}

.about-copy > p:not(.section-label) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about-copy > p.about-lead {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.about-copy blockquote {
  margin: 27px 0;
  padding: 24px 26px;
  color: #fff;
  background: var(--navy);
  border-left: 5px solid var(--red);
}

.about-copy blockquote strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.4;
}

.about-copy blockquote span {
  display: block;
  margin-top: 8px;
  color: #9eb3ca;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 22px;
  margin: 30px 0 32px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-points span {
  color: #31445a;
  font-size: 12px;
  font-weight: 700;
}

.about-points b {
  color: var(--blue);
  margin-right: 7px;
}

.text-link-dark {
  color: var(--blue);
  border-bottom-color: rgba(7, 95, 186, .3);
}

.text-link-dark:hover,
.text-link-dark:focus-visible {
  border-bottom-color: var(--blue);
}

.client-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 95, 186, .05) 1px, transparent 1px),
    linear-gradient(rgba(7, 95, 186, .05) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
  border-top: 1px solid #e2eaf2;
}

.client-section::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -330px;
  top: -280px;
  background: rgba(7, 95, 186, .06);
  border-radius: 50%;
}

.client-section .shell {
  position: relative;
  z-index: 2;
}

.client-command {
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(0, 1.42fr);
  background: #fff;
  border: 1px solid #d7e2ec;
  border-radius: 14px;
  box-shadow: 0 28px 75px rgba(16, 45, 74, .13);
  overflow: hidden;
}

.client-direct {
  display: grid;
  align-content: center;
  padding: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 90%, rgba(35, 136, 227, .28), transparent 34%),
    var(--navy);
}

.client-direct .panel-kicker {
  color: #8ac8ff;
}

.client-direct h3 {
  max-width: 330px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.client-direct > p:not(.panel-kicker) {
  margin: 20px 0 28px;
  color: #b6c7da;
  font-size: 13px;
  line-height: 1.7;
}

.client-direct a {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.client-direct a span {
  color: #83a5c7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.client-direct a strong {
  color: #fff;
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
}

.service-card {
  min-height: 218px;
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 15px;
  padding: 28px 26px;
  background: var(--white);
  border-bottom: 1px solid #dce5ee;
  border-right: 1px solid #dce5ee;
  transition: background .2s ease, color .2s ease;
}

.service-card:nth-child(2n) {
  border-right: 0;
}

.service-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-card:hover,
.service-card:focus-visible {
  color: #fff;
  background: var(--blue);
}

.service-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -.01em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.service-card:hover p,
.service-card:focus-visible p {
  color: #d7ebff;
}

.service-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf6ff;
  border-radius: 50%;
  font-weight: 900;
}

.urgent-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 20px 24px;
  color: #fff;
  background: #9e0b15;
  border: 0;
  border-radius: 7px;
}

.urgent-note > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.urgent-note p {
  margin: 0;
  color: #ffe1e3;
  font-size: 13px;
  line-height: 1.55;
}

.urgent-note strong {
  color: #fff;
}

.quote-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 85%, rgba(29, 136, 231, .33), transparent 31%),
    linear-gradient(125deg, #04162f, #0a3262);
  padding: 112px 0;
}

.quote-section::after {
  content: "";
  position: absolute;
  top: -260px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .015), 0 0 0 140px rgba(255, 255, 255, .012);
}

.quote-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: start;
  gap: 90px;
}

.quote-intro {
  position: sticky;
  top: 126px;
  color: var(--white);
}

.quote-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 700;
}

.quote-intro > p:not(.section-label) {
  margin: 25px 0 0;
  color: #b7c7d9;
  font-size: 16px;
  line-height: 1.75;
}

.quote-steps {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.quote-steps > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.quote-steps span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.quote-steps p {
  margin: 0;
  color: #9fb2c7;
  font-size: 11px;
  line-height: 1.5;
}

.quote-steps strong {
  color: #fff;
}

.quote-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.quote-contact a {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
}

.quote-contact a:hover,
.quote-contact a:focus-visible {
  background: rgba(255, 255, 255, .08);
}

.quote-contact span {
  color: #8ca7c4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-contact strong {
  font-size: 16px;
}

.quote-form {
  display: grid;
  gap: 21px;
  padding: 42px;
  background: var(--white);
  border-radius: 14px;
  border-top: 7px solid var(--red);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading > div {
  display: grid;
  gap: 5px;
}

.form-heading p {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.form-heading > div > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-heading > strong {
  color: #657487;
  font-size: 11px;
  font-weight: 700;
}

.quote-form label,
.quote-form legend {
  color: #283d54;
  font-size: 12px;
  font-weight: 800;
}

.quote-form label > span:first-of-type {
  color: var(--red);
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd6e1;
  border-radius: 4px;
  outline: 0;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 186, .1);
}

.quote-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-form legend {
  margin-bottom: 10px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.check-label {
  position: relative;
}

.check-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-label span {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 0 8px;
  color: #42566c;
  background: #f6f8fa;
  border: 1px solid #dce4ec;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
}

.check-label input:checked + span {
  color: var(--blue);
  border-color: var(--blue);
  background: #edf6ff;
}

.check-label input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #687787 !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.consent-label input {
  margin: 2px 0 0;
  flex: 0 0 auto;
}

.consent-label a {
  color: var(--blue);
  text-decoration: underline;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-footnote {
  margin: -8px 0 0;
  color: #7a8795;
  font-size: 10px;
  text-align: center;
}

.form-status {
  margin: 0;
  color: #17693d;
  font-size: 12px;
  text-align: center;
}

.privacy-section {
  background: #edf2f7;
  border-bottom: 1px solid #d4dee8;
}

.privacy-inner {
  padding-top: 48px;
  padding-bottom: 48px;
}

.privacy-inner h2 {
  margin: 0 0 10px;
  font-size: 17px;
}

.privacy-inner p {
  max-width: 940px;
  margin: 0;
  color: #5d6d7d;
  font-size: 11px;
  line-height: 1.7;
}

.privacy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 17px;
}

.privacy-links a {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  background: #04152f;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr .7fr 1.05fr 1fr;
  gap: 50px;
  padding-top: 72px;
  padding-bottom: 66px;
}

.footer-brand > p {
  margin: 20px 0 0;
  color: #92a7bd;
  font-size: 13px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 3px 0 9px;
  color: #7bbcf4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-column p {
  margin: 0;
  color: #b3c1d1;
  font-size: 12px;
  line-height: 1.6;
}

.footer-column a:not(.button):hover {
  color: var(--white);
}

.button-outline {
  width: max-content;
  min-height: 42px;
  margin-top: 4px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .38);
  box-shadow: none;
}

.button-outline:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.footer-license {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-license p {
  max-width: 1040px;
  margin: 0;
  color: #778ca3;
  font-size: 10px;
  line-height: 1.7;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #778ca3;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 10px;
}

@media (max-width: 1040px) {
  .topbar-inner > span {
    display: none;
  }

  .topbar-inner {
    justify-content: flex-end;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .menu-button > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--navy);
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    align-items: stretch;
    padding: 22px 28px 28px;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(18, 42, 69, .12);
  }

  .nav-open {
    display: grid;
  }

  .nav .button {
    margin-top: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr 410px;
    gap: 38px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .confidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .confidence-item {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .coverage-groups {
    gap: 20px;
  }

  .coverage-group-head,
  .coverage-product-grid,
  .coverage-group-action {
    padding-left: 28px;
    padding-right: 28px;
  }

  .coverage-group-intro {
    padding-left: 28px;
    padding-right: 28px;
  }

  .why-feature {
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  }

  .why-feature-lead {
    padding: 42px 34px;
  }

  .why-feature-lead h3 {
    font-size: 34px;
  }

  .why-journey article {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-stage {
    grid-template-columns: .78fr 1.22fr;
  }

  .about-copy {
    padding: 54px 40px 54px 68px;
  }

  .experience-badge {
    right: -35px;
  }

  .client-command {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  }

  .quote-grid {
    gap: 52px;
    grid-template-columns: .8fr 1.2fr;
  }

  .footer-main {
    grid-template-columns: 1.3fr .7fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 3;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 34px, 680px);
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 100px;
    gap: 65px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .confidence-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .confidence-item {
    min-height: 104px;
    padding: 24px;
  }

  .confidence-item:nth-child(2n) {
    border-right: 0;
  }

  .section,
  .about-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .split-heading,
  .coverage-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .coverage-groups {
    grid-template-columns: 1fr;
  }

  .coverage-closer {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-feature {
    grid-template-columns: 1fr;
  }

  .why-feature-lead {
    padding: 48px 42px;
  }

  .why-journey article {
    min-height: 160px;
  }

  .why-close {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-stage {
    grid-template-columns: 1fr;
    padding: 0 0 0;
  }

  .about-portrait {
    min-height: 540px;
    margin: -18px 18px 0;
  }

  .experience-badge {
    right: 24px;
    top: auto;
    bottom: -42px;
  }

  .about-copy {
    padding: 74px 44px 54px;
  }

  .client-command {
    grid-template-columns: 1fr;
  }

  .client-direct {
    min-height: 390px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: auto;
    flex-wrap: wrap;
    padding: 22px 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 480px);
  }

  .brand-lockup {
    min-width: 188px;
    gap: 6px;
  }

  .brand-name strong {
    font-size: 23px;
  }

  .brand-descriptor {
    gap: 7px;
  }

  .brand-descriptor b {
    font-size: 7px;
  }

  .hero-grid {
    padding-top: 57px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: max-content;
  }

  .trust-row {
    gap: 9px;
  }

  .trust-row strong {
    font-size: 20px;
  }

  .trust-row span {
    font-size: 9px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: 38px;
  }

  .confidence-item {
    min-height: 112px;
    align-items: flex-start;
    padding: 21px 14px;
  }

  .confidence-check {
    width: 29px;
    height: 29px;
  }

  .confidence-item strong {
    font-size: 11px;
  }

  .confidence-item > div > span {
    font-size: 8px;
  }

  .coverage-group-head {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 30px 22px 22px;
  }

  .coverage-group-number {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .coverage-group-head h3 {
    font-size: 27px;
  }

  .coverage-group-intro,
  .coverage-product-grid,
  .coverage-group-action {
    padding-left: 22px;
    padding-right: 22px;
  }

  .coverage-product {
    grid-template-columns: 28px 1fr 28px;
  }

  .coverage-product p {
    font-size: 9px;
  }

  .coverage-closer {
    padding: 22px;
  }

  .why-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .why-heading h2 {
    font-size: 43px;
  }

  .why-lead {
    font-size: 15px;
  }

  .why-feature-lead {
    padding: 38px 25px;
  }

  .why-feature-lead h3 {
    font-size: 33px;
  }

  .why-feature-stats {
    gap: 7px;
  }

  .why-journey article {
    grid-template-columns: 45px 1fr;
    gap: 16px;
    min-height: 176px;
    padding: 28px 23px;
  }

  .why-step {
    width: 43px;
    height: 43px;
  }

  .why-journey h3 {
    font-size: 22px;
  }

  .why-close {
    padding: 24px 22px;
  }

  .why-close .button {
    width: 100%;
  }

  .about-portrait {
    min-height: 450px;
    margin: -12px 12px 0;
  }

  .about-copy {
    padding: 72px 26px 46px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 164px;
    border-right: 0;
    border-bottom: 1px solid #dce5ee !important;
  }

  .service-card:last-child {
    border-bottom: 0 !important;
  }

  .client-direct {
    min-height: auto;
    padding: 40px 25px;
  }

  .quote-section {
    padding: 80px 0;
  }

  .quote-intro h2 {
    font-size: 42px;
  }

  .quote-form {
    padding: 30px 22px;
  }

  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* Legal and compliance pages */

.legal-header .header-inner {
  min-height: 82px;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #26384d;
  font-size: 13px;
  font-weight: 800;
}

.legal-nav a {
  padding: 10px 0;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--blue);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(40, 145, 238, .2), transparent 32%),
    linear-gradient(115deg, #061e43, #0a3567);
}

.legal-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -230px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025);
}

.legal-hero .shell {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
}

.legal-hero > .shell > p:not(.hero-kicker) {
  max-width: 780px;
  margin: 24px 0 0;
  color: #c4d4e6;
  font-size: 17px;
  line-height: 1.7;
}

.legal-hero > .shell > span {
  display: block;
  margin-top: 24px;
  color: #8eacc9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  justify-content: center;
  align-items: start;
  gap: 76px;
  padding-top: 72px;
  padding-bottom: 100px;
}

.legal-toc {
  position: sticky;
  top: 114px;
  padding: 24px 22px;
  background: var(--soft);
  border: 1px solid #dce5ee;
  border-radius: 8px;
}

.legal-toc > p {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 9px;
}

.legal-toc nav a {
  color: #536477;
  font-size: 11px;
  line-height: 1.35;
}

.legal-toc nav a:hover,
.legal-toc nav a:focus-visible {
  color: var(--blue);
}

.legal-help {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #d5e0ea;
}

.legal-help strong {
  color: var(--ink);
  font-size: 11px;
}

.legal-help a {
  overflow-wrap: anywhere;
  color: var(--blue);
  font-size: 10px;
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 48px;
  margin: 0 0 48px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 112px;
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.legal-content p,
.legal-content li {
  color: #43566b;
  font-size: 14px;
  line-height: 1.82;
}

.legal-content p {
  margin: 0 0 17px;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 22px;
  padding-left: 22px;
}

.legal-content strong {
  color: #193550;
}

.legal-content a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 25px 0;
  padding: 24px 26px;
  background: #f0f6fc;
  border-left: 4px solid var(--blue);
  border-radius: 0 7px 7px 0;
}

.legal-callout-strong {
  background: #edf6ff;
  border-left-color: var(--red);
}

.legal-callout > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.55;
}

.legal-callout p {
  margin: 0;
  font-size: 13px;
}

.legal-address {
  padding: 22px 24px;
  color: #43566b;
  background: var(--soft);
  border: 1px solid #dce5ee;
  border-radius: 7px;
  font-size: 13px;
  font-style: normal;
  line-height: 1.8;
}

.legal-footer {
  background: #04152f;
}

.legal-footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  align-items: start;
  gap: 54px;
  padding-top: 58px;
  padding-bottom: 42px;
}

.legal-footer .brand-name strong:first-child {
  color: var(--white);
}

.legal-footer .brand-name strong:last-child {
  color: #70b9f6;
}

.legal-footer .brand-descriptor {
  color: #aebdd1;
}

.legal-footer-main > div:first-child > p,
.legal-footer address {
  margin: 18px 0 0;
  color: #92a7bd;
  font-size: 11px;
  font-style: normal;
  line-height: 1.8;
}

.legal-footer-links {
  display: grid;
  gap: 11px;
}

.legal-footer-links a {
  color: #b3c1d1;
  font-size: 12px;
}

.legal-footer-links a:hover,
.legal-footer-links a:focus-visible {
  color: var(--white);
}

.license-notice {
  margin: 0;
  padding: 24px 0;
  color: #778ca3;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 10px;
  line-height: 1.7;
}

.legal-footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #778ca3;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 10px;
}

@media (max-width: 900px) {
  .legal-nav {
    gap: 15px;
    font-size: 11px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .legal-header .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .legal-header .brand-lockup {
    min-width: 220px;
  }

  .legal-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px 18px;
  }

  .legal-hero {
    padding: 62px 0 58px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-hero > .shell > p:not(.hero-kicker) {
    font-size: 15px;
  }

  .legal-layout {
    padding-top: 46px;
    padding-bottom: 72px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-content h2 {
    font-size: 26px;
  }

  .legal-content section {
    padding-bottom: 38px;
    margin-bottom: 38px;
  }

  .legal-callout {
    padding: 21px 20px;
  }

  .legal-footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Temporary collaborative review mode */

.review-root {
  position: relative;
  z-index: 1000;
}

.review-mode-active,
.review-mode-active a,
.review-mode-active button,
.review-mode-active label,
.review-mode-active img {
  cursor: crosshair !important;
}

.review-highlight {
  position: fixed;
  z-index: 9997;
  pointer-events: none;
  border: 3px solid #ffb000;
  border-radius: 6px;
  background: rgba(255, 176, 0, .1);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .9), 0 10px 30px rgba(3, 22, 48, .22);
}

.review-highlight span {
  position: absolute;
  left: -3px;
  bottom: calc(100% + 7px);
  padding: 7px 10px;
  color: #fff;
  background: #0a2d5d;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.review-toolbar {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  color: #fff;
  background: #061e43;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(2, 17, 39, .34);
}

.review-toolbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 0 4px;
}

.review-toolbar-brand > div {
  display: grid;
  gap: 2px;
}

.review-toolbar-brand strong {
  font-size: 13px;
}

.review-toolbar-brand span:last-child {
  color: #aebdd1;
  font-size: 9px;
}

.review-pulse {
  width: 10px;
  height: 10px;
  border: 2px solid #061e43;
  border-radius: 50%;
  background: #ffb000;
  box-shadow: 0 0 0 3px rgba(255, 176, 0, .26);
}

.review-toggle,
.review-notes-button {
  min-height: 38px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer !important;
}

.review-toggle.is-active {
  color: #172433;
  background: #ffb000;
  border-color: #ffb000;
}

.review-notes-button span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-left: 5px;
  place-items: center;
  color: #061e43;
  background: #fff;
  border-radius: 50%;
  font-size: 10px;
}

.review-status {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 9999;
  max-width: min(470px, calc(100% - 32px));
  padding: 12px 17px;
  transform: translateX(-50%);
  color: #fff;
  background: #0a2d5d;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(3, 22, 48, .25);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer !important;
}

.review-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 17, 39, .64);
  backdrop-filter: blur(6px);
}

.review-welcome,
.review-composer {
  width: min(520px, 100%);
  padding: 34px;
  color: #0b1f38;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .32);
}

.review-welcome h2,
.review-composer h2,
.review-drawer h2 {
  margin: 7px 0 0;
  color: #061e43;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -.03em;
}

.review-welcome > p {
  margin: 18px 0 24px;
  color: #5c6b7a;
  font-size: 14px;
  line-height: 1.65;
}

.review-eyebrow {
  color: #075fba;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.review-welcome label,
.review-composer label {
  display: grid;
  gap: 8px;
  color: #283d54;
  font-size: 11px;
  font-weight: 850;
}

.review-welcome input,
.review-composer textarea {
  width: 100%;
  padding: 13px 14px;
  color: #0b1f38;
  background: #fff;
  border: 1px solid #cbd6e1;
  border-radius: 6px;
  outline: 0;
}

.review-composer textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.55;
}

.review-note-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-dictate {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: #075fba;
  background: #edf6ff;
  border: 1px solid #b8d8f3;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer !important;
}

.review-dictate > span {
  color: #d20d1a;
  font-size: 11px;
}

.review-dictate.is-listening {
  color: #fff;
  background: #d20d1a;
  border-color: #d20d1a;
}

.review-dictate.is-listening > span {
  color: #fff;
  animation: review-recording 1s ease-in-out infinite alternate;
}

@keyframes review-recording {
  from { opacity: .35; }
  to { opacity: 1; }
}

.review-welcome input:focus,
.review-composer textarea:focus {
  border-color: #075fba;
  box-shadow: 0 0 0 3px rgba(7, 95, 186, .11);
}

.review-primary,
.review-secondary {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer !important;
}

.review-primary {
  color: #fff;
  background: #075fba;
  border: 1px solid #075fba;
}

.review-primary:disabled {
  opacity: .55;
  cursor: wait !important;
}

.review-secondary {
  color: #2c4056;
  background: #fff;
  border: 1px solid #cbd6e1;
}

.review-welcome .review-primary {
  width: 100%;
  margin-top: 16px;
}

.review-helper {
  display: block;
  margin-top: 12px;
  color: #778594;
  font-size: 10px;
  text-align: center;
}

.review-composer-head,
.review-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.review-close {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: #506174;
  background: #f1f5f8;
  border: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer !important;
}

.review-selection {
  display: grid;
  gap: 5px;
  margin: 24px 0 20px;
  padding: 13px 15px;
  background: #fff8e8;
  border-left: 4px solid #ffb000;
}

.review-selection span {
  color: #7f682c;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.review-selection strong {
  max-width: 100%;
  overflow: hidden;
  color: #3d4651;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.review-backdrop-right {
  place-items: stretch end;
  padding: 0;
}

.review-drawer {
  width: min(520px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #0b1f38;
  background: #f5f8fb;
  box-shadow: -24px 0 80px rgba(0, 0, 0, .28);
  overflow: auto;
}

.review-drawer h2 {
  font-size: 29px;
}

.review-note-list {
  display: grid;
  gap: 12px;
  margin: 27px 0;
}

.review-note-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  padding: 17px;
  background: #fff;
  border: 1px solid #dbe3eb;
  border-radius: 9px;
}

.review-note-number {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #172433;
  background: #ffb000;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.review-note-card > div:nth-child(2) {
  display: grid;
  gap: 5px;
}

.review-note-card span,
.review-note-card small {
  color: #718092;
  font-size: 9px;
}

.review-note-card strong {
  color: #283d54;
  font-size: 11px;
}

.review-note-card p {
  margin: 3px 0 2px;
  color: #172433;
  font-size: 13px;
  line-height: 1.5;
}

.review-note-card > button {
  align-self: start;
  padding: 0;
  color: #9d3940;
  background: transparent;
  border: 0;
  font-size: 9px;
  text-decoration: underline;
  cursor: pointer !important;
}

.review-empty {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding: 28px;
  text-align: center;
  background: #fff;
  border: 1px dashed #b8c7d6;
  border-radius: 9px;
}

.review-empty p {
  margin: 0;
  color: #667688;
  font-size: 12px;
  line-height: 1.5;
}

.review-finish {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 21px;
  color: #fff;
  background: #061e43;
  border-radius: 10px;
}

.review-finish p {
  margin: 0 0 6px;
  color: #b8c7d8;
  font-size: 11px;
  line-height: 1.55;
}

.review-finish .review-primary {
  width: 100%;
  background: #d20d1a;
  border-color: #d20d1a;
}

@media (max-width: 720px) {
  .review-toolbar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: space-between;
  }

  .review-toolbar-brand span:last-child {
    display: none;
  }

  .review-status {
    bottom: 78px;
  }

  .review-backdrop {
    align-items: end;
    padding: 10px;
  }

  .review-welcome,
  .review-composer {
    padding: 25px 21px;
    border-radius: 12px;
  }

  .review-welcome h2,
  .review-composer h2 {
    font-size: 29px;
  }

  .review-backdrop-right {
    padding: 0;
  }

  .review-drawer {
    padding: 22px 16px 92px;
  }
}

/* Quiet Authority full-site direction — September 2026 */
.quiet-site {
  --quiet-navy: #031b3a;
  --quiet-navy-2: #08264c;
  --quiet-blue: #0d56bd;
  --quiet-red: #ef0b1a;
  --quiet-ink: #071a38;
  --quiet-muted: #52637a;
  --quiet-line: #d9e0ea;
  --quiet-soft: #f1f4f8;
  color: var(--quiet-ink);
  background: #fff;
  overflow: hidden;
}

.quiet-site *,
.quiet-site *::before,
.quiet-site *::after {
  box-sizing: border-box;
}

.quiet-site a { color: inherit; text-decoration: none; }
.quiet-site button,
.quiet-site input,
.quiet-site select,
.quiet-site textarea { font: inherit; }

.quiet-shell {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.quiet-header {
  position: relative;
  z-index: 20;
  min-height: 126px;
  background: #fff;
  border-bottom: 1px solid var(--quiet-line);
}

.quiet-header-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 40px;
}

.quiet-logo {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.quiet-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quiet-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  color: #233a58;
  font-size: .91rem;
  font-weight: 700;
}

.quiet-nav a,
.quiet-header-phone,
.quiet-text-link,
.quiet-client a,
.quiet-coverage-columns article > a {
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.quiet-nav a:hover,
.quiet-nav a:focus-visible { color: var(--quiet-red); }

.quiet-header-phone {
  padding-left: 24px;
  border-left: 1px solid var(--quiet-line);
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.quiet-header-phone span {
  color: var(--quiet-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.quiet-header-phone strong { color: var(--quiet-navy); font-size: 1.04rem; }
.quiet-header-phone:hover strong { color: var(--quiet-red); }

.quiet-menu { display: none; }

.quiet-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 51%) minmax(0, 49%);
  background: var(--quiet-navy);
}

.quiet-hero-copy {
  display: flex;
  justify-content: flex-end;
  color: #fff;
}

.quiet-hero-copy-inner {
  width: min(590px, calc(100% - 56px));
  padding: 108px 64px 74px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiet-kicker,
.quiet-section-label {
  margin: 0 0 28px;
  color: var(--quiet-blue);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.quiet-kicker { color: #6eb0ff; display: flex; align-items: center; gap: 14px; }
.quiet-kicker i { width: 32px; height: 3px; background: var(--quiet-red); }

.quiet-hero h1 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 6.4vw, 6.8rem);
  font-weight: 780;
  letter-spacing: -.068em;
  line-height: .92;
}

.quiet-hero-lead {
  max-width: 540px;
  margin: 34px 0 0;
  color: #d9e7f8;
  font-size: 1.25rem;
  line-height: 1.6;
}

.quiet-actions { margin-top: 36px; display: flex; align-items: center; gap: 28px; }

.quiet-button {
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--quiet-red);
  color: #fff !important;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.quiet-button:hover,
.quiet-button:focus-visible { background: #c90714; transform: translateY(-2px); }

.quiet-text-link {
  padding-block: 8px;
  border-bottom: 1px solid rgba(255,255,255,.38);
  color: #fff;
  font-weight: 760;
}

.quiet-text-link:hover,
.quiet-text-link:focus-visible { border-color: var(--quiet-red); color: #fff; }
.quiet-text-link-dark { color: var(--quiet-navy); border-color: #aab6c5; }
.quiet-text-link-dark:hover,
.quiet-text-link-dark:focus-visible { color: var(--quiet-red); }

.quiet-hero-note {
  margin: 62px 0 0;
  color: #8fa5bf;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.quiet-hero-image { position: relative; min-height: 720px; overflow: hidden; background: #b9a38b; }
.quiet-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,27,58,.18), transparent 34%), linear-gradient(0deg, rgba(3,27,58,.44), transparent 28%);
  pointer-events: none;
}
.quiet-hero-image > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 18%; }

.quiet-portrait-label {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5vw, 72px);
  bottom: 42px;
  padding-left: 28px;
  border-left: 3px solid var(--quiet-red);
  display: flex;
  flex-direction: column;
  color: #fff;
}
.quiet-portrait-label strong { font-size: 1.35rem; }
.quiet-portrait-label span { margin-top: 4px; color: #dae5f2; font-size: .88rem; }

.quiet-intro {
  padding-block: 112px;
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.quiet-intro h2,
.quiet-section-heading h2,
.quiet-kristi h2,
.quiet-contact h2,
.quiet-client h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4.75rem);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: 1;
}
.quiet-intro > div > p { max-width: 730px; margin: 26px 0 0; color: var(--quiet-muted); font-size: 1.23rem; line-height: 1.7; }

.quiet-coverage { padding-block: 104px 90px; background: var(--quiet-navy); color: #fff; }
.quiet-section-label-light { color: #76b5ff; }
.quiet-section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 70px; align-items: end; }
.quiet-section-heading h2 { max-width: 720px; color: #fff; }
.quiet-section-heading > p { margin: 0 0 4px; color: #b8c8db; font-size: 1.03rem; line-height: 1.7; }

.quiet-coverage-columns { margin-top: 68px; border-top: 1px solid rgba(255,255,255,.2); display: grid; grid-template-columns: 1fr 1fr; }
.quiet-coverage-columns article { padding: 44px 54px 44px 0; }
.quiet-coverage-columns article + article { padding-left: 54px; border-left: 1px solid rgba(255,255,255,.2); }
.quiet-coverage-title { display: flex; gap: 20px; align-items: start; }
.quiet-coverage-title > span { color: #78b6ff; font-size: .8rem; font-weight: 800; letter-spacing: .12em; }
.quiet-coverage-title p { margin: 0 0 8px; color: #78b6ff; font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.quiet-coverage-title h3 { margin: 0; font-size: 1.65rem; letter-spacing: -.03em; }
.quiet-coverage-columns ul { margin: 38px 0 32px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.quiet-coverage-columns li { min-height: 49px; border-bottom: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: space-between; color: #eaf2fc; font-size: .98rem; }
.quiet-coverage-columns li span { color: #7390b2; font-size: .8rem; }
.quiet-coverage-columns article > a { color: #fff; font-weight: 800; }
.quiet-coverage-columns article > a:hover { color: #78b6ff; }
.quiet-coverage-disclaimer { margin: 28px 0 0; color: #8298b2; font-size: .78rem; line-height: 1.6; }

.quiet-why { padding-block: 114px; }
.quiet-section-heading-dark h2 { color: var(--quiet-ink); }
.quiet-section-heading-dark > p { color: var(--quiet-muted); }
.quiet-principles { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--quiet-line); }
.quiet-principles article { padding: 38px 42px 0 0; }
.quiet-principles article + article { padding-left: 42px; border-left: 1px solid var(--quiet-line); }
.quiet-principles span { color: var(--quiet-red); font-size: .76rem; font-weight: 850; letter-spacing: .14em; }
.quiet-principles h3 { margin: 36px 0 16px; font-size: 1.45rem; letter-spacing: -.03em; }
.quiet-principles p { margin: 0; color: var(--quiet-muted); line-height: 1.7; }

.quiet-kristi { padding-block: 0; background: var(--quiet-soft); }
.quiet-kristi-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); min-height: 650px; }
.quiet-kristi-photo { min-height: 650px; overflow: hidden; }
.quiet-kristi-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 18%; }
.quiet-kristi-copy { padding: 96px clamp(36px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.quiet-kristi-lead { margin: 25px 0 0 !important; color: var(--quiet-blue) !important; font-weight: 800; }
.quiet-kristi-copy > p:not(.quiet-section-label) { max-width: 600px; margin: 22px 0 0; color: var(--quiet-muted); font-size: 1.08rem; line-height: 1.75; }
.quiet-kristi-copy .quiet-text-link { margin-top: 34px; align-self: flex-start; }

.quiet-contact { padding-block: 112px; background: var(--quiet-navy-2); color: #fff; }
.quiet-contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 130px); }
.quiet-contact h2 { max-width: 520px; color: #fff; }
.quiet-contact-copy > p:not(.quiet-section-label, .quiet-urgent) { max-width: 520px; margin: 28px 0 0; color: #c2d1e3; font-size: 1.08rem; line-height: 1.7; }
.quiet-contact-direct { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.2); }
.quiet-contact-direct a { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; gap: 5px; }
.quiet-contact-direct span { color: #7eb9ff; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.quiet-contact-direct strong { color: #fff; font-size: 1.08rem; overflow-wrap: anywhere; }
.quiet-contact-direct a:hover strong { color: #7eb9ff; }
.quiet-urgent { margin: 26px 0 0; color: #8ea5bf; font-size: .79rem; line-height: 1.65; }

.quiet-form { padding: clamp(28px, 4vw, 48px); background: #fff; color: var(--quiet-ink); }
.quiet-form label { display: flex; flex-direction: column; gap: 8px; color: #263b57; font-size: .82rem; font-weight: 780; }
.quiet-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quiet-form > label + label,
.quiet-form-row + .quiet-form-row,
.quiet-form-row + label { margin-top: 20px; }
.quiet-form input:not([type="checkbox"]),
.quiet-form select,
.quiet-form textarea {
  width: 100%;
  border: 1px solid #c4cfdd;
  border-radius: 0;
  background: #fff;
  color: var(--quiet-ink);
  outline: none;
}
.quiet-form input:not([type="checkbox"]),
.quiet-form select { min-height: 50px; padding: 0 14px; }
.quiet-form textarea { padding: 13px 14px; resize: vertical; }
.quiet-form input:focus,
.quiet-form select:focus,
.quiet-form textarea:focus { border-color: var(--quiet-blue); box-shadow: 0 0 0 3px rgba(13,86,189,.12); }
.quiet-consent { margin-top: 22px !important; flex-direction: row !important; gap: 12px !important; align-items: flex-start; color: #53647a !important; font-size: .72rem !important; font-weight: 500 !important; line-height: 1.55; }
.quiet-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--quiet-blue); }
.quiet-form-warning { margin: 18px 0 0; padding: 12px 14px; background: #f3f5f8; color: #596a7f; font-size: .71rem; line-height: 1.55; }
.quiet-button-full { width: 100%; margin-top: 22px; }
.quiet-form-status { min-height: 20px; margin: 12px 0 0; color: var(--quiet-blue); font-size: .8rem; font-weight: 700; }
.quiet-form-disclaimer { margin: 10px 0 0; color: #637287; font-size: .71rem; line-height: 1.55; }
.quiet-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.quiet-client { padding-block: 70px; background: #fff; border-bottom: 1px solid var(--quiet-line); }
.quiet-client-inner { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 58px; align-items: center; }
.quiet-client .quiet-section-label { margin-bottom: 14px; }
.quiet-client h2 { font-size: clamp(2rem, 3vw, 3rem); }
.quiet-client-inner > p { margin: 0; color: var(--quiet-muted); line-height: 1.65; }
.quiet-client-inner > a { color: var(--quiet-blue); font-weight: 800; white-space: nowrap; }
.quiet-client-inner > a:hover { color: var(--quiet-red); }

.quiet-footer { padding: 72px 0 28px; background: #02142d; color: #fff; }
.quiet-footer-main { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 70px; align-items: start; }
.quiet-footer .quiet-logo { width: 128px; height: 104px; }
.quiet-footer-brand p { margin: 18px 0 0; color: #86a0be; font-size: .84rem; font-weight: 700; }
.quiet-footer-contact { display: flex; flex-direction: column; gap: 9px; color: #a9bad0; font-size: .9rem; }
.quiet-footer-contact strong { color: #fff; }
.quiet-footer-contact a:hover { color: #7eb9ff; }
.quiet-footer nav { display: flex; flex-direction: column; gap: 12px; color: #bac8d9; font-size: .87rem; }
.quiet-footer nav a:hover { color: #fff; }
.quiet-license { margin-top: 48px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); display: flex; gap: 30px; color: #d5dfeb; font-size: .77rem; font-weight: 700; }
.quiet-footer-fine { padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; color: #7189a5; font-size: .7rem; line-height: 1.55; }
.quiet-footer-fine p { margin: 0; max-width: 760px; }

@media (max-width: 980px) {
  .quiet-header-inner { grid-template-columns: 125px 1fr auto; gap: 20px; }
  .quiet-logo { width: 108px; height: 108px; }
  .quiet-nav { gap: 20px; font-size: .82rem; }
  .quiet-header-phone span { display: none; }
  .quiet-header-phone { padding-left: 18px; }
  .quiet-hero { min-height: 650px; }
  .quiet-hero-copy-inner { padding-right: 42px; }
  .quiet-hero h1 { font-size: clamp(3.6rem, 7.7vw, 5.6rem); }
  .quiet-hero-image { min-height: 650px; }
  .quiet-intro { grid-template-columns: 180px 1fr; }
  .quiet-kristi-grid { grid-template-columns: .85fr 1.15fr; }
  .quiet-contact-grid { grid-template-columns: 1fr 1.25fr; gap: 50px; }
  .quiet-client-inner { grid-template-columns: 1fr 1fr; }
  .quiet-client-inner > a { grid-column: 2; }
}

@media (max-width: 760px) {
  .quiet-shell { width: min(100% - 36px, 620px); }
  .quiet-header { min-height: 86px; }
  .quiet-header-inner { min-height: 86px; grid-template-columns: 96px 1fr 42px; }
  .quiet-logo { width: 90px; height: 70px; }
  .quiet-header-phone { grid-column: 2; grid-row: 1; padding: 0; border: 0; text-align: right; font-size: .83rem; }
  .quiet-menu { grid-column: 3; grid-row: 1; width: 42px; height: 42px; padding: 11px 8px; border: 0; display: flex; flex-direction: column; justify-content: center; gap: 7px; background: transparent; }
  .quiet-menu > span:not(.sr-only) { width: 100%; height: 2px; background: var(--quiet-navy); }
  .quiet-nav { position: absolute; top: 86px; left: 0; right: 0; padding: 22px 18px; display: none; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--quiet-line); box-shadow: 0 12px 25px rgba(3,27,58,.12); }
  .quiet-nav-open { display: flex; }
  .quiet-nav a { padding: 13px 8px; border-bottom: 1px solid var(--quiet-line); }
  .quiet-nav a:last-child { border-bottom: 0; }

  .quiet-hero { min-height: auto; grid-template-columns: 1fr; }
  .quiet-hero-copy { order: 2; }
  .quiet-hero-copy-inner { width: min(100% - 36px, 620px); margin-inline: auto; padding: 54px 0 50px; }
  .quiet-kicker { margin-bottom: 22px; }
  .quiet-hero h1 { font-size: clamp(3.45rem, 15vw, 5.2rem); }
  .quiet-hero-lead { margin-top: 24px; font-size: 1.05rem; }
  .quiet-actions { margin-top: 28px; align-items: flex-start; flex-direction: column; gap: 17px; }
  .quiet-button { width: 100%; }
  .quiet-hero-note { margin-top: 36px; }
  .quiet-hero-image { order: 1; min-height: 420px; height: 56vh; max-height: 560px; }
  .quiet-hero-image > img { object-position: 50% 16%; }
  .quiet-portrait-label { right: 22px; bottom: 24px; }

  .quiet-intro { padding-block: 72px; grid-template-columns: 1fr; gap: 12px; }
  .quiet-intro h2,
  .quiet-section-heading h2,
  .quiet-kristi h2,
  .quiet-contact h2 { font-size: clamp(2.45rem, 11vw, 3.9rem); }
  .quiet-intro > div > p { margin-top: 20px; font-size: 1.05rem; }

  .quiet-coverage { padding-block: 72px 62px; }
  .quiet-section-heading { grid-template-columns: 1fr; gap: 24px; }
  .quiet-coverage-columns { margin-top: 45px; grid-template-columns: 1fr; }
  .quiet-coverage-columns article { padding: 35px 0 42px; }
  .quiet-coverage-columns article + article { padding: 42px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }

  .quiet-why { padding-block: 74px; }
  .quiet-principles { margin-top: 46px; grid-template-columns: 1fr; }
  .quiet-principles article { padding: 30px 0; }
  .quiet-principles article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--quiet-line); }
  .quiet-principles h3 { margin-top: 20px; }

  .quiet-kristi-grid { width: 100%; grid-template-columns: 1fr; min-height: 0; }
  .quiet-kristi-photo { min-height: 440px; height: 62vh; max-height: 600px; }
  .quiet-kristi-copy { width: min(100% - 36px, 620px); margin-inline: auto; padding: 66px 0 74px; }
  .quiet-kristi-copy > p:not(.quiet-section-label) { font-size: 1rem; }

  .quiet-contact { padding-block: 72px; }
  .quiet-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .quiet-form { padding: 25px 20px; }
  .quiet-form-row { grid-template-columns: 1fr; gap: 20px; }

  .quiet-client { padding-block: 58px; }
  .quiet-client-inner { grid-template-columns: 1fr; gap: 28px; }
  .quiet-client-inner > a { grid-column: auto; }

  .quiet-footer { padding-top: 54px; }
  .quiet-footer-main { grid-template-columns: 1fr; gap: 36px; }
  .quiet-license { flex-direction: column; gap: 8px; }
  .quiet-footer-fine { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .quiet-site *, .quiet-site *::before, .quiet-site *::after { scroll-behavior: auto !important; transition: none !important; }
}
/* Fresh GuardPoint direction — September 2026 */
.fresh-site {
  --fresh-navy: #061d3f;
  --fresh-blue: #145ac5;
  --fresh-sky: #dcecff;
  --fresh-sky-2: #eff6ff;
  --fresh-coral: #ef3340;
  --fresh-coral-dark: #d51f2c;
  --fresh-ink: #071a36;
  --fresh-muted: #5d6c80;
  --fresh-line: #d8e1ec;
  --fresh-cream: #f8fafc;
  color: var(--fresh-ink);
  background: #fff;
  overflow: hidden;
}

.fresh-site *, .fresh-site *::before, .fresh-site *::after { box-sizing: border-box; }
.fresh-site a { color: inherit; text-decoration: none; }
.fresh-site button, .fresh-site input, .fresh-site select, .fresh-site textarea { font: inherit; }

.fresh-shell { width: min(1160px, calc(100% - 56px)); margin-inline: auto; }

.fresh-header { position: relative; z-index: 20; background: #fff; border-bottom: 1px solid var(--fresh-line); }
.fresh-header-inner { min-height: 112px; display: grid; grid-template-columns: 130px 1fr auto; gap: 38px; align-items: center; }
.fresh-logo { width: 112px; height: 104px; display: grid; place-items: center; overflow: hidden; background: #fff; }
.fresh-logo img { width: 100%; height: 100%; display: block; object-fit: contain; }
.fresh-nav { display: flex; justify-content: center; gap: clamp(24px, 3.6vw, 52px); font-size: .93rem; font-weight: 750; color: #304561; }
.fresh-nav a { padding: 12px 0; transition: color .2s ease; }
.fresh-nav a:hover, .fresh-nav a:focus-visible { color: var(--fresh-blue); }
.fresh-header-action { min-height: 48px; padding: 0 21px; border-radius: 999px; display: inline-flex; align-items: center; gap: 16px; background: var(--fresh-navy); color: #fff !important; font-size: .9rem; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.fresh-header-action:hover, .fresh-header-action:focus-visible { transform: translateY(-2px); background: var(--fresh-blue); }
.fresh-menu { display: none; }

.fresh-hero { position: relative; padding: 74px 0 86px; background: var(--fresh-sky-2); }
.fresh-hero::before { content: ""; position: absolute; width: 210px; height: 210px; left: -92px; bottom: -78px; border: 44px solid var(--fresh-coral); border-radius: 50%; opacity: .95; }
.fresh-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr); gap: clamp(58px, 8vw, 110px); align-items: center; }
.fresh-hero-copy { padding-block: 28px; }
.fresh-pill { width: fit-content; margin: 0 0 28px; padding: 9px 14px; border: 1px solid #bdd5f5; border-radius: 999px; display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.76); color: var(--fresh-blue); font-size: .77rem; font-weight: 820; letter-spacing: .035em; }
.fresh-pill span { color: var(--fresh-coral); font-size: .66rem; }
.fresh-hero h1 { max-width: 650px; margin: 0; color: var(--fresh-navy); font-size: clamp(4rem, 7vw, 6.6rem); font-weight: 780; letter-spacing: -.072em; line-height: .9; }
.fresh-hero h1 em { color: var(--fresh-blue); font-style: normal; }
.fresh-hero-lead { max-width: 610px; margin: 30px 0 0; color: #425774; font-size: 1.22rem; line-height: 1.62; }
.fresh-actions { margin-top: 35px; display: flex; align-items: center; gap: 14px; }
.fresh-button { min-height: 56px; padding: 0 25px; border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; font-size: .94rem; font-weight: 820; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.fresh-button:hover, .fresh-button:focus-visible { transform: translateY(-2px); }
.fresh-button-primary { background: var(--fresh-coral); color: #fff !important; box-shadow: 0 12px 26px rgba(239,51,64,.2); }
.fresh-button-primary:hover, .fresh-button-primary:focus-visible { background: var(--fresh-coral-dark); }
.fresh-button-secondary { border: 1px solid #adc5e4; background: rgba(255,255,255,.7); color: var(--fresh-navy) !important; }
.fresh-button-secondary:hover, .fresh-button-secondary:focus-visible { border-color: var(--fresh-blue); color: var(--fresh-blue) !important; }
.fresh-button-white { background: #fff; color: var(--fresh-navy) !important; }
.fresh-button-full { width: 100%; }
.fresh-direct { margin-top: 32px; display: flex; gap: 8px; color: var(--fresh-muted); font-size: .88rem; }
.fresh-direct a { color: var(--fresh-navy); font-weight: 800; border-bottom: 1px solid #a8bbd2; }
.fresh-direct a:hover { color: var(--fresh-blue); border-color: var(--fresh-blue); }

.fresh-hero-visual { position: relative; min-height: 590px; }
.fresh-photo-frame { position: absolute; z-index: 2; inset: 0 24px 0 48px; border-radius: 44px 44px 120px 44px; overflow: hidden; background: #bfa98f; box-shadow: 0 30px 70px rgba(6,29,63,.16); }
.fresh-photo-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 16%; }
.fresh-photo-shape { position: absolute; z-index: 1; border-radius: 40px; transform: rotate(-8deg); }
.fresh-photo-shape-one { width: 235px; height: 235px; right: -16px; top: -26px; background: var(--fresh-coral); }
.fresh-photo-shape-two { width: 230px; height: 230px; left: 5px; bottom: -22px; background: var(--fresh-blue); transform: rotate(10deg); }
.fresh-advisor-note { position: absolute; z-index: 4; left: 0; bottom: 32px; width: 235px; padding: 22px 24px; border-radius: 24px; display: flex; flex-direction: column; background: #fff; box-shadow: 0 20px 45px rgba(6,29,63,.18); }
.fresh-advisor-note strong { color: var(--fresh-navy); font-size: 1.25rem; }
.fresh-advisor-note span { margin-top: 3px; color: var(--fresh-blue); font-size: .8rem; font-weight: 750; }
.fresh-advisor-note small { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--fresh-line); color: var(--fresh-muted); font-size: .76rem; line-height: 1.45; }

.fresh-coverage { padding-block: 112px 96px; }
.fresh-section-heading { display: grid; grid-template-columns: .55fr 1.1fr .65fr; gap: 48px; align-items: end; }
.fresh-eyebrow { margin: 0; color: var(--fresh-blue); font-size: .77rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.fresh-section-heading h2, .fresh-how h2, .fresh-clients h2, .fresh-contact h2 { margin: 0; color: var(--fresh-navy); font-size: clamp(2.7rem, 4.7vw, 4.9rem); font-weight: 770; letter-spacing: -.06em; line-height: .98; }
.fresh-section-heading > p:last-child { margin: 0; color: var(--fresh-muted); font-size: 1rem; line-height: 1.65; }
.fresh-coverage-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fresh-coverage-card { position: relative; min-height: 530px; padding: 38px; border-radius: 32px; display: grid; grid-template-columns: 52px 1fr; grid-template-rows: 1fr auto; gap: 30px 20px; overflow: hidden; }
.fresh-card-personal { background: var(--fresh-navy); color: #fff; }
.fresh-card-business { background: var(--fresh-sky); color: var(--fresh-navy); }
.fresh-card-number { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); color: #fff; font-size: .77rem; font-weight: 850; }
.fresh-card-business .fresh-card-number { background: #fff; color: var(--fresh-blue); }
.fresh-card-label { margin: 3px 0 13px; color: #85bbff; font-size: .77rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.fresh-card-business .fresh-card-label { color: var(--fresh-blue); }
.fresh-coverage-card h3 { max-width: 390px; margin: 0; font-size: clamp(2.3rem, 3.5vw, 3.4rem); font-weight: 740; letter-spacing: -.055em; line-height: 1; }
.fresh-coverage-card ul { margin: 34px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.fresh-coverage-card li { padding: 9px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #e8f1fd; font-size: .84rem; }
.fresh-card-business li { border-color: #afc9eb; background: rgba(255,255,255,.48); color: #193a68; }
.fresh-coverage-card > a { grid-column: 2; width: fit-content; align-self: end; color: #fff; font-weight: 820; border-bottom: 1px solid rgba(255,255,255,.4); }
.fresh-card-business > a { color: var(--fresh-navy); border-color: #789dcc; }
.fresh-coverage-card > a:hover { color: #8dc2ff; }
.fresh-card-business > a:hover { color: var(--fresh-blue); }
.fresh-coverage-note { margin: 22px 0 0; color: #778599; font-size: .76rem; line-height: 1.55; }

.fresh-how { padding-block: 100px; background: var(--fresh-sky-2); }
.fresh-how-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 10vw, 145px); align-items: start; }
.fresh-how-intro .fresh-eyebrow { margin-bottom: 24px; }
.fresh-how-intro > p:last-child { max-width: 480px; margin: 26px 0 0; color: var(--fresh-muted); font-size: 1.08rem; line-height: 1.7; }
.fresh-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid #c9d9eb; }
.fresh-steps li { padding: 30px 0; border-bottom: 1px solid #c9d9eb; display: grid; grid-template-columns: 54px 1fr; gap: 20px; }
.fresh-steps li > span { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--fresh-coral); color: #fff; font-size: .9rem; font-weight: 850; }
.fresh-steps strong { color: var(--fresh-navy); font-size: 1.25rem; }
.fresh-steps p { margin: 7px 0 0; color: var(--fresh-muted); line-height: 1.55; }

.fresh-clients { padding-block: 100px; background: #fff; }
.fresh-client-card { position: relative; padding: clamp(42px, 6vw, 74px); border-radius: 38px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px 80px; background: var(--fresh-blue); color: #fff; overflow: hidden; }
.fresh-client-card::after { content: ""; position: absolute; width: 250px; height: 250px; right: -85px; bottom: -120px; border: 48px solid var(--fresh-coral); border-radius: 50%; }
.fresh-eyebrow-light { color: #b9d8ff; }
.fresh-client-card h2 { margin-top: 20px; color: #fff; }
.fresh-client-card > div:first-child > p:last-child { max-width: 570px; margin: 24px 0 0; color: #dcecff; font-size: 1.05rem; line-height: 1.65; }
.fresh-client-card > ul { align-self: center; margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fresh-client-card > ul li { padding: 13px 14px; border-radius: 12px; background: rgba(255,255,255,.1); color: #fff; font-size: .87rem; font-weight: 700; }
.fresh-client-actions { display: flex; gap: 24px; align-items: center; }
.fresh-client-email { color: #fff; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.45); }
.fresh-client-fine { position: relative; z-index: 2; align-self: center; margin: 0; color: #c3dcfb; font-size: .75rem; line-height: 1.55; }

.fresh-contact { padding-block: 110px; background: var(--fresh-cream); }
.fresh-contact-card { padding: clamp(34px, 5vw, 68px); border: 1px solid var(--fresh-line); border-radius: 38px; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 120px); background: #fff; box-shadow: 0 24px 60px rgba(6,29,63,.07); }
.fresh-contact-copy .fresh-eyebrow { margin-bottom: 23px; }
.fresh-contact-copy > p:not(.fresh-eyebrow) { max-width: 470px; margin: 25px 0 0; color: var(--fresh-muted); font-size: 1.04rem; line-height: 1.7; }
.fresh-contact-links { margin-top: 38px; border-top: 1px solid var(--fresh-line); }
.fresh-contact-links a { padding: 18px 0; border-bottom: 1px solid var(--fresh-line); display: flex; flex-direction: column; gap: 4px; }
.fresh-contact-links span { color: var(--fresh-blue); font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.fresh-contact-links strong { color: var(--fresh-navy); font-size: 1rem; overflow-wrap: anywhere; }
.fresh-contact-links a:hover strong { color: var(--fresh-blue); }
.fresh-contact-address { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; color: var(--fresh-muted); font-size: .83rem; }
.fresh-contact-address strong { color: var(--fresh-navy); }

.fresh-form { padding: 4px 0; }
.fresh-form label { display: flex; flex-direction: column; gap: 8px; color: #263b58; font-size: .81rem; font-weight: 780; }
.fresh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fresh-form > label + label, .fresh-form-row + .fresh-form-row, .fresh-form-row + label { margin-top: 18px; }
.fresh-form input:not([type="checkbox"]), .fresh-form select, .fresh-form textarea { width: 100%; border: 1px solid #c5d0dd; border-radius: 14px; background: #fff; color: var(--fresh-ink); outline: none; }
.fresh-form input:not([type="checkbox"]), .fresh-form select { min-height: 50px; padding: 0 14px; }
.fresh-form textarea { padding: 13px 14px; resize: vertical; }
.fresh-form input:focus, .fresh-form select:focus, .fresh-form textarea:focus { border-color: var(--fresh-blue); box-shadow: 0 0 0 4px rgba(20,90,197,.11); }
.fresh-consent { margin-top: 19px !important; flex-direction: row !important; gap: 11px !important; align-items: flex-start; color: #5c6b7e !important; font-size: .71rem !important; font-weight: 500 !important; line-height: 1.5; }
.fresh-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--fresh-blue); }
.fresh-form-warning { margin: 16px 0 0; padding: 12px 14px; border-radius: 12px; background: var(--fresh-sky-2); color: #5a6b81; font-size: .7rem; line-height: 1.5; }
.fresh-form .fresh-button { margin-top: 19px; }
.fresh-form-status { min-height: 20px; margin: 10px 0 0; color: var(--fresh-blue); font-size: .78rem; font-weight: 700; }
.fresh-form-disclaimer { margin: 8px 0 0; color: #69788a; font-size: .7rem; line-height: 1.5; }
.fresh-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.fresh-footer { padding: 64px 0 28px; background: var(--fresh-navy); color: #fff; }
.fresh-footer-top { display: grid; grid-template-columns: 145px 1fr 1fr; gap: 70px; align-items: start; }
.fresh-footer .fresh-logo { width: 120px; height: 112px; border-radius: 12px; }
.fresh-footer-contact { display: flex; flex-direction: column; gap: 8px; color: #afc0d5; font-size: .87rem; }
.fresh-footer-contact a:hover { color: #fff; }
.fresh-footer nav { display: flex; flex-direction: column; gap: 11px; color: #b9c8da; font-size: .84rem; }
.fresh-footer nav a:hover { color: #fff; }
.fresh-footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: start; color: #7f94ad; font-size: .7rem; line-height: 1.55; }
.fresh-footer-bottom > div { display: flex; flex-direction: column; gap: 4px; color: #c1cfdf; font-weight: 650; white-space: nowrap; }
.fresh-footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  .fresh-header-inner { grid-template-columns: 116px 1fr auto; gap: 22px; }
  .fresh-nav { gap: 22px; font-size: .84rem; }
  .fresh-hero-grid { grid-template-columns: 1fr .85fr; gap: 48px; }
  .fresh-hero h1 { font-size: clamp(3.7rem, 7.8vw, 5.5rem); }
  .fresh-hero-visual { min-height: 520px; }
  .fresh-photo-frame { inset-left: 24px; }
  .fresh-section-heading { grid-template-columns: .45fr 1fr; }
  .fresh-section-heading > p:last-child { grid-column: 2; }
  .fresh-contact-card { grid-template-columns: 1fr 1.15fr; gap: 50px; }
  .fresh-footer-bottom { grid-template-columns: 1fr 1fr; }
  .fresh-footer-bottom > span:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .fresh-shell { width: min(100% - 34px, 620px); }
  .fresh-header-inner { min-height: 88px; grid-template-columns: 88px 1fr 42px; }
  .fresh-logo { width: 82px; height: 80px; }
  .fresh-header-action { justify-self: end; min-height: 42px; padding: 0 16px; font-size: .8rem; }
  .fresh-header-action span { display: none; }
  .fresh-menu { grid-column: 3; grid-row: 1; width: 42px; height: 42px; padding: 10px 8px; border: 0; display: flex; flex-direction: column; justify-content: center; gap: 7px; background: transparent; }
  .fresh-menu > span:not(.sr-only) { width: 100%; height: 2px; background: var(--fresh-navy); }
  .fresh-nav { position: absolute; top: 88px; left: 0; right: 0; padding: 18px; display: none; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--fresh-line); box-shadow: 0 14px 26px rgba(6,29,63,.12); }
  .fresh-nav-open { display: flex; }
  .fresh-nav a { padding: 13px 9px; border-bottom: 1px solid var(--fresh-line); }
  .fresh-nav a:last-child { border-bottom: 0; }

  .fresh-hero { padding: 38px 0 64px; }
  .fresh-hero::before { display: none; }
  .fresh-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .fresh-hero-copy { padding: 0; }
  .fresh-pill { margin-bottom: 22px; font-size: .7rem; }
  .fresh-hero h1 { font-size: clamp(3.5rem, 15.5vw, 5rem); }
  .fresh-hero-lead { margin-top: 23px; font-size: 1.03rem; }
  .fresh-actions { align-items: stretch; flex-direction: column; }
  .fresh-button { width: 100%; }
  .fresh-direct { flex-direction: column; }
  .fresh-direct a { width: fit-content; }
  .fresh-hero-visual { min-height: 460px; }
  .fresh-photo-frame { inset: 0 0 0 28px; border-radius: 34px 34px 76px 34px; }
  .fresh-photo-shape-one { width: 150px; height: 150px; right: -22px; top: -18px; }
  .fresh-photo-shape-two { width: 150px; height: 150px; left: 0; bottom: -16px; }
  .fresh-advisor-note { left: 0; bottom: 25px; width: 202px; padding: 18px; border-radius: 18px; }

  .fresh-coverage { padding-block: 78px 70px; }
  .fresh-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .fresh-section-heading h2, .fresh-how h2, .fresh-clients h2, .fresh-contact h2 { font-size: clamp(2.6rem, 11.5vw, 4rem); }
  .fresh-section-heading > p:last-child { grid-column: auto; }
  .fresh-coverage-grid { margin-top: 42px; grid-template-columns: 1fr; }
  .fresh-coverage-card { min-height: 490px; padding: 27px 23px; grid-template-columns: 44px 1fr; gap: 24px 14px; border-radius: 25px; }
  .fresh-coverage-card h3 { font-size: 2.35rem; }
  .fresh-coverage-card > a { grid-column: 1 / -1; }

  .fresh-how { padding-block: 75px; }
  .fresh-how-grid { grid-template-columns: 1fr; gap: 46px; }
  .fresh-steps li { grid-template-columns: 48px 1fr; }

  .fresh-clients { padding-block: 72px; }
  .fresh-client-card { padding: 36px 25px; grid-template-columns: 1fr; gap: 34px; border-radius: 26px; }
  .fresh-client-card > ul { grid-template-columns: 1fr; }
  .fresh-client-actions { align-items: flex-start; flex-direction: column; }
  .fresh-client-card::after { width: 170px; height: 170px; right: -82px; bottom: -88px; }

  .fresh-contact { padding-block: 72px; }
  .fresh-contact-card { padding: 32px 21px; grid-template-columns: 1fr; gap: 52px; border-radius: 26px; }
  .fresh-form-row { grid-template-columns: 1fr; gap: 18px; }

  .fresh-footer { padding-top: 50px; }
  .fresh-footer-top { grid-template-columns: 1fr; gap: 31px; }
  .fresh-footer-bottom { margin-top: 34px; grid-template-columns: 1fr; gap: 16px; }
  .fresh-footer-bottom > span:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .fresh-site *, .fresh-site *::before, .fresh-site *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* GuardPoint v5.3 — bold red and blue coverage choices */
:root {
  --clear-ink: #090c12;
  --clear-blue: #1454c3;
  --clear-blue-deep: #062653;
  --clear-red: #d71920;
  --clear-red-deep: #a90f16;
  --clear-sky: #edf4ff;
  --clear-red-soft: #fff1f1;
  --clear-white: #ffffff;
  --clear-mist: #f6f7f9;
  --clear-line: #d9dde6;
  --clear-muted: #596174;
}

.clear-site { min-height: 100vh; overflow: hidden; background: var(--clear-white); color: var(--clear-ink); font-family: var(--font-geist-sans), Arial, sans-serif; }
.clear-site, .clear-site * { box-sizing: border-box; }
.clear-site a { color: inherit; text-decoration: none; }
.clear-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.clear-header { position: relative; z-index: 20; background: var(--clear-white); border-bottom: 1px solid var(--clear-line); }
.clear-header::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--clear-red) 0 34%, var(--clear-blue) 34% 100%); }
.clear-header-inner { min-height: 144px; padding-block: 8px; display: grid; grid-template-columns: 174px 1fr auto; gap: 40px; align-items: center; }
.clear-logo { width: 174px; display: inline-flex; align-items: center; }
.clear-logo img { width: 100%; height: auto; display: block; }
.clear-nav { justify-self: center; display: flex; align-items: center; gap: 34px; font-size: .92rem; font-weight: 650; }
.clear-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.clear-nav a:hover, .clear-nav a:focus-visible { border-color: var(--clear-red); }
.clear-call { min-height: 46px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--clear-ink); color: var(--clear-white) !important; font-size: .88rem; font-weight: 760; }
.clear-call:hover, .clear-call:focus-visible { background: var(--clear-red); }
.clear-menu { display: none; }

.clear-hero { position: relative; padding: 56px 0 72px; background: #f0f6fb; }
.clear-lake-scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; pointer-events: none; }
.clear-hero-grid { position: relative; min-height: 480px; display: grid; grid-template-columns: 1.03fr .97fr; gap: 64px; align-items: center; }
.clear-hero-copy { padding: 24px 0; display: flex; flex-direction: column; justify-content: center; }
.clear-hero-brand { display: flex; align-items: center; justify-content: center; }
.clear-hero-brand img { display: block; width: min(100%, 480px); height: auto; }
.clear-kicker { margin: 0 0 30px; color: var(--clear-red); font-size: .78rem; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.clear-hero h1 { margin: 0; max-width: 620px; font-size: clamp(3rem, 4.5vw, 4.5rem); font-weight: 720; letter-spacing: -.025em; line-height: 1.08; }
.clear-hero h1 span { color: var(--clear-blue); }
.clear-lead { max-width: 485px; margin: 28px 0 0; color: #293c50; font-size: clamp(1.14rem, 1.7vw, 1.3rem); line-height: 1.6; }
.clear-actions { margin-top: 36px; display: flex; align-items: center; gap: 26px; }
.clear-button { min-height: 54px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; border: 0; border-radius: 999px; font: inherit; font-size: .93rem; font-weight: 780; cursor: pointer; }
.clear-button-dark { background: var(--clear-ink); color: var(--clear-white) !important; }
.clear-button-dark:hover, .clear-button-dark:focus-visible { background: var(--clear-red); }
.clear-text-link { padding: 8px 0; border-bottom: 1px solid var(--clear-ink); font-weight: 720; }
.clear-portrait-wrap { position: relative; min-height: 610px; }
.clear-portrait { position: absolute; inset: 0 0 0 9%; overflow: hidden; border-radius: 4px 4px 120px 4px; background: #c7b096; box-shadow: 18px 18px 0 var(--clear-blue); }
.clear-portrait img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 25%; }
.clear-nameplate { position: absolute; left: 0; bottom: 34px; width: min(300px, 74%); padding: 22px 24px; display: flex; flex-direction: column; gap: 5px; background: var(--clear-white); border-left: 6px solid var(--clear-red); box-shadow: 0 14px 30px rgba(11,16,32,.12); }
.clear-nameplate strong { font-size: 1.2rem; }
.clear-nameplate span { color: var(--clear-muted); font-size: .87rem; }

.clear-coverage { padding-block: 84px 60px; }
.clear-section-heading { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.clear-section-heading > p { margin: 0 0 8px; color: var(--clear-red); font-size: .78rem; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.clear-section-heading h2 { margin: 0; max-width: 900px; font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.15; }
.clear-coverage-cards { margin-top: 38px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.clear-coverage-card { min-width: 0; padding: 40px; display: flex; flex-direction: column; border-radius: 24px; color: #fff; background: var(--coverage-color); border-bottom: 7px solid var(--coverage-edge); }
.clear-personal-card { --coverage-color: var(--clear-red); --coverage-edge: var(--clear-red-deep); }
.clear-business-card { --coverage-color: var(--clear-blue); --coverage-edge: var(--clear-blue-deep); }
.clear-card-heading h3 { margin: 0; font-size: clamp(2.75rem, 4.8vw, 4.25rem); font-weight: 700; line-height: 1.12; letter-spacing: normal; }
.clear-card-heading p { margin: 16px 0 0; max-width: 28ch; font-size: 1.125rem; line-height: 1.55; }
.clear-coverage-card ul { list-style: none; padding: 24px 0 0; margin: 28px 0 34px; border-top: 1px solid rgba(255,255,255,.4); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); gap: 13px 20px; }
.clear-coverage-card li { padding: 0; font-size: 1rem; line-height: 1.5; }
.clear-coverage-card > a { margin-top: auto; min-height: 58px; padding: 14px 22px; border: 2px solid #fff; border-radius: 12px; background: #fff; color: var(--coverage-edge); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1rem; font-weight: 650; line-height: 1.4; transition: background-color .18s ease, color .18s ease; }
.clear-coverage-card > a span { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.clear-coverage-card > a:hover { background: var(--coverage-edge); color: #fff; }
.clear-site a:focus-visible, .clear-site button:focus-visible { outline: 3px solid var(--clear-red); outline-offset: 5px; }
.clear-coverage-card > a:focus-visible { outline-color: #fff; background: var(--coverage-edge); color: #fff; }
.clear-coverage-row { margin-top: 64px; border-top: 2px solid var(--clear-ink); }
.clear-coverage-row article { min-height: 170px; padding: 30px 0; display: grid; grid-template-columns: 70px 1fr auto; gap: 30px; align-items: center; border-bottom: 1px solid var(--clear-line); }
.clear-index { align-self: start; padding-top: 10px; color: var(--clear-red); font-size: .74rem; font-weight: 850; }
.clear-coverage-row article:nth-child(1) { border-left: 5px solid var(--clear-red); padding-left: 24px; }
.clear-coverage-row article:nth-child(2) { border-left: 5px solid var(--clear-blue); padding-left: 24px; }
.clear-coverage-row article:nth-child(2) .clear-index,
.clear-coverage-row article:nth-child(2) > a span { color: var(--clear-blue); }
.clear-coverage-row h3 { margin: 0; font-size: clamp(2.4rem, 4.7vw, 4.7rem); letter-spacing: -.055em; line-height: 1; }
.clear-coverage-row p { margin: 13px 0 0; color: var(--clear-muted); font-size: 1rem; line-height: 1.6; }
.clear-coverage-row article > a { min-width: 150px; display: flex; justify-content: space-between; gap: 26px; font-size: .9rem; font-weight: 790; }
.clear-coverage-row article > a span { color: var(--clear-red); }
.clear-fine { margin: 22px 0 0; color: var(--clear-muted); font-size: .8125rem; line-height: 1.6; }

.clear-service { padding: 92px 0 44px; background: var(--clear-blue-deep); border-top: 9px solid var(--clear-red); color: var(--clear-white); }
.clear-service-inner { display: grid; grid-template-columns: 1.05fr .8fr auto; gap: 64px; align-items: center; }
.clear-service .clear-kicker { margin-bottom: 16px; color: #ff9da1; }
.clear-service h2 { margin: 0; font-size: clamp(3.3rem, 5.8vw, 6rem); letter-spacing: -.065em; line-height: .9; }
.clear-service-inner > p { margin: 0; color: #e6ebff; font-size: 1.13rem; line-height: 1.55; }
.clear-service-actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.clear-button-light { background: var(--clear-white); color: var(--clear-blue-deep) !important; white-space: nowrap; }
.clear-button-light:hover, .clear-button-light:focus-visible { background: var(--clear-red); color: var(--clear-white) !important; }
.clear-service-actions > a:last-child { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.7); font-size: .9rem; font-weight: 740; }
.clear-service-note { margin-top: 62px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.28); color: #d7e0ff; font-size: .76rem; line-height: 1.55; }

.clear-about { padding-block: 54px 100px; display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 90px; align-items: center; }
.clear-advisor-photo { position: relative; margin: 0 0 12px; border-radius: 18px; overflow: hidden; box-shadow: 12px 12px 0 var(--clear-sky); }
.clear-advisor-photo > img { display: block; width: 100%; height: 510px; object-fit: cover; object-position: center 20%; }
.clear-advisor-caption { position: absolute; bottom: 0; inset-inline: 0; padding: 22px 26px; display: flex; flex-direction: column; gap: 4px; color: #fff; background: var(--clear-blue-deep); border-top: 4px solid var(--clear-red); }
.clear-advisor-caption strong { font-size: 1.125rem; }
.clear-advisor-caption span { font-size: .875rem; color: #d6e4fa; }
.clear-about-label { color: var(--clear-red); font-size: .78rem; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.clear-about-copy h2 { max-width: 680px; margin: 0; font-size: clamp(3.5rem, 5.6vw, 5.6rem); font-weight: 740; letter-spacing: -.03em; line-height: 1.04; }
.clear-about-copy h2 span { color: var(--clear-blue); }
.clear-about-copy > p:not(.clear-kicker) { max-width: 560px; margin: 24px 0 0; color: var(--clear-muted); font-size: 1.0625rem; line-height: 1.7; }
.clear-about-copy > p.clear-kicker { margin: 0 0 22px; }
.clear-about-copy a { margin-top: 30px; padding-bottom: 6px; display: inline-flex; gap: 36px; border-bottom: 1px solid var(--clear-ink); font-weight: 760; }

.clear-contact { padding-block: 88px; background: #f3f6fa; border-top: 1px solid #e0e7ef; }
.clear-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.clear-contact-copy h2 { margin: 0; font-size: clamp(3rem, 5vw, 5rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.08; }
.clear-contact-copy > p:not(.clear-kicker) { max-width: 480px; margin: 28px 0 0; color: var(--clear-muted); font-size: 1.07rem; line-height: 1.58; }
.clear-contact-copy dl { margin: 48px 0 0; }
.clear-contact-copy dl div { padding: 19px 0; display: grid; grid-template-columns: 115px 1fr; gap: 20px; border-top: 1px solid var(--clear-line); }
.clear-contact-copy dt { color: var(--clear-muted); font-size: .78rem; font-weight: 720; }
.clear-contact-copy dd { margin: 0; font-size: .94rem; line-height: 1.5; overflow-wrap: anywhere; }
.clear-form { padding: 38px; display: flex; flex-direction: column; gap: 22px; background: var(--clear-white); border: 1px solid var(--clear-line); border-top: 5px solid var(--clear-blue); border-radius: 18px; box-shadow: 0 8px 26px rgba(11,16,32,.04); }
.clear-form label { display: flex; flex-direction: column; gap: 9px; color: #3c4352; font-size: .875rem; font-weight: 650; }
.clear-form input, .clear-form select, .clear-form textarea { width: 100%; min-height: 49px; padding: 12px 13px; border: 1px solid #c9ced9; border-radius: 3px; background: #fff; color: var(--clear-ink); font: inherit; font-size: 1rem; line-height: 1.35; }
.clear-form textarea { resize: vertical; }
.clear-form input:focus, .clear-form select:focus, .clear-form textarea:focus { outline: 3px solid rgba(20,84,195,.17); border-color: var(--clear-blue); }
.clear-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.clear-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.clear-consent { display: grid !important; grid-template-columns: 18px 1fr; gap: 12px !important; align-items: start; font-weight: 480 !important; font-size: .8125rem !important; line-height: 1.55; }
.clear-consent input { width: 18px; min-height: 18px; height: 18px; margin-top: 2px; padding: 0; }
.clear-warning { margin: -10px 0 0; padding: 0; color: #4d5b6e; font-size: .8125rem; line-height: 1.6; }
.clear-submit { align-self: flex-start; }
.clear-form-status { min-height: 1.3em; margin: -8px 0 0; color: var(--clear-blue-deep); font-size: .8rem; font-weight: 680; }
.clear-form-legal { margin: -12px 0 0; color: var(--clear-muted); font-size: .8125rem; line-height: 1.6; }

.clear-footer { padding: 44px 0 26px; background: #fff; border-top: 3px solid var(--clear-blue); color: var(--clear-blue-deep); }
.clear-footer .clear-logo { padding: 8px; background: #fff; }
.clear-footer-main { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.clear-footer-main nav { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-end; gap: 14px 24px; font-size: .875rem; line-height: 1.6; }
.clear-footer-main nav a:hover { color: var(--clear-red); }
.clear-footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: .875rem; }
.clear-footer-contact > strong { margin-bottom: 4px; font-size: 1.125rem; }
.clear-footer-main address { color: var(--clear-muted); font-size: .875rem; font-style: normal; line-height: 1.6; text-align: left; }
.clear-footer-main address strong { color: #fff; }
.clear-licenses { margin-top: 28px; padding: 20px 0 0; display: flex; flex-wrap: wrap; gap: 12px 28px; border-top: 1px solid var(--clear-line); color: #3f4f65; font-size: .8125rem; line-height: 1.6; }
.clear-footer-note { margin-block: 10px 0; color: var(--clear-muted); font-size: .8125rem; line-height: 1.6; }
.clear-footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; color: var(--clear-muted); font-size: .8125rem; }

@media (max-width: 940px) {
  .clear-header-inner { grid-template-columns: 160px 1fr auto; gap: 25px; }
  .clear-logo { width: 160px; }
  .clear-nav { gap: 21px; }
  .clear-hero-grid { grid-template-columns: 1fr .9fr; gap: 30px; min-height: 410px; }
  .clear-coverage-card { padding: 30px; }
  .clear-about { gap: 46px; }
  .clear-portrait-wrap { min-height: 540px; }
  .clear-service-inner { grid-template-columns: 1fr 1fr; }
  .clear-service-actions { grid-column: 2; }
  .clear-contact-grid { gap: 58px; }
  .clear-footer-main { grid-template-columns: 1fr 1fr; }
  .clear-footer-main address { text-align: left; }
  .clear-licenses { grid-template-columns: 1fr 1fr; }
  .clear-licenses span:last-child { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 720px) {
  .clear-shell { width: min(100% - 32px, 620px); }
  .clear-header-inner { min-height: 130px; grid-template-columns: 120px 1fr 42px; gap: 10px; }
  .clear-logo { width: 120px; }
  .clear-call { justify-self: end; min-height: 42px; padding: 0 15px; font-size: .78rem; }
  .clear-menu { grid-column: 3; grid-row: 1; width: 42px; height: 42px; padding: 10px 8px; border: 0; display: flex; flex-direction: column; justify-content: center; gap: 7px; background: transparent; }
  .clear-menu > span:not(.sr-only) { width: 100%; height: 2px; background: var(--clear-ink); }
  .clear-nav { position: absolute; top: 100%; left: 0; right: 0; padding: 12px 20px 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--clear-line); box-shadow: 0 12px 24px rgba(11,16,32,.1); }
  .clear-nav-open { display: flex; }
  .clear-nav a { padding: 13px 5px; border-bottom: 1px solid var(--clear-line); }
  .clear-nav a:last-child { border-bottom: 0; }

  .clear-hero { padding: 26px 0 48px; }
  .clear-lake-scene { object-position: 18% center; opacity: .8; }
  .clear-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 20px; }
  .clear-hero-copy { padding: 12px 0 0; order: 2; }
  .clear-hero-brand { order: 1; }
  .clear-hero-brand img { width: min(68vw, 290px); }
  .clear-kicker { margin-bottom: 20px; font-size: .8125rem; letter-spacing: .05em; }
  .clear-hero h1 { font-size: clamp(2.5rem, 10vw, 3.6rem); }
  .clear-lead { margin-top: 27px; font-size: 1.04rem; }
  .clear-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .clear-button { width: 100%; }
  .clear-text-link { width: fit-content; }
  .clear-portrait-wrap { min-height: 500px; }
  .clear-portrait { inset: 0 12px 0 18px; border-radius: 3px 3px 70px 3px; box-shadow: 10px 10px 0 var(--clear-blue); }
  .clear-nameplate { bottom: 24px; width: 72%; padding: 18px; }

  .clear-coverage { padding-block: 56px 32px; }
  .clear-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .clear-section-heading h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .clear-coverage-cards { grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
  .clear-coverage-card { padding: 28px; border-radius: 20px; }
  .clear-coverage-row { margin-top: 42px; }
  .clear-coverage-row article { padding: 28px 0; grid-template-columns: 35px 1fr; gap: 16px; }
  .clear-index { padding-top: 7px; }
  .clear-coverage-row h3 { font-size: 3.1rem; }
  .clear-coverage-row article > a { grid-column: 2; min-width: 0; width: fit-content; margin-top: 3px; gap: 28px; }

  .clear-service { padding-top: 72px; }
  .clear-service-inner { grid-template-columns: 1fr; gap: 30px; }
  .clear-service h2 { font-size: clamp(3.7rem, 16vw, 5rem); }
  .clear-service-actions { grid-column: auto; }
  .clear-service-note { margin-top: 42px; }

  .clear-about { padding-block: 36px 64px; grid-template-columns: 1fr; gap: 42px; }
  .clear-advisor-photo { max-width: 440px; width: calc(100% - 12px); margin-inline: auto; }
  .clear-advisor-photo > img { height: 460px; }
  .clear-about-copy h2 { font-size: clamp(3.3rem, 14vw, 4.8rem); }

  .clear-contact { padding-block: 76px; }
  .clear-contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .clear-contact-copy h2 { font-size: clamp(3rem, 12vw, 4.3rem); }
  .clear-contact-copy dl { margin-top: 36px; }
  .clear-contact-copy dl div { grid-template-columns: 90px 1fr; }
  .clear-form { padding: 27px 20px; border-radius: 16px; }
  .clear-form-row { grid-template-columns: 1fr; }
  .clear-submit { width: 100%; }

  .clear-footer { padding-top: 32px; }
  .clear-footer-main { grid-template-columns: 1fr; gap: 32px; }
  .clear-footer-main nav { justify-content: flex-start; gap: 12px 20px; }
  .clear-footer-main address { grid-column: auto; }
  .clear-licenses { margin-top: 24px; flex-direction: column; gap: 6px; }
  .clear-licenses span:last-child { grid-column: auto; }
  .clear-footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .clear-site *, .clear-site *::before, .clear-site *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* v5.5 — centered brand-led hero and an interactive coverage explorer. */
.clear-site { --clear-ink: #062653; }
.clear-header-inner { min-height: 88px; grid-template-columns: minmax(240px, 1fr) auto auto; gap: 38px; }
.clear-wordmark { width: fit-content; font-size: 1.125rem; font-weight: 750; line-height: 1.4; }
.clear-wordmark span { font-size: .8125rem; font-weight: 600; }
.clear-call, .clear-button-dark { background: var(--clear-blue); }
.clear-call:hover, .clear-button-dark:hover { background: var(--clear-blue-deep); }
.clear-site h1, .clear-site h2, .clear-site h3 { letter-spacing: normal; line-height: 1.15; }
.clear-cabin-hero { padding: 20px 0 64px; background: #fff; isolation: isolate; }
.clear-cabin-hero .clear-lake-scene { inset: auto auto 0 0; width: min(64%, 1060px); height: auto; object-fit: contain; object-position: left bottom; opacity: 1; z-index: -2; }
.clear-cabin-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(90deg, transparent 12%, rgba(255,255,255,.68) 30%, #fff 49%); }
.clear-cabin-hero .clear-hero-grid { min-height: 0; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.clear-cabin-hero .clear-hero-brand { width: 100%; justify-content: center; }
.clear-cabin-hero .clear-hero-brand img { width: min(100%, 430px); height: auto; }
.clear-cabin-hero .clear-hero-copy { max-width: 760px; min-width: 0; width: 100%; padding: 0; align-items: center; text-align: center; }
.clear-cabin-hero .clear-kicker { margin-bottom: 18px; color: var(--clear-blue); font-size: .875rem; font-weight: 700; letter-spacing: .035em; line-height: 1.65; }
.clear-cabin-hero h1 { max-width: 760px; color: var(--clear-red); font-size: clamp(2.35rem, 4.4vw, 3.65rem); font-weight: 750; }
.clear-cabin-hero h1 span { color: var(--clear-blue); }
.clear-cabin-hero .clear-lead { max-width: 660px; margin-top: 20px; color: var(--clear-blue-deep); font-size: 1.1875rem; }
.clear-cabin-hero .clear-actions { margin-top: 28px; gap: 16px; flex-direction: row; flex-wrap: wrap; justify-content: center; }
.clear-cabin-hero .clear-button-dark { background: var(--clear-red); }
.clear-cabin-hero .clear-button-dark:hover { background: var(--clear-red-deep); }
.clear-cabin-hero .clear-text-link { min-height: 54px; padding: 14px 24px; border: 2px solid var(--clear-blue); border-radius: 999px; color: var(--clear-blue); background: #fff; }
.clear-cabin-hero .clear-text-link:hover { background: var(--clear-sky); }
.clear-coverage .clear-section-heading { align-items: center; gap: 8px; text-align: center; }
.clear-coverage .clear-section-heading h2 { font-size: clamp(2rem, 3.7vw, 3rem); font-weight: 750; }
.clear-explorer { --explorer-accent: var(--clear-red); --explorer-tint: var(--clear-red-soft); margin-top: 34px; border: 1px solid #d9e3f0; border-radius: 24px; overflow: hidden; }
.clear-explorer-business { --explorer-accent: var(--clear-blue); --explorer-tint: var(--clear-sky); }
.clear-coverage-switch { min-width: 0; margin: 0; padding: 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border: 0; border-bottom: 1px solid #d9e3f0; background: #f3f6fb; }
.clear-coverage-choice { position: relative; min-width: 0; cursor: pointer; }
.clear-coverage-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.clear-coverage-choice > span { min-height: 92px; padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 2px solid transparent; border-radius: 17px; color: var(--clear-blue); transition: background-color .18s ease, color .18s ease; }
.clear-coverage-choice strong { font-size: clamp(1.1rem, 2.2vw, 1.6rem); font-weight: 750; line-height: 1.35; }
.clear-coverage-choice small { font-size: .875rem; line-height: 1.45; }
.clear-choice-personal input:checked + span { color: #fff; background: var(--clear-red); }
.clear-choice-business input:checked + span { color: #fff; background: var(--clear-blue); }
.clear-coverage-choice input:focus-visible + span { outline: 3px solid var(--clear-blue-deep); outline-offset: -5px; border-color: #fff; }
.clear-coverage-choice:hover input:not(:checked) + span { background: #e4ecf8; }
.clear-explorer-content { padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; border-bottom: 5px solid var(--explorer-accent); }
.clear-explorer-intro .clear-kicker { color: var(--explorer-accent); font-size: .875rem; margin-bottom: 16px; }
.clear-explorer-intro h3 { max-width: 15ch; margin: 0; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 750; }
.clear-explorer-intro > p:not(.clear-kicker) { margin: 20px 0 0; max-width: 30ch; color: #455b77; font-size: 1rem; line-height: 1.6; }
.clear-explorer-cta { margin-top: 28px; padding: 16px 20px; min-height: 54px; border-radius: 12px; background: var(--explorer-accent); color: #fff !important; line-height: 1.45; }
.clear-explorer-cta:hover { background: var(--clear-blue-deep); }
.clear-coverage-options { min-width: 0; }
.clear-coverage-option { border-bottom: 1px solid #d9e3f0; }
.clear-coverage-option:first-child { border-top: 1px solid #d9e3f0; }
.clear-coverage-option summary { min-height: 62px; padding: 16px 12px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: 1.0625rem; font-weight: 700; line-height: 1.5; cursor: pointer; list-style: none; }
.clear-coverage-option summary::-webkit-details-marker { display: none; }
.clear-coverage-option summary:hover, .clear-coverage-option[open] summary { color: var(--explorer-accent); background: var(--explorer-tint); }
.clear-coverage-option summary:focus-visible { outline: 3px solid var(--clear-blue); outline-offset: -3px; }
.clear-disclosure-icon { position: relative; width: 24px; height: 24px; flex-shrink: 0; color: var(--explorer-accent); }
.clear-disclosure-icon::before, .clear-disclosure-icon::after { content: ""; position: absolute; top: 11px; left: 5px; width: 14px; height: 2px; background: currentColor; }
.clear-disclosure-icon::after { transform: rotate(90deg); }
.clear-coverage-option[open] .clear-disclosure-icon::after { transform: rotate(0); }
.clear-coverage-option > p { padding: 0 12px 18px; margin: 12px 0 0; color: #455b77; font-size: 1rem; line-height: 1.65; }
.clear-coverage > .clear-fine { text-align: center; }
.clear-about-copy h2, .clear-contact-copy h2 { color: var(--clear-blue); }
.clear-about-copy h2 span { color: var(--clear-red); }
.clear-about-copy a { color: var(--clear-blue); border-color: var(--clear-blue); }
@media (max-width: 940px) {
  .clear-header-inner { grid-template-columns: minmax(190px, 1fr) auto auto; gap: 22px; }
  .clear-nav { gap: 20px; }
  .clear-cabin-hero .clear-lake-scene { width: 78%; }
  .clear-cabin-hero::after { background: linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,.85) 28%, #fff 58%); }
  .clear-explorer-content { padding: 32px; gap: 30px; }
}
@media (max-width: 720px) {
  .clear-header-inner { min-height: 82px; grid-template-columns: minmax(0, 1fr) auto 42px; gap: 8px; }
  .clear-wordmark { max-width: 190px; font-size: 1rem; }
  .clear-wordmark span { font-size: .75rem; }
  .clear-call { grid-column: 2; grid-row: 1; padding-inline: 12px; }
  .clear-cabin-hero { padding: 16px 0 48px; }
  .clear-cabin-hero .clear-hero-grid { gap: 20px; }
  .clear-cabin-hero .clear-hero-brand img { width: min(100%, 340px); }
  .clear-cabin-hero .clear-lake-scene { width: 100%; }
  .clear-cabin-hero::after { background: rgba(255,255,255,.9); }
  .clear-cabin-hero .clear-kicker { max-width: 29ch; font-size: .8125rem; }
  .clear-cabin-hero h1 { font-size: clamp(2.15rem, 8vw, 3.15rem); }
  .clear-cabin-hero .clear-lead { max-width: 30ch; font-size: 1.0625rem; }
  .clear-cabin-hero .clear-actions { width: 100%; gap: 12px; }
  .clear-cabin-hero .clear-actions a { width: 100%; max-width: 360px; }
  .clear-coverage-switch { gap: 6px; padding: 6px; }
  .clear-coverage-choice > span { min-height: 108px; padding: 14px 12px; border-radius: 16px; }
  .clear-coverage-choice strong { font-size: 1.0625rem; }
  .clear-coverage-choice small { font-size: .8125rem; }
  .clear-explorer-content { padding: 28px 20px; grid-template-columns: 1fr; gap: 28px; }
  .clear-explorer-intro h3 { max-width: 23ch; }
  .clear-explorer-intro > p:not(.clear-kicker) { max-width: none; }
  .clear-explorer-cta { width: 100%; margin-top: 22px; }
}

/* v5.6 — 40% cabin scenery, 60% centered brand and copy. */
.clear-split-hero.clear-cabin-hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  min-height: 900px;
  padding: 0;
  background: #fff;
}
.clear-split-hero.clear-cabin-hero::after { content: none; }
.clear-split-hero .clear-hero-scenery { position: relative; min-width: 0; overflow: hidden; background: #102747; }
.clear-split-hero.clear-cabin-hero .clear-lake-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% bottom;
  opacity: 1;
  z-index: auto;
}
.clear-split-hero.clear-cabin-hero .clear-hero-grid {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 36px clamp(28px, 3vw, 64px) 60px;
  gap: 24px;
  justify-content: center;
}
.clear-split-hero.clear-cabin-hero .clear-hero-brand img { width: min(100%, 460px); }
.clear-split-hero.clear-cabin-hero .clear-hero-copy { max-width: 740px; }
.clear-split-hero.clear-cabin-hero h1 { font-size: clamp(2.6rem, 4.2vw, 4.25rem); line-height: 1.16; }
.clear-split-hero.clear-cabin-hero .clear-lead { max-width: 34ch; font-size: 1.25rem; }
.clear-split-hero.clear-cabin-hero .clear-actions { width: 100%; gap: 16px; }
@media (max-width: 1100px) and (min-width: 721px) {
  .clear-split-hero.clear-cabin-hero { min-height: 800px; }
  .clear-split-hero.clear-cabin-hero .clear-hero-grid { padding-inline: 22px; }
  .clear-split-hero.clear-cabin-hero .clear-hero-brand img { width: min(100%, 390px); }
  .clear-split-hero.clear-cabin-hero h1 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
  .clear-split-hero.clear-cabin-hero .clear-lake-scene { object-position: 35% bottom; }
  .clear-split-hero.clear-cabin-hero .clear-actions { flex-direction: column; }
  .clear-split-hero.clear-cabin-hero .clear-actions a { width: 100%; max-width: 320px; }
}
@media (max-width: 720px) {
  .clear-split-hero.clear-cabin-hero { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .clear-split-hero .clear-hero-scenery { height: clamp(270px, 60vw, 420px); }
  .clear-split-hero.clear-cabin-hero .clear-lake-scene { object-position: left bottom; }
  .clear-split-hero.clear-cabin-hero .clear-hero-grid { padding: 24px 20px 48px; gap: 20px; }
  .clear-split-hero.clear-cabin-hero .clear-hero-brand img { width: min(100%, 340px); }
  .clear-split-hero.clear-cabin-hero h1 { font-size: clamp(2rem, 7.5vw, 3rem); }
  .clear-split-hero.clear-cabin-hero .clear-lead { font-size: 1.0625rem; }
}

/* v5.7 - Kristi's coverage, service, and story updates. */
.clear-header-inner { gap: 26px; }
.clear-nav { gap: 24px; }
.clear-business-image { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 12px; margin-top: 24px; }
.clear-scene-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.clear-scene-choices button { min-width: 0; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 8px; background: #fff; color: var(--clear-blue); font: inherit; cursor: pointer; text-align: left; }
.clear-scene-choices button img { display: block; width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; }
.clear-scene-choices button span { display: block; padding: 8px; font-size: .875rem; font-weight: 600; line-height: 1.4; }
.clear-scene-choices button[aria-pressed="true"] { border-color: var(--clear-red); background: #fff6f5; }
.clear-scene-choices button:hover { border-color: var(--clear-blue); }
.clear-scene-choices button:focus-visible { outline: 3px solid var(--clear-blue); outline-offset: 3px; }
.clear-provider-link { display: block; margin-top: 20px; text-decoration: underline !important; }
.clear-about-copy h3 { margin: 28px 0 12px; color: var(--clear-blue); font-size: 1.4rem; }
.clear-about { align-items: start; }
.clear-why, .clear-resources { padding-block: 55px 70px; }
.clear-why .clear-section-heading, .clear-customer-service .clear-section-heading, .clear-resources .clear-section-heading { display: block; }
.clear-why h2, .clear-customer-service h2, .clear-resources h2 { max-width: 24ch; margin: 12px 0 0; font-size: clamp(1.9rem,3.1vw,2.8rem); }
.clear-service-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; margin-top: 36px; }
.clear-service-cards article { padding: 28px 0 8px; border-top: 3px solid var(--clear-blue); }
.clear-card-number { color: var(--clear-red); font-size: .875rem; font-weight: 700; }
.clear-service-cards h3 { margin: 16px 0 12px; font-size: 1.35rem; }
.clear-service-cards p { margin: 0; color: #455b77; line-height: 1.75; font-size: 1rem; }
.clear-service-cards a { display: inline-block; margin-top: 22px; font-weight: 650; color: var(--clear-blue); text-decoration: underline; text-underline-offset: 5px; }
.clear-customer-service { padding-block: 66px; background: #f3f6fb; }
.clear-customer-service .clear-fine { margin-top: 30px; max-width: 100ch; }
.clear-resource-links { margin-top: 34px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--clear-line); border-bottom: 1px solid var(--clear-line); }
.clear-resource-links a { padding: 28px; display: flex; flex-direction: column; gap: 12px; border-right: 1px solid var(--clear-line); }
.clear-resource-links a:first-child { padding-left: 0; }
.clear-resource-links a:last-child { border-right: 0; }
.clear-resource-links a:hover { background: var(--clear-sky); }
.clear-resource-links strong { font-size: 1.2rem; }
.clear-resource-links span { color: #455b77; line-height: 1.65; }
.clear-carrier-directory { margin-top: 36px; }
.clear-carrier-directory > h3 { margin: 0 0 16px; color: var(--clear-blue); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; }
.clear-carrier-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); column-gap: 32px; }
.clear-carrier-directory article { display: flex; flex-direction: column; gap: 6px; padding: 18px 0; border-bottom: 1px solid var(--clear-line); align-items: flex-start; }
.clear-carrier-directory h4 { margin: 0; }
.clear-carrier-directory > p { max-width: 760px; color: #455b77; line-height: 1.65; }
.clear-carrier-directory { scroll-margin-top: 100px; }
.clear-carrier-directory a { text-decoration: underline; }
.clear-footer-main nav { flex-wrap: wrap; }
.clear-resource-header { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 20px; }
.clear-resource-header nav { display: flex; flex-wrap: wrap; gap: 12px 24px; font-size: .9375rem; }
.clear-resource-body { max-width: 880px; padding-block: 40px 80px; }
.clear-back-link { display: inline-block; margin-bottom: 44px; color: var(--clear-blue) !important; text-decoration: underline !important; text-underline-offset: 4px; }
.clear-resource-body .clear-kicker { margin-bottom: 15px; }
.clear-resource-body h1 { max-width: 19ch; font-size: clamp(2.1rem,5vw,3.7rem); margin: 0; }
.clear-resource-lead { max-width: 65ch; margin: 26px 0 42px; color: #455b77; font-size: 1.1875rem; line-height: 1.75; }
.clear-resource-content { font-size: 1rem; line-height: 1.8; }
.clear-resource-content h2 { font-size: 1.6rem; margin: 0 0 16px; }
.clear-resource-content p { margin: 0 0 22px; }
.clear-resource-content a:not(.clear-button) { text-decoration: underline; text-underline-offset: 4px; }
.clear-resource-content article { border-top: 1px solid var(--clear-line); padding-block: 32px; }
.clear-insurance-frame { display: block; width: 100%; max-width: 100%; border: 0; background: #fff; }
.clear-resource-content li { margin-block: 8px; }
.clear-claims-steps { padding-left: 25px; }
.clear-claims-steps > li { padding: 10px 0 22px 14px; }
.clear-claims-steps > li::marker { color: var(--clear-red); font-weight: 700; }
.clear-resource-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-block: 30px; }
.clear-source-note, .clear-resource-content .clear-fine { font-size: .875rem; color: #455b77; }
.clear-referral-contact { padding: 28px; border-left: 4px solid var(--clear-red); background: var(--clear-sky); display: flex; flex-direction: column; gap: 7px; overflow-wrap: anywhere; }
.clear-resource-page a:focus-visible, .clear-resource-page button:focus-visible, .clear-resource-links a:focus-visible { outline: 3px solid var(--clear-blue); outline-offset: 4px; }
@media (max-width: 1020px) and (min-width: 721px) { .clear-header-inner { gap: 14px; grid-template-columns: minmax(200px,1fr) auto auto; } .clear-nav { gap: 14px; font-size: .875rem; } .clear-wordmark { font-size: 1rem; } }
@media (max-width: 720px) {
 .clear-service-cards, .clear-resource-links { grid-template-columns: 1fr; gap: 16px; }
 .clear-why, .clear-resources { padding-block: 42px; }
 .clear-customer-service { padding-block: 46px; }
 .clear-resource-links a, .clear-resource-links a:first-child { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--clear-line); }
 .clear-resource-links a:last-child { border-bottom: 0; }
 .clear-resource-header { align-items: start; flex-direction: column; gap: 12px; }
 .clear-resource-body { padding-block: 28px 48px; }
 .clear-resource-actions { align-items: stretch; flex-direction: column; }
 .clear-footer-main nav { justify-content: flex-start; }
 .clear-business-image { margin-top: 22px; }
}

/* Keep both insurance portals easy to find in the header. */
.clear-nav a, .clear-resource-header nav a { white-space: nowrap; }
.clear-portal-nav-link { font-weight: 700; }
@media (max-width: 1100px) {
  .clear-header-inner .clear-nav { width: 100%; justify-self: stretch; gap: 0; }
}
@media (min-width: 721px) and (max-width: 1100px) {
  .clear-header-inner { grid-template-columns: minmax(0, 1fr) auto 42px; gap: 14px; }
  .clear-call { grid-column: 2; grid-row: 1; }
  .clear-menu { grid-column: 3; grid-row: 1; width: 42px; height: 42px; padding: 10px 8px; border: 0; display: flex; flex-direction: column; justify-content: center; gap: 7px; background: transparent; }
  .clear-menu > span:not(.sr-only) { width: 100%; height: 2px; background: var(--clear-ink); }
  .clear-nav { position: absolute; top: 100%; left: 0; right: 0; padding: 12px 20px 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--clear-line); box-shadow: 0 12px 24px rgba(11,16,32,.1); font-size: .9375rem; }
  .clear-nav-open { display: flex; }
  .clear-nav a { padding: 13px 5px; border-bottom: 1px solid var(--clear-line); }
  .clear-nav a:last-child { border-bottom: 0; }
}

/* Preserve the approved section geometry inside Elementor's editing wrappers. */
.gp-stage-layout > .elementor, .gp-stage-layout .elementor-section-wrap,
.gp-stage-layout .elementor-section, .gp-stage-layout .elementor-container,
.gp-stage-layout .elementor-column, .gp-stage-layout .elementor-widget-wrap,
.gp-stage-layout .elementor-widget, .gp-stage-layout .elementor-widget-container { display: contents !important; }
.gp-stage-layout [hidden] { display: none !important; }
.gp-stage-layout .elementor-widget:not(:last-child) { margin: 0; }
.gp-stage-layout button:disabled,.gp-stage-layout input:disabled,.gp-stage-layout select:disabled,.gp-stage-layout textarea:disabled{cursor:not-allowed;opacity:.7}
.gp-stage-layout .gp-preview-form-note{margin-bottom:20px}
.gp-stage-layout .clear-form-status:empty{display:none}
.elementor-editor-active .gp-stage-layout .elementor-widget{display:block !important;min-height:30px;width:100%}
.gp-draft-preview{margin-top:20px;padding:16px;border:1px solid #cbd5d1;border-radius:8px;background:#fff}
.gp-draft-preview summary{cursor:pointer;font-weight:600}
.gp-draft-preview pre{white-space:pre-wrap;overflow-wrap:anywhere;margin:12px 0 0;font:inherit;font-size:14px;line-height:1.6}
.gp-back-to-top{position:fixed;right:max(20px,env(safe-area-inset-right));bottom:max(20px,env(safe-area-inset-bottom));z-index:40;display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:48px;padding:12px 18px;border:1px solid #fff;border-radius:999px;background:var(--clear-blue-deep);color:var(--clear-white);font-family:var(--font-geist-sans),Arial,sans-serif;font-size:14px;font-weight:600;line-height:1.3;cursor:pointer}
.gp-back-to-top[hidden]{display:none}
.gp-back-to-top:hover{background:var(--clear-blue)}
.gp-back-to-top:focus-visible{outline:3px solid var(--clear-red);outline-offset:4px}
@media(max-width:600px){.gp-back-to-top{right:max(12px,env(safe-area-inset-right));bottom:max(12px,env(safe-area-inset-bottom));padding:10px 14px}}
@media print{.gp-back-to-top{display:none}}
