﻿/* WordPress resets */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #fff; }
ul { margin: 0; padding: 0; }
button { font: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
/* ==========================================================================
   Site stylesheet â€” 1:1 recreation of the source layout.
   Fonts: Gilroy (headings/UI), Inter (body), Be Cool (handwritten accents)
   ========================================================================== */

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500 600;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.ttf") format("truetype");
  font-weight: 800 900;
  font-display: swap;
}
@font-face {
  font-family: "Be Cool";
  src: url("../fonts/Be-Cool-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --navy: #0a1b2e;
  --navy-2: #050f1c;
  --steel: #24457a;
  --blue: #1b4f9b;
  --blue-2: #4a7cc0;
  --sky: #1b6fc4;
  --orange: #4a9d2f;
  --orange-2: #3d8a25;
  --orange-3: #2f6d1b;
  --green: #4a9d2f;
  --green-strip: #5cb63a;
  --ink: #2c2c2c;
  --grey: #6c6c6c;
  --bg-sky: #eef4fb;
  --bg-steel: #eef2f6;
  --bg-mint: #eff7ea;
  --bg-peach: #f3f9ee;
  --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.1);
  --gutter: 60px;
  --content: 1160px;
}

.site {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #333;
  overflow-x: hidden;
}
.site a {
  text-decoration: none;
  color: inherit;
}
.site img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: 100%;
  padding-inline: var(--gutter);
}
.inner {
  max-width: var(--content);
  margin-inline: auto;
  width: 100%;
}

/* ---------------- typography ---------------- */
.h2 {
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -1px;
  color: var(--navy);
  text-align: center;
  margin: 0;
}
.lede {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--ink);
  text-align: center;
  margin: 0;
  max-width: 800px;
}
.eyebrow {
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}
.script {
  font-family: "Be Cool", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: var(--blue);
  margin: 0;
}

/* dotted rule label (Why Homeowners Trust Us / Our 3-Step Process) */
.dotted-label {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.dotted-label span {
  font-family: "Be Cool", sans-serif;
  font-size: 22px;
  line-height: 22px;
  white-space: nowrap;
}
.dotted-label::before,
.dotted-label::after {
  content: "";
  flex: 1;
  border-top: 3px dotted currentColor;
  opacity: 0.55;
}
.dotted-label.is-blue {
  color: var(--sky);
}
.dotted-label.is-orange {
  color: var(--orange-2);
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  text-transform: capitalize;
  border-radius: 16000px;
  padding: 24px;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(246, 150, 68, 0.35);
}
.btn-orange:hover {
  background: var(--orange-2);
  box-shadow: 0 0 0 8px rgba(246, 150, 68, 0.18);
}
.btn-ghost {
  background: transparent;
  color: var(--orange-2);
  border: 2px solid rgba(244, 135, 52, 0.35);
}
.btn-ghost:hover {
  background: var(--orange-2);
  color: #fff;
  border-color: var(--orange-2);
}
.btn-sm {
  padding: 16px 22px;
  font-size: 16px;
  line-height: 16px;
}

/* call card (hero + final CTA) */
.call-card {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 16000px;
  padding: 12px 12px 12px 34px;
  box-shadow: 0 12px 40px rgba(6, 31, 53, 0.12);
}
.call-card .call-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.call-card .call-label {
  font-family: "Be Cool", sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: var(--blue);
}
.call-card .call-phone {
  font-family: Gilroy, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: var(--blue);
  border: 2px dashed var(--blue-2);
  border-radius: 16000px;
  padding: 9px 22px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.call-card .call-phone:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ---------------- announcement bar ---------------- */
.announce {
  background: var(--steel);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.announce p {
  margin: 0;
  font-family: "Be Cool", sans-serif;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}
.announce a {
  background: #fff;
  color: var(--steel);
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  border-radius: 3px;
  padding: 4px 6px;
}
.announce a:hover {
  background: var(--bg-sky);
}

/* ---------------- header ---------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
}
.header-inner {
  height: 85px;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-2);
}
.logo .logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.footer .logo .logo-img {
  filter: brightness(0) invert(1);
}
.logo .logo-mark {
  width: 52px;
  height: 46px;
  flex: none;
}
.logo .logo-divider {
  width: 2px;
  height: 44px;
  background: currentColor;
  opacity: 0.85;
}
.logo .logo-type {
  font-family: Gilroy, sans-serif;
  color: currentColor;
  line-height: 1;
}
.logo .logo-type .l1 {
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.logo .logo-type .l2 {
  display: block;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.5px;
}
.logo .logo-type .l3 {
  display: block;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 4.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav > li {
  list-style: none;
  position: relative;
}
.nav a,
.nav button {
  font-family: Gilroy, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.25px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav a:hover,
.nav button:hover {
  color: var(--blue);
}
.nav svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  transition: transform 0.25s ease;
}
.nav .has-dropdown:hover svg {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 14px;
  min-width: 260px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}
.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  font-size: 17px;
  padding: 9px 12px;
  border-radius: 10px;
}
.dropdown a:hover {
  background: var(--bg-sky);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-cta .call {
  text-align: right;
}
.header-cta .call span {
  display: block;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--navy);
}
.header-cta .call a {
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--blue);
}
.header-cta .call a:hover {
  color: var(--orange-2);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
  transition: transform 0.25s ease;
}
.mobile-menu {
  display: none;
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding-bottom: 96px;
}
.hero-media {
  position: relative;
  height: 560px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media video,
.hero-media .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 53, 0.22);
}
.hero-media h1 {
  position: relative;
  z-index: 2;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -1px;
  color: #fff;
  text-align: center;
  margin: 0;
}
.hero-callout {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  z-index: 5;
}

/* ---------------- sky section (situations + trust + guidance) ---------------- */
.sky {
  background: var(--bg-sky);
  position: relative;
  overflow: hidden;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.situations {
  padding-top: 100px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.sit-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.sit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}
.sit-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}
.sit-card h3 {
  margin: 0;
  font-family: Gilroy, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: var(--ink);
  text-align: center;
}
.sit-card p {
  margin: 12px 0 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--grey);
  text-align: center;
}

.trust {
  padding-top: 110px;
  padding-bottom: 120px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.trust-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.13);
}
.trust-card .icon {
  width: 62px;
  height: 62px;
  flex: none;
  color: var(--navy);
}
.trust-card h3 {
  margin: 0 0 4px;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--navy-2);
}
.trust-card p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--grey);
}

