:root {
  --navy-950: #061f30;
  --navy-900: #082a40;
  --navy-800: #0a3450;
  --navy-700: #114968;
  --navy-600: #176487;
  --slate-950: #171b1f;
  --slate-900: #23282d;
  --slate-800: #33383d;
  --slate-700: #4d555c;
  --slate-600: #66717a;
  --slate-500: #7d8992;
  --slate-300: #cbd3d8;
  --slate-200: #e0e6e9;
  --slate-100: #edf1f3;
  --cream: #f7f4ed;
  --white: #ffffff;
  --gold: #c8964b;
  --gold-light: #e4c68f;
  --green: #46b791;
  --red: #a73939;
  --shadow-sm: 0 10px 30px rgba(4, 29, 45, 0.08);
  --shadow-md: 0 22px 55px rgba(4, 29, 45, 0.14);
  --shadow-lg: 0 34px 90px rgba(3, 20, 32, 0.24);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 84px;
  --transition: 180ms ease;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 3.65vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  margin-bottom: 18px;
}

ul,
ol {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy-950);
  font-weight: 800;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* Top line and header */
.topline {
  color: rgba(255, 255, 255, 0.85);
  background: var(--navy-950);
  font-size: 0.77rem;
  letter-spacing: 0.015em;
}

.topline__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.topline strong {
  color: var(--white);
}

.topline a {
  margin-left: auto;
  color: var(--gold-light);
  font-weight: 800;
}

.topline__divider {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.25);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(10, 52, 80, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 20px rgba(5, 34, 52, 0.04);
  backdrop-filter: blur(18px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 52px;
  height: auto;
}

.brand__words {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__words strong {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
}

.brand__words span {
  margin-top: 5px;
  color: var(--slate-600);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 750;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform var(--transition);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--slate-100);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-950);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 8px 20px rgba(10, 52, 80, 0.18);
}

.button--small:hover {
  background: var(--navy-950);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
  box-shadow: 0 14px 30px rgba(3, 31, 48, 0.24);
}

.button--primary:hover {
  box-shadow: 0 18px 40px rgba(3, 31, 48, 0.32);
}

.button--ghost {
  color: var(--navy-950);
  border-color: rgba(10, 52, 80, 0.23);
  background: rgba(255, 255, 255, 0.78);
}

.button--ghost:hover {
  border-color: var(--navy-800);
  background: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--slate-950);
  box-shadow: 0 14px 30px rgba(22, 27, 31, 0.18);
}

.button--light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.button--outline-light:hover {
  color: var(--navy-950);
  background: var(--white);
}

.button--full {
  width: 100%;
  border: 0;
}

.button--phone {
  min-width: 228px;
  justify-content: flex-start;
  border-radius: 16px;
  text-align: left;
}

.button--phone .button__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-light);
  font-size: 1.05rem;
}

.button--phone span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 1.06rem;
}

.button--phone small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(200, 150, 75, 0.7);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Shared headings */
.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.section-label--light {
  color: var(--gold-light);
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.section-heading--center p {
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 0;
  background:
    radial-gradient(circle at 87% 8%, rgba(200, 150, 75, 0.18), transparent 24%),
    linear-gradient(135deg, #f8fafb 0%, #f7f4ed 60%, #eef3f5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(10, 52, 80, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 52, 80, 0.026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, #000 0%, transparent 70%);
}

.hero__geometry {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.hero__line {
  position: absolute;
  display: block;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(10, 52, 80, 0.09);
  transform: rotate(45deg);
}

.hero__line--one {
  top: -220px;
  right: 13%;
}

.hero__line--two {
  right: -250px;
  bottom: 120px;
}

.hero__orb {
  position: absolute;
  top: 25%;
  right: 6%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 52, 80, 0.11), transparent 67%);
  filter: blur(12px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(470px, 0.94fr);
  align-items: center;
  gap: 62px;
}

.hero__copy {
  padding-bottom: 72px;
}

.hero h1 em {
  display: block;
  color: var(--navy-700);
  font-style: normal;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 29px;
  color: var(--slate-700);
  font-size: clamp(1.07rem, 1.6vw, 1.25rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.hero__qualifiers {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 17px;
  margin-bottom: 16px;
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero__qualifiers span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__qualifiers i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-700);
  font-size: 0.7rem;
  font-style: normal;
}

.hero__fineprint {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.77rem;
  line-height: 1.55;
}

.video-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.video-card::before {
  content: "";
  position: absolute;
  top: -56px;
  right: -56px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(200, 150, 75, 0.09);
  transform: rotate(45deg);
}

.video-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 21px;
}

.video-card__top h2 {
  max-width: 410px;
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.video-card__kicker {
  color: var(--navy-700);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-card__badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(10, 52, 80, 0.13);
  border-radius: 999px;
  color: var(--navy-700);
  background: var(--slate-100);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-950);
}

.video-frame::before {
  content: "▶  Retirement education video";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.video-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-frame iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.video-card__footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 24px 19px;
  color: var(--slate-600);
  font-size: 0.73rem;
  line-height: 1.55;
}

.video-card__footer p {
  margin: 0;
}

.pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--green);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(70, 183, 145, 0.48);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.65); opacity: 0.9; }
  75%, 100% { transform: scale(1.4); opacity: 0; }
}

