:root {
  --navy: #071d49;
  --blue: #0b4a99;
  --gold: #d89a24;
  --gold-soft: #fff1c8;
  --green: #18805f;
  --purple: #6846a0;
  --orange: #d66022;
  --ink: #101828;
  --muted: #667085;
  --line: #d8e0ec;
  --paper: #f7f9fd;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(7, 29, 73, 0.16);
}

* {
  box-sizing: border-box;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proofRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softGlow {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(-3%, 0, 0) scale(1);
  }

  50% {
    opacity: 0.38;
    transform: translate3d(2%, -2%, 0) scale(1.04);
  }
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 236, 0.86);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 70px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  transition:
    box-shadow 240ms ease,
    padding 240ms ease,
    background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 36px rgba(7, 29, 73, 0.1);
}

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

.brand-mark {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  height: 60px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 60px;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.nav-links a {
  color: #34415d;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--blue);
}

.button,
.header-cta {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 13px 23px;
  position: relative;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button:active,
.header-cta:active {
  transform: translateY(0) scale(0.98);
}

.button-primary,
.header-cta {
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(216, 154, 36, 0.28);
  color: #1a1305;
}

.button-primary::after,
.header-cta::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  inset: 0 auto 0 -70%;
  position: absolute;
  transform: skewX(-18deg);
  transition: left 520ms ease;
  width: 52%;
}

.button-primary:hover::after,
.header-cta:hover::after {
  left: 118%;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 51, 0.98) 0%, rgba(5, 20, 51, 0.86) 38%, rgba(5, 20, 51, 0.18) 78%),
    url("assets/emi-hero-classroom-face-v4.png") center / cover no-repeat;
  color: var(--white);
  min-height: calc(100svh - 78px);
  overflow: hidden;
  padding: clamp(62px, 8vw, 104px) clamp(20px, 7vw, 92px) clamp(44px, 6vw, 70px);
  position: relative;
}