/* ---------------- guidance ---------------- */
.guidance {
  position: relative;
  padding-bottom: 0;
}
.guidance .section-head {
  position: relative;
  z-index: 2;
}
.guidance .houses {
  width: min(600px, 100%);
  margin: 30px auto 0;
}
.clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.clouds img {
  position: absolute;
  opacity: 0.95;
}
.cloud-a {
  width: 190px;
  top: 20px;
  left: -60px;
  animation: drift 34s linear infinite;
}
.cloud-b {
  width: 150px;
  top: 130px;
  left: 22%;
  animation: drift 46s linear infinite;
}
.cloud-c {
  width: 210px;
  top: 60px;
  right: -40px;
  animation: driftBack 40s linear infinite;
}
.cloud-d {
  width: 130px;
  top: 250px;
  left: 8%;
  animation: driftBack 52s linear infinite;
}
@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(120px);
  }
}
@keyframes driftBack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-120px);
  }
}

/* green marquee */
.marquee {
  background: var(--green-strip);
  height: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 46px;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  padding-left: 46px;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Be Cool", sans-serif;
  font-size: 22px;
  line-height: 22px;
  color: #fff;
}
.marquee-item svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex: none;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------------- process ---------------- */
.process {
  padding-top: 110px;
  padding-bottom: 120px;
  background: #fff;
}
.process .dotted-label {
  margin-top: 70px;
  max-width: 1000px;
  margin-inline: auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.step-card {
  background: var(--bg-peach);
  border-radius: 15px;
  padding: 26px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-card .icon {
  width: 42px;
  height: 42px;
  flex: none;
  color: var(--orange-2);
}
.step-card h3 {
  margin: 0 0 6px;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--navy-2);
}
.step-card p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey);
}