.trust-rail {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(10, 52, 80, 0.11);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 -20px 45px rgba(7, 41, 62, 0.03);
}

.trust-rail div {
  position: relative;
  padding: 22px 22px 24px;
}

.trust-rail div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: rgba(10, 52, 80, 0.12);
}

.trust-rail strong,
.trust-rail span {
  display: block;
}

.trust-rail strong {
  margin-bottom: 2px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.trust-rail span {
  color: var(--slate-600);
  font-size: 0.7rem;
  line-height: 1.45;
}

/* Decision section */
.decision-section {
  padding: 100px 0;
  background: var(--white);
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.3fr);
  gap: 70px;
}

.decision-grid > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  align-self: start;
}

.decision-grid h2 {
  max-width: 430px;
  margin-bottom: 0;
}

.decision-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--slate-200);
}

.decision-list article {
  min-height: 245px;
  padding: 30px;
  background: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.decision-list article:hover {
  z-index: 2;
  transform: translateY(-3px);
  background: var(--cream);
}

.decision-list article > span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.decision-list h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.decision-list p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.92rem;
}

/* Solutions */
.solutions {
  padding: 105px 0;
  background: var(--cream);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 29px 28px;
  border: 1px solid rgba(10, 52, 80, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.solution-card:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 52, 80, 0.25);
  box-shadow: var(--shadow-md);
}

.solution-card--featured {
  color: rgba(255, 255, 255, 0.78);
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    var(--navy-950);
}

.solution-card--featured h3,
.solution-card--featured .solution-card__tag {
  color: var(--white);
}

.solution-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 31px;
  border: 1px solid rgba(10, 52, 80, 0.13);
  border-radius: 16px;
  color: var(--navy-700);
  background: var(--slate-100);
}

.solution-card--featured .solution-card__icon {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.solution-card__icon svg {
  width: 32px;
  height: 32px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.solution-card__tag {
  margin-bottom: 10px;
  color: var(--navy-700);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.solution-card h3 {
  font-size: 1.72rem;
}

.solution-card > p:not(.card-disclosure) {
  color: var(--slate-600);
  font-size: 0.9rem;
}

.solution-card--featured > p:not(.card-disclosure) {
  color: rgba(255, 255, 255, 0.72);
}

.solution-card ul {
  padding: 0;
  margin: 6px 0 24px;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding: 9px 0 9px 25px;
  border-top: 1px solid rgba(10, 52, 80, 0.1);
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.solution-card li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

.solution-card--featured li {
  border-color: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.82);
}

.card-disclosure {
  padding-top: 18px;
  margin-top: auto;
  margin-bottom: 0;
  border-top: 1px solid rgba(10, 52, 80, 0.11);
  color: var(--slate-500);
  font-size: 0.68rem;
  line-height: 1.55;
}

.solution-card--featured .card-disclosure {
  border-color: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.5);
}


/* Local client stories */
.testimonial-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 83% 16%, rgba(200, 150, 75, 0.22), transparent 27%),
    radial-gradient(circle at 10% 88%, rgba(23, 100, 135, 0.5), transparent 34%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950) 72%);
}

.testimonial-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(135deg, #000, transparent 82%);
}