.hero-shade {
  animation: softGlow 10s ease-in-out infinite;
  background: radial-gradient(circle at 28% 48%, rgba(216, 154, 36, 0.26), transparent 34%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 13px;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero h1,
.hero-lede,
.hero-actions {
  animation: heroRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero .eyebrow {
  animation-delay: 90ms;
}

.hero h1 {
  animation-delay: 180ms;
}

.hero-lede {
  animation-delay: 300ms;
}

.hero-actions {
  animation-delay: 420ms;
}

.hero h1 {
  font-size: clamp(3rem, 6.7vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
  max-width: 820px;
  text-wrap: balance;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  margin: 26px 0 0;
  max-width: 670px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 840px;
}

.hero-proof > span {
  animation: proofRise 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  min-height: 82px;
  padding: 16px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.hero-proof > span:nth-child(1) {
  animation-delay: 540ms;
}

.hero-proof > span:nth-child(2) {
  animation-delay: 620ms;
}

.hero-proof > span:nth-child(3) {
  animation-delay: 700ms;
}

.hero-proof > span:nth-child(4) {
  animation-delay: 780ms;
}

.hero-proof > span:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-3px);
}

.hero-proof strong {
  color: var(--gold-soft);
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  padding: 1px clamp(18px, 5vw, 72px);
}

.trust-strip span {
  background: #fbfcff;
  color: var(--navy);
  font-weight: 900;
  min-height: 78px;
  padding: 25px 20px;
  text-align: center;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.trust-strip span:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.section {
  padding: clamp(68px, 8vw, 118px) clamp(20px, 6vw, 82px);
}

.section-heading {
  max-width: 950px;
}

.section-heading.narrow {
  max-width: 820px;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
}

.section-heading p:not(.section-kicker),
.solution-copy p,
.split-copy p,
.proof-copy p {
  color: var(--muted);
  font-size: 1.07rem;
  margin: 18px 0 0;
  max-width: 780px;
}

.pain-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.pain-grid article,
.outcome-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 28px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pain-grid article:hover,
.outcome-grid article:hover,
.method-grid article:hover,
.solution-cards article:hover,
.module:hover {
  border-color: rgba(216, 154, 36, 0.46);
  box-shadow: 0 20px 46px rgba(7, 29, 73, 0.11);
  transform: translateY(-6px);
}

.pain-grid span,
.outcome-grid span {
  color: var(--gold);
  display: block;
  font-size: 0.95rem;
  font-weight: 950;
  margin-bottom: 34px;
}

.pain-grid h3,
.outcome-grid h3 {
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.18;
}

.pain-grid p,
.outcome-grid p {
  color: var(--muted);
  margin: 14px 0 0;
}

.solution-section {
  align-items: stretch;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  padding: clamp(68px, 8vw, 116px) clamp(20px, 6vw, 82px);
}

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

.solution-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.solution-cards {
  display: grid;
  gap: 14px;
}

.solution-cards article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.solution-cards article:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.solution-cards strong {
  color: var(--gold-soft);
  display: block;
  font-size: 1.15rem;
}

.solution-cards span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-top: 8px;
}

.program-section {
  background: var(--white);
}

.program-layout {
  display: grid;
  gap: clamp(26px, 5vw, 60px);
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  margin-top: 44px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.module {
  align-items: flex-start;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: 54px minmax(0, 1fr);
  padding: 24px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.module-index {
  align-items: center;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 1.35rem;
  font-weight: 950;
  height: 52px;
  justify-content: center;
  transition: transform 220ms ease;
  width: 52px;
}

.module:hover .module-index {
  transform: rotate(-4deg) scale(1.05);
}

.module-blue .module-index {
  background: var(--blue);
}

.module-green .module-index {
  background: var(--green);
}

.module-purple .module-index {
  background: var(--purple);
}

.module-orange .module-index {
  background: var(--orange);
}

.module-meta {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.module h3 {
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.18;
}

.module p:last-child {
  color: var(--muted);
  margin: 10px 0 0;
}

.program-card {
  align-self: start;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  padding: 30px;
  position: sticky;
  top: 98px;
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.program-card:hover {
  box-shadow: 0 30px 86px rgba(7, 29, 73, 0.24);
  transform: translateY(-4px);
}

.program-card .section-kicker {
  color: var(--gold-soft);
}

.ratio {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px 0;
}

.ratio > span {
  color: var(--gold-soft);
  display: block;
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.ratio p {
  color: rgba(255, 255, 255, 0.76);
  margin: 10px 0 0;
}

.ratio.strong > span {
  color: #bfe7d7;
}

.program-card .button {
  margin-top: 10px;
  width: 100%;
}

.image-split {
  align-items: center;
  background: #eef4fb;
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  padding: clamp(68px, 8vw, 116px) clamp(20px, 6vw, 82px);
}

.image-split figure {
  margin: 0;
}

.image-split img {
  animation: floatImage 7s ease-in-out infinite;
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 420px;
  object-fit: cover;
  transform-origin: center;
  transition: transform 500ms ease;
  width: 100%;
}

.image-split figure:hover img {
  animation-play-state: paused;
  transform: scale(1.025);
}

.split-copy h2 {
  color: var(--navy);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.check-list span {
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 850;
  padding: 14px 16px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.check-list span:hover {
  box-shadow: 0 14px 28px rgba(7, 29, 73, 0.08);
  transform: translateX(6px);
}

.quote-band {
  background:
    linear-gradient(rgba(7, 29, 73, 0.92), rgba(7, 29, 73, 0.92)),
    url("assets/emi-hero-classroom-face-v4.png") center / cover no-repeat;
  color: var(--white);
  padding: clamp(54px, 7vw, 92px) clamp(20px, 8vw, 120px);
}

.quote-band blockquote {
  font-size: clamp(1.35rem, 3.2vw, 2.65rem);
  font-weight: 780;
  line-height: 1.24;
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
  text-wrap: balance;
}

.outcomes-section {
  background: var(--white);
}

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

.contact-section {
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: clamp(30px, 6vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  padding: clamp(68px, 8vw, 116px) clamp(20px, 6vw, 82px);
}

.contact-copy h2 {
  color: var(--white);
  max-width: 780px;
}

.contact-info {
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 34px;
  max-width: 620px;
  padding-left: 22px;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info a {
  color: var(--gold-soft);
  font-weight: 950;
}

.lead-form {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 30px;
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.lead-form:hover {
  box-shadow: 0 30px 86px rgba(7, 29, 73, 0.22);
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.count-up {
  display: inline-block;
  min-width: 1.2ch;
}

.lead-form h3 {
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.16;
}

.lead-form > p {
  color: var(--muted);
  margin: -6px 0 4px;
}

.lead-form label {
  color: #34415d;
  display: grid;
  font-size: 0.92rem;
  font-weight: 850;
  gap: 8px;
}

.lead-form input,
.lead-form select {
  background: #f7f9fd;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(11, 74, 153, 0.14);
}

.lead-form .button {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  align-items: center;
  background: #061638;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 82px);
}

.site-footer p {
  color: var(--gold-soft);
  font-weight: 950;
  margin: 0;
}

.site-footer a {
  font-weight: 850;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .hero-proof,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .solution-section,
  .program-layout,
  .image-split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .program-card {
    position: static;
  }

  .image-split img {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    background: #f5f7fb;
    font-size: 15.5px;
    line-height: 1.56;
    overflow-x: hidden;
    padding-bottom: 24px;
  }

  .site-header {
    gap: 12px;
    min-height: 60px;
    padding: 7px 14px;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    font-size: 0.9rem;
    line-height: 1.04;
    max-width: 150px;
  }

  .brand small {
    display: block;
    font-size: 0.7rem;
    margin-top: 1px;
  }

  .header-cta {
    display: none;
  }

  .button,
  .header-cta {
    min-height: 52px;
    padding: 14px 18px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(5, 20, 51, 0.02) 0%, rgba(5, 20, 51, 0.08) 38%, rgba(5, 20, 51, 0.64) 54%, rgba(5, 20, 51, 0.98) 67%, rgba(5, 20, 51, 0.99) 100%),
      url("assets/emi-hero-classroom-face-v4.png") 60% top / auto clamp(420px, 52svh, 500px) no-repeat,
      var(--navy);
    display: block;
    min-height: auto;
    padding: clamp(330px, 45svh, 390px) 16px 108px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, transparent 0%, rgba(7, 29, 73, 0.16) 42%, rgba(7, 29, 73, 0.92) 100%),
      radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.24), transparent 20%),
      radial-gradient(circle at 18% 82%, rgba(216, 154, 36, 0.18), transparent 34%);
    opacity: 0.95;
  }

  .hero-content {
    max-width: none;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(2.16rem, 9.8vw, 3.08rem);
    line-height: 1;
    max-width: 11.5ch;
  }

  .hero-lede {
    font-size: 0.98rem;
    margin-top: 14px;
    max-width: 32rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding-right: 70px;
  }

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

  .hero-proof {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    padding-right: 70px;
  }

  .hero-proof > span {
    border-radius: 8px;
    min-height: auto;
    padding: 13px 12px;
  }

  .hero-proof strong {
    font-size: 1.24rem;
  }

  .trust-strip {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .trust-strip span {
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.86rem;
    min-height: 52px;
    padding: 13px 10px;
  }

  h2 {
    font-size: clamp(1.86rem, 8.4vw, 2.68rem);
    line-height: 1.06;
  }

  .section-heading p:not(.section-kicker),
  .solution-copy p,
  .split-copy p,
  .proof-copy p {
    font-size: 1rem;
    margin-top: 14px;
  }

  .section,
  .solution-section,
  .image-split,
  .contact-section {
    padding: 54px 16px;
  }

  .pain-grid,
  .outcome-grid,
  .program-layout {
    margin-top: 28px;
  }

  .pain-grid,
  .solution-cards,
  .timeline,
  .outcome-grid,
  .check-list {
    gap: 12px;
  }

  .pain-grid article,
  .outcome-grid article {
    min-height: auto;
  }

  .pain-grid span,
  .outcome-grid span {
    margin-bottom: 18px;
  }

  .pain-grid h3,
  .outcome-grid h3,
  .module h3 {
    font-size: 1.12rem;
  }

  .solution-section {
    gap: 24px;
  }

  .solution-cards article {
    padding: 18px;
  }

  .module {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .module-index {
    height: 42px;
    font-size: 1.08rem;
    width: 42px;
  }

  .module-meta {
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .lead-form,
  .program-card,
  .pain-grid article,
  .outcome-grid article {
    border-radius: 8px;
    padding: 20px;
  }

  .program-card {
    box-shadow: 0 18px 48px rgba(7, 29, 73, 0.2);
  }

  .ratio {
    padding: 18px 0;
  }

  .ratio > span {
    font-size: 2.36rem;
  }

  .image-split {
    gap: 26px;
  }

  .image-split img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .check-list span {
    padding: 13px 14px;
  }

  .quote-band {
    background:
      linear-gradient(rgba(7, 29, 73, 0.94), rgba(7, 29, 73, 0.94)),
      url("assets/emi-hero-classroom-face-v4.png") 66% center / cover no-repeat;
    padding: 44px 16px;
  }

  .quote-band blockquote {
    font-size: 1.28rem;
    line-height: 1.34;
    text-align: left;
  }

  .contact-section {
    gap: 26px;
    padding-bottom: 60px;
  }

  .contact-info {
    margin-top: 24px;
    padding-left: 16px;
  }

  .lead-form {
    gap: 14px;
  }

  .lead-form h3 {
    font-size: 1.35rem;
  }

  .lead-form input,
  .lead-form select {
    font-size: 16px;
    min-height: 54px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 22px 16px 28px;
  }

  .mobile-cta {
    background: transparent;
    border: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    left: auto;
    padding: 0 12px max(12px, env(safe-area-inset-bottom)) 0;
    position: fixed;
    right: 0;
    z-index: 50;
  }

  .mobile-cta a {
    align-items: center;
    border-radius: 999px;
    display: flex;
    font-weight: 950;
    justify-content: center;
    box-shadow: 0 15px 34px rgba(7, 29, 73, 0.24);
    font-size: 0.76rem;
    height: 62px;
    line-height: 1.05;
    padding: 8px;
    text-align: center;
    width: 62px;
  }

  .mobile-cta a:first-child {
    background: var(--navy);
    color: var(--white);
  }

  .mobile-cta a:last-child {
    background: var(--gold);
    color: #1a1305;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