/* ---------------- testimonials ---------------- */
.testimonials {
  background: var(--bg-steel);
  padding-top: 110px;
  padding-bottom: 120px;
}
.carousel {
  position: relative;
  margin-top: 70px;
  padding-inline: 70px;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 33.3333%;
  padding-inline: 20px;
  box-sizing: border-box;
}
.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 58px 30px 34px;
  margin-top: 32px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 25px rgba(6, 31, 53, 0.08);
}
.testi-card .avatar {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  background: #eee;
}
.testi-card .quote {
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 30px;
  color: var(--orange-2);
  margin: 0 0 18px;
}
.testi-card blockquote {
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--ink);
  text-align: center;
  white-space: pre-line;
}
.testi-card cite {
  margin-top: auto;
  padding-top: 28px;
  font-style: normal;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-2);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--orange);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.carousel-btn svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.carousel-btn:hover {
  color: var(--orange-3);
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn.prev {
  left: 0;
}
.carousel-btn.next {
  right: 0;
}
.testimonials .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ---------------- resources ---------------- */
.resources {
  background: #fff;
  padding-top: 110px;
  padding-bottom: 120px;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 60px auto 0;
}
.post-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 610px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}
.post-card img {
  width: 100%;
  aspect-ratio: 1.17;
  object-fit: cover;
  border-radius: 10px;
}
.post-card h3 {
  margin: 20px 0 0;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--navy-2);
}
.post-card .date {
  margin: 12px 0 0;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-2);
}
.post-card .excerpt {
  position: relative;
  margin: 14px 0 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--grey);
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
.resources .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ---------------- disclaimer ---------------- */
.disclaimer {
  background: var(--orange-3);
  position: relative;
  margin-top: 40px;
  padding: 70px var(--gutter) 60px;
}
.disclaimer .badge {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--orange-3);
  border: 6px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.disclaimer .badge svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.disclaimer p {
  max-width: 900px;
  margin: 0 auto;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  text-align: center;
}
.disclaimer p + p {
  margin-top: 26px;
}

/* ---------------- final CTA ---------------- */
.final-cta {
  background: var(--bg-mint);
  padding-top: 110px;
  overflow: hidden;
}
.final-cta .call-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.final-cta .bottom-house {
  width: min(760px, 100%);
  margin: 46px auto 0;
}