.testimonial-section__geometry {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.testimonial-section__geometry span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.testimonial-section__geometry span:nth-child(1) {
  top: -210px;
  right: 8%;
  width: 390px;
  height: 390px;
}

.testimonial-section__geometry span:nth-child(2) {
  right: -180px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  border-width: 74px;
  border-color: rgba(255, 255, 255, 0.025);
}

.testimonial-section__geometry span:nth-child(3) {
  bottom: 10%;
  left: 4%;
  width: 110px;
  height: 110px;
  border-color: rgba(228, 198, 143, 0.22);
}

.testimonial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 58px;
  margin-bottom: 50px;
}

.testimonial-heading h2 {
  max-width: 850px;
  margin-bottom: 17px;
  color: var(--white);
}

.testimonial-heading h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.testimonial-heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.03rem;
}

.local-proof {
  min-width: 285px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(228, 198, 143, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
}

.local-proof__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--navy-950);
  background: var(--gold-light);
}

.local-proof__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.local-proof > span:last-child,
.local-proof strong,
.local-proof small {
  display: block;
}

.local-proof strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.2;
}

.local-proof small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.4;
}

.story-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.43fr) minmax(310px, 0.57fr);
  align-items: stretch;
  gap: 18px;
}

.story-stage {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.story-stage__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(23, 100, 135, 0.58), transparent 34%),
    var(--navy-950);
}

.story-stage__frame::before {
  content: "▶  Client experience video";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-stage__frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-stage__frame iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-stage__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 27px 27px;
  color: var(--slate-600);
  background: var(--white);
}

.story-stage__caption > div {
  min-width: 0;
}

.story-stage__caption > div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-700);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-stage__caption h3 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2.25vw, 1.8rem);
}

