:root {
  --ink: #35504f;
  --ink-deep: #294745;
  --muted: #647775;
  --teal: #4d7975;
  --teal-deep: #3d6662;
  --teal-soft: #e9f2f0;
  --sage: #8da691;
  --sage-soft: #eef5ef;
  --blue: #7c9dac;
  --blue-soft: #eef5f8;
  --apricot: #e6a476;
  --apricot-soft: #faebe1;
  --ochre: #d5ad60;
  --ochre-soft: #fbf1d9;
  --cream: #fffaf3;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: rgba(53, 80, 79, 0.12);
  --line-strong: rgba(53, 80, 79, 0.2);
  --shadow-sm: 0 10px 28px rgba(53, 80, 79, 0.07);
  --shadow: 0 24px 65px rgba(53, 80, 79, 0.11);
  --shadow-lift: 0 22px 52px rgba(53, 80, 79, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

section[id],
form[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 9px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 24px rgba(53, 80, 79, 0.035);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  transition: transform 220ms var(--ease-out);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition: transform 260ms var(--ease-out), filter 260ms ease;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--ink-deep);
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

nav a {
  position: relative;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease-out);
}

nav a:hover {
  color: var(--teal-deep);
  background: var(--sage-soft);
}

nav a[aria-current="page"] {
  color: var(--teal-deep);
  background: var(--teal-soft);
  border-color: rgba(77, 121, 117, 0.14);
}

nav .nav-cta:not([aria-current="page"]) {
  color: var(--ink-deep);
  background: var(--apricot-soft);
  border-color: rgba(230, 164, 118, 0.22);
}

nav .nav-cta:not([aria-current="page"]):hover {
  background: #f8ddca;
}

.nav-muted {
  color: var(--blue);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  min-height: calc(100svh - 80px);
  padding: clamp(46px, 5vw, 72px) clamp(18px, 6vw, 84px);
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 7%, rgba(124, 157, 172, 0.22), transparent 29%),
    radial-gradient(circle at 4% 94%, rgba(230, 164, 118, 0.18), transparent 32%),
    linear-gradient(125deg, #fffdf9 0%, #fff8ef 47%, #eef5ef 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 48% 52% 61% 39% / 45% 41% 59% 55%;
  transform-origin: center;
}

.hero::before {
  width: 280px;
  height: 280px;
  right: -95px;
  bottom: -75px;
  background: rgba(230, 164, 118, 0.12);
  transform: rotate(22deg);
}

.hero::after {
  width: 180px;
  height: 180px;
  left: 42%;
  top: -105px;
  background: rgba(141, 166, 145, 0.13);
  transform: rotate(-18deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 735px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-deep);
  line-height: 1.12;
}

h1,
h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
}

h1 {
  max-width: 790px;
  font-size: clamp(46px, 5.5vw, 70px);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(31px, 3.8vw, 50px);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--teal-deep);
  font-size: clamp(19px, 1.85vw, 23px);
  font-weight: 700;
  line-height: 1.42;
}

.hero-subtext {
  max-width: 650px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
}

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

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 800;
  cursor: pointer;
  transition: transform 190ms var(--ease-out), background 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.button::after {
  position: absolute;
  z-index: 1;
  width: 42%;
  height: 190%;
  top: -45%;
  left: -62%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  transition: left 540ms var(--ease-out);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button:focus-visible,
nav a:focus-visible,
.brand:focus-visible,
footer a:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 11px 26px rgba(77, 121, 117, 0.2);
}

.button-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  box-shadow: 0 14px 30px rgba(77, 121, 117, 0.24);
}

.button-secondary {
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(77, 121, 117, 0.22);
}