/* ---------------- footer ---------------- */
.footer {
  background: var(--navy);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 70px var(--gutter) 40px;
  color: #fff;
  margin-top: -40px;
  position: relative;
}
.footer-inner {
  max-width: var(--content);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 0.8fr;
  gap: 40px;
}
.footer .logo {
  color: #fff;
}
.footer .tagline {
  margin: 26px 0 0;
  max-width: 340px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.socials a:hover {
  background: var(--orange);
}
.socials svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.footer h4 {
  margin: 0 0 18px;
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer ul a {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.footer ul a:hover {
  color: var(--orange);
}
.footer .copyright {
  max-width: var(--content);
  margin: 60px auto 0;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------------- responsive ---------------- */
@media (max-width: 1200px) {
  :root {
    --gutter: 40px;
  }
  .nav {
    gap: 22px;
  }
  .nav a,
  .nav button {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .announce {
    display: none;
  }
  .nav {
    display: none;
  }
  .header-cta .call {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-inner {
    height: 76px;
  }
  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
    box-shadow: var(--shadow-card);
  }
  .mobile-menu.open {
    max-height: 720px;
    overflow-y: auto;
  }
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 16px 40px 26px;
    display: grid;
    gap: 4px;
  }
  .mobile-menu a {
    display: block;
    padding: 12px 0;
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--navy);
    border-bottom: 1px solid rgba(6, 31, 53, 0.08);
  }
  .mobile-menu .sub a {
    padding-left: 16px;
    font-size: 16px;
    color: var(--grey);
  }
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .hero-media {
    height: 480px;
  }
  .hero-media h1 {
    font-size: 40px;
    line-height: 46px;
  }
  .carousel-slide {
    flex: 0 0 50%;
  }
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-card {
    height: 560px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
  }
  .logo .logo-type .l2 {
    font-size: 20px;
  }
  .logo .logo-type .l1 {
    font-size: 10px;
  }
  .logo .logo-type .l3 {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .logo .logo-mark {
    width: 34px;
    height: 34px;
  }
  .logo .logo-divider {
    height: 34px;
  }
  .header-cta {
    gap: 10px;
  }
  .header-cta .btn {
    white-space: nowrap;
    padding: 9px 14px;
    font-size: 13px;
  }


  .h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .lede {
    font-size: 18px;
    line-height: 27px;
  }
  .hero {
    padding-bottom: 130px;
  }
  .hero-media {
    height: 420px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .hero-media h1 {
    font-size: 30px;
    line-height: 36px;
  }
  .hero-callout {
    bottom: 10px;
    width: calc(100% - 40px);
  }
  .call-card {
    flex-direction: column;
    gap: 18px;
    border-radius: 26px;
    padding: 22px;
    width: 100%;
  }
  .call-card .btn {
    width: 100%;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .situations {
    padding-top: 60px;
  }
  .trust {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .marquee-item {
    font-size: 18px;
  }
  .process,
  .testimonials,
  .resources {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .carousel {
    padding-inline: 0;
  }
  .carousel-slide {
    flex: 0 0 100%;
    padding-inline: 6px;
  }
  .carousel-btn {
    top: auto;
    bottom: -58px;
    transform: none;
  }
  .carousel-btn.prev {
    left: calc(50% - 56px);
  }
  .carousel-btn.next {
    right: calc(50% - 56px);
  }
  .testimonials .btn-wrap {
    margin-top: 90px;
  }
  .post-grid {
    grid-template-columns: 1fr;
  }
  .post-card {
    height: auto;
  }
  .post-card .excerpt {
    max-height: 180px;
  }
  .disclaimer p {
    font-size: 17px;
    line-height: 26px;
  }
  .footer {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* ---------------- inner pages ---------------- */
.page-hero {
  background: var(--bg-sky);
  padding-block: 70px 60px;
}
.page-hero .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.page-hero .lede {
  margin-inline: auto;
}
.crumbs {
  font-size: 15px;
  color: var(--grey);
  margin: 0;
  display: flex;
  gap: 8px;
}
.crumbs a:hover {
  color: var(--blue);
}
.crumbs .cur {
  color: var(--navy);
  font-weight: 600;
}
.page-title {
  font-family: Gilroy, sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 0;
  max-width: 900px;
}
.page-section {
  padding-block: 70px;
}
.page-section .inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.prose {
  max-width: 820px;
  margin-inline: auto;
  width: 100%;
}
.prose h2 {
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  color: var(--navy);
  margin: 36px 0 12px;
}
.prose h3 {
  font-family: Gilroy, sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  margin: 24px 0 8px;
}
.prose p {
  margin: 0 0 16px;
  color: var(--ink);
}
.prose ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.prose li {
  margin-bottom: 10px;
  color: var(--ink);
}
.page-figure {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 820px;
  margin-inline: auto;
  width: 100%;
}
.opt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.opt-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.opt-card h3 {
  font-family: Gilroy, sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 8px;
}
.opt-card p {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  color: var(--grey);
}
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-steel);
  border-radius: 14px;
  padding: 20px 24px;
}
.faq-item h3 {
  font-family: Gilroy, sans-serif;
  font-size: 19px;
  color: var(--navy);
  margin: 0 0 6px;
}
.faq-item p {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  color: var(--grey);
}
.form-card {
  max-width: 720px;
  margin-inline: auto;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: grid;
  gap: 16px;
}
.form-card label {
  display: block;
  font-family: Gilroy, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid #d7dee8;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 2px solid var(--blue-2);
  border-color: var(--blue-2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: 14px;
  line-height: 22px;
  color: var(--grey);
  margin: 0;
}
.form-success {
  background: var(--bg-mint);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  color: var(--navy);
  font-family: Gilroy, sans-serif;
  font-weight: 600;
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 26px;
}
.review-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card .who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card .who strong {
  font-family: Gilroy, sans-serif;
  color: var(--navy);
}
.review-card p {
  margin: 0;
  white-space: pre-line;
  font-size: 16px;
  line-height: 26px;
  color: var(--grey);
}
@media (max-width: 1024px) {
  .opt-grid,
  .tile-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .page-title {
    font-size: 34px;
    line-height: 40px;
  }
  .opt-grid,
  .tile-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding-block: 40px;
  }
}

.page-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.prose ul {
  list-style: disc;
}
.prose ul li::marker {
  color: var(--blue);
}
.prose a {
  color: var(--blue);
  text-decoration: underline;
}

.prose ul li {
  list-style: disc outside;
}

.prose li svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
  display: inline;
  vertical-align: -3px;
  margin-right: 8px;
}

.nav,
.footer ul,
.mobile-menu ul {
  list-style: none;
}

.footer ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.form-card .btn {
  justify-self: start;
}

blockquote {
  white-space: pre-line;
}