.story-stage__caption p {
  margin-bottom: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.story-stage__caption .button {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 12px 24px rgba(7, 44, 65, 0.2);
}

.story-selector {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.story-tab {
  position: relative;
  width: 100%;
  min-height: 142px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 14px;
  padding: 19px 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.story-tab::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 95px;
  height: 95px;
  border: 18px solid rgba(255, 255, 255, 0.025);
  transform: rotate(45deg);
}

.story-tab:hover {
  transform: translateX(-4px);
  border-color: rgba(228, 198, 143, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.story-tab.is-active {
  color: var(--navy-950);
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.story-tab__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.12);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.story-tab.is-active .story-tab__number {
  color: var(--white);
  border-color: var(--navy-800);
  background: var(--navy-800);
}

.story-tab__copy,
.story-tab__copy small,
.story-tab__copy strong,
.story-tab__copy em {
  display: block;
}

.story-tab__copy small {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-tab.is-active .story-tab__copy small {
  color: var(--navy-700);
}

.story-tab__copy strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.25;
}

.story-tab.is-active .story-tab__copy strong {
  color: var(--navy-950);
}

.story-tab__copy em {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 750;
}

.story-tab.is-active .story-tab__copy em {
  color: var(--slate-500);
}

.story-tab__play {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.63rem;
  transition: transform var(--transition);
}

.story-tab:hover .story-tab__play {
  transform: scale(1.08);
}

.story-tab.is-active .story-tab__play {
  color: var(--navy-950);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.testimonial-disclosure {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  padding-top: 27px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-disclosure p {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  line-height: 1.6;
}

.testimonial-disclosure strong {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-disclosure a {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

/* Annuity video learning center */
.education-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background:
    radial-gradient(circle at 95% 8%, rgba(200, 150, 75, 0.15), transparent 23%),
    linear-gradient(180deg, var(--white), #f7f4ed 64%, #f1f5f6);
}

.education-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 52, 80, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 52, 80, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to left, #000, transparent);
}

.education-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 70px;
}

.education-heading .section-heading {
  margin-bottom: 0;
}

.education-heading__note {
  padding: 19px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
}

.education-heading__note span {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-800);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.education-heading__note p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.78rem;
  line-height: 1.55;
}

.education-video-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.education-video-card {
  overflow: hidden;
  border: 1px solid rgba(10, 52, 80, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.education-video-card:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 52, 80, 0.24);
  box-shadow: 0 30px 70px rgba(4, 29, 45, 0.18);
}

.deferred-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-950);
}

.deferred-video__poster {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  padding: 31px;
  overflow: hidden;
  border: 0;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.deferred-video__poster--one {
  background:
    radial-gradient(circle at 80% 15%, rgba(228, 198, 143, 0.34), transparent 25%),
    linear-gradient(135deg, var(--navy-700), var(--navy-950));
}

.deferred-video__poster--two {
  background:
    radial-gradient(circle at 15% 18%, rgba(23, 100, 135, 0.7), transparent 29%),
    linear-gradient(145deg, var(--slate-900), var(--navy-950));
}

.deferred-video__poster::before,
.deferred-video__poster::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.deferred-video__poster::before {
  top: -105px;
  right: -55px;
  width: 280px;
  height: 280px;
  border: 48px solid rgba(255, 255, 255, 0.055);
  transform: rotate(45deg);
  transition: transform 380ms ease;
}

.deferred-video__poster::after {
  inset: 0;
  background: linear-gradient(to top, rgba(2, 20, 31, 0.86), transparent 68%);
}

.deferred-video__poster:hover::before {
  transform: rotate(55deg) scale(1.08);
}

.deferred-video__eyebrow,
.deferred-video__title,
.deferred-video__action,
.deferred-video__mark {
  position: relative;
  z-index: 1;
}

.deferred-video__eyebrow {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deferred-video__title {
  max-width: 430px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.65vw, 2.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.deferred-video__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.deferred-video__action i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-light);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  font-style: normal;
  transition: transform var(--transition);
}

.deferred-video__poster:hover .deferred-video__action i {
  transform: scale(1.08);
}

.deferred-video__action b {
  font-weight: 850;
}

.deferred-video__mark {
  position: absolute;
  top: 24px;
  right: 25px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(45deg);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.deferred-video__mark::first-letter {
  transform: rotate(-45deg);
}

.deferred-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-noscript {
  position: absolute;
  z-index: 5;
  inset: auto 20px 20px;
  margin: 0;
  color: var(--white);
  font-size: 0.8rem;
}

.video-noscript a {
  text-decoration: underline;
}

.education-video-card__body {
  padding: 27px 29px 30px;
}

.education-video-card__body > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-700);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.education-video-card__body h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.education-video-card__body p {
  min-height: 76px;
  margin-bottom: 18px;
  color: var(--slate-600);
  font-size: 0.86rem;
}

.education-video-card__body .text-link {
  font-size: 0.8rem;
}

.education-prompts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 35px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.education-prompts > div {
  position: relative;
  min-height: 155px;
  padding: 24px 25px;
  background: rgba(255, 255, 255, 0.9);
}

.education-prompts span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.education-prompts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.education-prompts p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.76rem;
  line-height: 1.55;
}

.education-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-top: 38px;
  padding: 34px 38px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 86% 20%, rgba(200, 150, 75, 0.22), transparent 22%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-md);
}

.education-cta::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border: 48px solid rgba(255, 255, 255, 0.035);
  transform: rotate(45deg);
}

.education-cta > div {
  position: relative;
  z-index: 1;
}

.education-cta > div:first-child {
  max-width: 650px;
}

.education-cta > div:first-child > span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.education-cta h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.75rem;
}

.education-cta p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.education-cta__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.education-cta__actions .button--dark {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  box-shadow: none;
}

.education-cta__actions .button--dark:hover {
  color: var(--navy-950);
  background: var(--white);
}

.education-disclosure {
  max-width: 960px;
  margin: 20px auto 0;
  color: var(--slate-500);
  font-size: 0.67rem;
  line-height: 1.6;
  text-align: center;
}

/* Personal reserve */
.reserve-section {
  overflow: hidden;
  padding: 120px 0;
  background: var(--white);
}

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 95px;
}

.reserve-visual {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.reserve-visual::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 52, 80, 0.11), transparent 65%);
  filter: blur(4px);
}

.reserve-visual__ring {
  position: absolute;
  border: 1px solid rgba(10, 52, 80, 0.18);
  border-radius: 50%;
}

.reserve-visual__ring--outer {
  inset: 5%;
  border-style: dashed;
  animation: spin 45s linear infinite;
}

.reserve-visual__ring--inner {
  inset: 24%;
  border-width: 16px;
  border-color: rgba(10, 52, 80, 0.05);
  box-shadow: inset 0 0 0 1px rgba(10, 52, 80, 0.09), 0 0 0 1px rgba(10, 52, 80, 0.08);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.reserve-visual__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-700), var(--navy-950));
  box-shadow: 0 25px 55px rgba(7, 39, 58, 0.29);
}