.button-secondary:hover {
  background: #fff;
  border-color: rgba(77, 121, 117, 0.35);
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 21px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-reassurance span::before {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  content: "✓";
  font-size: 11px;
}

.hero-mark {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.hero-mark::before {
  position: absolute;
  z-index: -1;
  width: 98%;
  height: 92%;
  top: 4%;
  content: "";
  background: rgba(124, 157, 172, 0.12);
  border-radius: 43% 57% 42% 58% / 58% 46% 54% 42%;
  transform: rotate(5deg);
  transition: transform 650ms var(--ease-out), background 650ms ease;
}

.emblem-card {
  position: relative;
  width: min(100%, 450px);
  padding: clamp(30px, 3vw, 40px);
  overflow: hidden;
  text-align: left;
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 173, 96, 0.14), transparent 31%),
    rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(77, 121, 117, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 76px rgba(53, 80, 79, 0.14);
  backdrop-filter: blur(9px);
  transition: transform 300ms var(--ease-out), border-color 300ms ease, box-shadow 300ms ease;
}

.emblem-card::after {
  position: absolute;
  width: 112px;
  height: 112px;
  right: -43px;
  bottom: -49px;
  content: "";
  background: rgba(230, 164, 118, 0.13);
  border-radius: 50%;
}

.emblem-halo {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(126px, 12vw, 150px);
  height: clamp(126px, 12vw, 150px);
  margin: 0 0 20px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(145deg, var(--sage-soft), var(--blue-soft));
  border-radius: 46% 54% 58% 42% / 45% 42% 58% 55%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68), 0 16px 34px rgba(77, 121, 117, 0.08);
  transform-origin: center;
}