.reserve-visual__core img {
  width: 72px;
  height: auto;
  margin-bottom: 11px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.reserve-visual__core span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-align: center;
}

.reserve-node {
  position: absolute;
  min-width: 130px;
  padding: 13px 16px;
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.reserve-node b,
.reserve-node span {
  display: block;
}

.reserve-node b {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.reserve-node span {
  color: var(--slate-500);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.reserve-node--one {
  top: 9%;
  left: 2%;
}

.reserve-node--two {
  top: 16%;
  right: -1%;
}

.reserve-node--three {
  right: 6%;
  bottom: 10%;
}

.reserve-copy__lead {
  color: var(--slate-700);
  font-size: 1.08rem;
}

.truth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 21px;
}

.truth-grid > div {
  padding: 20px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--slate-100);
}

.truth-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.truth-grid p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.8rem;
  line-height: 1.55;
}

.reserve-note {
  padding: 15px 17px;
  margin-bottom: 25px;
  border-left: 3px solid var(--gold);
  color: var(--slate-600);
  background: var(--cream);
  font-size: 0.83rem;
}

/* Quiz */
.risk-check {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 10% 10%, rgba(23, 100, 135, 0.55), transparent 35%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
}

.risk-check::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

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

.risk-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.risk-copy h2 {
  color: var(--white);
}

.risk-progress {
  overflow: hidden;
  height: 7px;
  margin-top: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.risk-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 300ms ease;
}

.risk-progress__label {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quiz {
  display: grid;
  gap: 14px;
}

.quiz-question {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.quiz-question:has(input:checked) {
  transform: translateX(-5px);
  border-color: rgba(228, 198, 143, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.quiz-question legend {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 0 4px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.quiz-question legend span {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
}

.quiz-options {
  display: flex;
  gap: 9px;
  margin: 18px 0 0 44px;
}

.quiz-options label {
  position: relative;
  min-width: 116px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(0, 0, 0, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.quiz-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-options label:has(input:checked) {
  color: var(--navy-950);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.quiz-options label:focus-within {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.quiz-result {
  padding: 28px;
  border: 1px solid rgba(228, 198, 143, 0.36);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 150, 75, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  animation: resultIn 400ms ease both;
}

@keyframes resultIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-result__eyebrow {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quiz-result h3 {
  margin: 7px 0 9px;
  color: var(--white);
  font-size: 1.8rem;
}

.quiz-result p {
  color: rgba(255, 255, 255, 0.72);
}

.quiz-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Standard */
.standard-section {
  padding: 110px 0;
  background: var(--cream);
}

.standard-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 75px;
}

.standard-copy {
  align-self: center;
}

.standard-copy p {
  color: var(--slate-600);
}

.standard-list {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.standard-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 25px 28px;
}

.standard-list > div:not(:last-child) {
  border-bottom: 1px solid var(--slate-200);
}

.standard-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 52, 80, 0.12);
  border-radius: 50%;
  color: var(--navy-700);
  background: var(--slate-100);
  font-size: 0.66rem;
  font-weight: 900;
}

.standard-list p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.88rem;
}

.standard-list strong {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

/* Process */
.process-section {
  padding: 115px 0;
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 25px;
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 0;
  width: 38%;
  height: 1px;
  transform: translateX(50%);
  background: var(--slate-300);
}

.process-list__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(10, 52, 80, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 10px 22px rgba(10, 52, 80, 0.19);
  font-size: 0.73rem;
  font-weight: 900;
}

.process-list h3 {
  min-height: 48px;
  font-size: 1.3rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.82rem;
}

/* Rollover */
.rollover-section {
  overflow: hidden;
  padding: 110px 0;
  color: rgba(255, 255, 255, 0.75);
  background: var(--slate-950);
}

.rollover-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 80px;
}

.rollover-copy h2,
.rollover-copy strong {
  color: var(--white);
}

.rollover-copy p:last-child {
  margin-bottom: 0;
}

.rollover-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  transform: rotate(-1.5deg);
}

.rollover-options > div {
  min-height: 185px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform var(--transition), background var(--transition);
}

.rollover-options > div:nth-child(even) {
  transform: translateY(18px);
}

.rollover-options > div:hover {
  transform: translateY(-4px) rotate(1.5deg);
  background: rgba(255, 255, 255, 0.1);
}

.rollover-options > div:nth-child(even):hover {
  transform: translateY(12px) rotate(1.5deg);
}

.rollover-options span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 9px;
  color: var(--navy-950);
  background: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
}

.rollover-options h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.rollover-options p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

/* FAQ */
.faq-section {
  padding: 115px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  align-self: start;
}

.faq-intro p {
  color: var(--slate-600);
}

.faq-list {
  border-top: 1px solid var(--slate-200);
}

.faq-list details {
  border-bottom: 1px solid var(--slate-200);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--navy-700);
  transition: transform var(--transition);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > div {
  padding: 0 54px 24px 0;
}

.faq-list details p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: 0.88rem;
}

/* Contact */
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 15% 20%, rgba(23, 100, 135, 0.55), transparent 28%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

.contact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -260px;
  bottom: -290px;
  width: 700px;
  height: 700px;
  border: 110px solid rgba(255, 255, 255, 0.025);
  transform: rotate(45deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.02fr);
  align-items: start;
  gap: 75px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 37px;
}

.contact-phone > span:first-child {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--gold-light);
  font-size: 1.1rem;
}

.contact-phone > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-phone small {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-phone strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-facts > div {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

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

.contact-facts strong {
  margin-bottom: 5px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
}

.contact-facts span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.75rem;
  line-height: 1.55;
}

.lead-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  color: var(--slate-900);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.lead-form__header {
  padding-bottom: 22px;
  margin-bottom: 23px;
  border-bottom: 1px solid var(--slate-200);
}

.lead-form__header > span {
  color: var(--navy-700);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-form__header h3 {
  margin: 5px 0 8px;
  font-size: 1.8rem;
}

.lead-form__header p {
  margin-bottom: 0;
  color: var(--slate-500);
  font-size: 0.72rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-800);
  font-size: 0.75rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  color: var(--slate-900);
  background: #fbfcfc;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
  min-height: 49px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 100, 135, 0.11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.field-help,
.field-error {
  display: block;
  margin-top: 5px;
  font-size: 0.65rem;
  line-height: 1.35;
}

.field-help {
  color: var(--slate-500);
}

.field-error {
  color: var(--red);
  font-weight: 750;
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 3px 0 18px;
  color: var(--slate-600);
  font-size: 0.68rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--navy-700);
}

.form-status {
  min-height: 21px;
  margin: 11px 0 0;
  color: var(--navy-700);
  font-size: 0.75rem;
  font-weight: 750;
  text-align: center;
}

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

.lead-form__privacy {
  margin: 8px 0 0;
  color: var(--slate-500);
  font-size: 0.62rem;
  line-height: 1.45;
  text-align: center;
}

.lead-form__privacy a {
  color: var(--navy-700);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #050f16;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 0.95fr 1.2fr;
  gap: 48px;
  padding: 72px 0 56px;
}

.brand--footer .brand__words strong {
  color: var(--white);
}

.brand--footer .brand__words span {
  color: rgba(255, 255, 255, 0.47);
}

.brand--footer img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 260px;
  margin: 21px 0 12px;
  font-size: 0.75rem;
}

.footer-phone {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h2,
.footer-cta h2 {
  color: var(--white);
  font-size: 1.07rem;
}

.footer-column a,
.footer-column span {
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-cta {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-cta__label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cta h2 {
  margin-bottom: 20px;
  line-height: 1.3;
}

.legal-disclosure {
  padding: 37px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
  line-height: 1.65;
}

.legal-disclosure p {
  margin-bottom: 10px;
}

.legal-disclosure p:last-child {
  margin-bottom: 0;
}

.legal-disclosure strong {
  color: rgba(255, 255, 255, 0.62);
}

.legal-disclosure a {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
}

.mobile-callbar {
  display: none;
}

.noscript {
  position: fixed;
  z-index: 9999;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  text-align: center;
}

.noscript a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Interior legal pages */
.subpage-hero {
  padding: 74px 0 60px;
  background: var(--cream);
}

.subpage-hero h1 {
  max-width: 800px;
  margin-bottom: 15px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.subpage-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--slate-600);
}

.subpage-content {
  padding: 75px 0 100px;
}

.prose {
  max-width: 850px;
}

.prose h2 {
  margin-top: 45px;
  font-size: 1.8rem;
}

.prose h3 {
  margin-top: 28px;
  font-size: 1.25rem;
}

.prose p,
.prose li {
  color: var(--slate-700);
  font-size: 0.94rem;
}

.prose a {
  color: var(--navy-700);
  text-decoration: underline;
}

.prose .callout {
  padding: 22px;
  margin: 28px 0;
  border-left: 4px solid var(--gold);
  background: var(--cream);
}

.prose .last-updated {
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 0.82rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.1rem);
  }

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

  .solution-card--featured {
    grid-column: span 2;
  }

  .reserve-grid {
    gap: 50px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 0;
  }

  .process-list li:nth-child(2)::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1.15fr 0.7fr 1.1fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }

  .footer-cta h2 {
    max-width: 420px;
    margin: 0 auto 0 0;
  }
}