.emblem-halo::after {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(213, 173, 96, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.emblem-halo img {
  width: 94%;
  height: 94%;
  object-fit: contain;
}

.emblem-eyebrow {
  margin: 0 0 8px;
  color: var(--apricot);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.emblem-card h2 {
  max-width: 390px;
  font-size: clamp(29px, 2.75vw, 37px);
}

.emblem-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.protection-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.protection-pills span {
  padding: 7px 11px;
  color: var(--teal-deep);
  background: var(--teal-soft);
  border: 1px solid rgba(77, 121, 117, 0.11);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms var(--ease-out), color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.emblem-note {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  padding-top: 17px;
  color: var(--ink-deep);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.path-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(36px, 5vw, 60px) clamp(18px, 6vw, 84px);
  background: var(--cream);
}

.path-tile {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(25px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.path-tile::before {
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  right: -165px;
  top: -165px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.86), rgba(213, 173, 96, 0.15) 43%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 260ms ease, transform 520ms var(--ease-out);
}

.path-tile:first-child {
  background: linear-gradient(145deg, #f9fcf9, var(--sage-soft));
}

.path-tile:last-child {
  background: linear-gradient(145deg, #fbfdfe, var(--blue-soft));
}

.path-tile:hover {
  box-shadow: 0 17px 40px rgba(53, 80, 79, 0.1);
}

.path-kicker,
.card-kicker,
.review-kicker {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-tile strong {
  max-width: 560px;
  color: var(--ink-deep);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(23px, 2.7vw, 32px);
  font-weight: 600;
  line-height: 1.22;
}

.path-tile span:last-child {
  max-width: 570px;
  color: var(--muted);
}

.trust-section,
.audience-section,
.next-section,
.proof-section,
.form-section,
.contact-band {
  padding: clamp(60px, 8vw, 100px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 35px;
}

.section-heading p:last-child {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.audience-section {
  background: var(--paper);
}

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

.audience-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 216px;
  padding: 25px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 23px rgba(53, 80, 79, 0.05);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.audience-grid article::after {
  position: absolute;
  width: 90px;
  height: 90px;
  right: -38px;
  bottom: -42px;
  background: var(--sage-soft);
  border-radius: 48% 52% 61% 39% / 45% 41% 59% 55%;
  content: "";
  transition: transform 480ms var(--ease-out), opacity 260ms ease;
}

.audience-grid article:nth-child(2)::after {
  background: var(--blue-soft);
}

.audience-grid article:nth-child(3)::after {
  background: var(--apricot-soft);
}

.audience-grid article:nth-child(4)::after {
  background: var(--ochre-soft);
}

.audience-grid article:hover {
  box-shadow: 0 17px 40px rgba(53, 80, 79, 0.09);
}

.audience-grid strong {
  color: var(--ink-deep);
  font-size: 20px;
  line-height: 1.25;
}

.audience-grid article > span:not(.card-kicker) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(35px, 5vw, 72px);
  background:
    radial-gradient(circle at 4% 92%, rgba(230, 164, 118, 0.14), transparent 28%),
    var(--sage-soft);
}

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

.trust-grid article {
  padding: 25px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(77, 121, 117, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 8px 23px rgba(77, 121, 117, 0.055);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.trust-grid span,
.next-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.trust-grid span {
  color: #fff;
  background: var(--sage);
}

.trust-grid p,
.next-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.next-section {
  background: var(--cream);
}

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

.next-grid article {
  min-height: 216px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 23px rgba(53, 80, 79, 0.045);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.next-grid span {
  color: var(--ink-deep);
  background: var(--apricot-soft);
}

.section-actions {
  margin-top: 31px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(35px, 6vw, 80px);
  background:
    radial-gradient(circle at 89% 10%, rgba(213, 173, 96, 0.14), transparent 28%),
    linear-gradient(135deg, var(--blue-soft), #f6faf8);
}

.proof-content {
  display: grid;
  justify-items: start;
  gap: 28px;
}

.proof-list {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding: 14px 18px 14px 47px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(124, 157, 172, 0.16);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 650;
  transition: transform 200ms var(--ease-out), border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.proof-list li::before {
  position: absolute;
  left: 17px;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: center;
  gap: clamp(35px, 6vw, 82px);
  padding: clamp(64px, 7vw, 94px) clamp(18px, 6vw, 84px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 15%, rgba(124, 157, 172, 0.18), transparent 26%),
    linear-gradient(130deg, #fffdf9, var(--sage-soft));
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  width: 290px;
  height: 290px;
  right: -115px;
  bottom: -155px;
  background: rgba(230, 164, 118, 0.14);
  border-radius: 43% 57% 50% 50% / 55% 40% 60% 45%;
  content: "";
  transform: rotate(18deg);
  transform-origin: center;
}

.agent-hero {
  background:
    radial-gradient(circle at 92% 8%, rgba(230, 164, 118, 0.16), transparent 28%),
    linear-gradient(130deg, #fffdf9, var(--blue-soft));
}

.thank-you-hero {
  min-height: calc(100vh - 160px);
  background:
    radial-gradient(circle at 9% 88%, rgba(230, 164, 118, 0.14), transparent 28%),
    linear-gradient(130deg, var(--cream), var(--sage-soft));
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 60px);
}

.page-hero .hero-text {
  color: var(--teal-deep);
  font-size: clamp(19px, 2.15vw, 26px);
}

.page-hero .hero-subtext {
  color: var(--muted);
}

.review-card {
  display: grid;
  gap: 9px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(77, 121, 117, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-out), border-color 260ms ease, box-shadow 260ms ease;
}

.review-card img {
  width: 144px;
  height: 144px;
  margin: 0 auto 8px;
  object-fit: contain;
  transition: transform 320ms var(--ease-out), filter 320ms ease;
}

.review-card .review-kicker {
  margin-top: 3px;
}

.review-card strong {
  margin-bottom: 8px;
  color: var(--ink-deep);
  font-family: "Lora", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.22;
}

.review-card > span:not(.review-kicker) {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.review-card > span:not(.review-kicker)::before {
  color: var(--sage);
  content: "✓";
  font-weight: 900;
}

.form-section {
  background:
    radial-gradient(circle at 91% 4%, rgba(124, 157, 172, 0.11), transparent 25%),
    var(--cream);
}

.focused-form {
  background:
    radial-gradient(circle at 90% 5%, rgba(141, 166, 145, 0.16), transparent 27%),
    var(--cream);
}

.lead-form {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(23px, 4vw, 41px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.lead-form:focus-within {
  border-color: rgba(77, 121, 117, 0.26);
  box-shadow: 0 28px 72px rgba(53, 80, 79, 0.14), 0 0 0 5px rgba(124, 157, 172, 0.07);
}

.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -3px 0 22px;
  padding-bottom: 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-topline span:last-child {
  color: var(--teal);
}

.form-intro {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
  padding: 19px 20px;
  color: var(--ink-deep);
  background: var(--sage-soft);
  border: 1px solid rgba(141, 166, 145, 0.19);
  border-radius: var(--radius-sm);
}

.form-intro strong {
  font-size: 18px;
}

.form-intro span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.trust-strip span {
  padding: 7px 11px;
  color: var(--ink-deep);
  background: var(--apricot-soft);
  border: 1px solid rgba(230, 164, 118, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink-deep);
  font-size: 13px;
  font-weight: 800;
}

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

.prompt-field {
  padding: 18px;
  background: #f9fbf9;
  border: 1px solid rgba(141, 166, 145, 0.2);
  border-radius: var(--radius-sm);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(53, 80, 79, 0.19);
  border-radius: 13px;
  box-shadow: inset 0 1px 2px rgba(53, 80, 79, 0.02);
  font-weight: 550;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

textarea {
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(77, 121, 117, 0.37);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(124, 157, 172, 0.18);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 960px;
  margin: 23px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.consent input {
  flex: 0 0 auto;
  width: 19px;
  min-height: 19px;
  margin-top: 1px;
  accent-color: var(--teal);
}

.privacy-note,
.agent-note {
  max-width: 840px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.preview-notice {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: #6d5930;
  background: var(--ochre-soft);
  border: 1px solid rgba(213, 173, 96, 0.29);
  border-radius: 13px;
}

.submission-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: var(--teal-deep);
  background: var(--sage-soft);
  border: 1px solid rgba(77, 121, 117, 0.18);
  border-radius: 13px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status[data-kind="success"] {
  color: var(--teal-deep);
}

.form-status[data-kind="error"] {
  color: #9b3f35;
}

.preview-hero-note {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
}

.agent-section {
  background:
    radial-gradient(circle at 10% 9%, rgba(230, 164, 118, 0.18), transparent 26%),
    linear-gradient(145deg, var(--apricot-soft), #fffaf3 48%, var(--blue-soft));
}

.alt .lead-form {
  background: rgba(255, 253, 249, 0.94);
  border-color: rgba(124, 157, 172, 0.15);
}

.alt .form-intro {
  background: var(--blue-soft);
  border-color: rgba(124, 157, 172, 0.18);
}

.alt .agent-note {
  margin: 22px 0;
  padding: 14px 16px;
  color: #695535;
  background: var(--ochre-soft);
  border-left: 4px solid var(--ochre);
  border-radius: 10px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--blue-soft);
}

.contact-band h2 {
  max-width: 840px;
  font-size: clamp(29px, 4vw, 46px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: var(--muted);
  background: #e8f1ef;
  border-top: 1px solid rgba(77, 121, 117, 0.1);
}

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

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition: transform 260ms var(--ease-out), filter 260ms ease;
}

.footer-brand div {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  color: var(--ink-deep);
  font-family: "Lora", Georgia, serif;
  font-size: 14px;
  font-weight: 600;
}

.footer-brand span {
  color: var(--muted);
  font-size: 11px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 5px;
  text-align: right;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

footer a {
  color: var(--teal-deep);
  font-weight: 700;
}

footer a:hover {
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    transform: translateY(-1px);
  }

  .brand:hover img {
    filter: drop-shadow(0 9px 12px rgba(77, 121, 117, 0.2));
    transform: translateY(-2px) scale(1.025);
  }

  nav a:hover {
    transform: translateY(-1px);
  }

  nav .nav-cta:not([aria-current="page"]):hover {
    box-shadow: 0 8px 20px rgba(230, 164, 118, 0.18);
  }

  .button:hover::after,
  .button:focus-visible::after {
    left: 122%;
  }

  .button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 34px rgba(77, 121, 117, 0.28), 0 0 0 5px rgba(230, 164, 118, 0.08);
  }

  .button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 28px rgba(53, 80, 79, 0.1);
  }

  .emblem-card:hover,
  .review-card:hover {
    border-color: rgba(77, 121, 117, 0.23);
    box-shadow: var(--shadow-lift);
  }

  .review-card:hover img {
    filter: drop-shadow(0 14px 18px rgba(77, 121, 117, 0.16));
  }

  .path-tile:hover {
    border-color: rgba(77, 121, 117, 0.22);
    box-shadow: 0 20px 44px rgba(53, 80, 79, 0.12);
  }

  .path-tile:hover::before {
    opacity: 1;
    transform: translate(-28px, 28px) scale(1.18);
  }

  .audience-grid article:hover,
  .trust-grid article:hover,
  .next-grid article:hover {
    border-color: rgba(77, 121, 117, 0.2);
    box-shadow: 0 19px 42px rgba(53, 80, 79, 0.105);
  }

  .audience-grid article:hover::after {
    opacity: 0.92;
    transform: scale(1.06);
  }

  .proof-list li:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(124, 157, 172, 0.27);
    box-shadow: 0 10px 24px rgba(53, 80, 79, 0.07);
  }

  .button:active {
    transform: translateY(0) scale(0.985);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .page-hero > div:first-child {
    animation: gentle-rise 620ms var(--ease-out) both;
  }

  .hero-mark,
  .page-hero .review-card {
    animation: gentle-rise 720ms 100ms var(--ease-out) both;
  }

  .hero-mark::before {
    animation: hero-glow 8s ease-in-out infinite alternate;
  }

  @keyframes gentle-rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes hero-glow {
    from {
      opacity: 0.72;
      transform: rotate(5deg) scale(0.985);
    }
    to {
      opacity: 1;
      transform: rotate(5deg) scale(1.015);
    }
  }
}

@media (max-width: 1080px) {
  .site-header {
    gap: 16px;
  }

  nav {
    font-size: 12px;
  }

  nav a {
    padding-inline: 8px;
  }

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

  .trust-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  section[id],
  form[id] {
    scroll-margin-top: 138px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding-block: 8px;
  }

  nav {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 3px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .home-page section[id],
  .home-page form[id] {
    scroll-margin-top: 84px;
  }

  .home-page .site-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 68px;
    padding-block: 7px;
  }

  .home-page nav {
    justify-content: flex-end;
    width: auto;
    margin-left: auto;
    padding-bottom: 0;
    overflow: visible;
  }

  .home-page nav a:not(.nav-cta) {
    display: none;
  }

  .home-page nav .nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
  }

  .hero,
  .page-hero,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .hero-mark {
    justify-items: center;
    width: 100%;
    max-width: 640px;
    justify-self: center;
  }

  .page-hero .review-card {
    max-width: 540px;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .page-hero {
    padding-top: 49px;
    padding-bottom: 55px;
  }

  .home-page .site-header {
    padding-inline: 14px;
  }

  .home-page .brand {
    gap: 8px;
  }

  .home-page .brand img {
    width: 43px;
    height: 43px;
  }

  .home-page .brand-copy strong {
    font-size: 14px;
  }

  .home-page .brand-copy small {
    margin-top: 3px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .home-page nav .nav-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero {
    gap: 26px;
    padding-top: 36px;
    padding-bottom: 46px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(39px, 12vw, 51px);
  }

  .hero h1 {
    font-size: clamp(36px, 10.25vw, 42px);
    line-height: 1.08;
  }

  .hero-text,
  .page-hero .hero-text {
    font-size: 19px;
  }

  .hero .hero-text {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.5;
  }

  .home-page .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .home-page .hero-actions .button-secondary {
    min-height: 40px;
    padding-block: 8px;
    background: transparent;
    border-color: transparent;
  }

  .hero-actions,
  .hero-actions .button,
  .proof-content .button,
  .lead-form > .button {
    width: 100%;
  }

  .hero-reassurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    text-align: center;
  }

  .hero-reassurance span {
    flex-direction: column;
    gap: 5px;
  }

  .hero-reassurance span::before {
    width: 19px;
    height: 19px;
  }

  .path-band,
  .audience-grid,
  .trust-grid,
  .next-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }

  .path-band {
    padding-block: 32px;
  }

  .audience-grid article,
  .next-grid article {
    min-height: auto;
  }

  .emblem-card {
    padding: 25px 21px;
  }

  .emblem-halo {
    width: 118px;
    height: 118px;
    margin-bottom: 16px;
  }

  .emblem-card h2 {
    font-size: 29px;
  }

  .emblem-copy {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.55;
  }

  .protection-pills {
    gap: 6px;
    margin-top: 16px;
  }

  .protection-pills span {
    padding: 6px 9px;
    font-size: 11px;
  }

  .emblem-note {
    margin-top: 18px;
    padding-top: 14px;
  }

  .review-card {
    padding: 23px;
  }

  .review-card img {
    width: 128px;
    height: 128px;
  }

  .form-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
  }
}