@media (max-width: 900px) {
  .topline__inner span:not(:first-child),
  .topline__divider {
    display: none;
  }

  .topline__inner {
    justify-content: space-between;
  }

  .topline a {
    margin-left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: calc(36px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 24px 20px;
    transform: translateX(105%);
    color: var(--navy-950);
    background: var(--white);
    box-shadow: -20px 20px 45px rgba(4, 29, 45, 0.15);
    transition: transform 230ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > a:not(.button) {
    padding: 14px 10px;
    border-bottom: 1px solid var(--slate-200);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 16px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero__grid,
  .decision-grid,
  .reserve-grid,
  .risk-grid,
  .standard-grid,
  .rollover-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-bottom: 20px;
  }

  .video-card {
    max-width: 720px;
  }

  .trust-rail {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 55px;
  }

  .trust-rail div:nth-child(2)::after {
    display: none;
  }

  .trust-rail div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(10, 52, 80, 0.12);
  }

  .decision-grid > div:first-child,
  .risk-copy,
  .faq-intro {
    position: static;
  }

  .decision-grid,
  .risk-grid,
  .standard-grid,
  .faq-grid,
  .contact-grid {
    gap: 46px;
  }

  .reserve-grid {
    gap: 30px;
  }

  .reserve-visual {
    max-width: 480px;
    order: 2;
  }

  .reserve-copy {
    order: 1;
  }

  .rollover-options {
    max-width: 700px;
  }

  .contact-copy {
    max-width: 700px;
  }

  .lead-form {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 62px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topline {
    font-size: 0.65rem;
  }

  .topline__inner {
    gap: 8px;
  }

  .brand img {
    width: 43px;
  }

  .brand__words strong {
    font-size: 1.02rem;
  }

  .brand__words span {
    font-size: 0.55rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero {
    padding-top: 45px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__qualifiers {
    display: grid;
    grid-template-columns: 1fr;
  }

  .video-card__top {
    padding: 20px;
  }

  .video-card__badge {
    display: none;
  }

  .video-card__footer {
    padding-inline: 20px;
  }

  .trust-rail {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .trust-rail div {
    padding-inline: 5px;
  }

  .trust-rail div::after {
    display: none !important;
  }

  .trust-rail div:not(:last-child) {
    border-bottom: 1px solid rgba(10, 52, 80, 0.12);
  }

  .decision-section,
  .solutions,
  .reserve-section,
  .risk-check,
  .standard-section,
  .process-section,
  .rollover-section,
  .faq-section,
  .contact-section {
    padding: 78px 0;
  }

  .decision-list,
  .solution-grid,
  .truth-grid,
  .rollover-options,
  .contact-facts,
  .form-row {
    grid-template-columns: 1fr;
  }

  .solution-card--featured {
    grid-column: auto;
  }

  .decision-list article {
    min-height: auto;
  }

  .reserve-visual {
    width: 108%;
    margin-left: -4%;
  }

  .reserve-visual__core {
    width: 155px;
    height: 155px;
  }

  .reserve-node {
    min-width: 106px;
    padding: 10px 12px;
  }

  .reserve-node b {
    font-size: 0.92rem;
  }

  .reserve-node span {
    font-size: 0.55rem;
  }

  .reserve-node--one {
    left: 0;
  }

  .reserve-node--two {
    right: 0;
  }

  .quiz-question {
    padding: 19px 16px;
  }

  .quiz-question legend {
    font-size: 1rem;
  }

  .quiz-options {
    margin-left: 0;
  }

  .quiz-options label {
    min-width: 0;
    flex: 1;
  }

  .standard-list > div {
    grid-template-columns: 42px 1fr;
    padding: 21px 18px;
  }

  .standard-list span {
    width: 36px;
    height: 36px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 17px;
    padding: 0;
  }

  .process-list li::after {
    display: none;
  }

  .process-list__number {
    margin-bottom: 0;
  }

  .process-list h3 {
    min-height: 0;
  }

  .rollover-options {
    transform: none;
  }

  .rollover-options > div,
  .rollover-options > div:nth-child(even) {
    min-height: auto;
    transform: none;
  }

  .faq-list summary {
    padding-right: 43px;
    font-size: 1.02rem;
  }

  .faq-list details > div {
    padding-right: 10px;
  }

  .contact-phone strong {
    font-size: 1.75rem;
  }

  .lead-form {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand,
  .footer-cta {
    grid-column: 1 / -1;
  }

  .footer-cta {
    display: block;
  }

  .footer-cta h2 {
    margin-bottom: 18px;
  }

  .legal-disclosure {
    font-size: 0.65rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 18px;
  }

  .mobile-callbar {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -10px 30px rgba(3, 23, 35, 0.22);
  }

  .mobile-callbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--white);
    background: var(--navy-950);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .mobile-callbar a:last-child {
    color: var(--navy-950);
    background: var(--gold-light);
  }
}



/* New video-section responsive refinements */
@media (max-width: 1080px) {
  .testimonial-heading {
    gap: 34px;
  }

  .story-showcase {
    grid-template-columns: minmax(0, 1.26fr) minmax(285px, 0.74fr);
  }

  .story-tab {
    min-height: 132px;
    grid-template-columns: 39px minmax(0, 1fr) 28px;
    gap: 11px;
    padding: 16px 14px;
  }

  .story-tab__number {
    width: 38px;
    height: 38px;
  }

  .story-tab__copy strong {
    font-size: 0.92rem;
  }

  .education-heading {
    gap: 45px;
  }

  .education-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .testimonial-heading,
  .education-heading {
    grid-template-columns: 1fr;
  }

  .testimonial-heading {
    gap: 25px;
  }

  .local-proof {
    max-width: 380px;
  }

  .story-showcase {
    grid-template-columns: 1fr;
  }

  .story-selector {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .story-tab {
    min-height: 150px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
  }

  .story-tab__play {
    position: absolute;
    right: 15px;
    bottom: 15px;
  }

  .testimonial-disclosure {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .education-heading {
    gap: 24px;
  }

  .education-heading__note {
    max-width: 600px;
  }

  .education-video-grid {
    grid-template-columns: 1fr;
  }

  .education-video-card {
    max-width: 760px;
  }

  .education-video-card__body p {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .testimonial-section,
  .education-section {
    padding: 78px 0;
  }

  .testimonial-heading {
    margin-bottom: 35px;
  }

  .testimonial-heading p {
    font-size: 0.92rem;
  }

  .local-proof {
    min-width: 0;
    width: 100%;
  }

  .story-stage__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 21px 20px 23px;
  }

  .story-stage__caption .button {
    width: 100%;
  }

  .story-selector {
    grid-template-columns: 1fr;
  }

  .story-tab {
    min-height: 126px;
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    align-items: center;
    padding: 17px 15px;
  }

  .story-tab__play {
    position: static;
  }

  .testimonial-disclosure a {
    flex: 1 1 auto;
  }

  .education-video-grid {
    margin-top: 37px;
  }

  .deferred-video__poster {
    padding: 22px;
  }

  .deferred-video__title {
    font-size: clamp(1.35rem, 7.8vw, 1.85rem);
  }

  .deferred-video__mark {
    top: 17px;
    right: 18px;
    width: 43px;
    height: 43px;
  }

  .education-video-card__body {
    padding: 23px 21px 25px;
  }

  .education-prompts {
    grid-template-columns: 1fr;
  }

  .education-prompts > div {
    min-height: auto;
  }

  .education-cta {
    padding: 28px 22px;
  }

  .education-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .education-cta__actions .button {
    width: 100%;
  }
}

@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;
    transition-duration: 0.01ms !important;
  }
}

/* Form-state refinements */
.field-help.is-warning {
  color: #7a4d10;
  font-weight: 750;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
