@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --color-slate: #2f4f5c;
  --color-slate-light: #3d6272;
  --color-slate-dark: #203944;
  --color-slate-tint: #eef2f3;
  --color-orange: #d96c2f;
  --color-orange-hover: #c05a20;
  --color-amber: #e5531d;
  --color-gold: #c58a2b;
  --color-gold-tint: #f7eee6;
  --color-gray-dark: #505050;
  --color-gray-mid: #777;
  --color-gray-light: #aaa;
  --color-white: #fff;
  --color-off-white: #f9f9f9;
  --font-display: "Oswald", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 16px rgba(47, 79, 92, 0.1);
  --shadow-card-hover: 0 6px 32px rgba(47, 79, 92, 0.18);
  --shadow-cta: 0 4px 20px rgba(217, 108, 47, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-gray-dark);
  background: var(--color-off-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: var(--color-white);
  color: var(--color-slate);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 760px;
}

.prose {
  max-width: 680px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 84px;
  background: linear-gradient(to bottom, rgba(22, 42, 50, 0.74), rgba(22, 42, 50, 0));
  color: var(--color-white);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(32, 57, 68, 0.97);
  box-shadow: 0 10px 32px rgba(10, 30, 38, 0.18);
  backdrop-filter: blur(16px);
}

.nav-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: max-content;
  position: relative;
  z-index: 101;
}

.brand-mark-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(7, 24, 31, 0.2);
}

.brand-mark {
  position: absolute;
  width: 58px;
  max-width: none;
  height: auto;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  flex: 1;
}

.nav-link,
.dropdown-trigger {
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 31px 0 29px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.18s ease;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.dropdown.is-open .chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-link:hover,
.dropdown-trigger:hover,
.nav-link.is-active,
.dropdown.is-active > .dropdown-trigger {
  color: var(--color-gold);
}

.nav-link:focus-visible,
.dropdown-trigger:focus-visible {
  outline: none;
  color: var(--color-gold);
}

.nav-link.is-active::after,
.dropdown.is-active > .dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--color-gold);
}

.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% - 8px);
  left: -20px;
  width: var(--panel-width, 260px);
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--color-white);
  border: 1px solid rgba(47, 79, 92, 0.12);
  border-top: 3px solid var(--color-orange);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 56px rgba(17, 42, 52, 0.2);
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown.is-open .dropdown-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-label {
  padding: 11px 12px 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
}

.dropdown-panel a {
  display: block;
  padding: 11px 12px;
  color: var(--color-slate);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: var(--color-slate-tint);
  color: var(--color-orange-hover);
}

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  box-shadow: var(--shadow-cta);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 108, 47, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-secondary.dark {
  color: var(--color-slate);
  border-color: var(--color-slate);
}

.btn-secondary.dark:hover {
  background: rgba(47, 79, 92, 0.08);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: -2px;
  border-radius: var(--radius-sm);
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-slate-dark);
  color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 92px 0 32px;
  overflow-y: auto;
}

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

.mobile-nav a {
  display: block;
  padding: 10px 32px;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--color-gold);
}

.mobile-label {
  padding: 24px 32px 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
}

.mobile-cta {
  margin: 24px 32px 0;
  width: calc(100% - 64px);
}

main {
  background: var(--color-off-white);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 144px 0 96px;
  background:
    linear-gradient(135deg, rgba(32, 57, 68, 0.92), rgba(47, 79, 92, 0.96)),
    var(--color-slate);
  color: var(--color-white);
  overflow: hidden;
  border-bottom: 3px solid var(--color-gold);
}

.hero::before {
  content: "PLATFORM OF PAPAS";
  position: absolute;
  right: -24px;
  bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 170px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.055);
  line-height: 0.9;
  white-space: nowrap;
  pointer-events: none;
}

.hero.with-image .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.hero.center {
  text-align: center;
}

.hero.center .hero-copy {
  margin: 0 auto;
}

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

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-white);
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  font-weight: 500;
}

.hero.center p {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero.center .hero-actions,
.section.center .section-actions {
  justify-content: center;
}

.newsletter-modal-cta {
  min-width: 220px;
}

.hero-media {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  background: var(--color-slate-light);
}

.hero-media.wide {
  aspect-ratio: 16 / 10;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 96px 0;
  background: var(--color-white);
}

.section.tint {
  background: var(--color-slate-tint);
}

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

.section.gold-tint {
  background: var(--color-gold-tint);
}

.section.dark {
  background: var(--color-slate);
  color: var(--color-white);
}

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

.section.orange .btn-primary {
  background: var(--color-slate-dark);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(22, 42, 50, 0.28);
}

.section.orange .btn-primary:hover {
  background: var(--color-slate);
  box-shadow: 0 12px 30px rgba(22, 42, 50, 0.34);
}

.section.approach-cta {
  background: var(--color-slate-tint);
  color: var(--color-slate);
  border-top: 1px solid rgba(47, 79, 92, 0.12);
}

.section.approach-cta h2 {
  color: var(--color-slate-dark);
}

.section.approach-cta .lead {
  color: var(--color-gray-dark);
}

.section.center {
  text-align: center;
}

.section.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  color: var(--color-slate);
}

.section.dark h2,
.section.orange h2,
.section.dark h3,
.section.orange h3 {
  color: var(--color-white);
}

.section h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-slate);
}

.section p {
  margin: 0 0 20px;
  font-size: 17px;
}

.section.dark p,
.section.orange p {
  color: rgba(255, 255, 255, 0.78);
}

.lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-slate);
}

.section.dark .lead,
.section.orange .lead {
  color: rgba(255, 255, 255, 0.92);
}

.proof-bar {
  background: var(--color-slate-tint);
  border-top: 1px solid rgba(47, 79, 92, 0.1);
  border-bottom: 1px solid rgba(47, 79, 92, 0.1);
  padding: 20px 0;
}

.proof-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--color-slate);
}

.proof-item span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--color-gray-dark);
}

.two-col,
.contact-grid,
.about-teaser {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.about-teaser {
  align-items: center;
}

.pullquote {
  max-width: 760px;
  margin: 32px 0;
  padding: 16px 0 16px 24px;
  border-left: 4px solid var(--color-gold);
  color: var(--color-slate);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
}

.pullquote.centered {
  margin-left: auto;
  margin-right: auto;
}

.dark .pullquote {
  color: var(--color-white);
}

.truth-list,
.check-list,
.link-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.truth-list li,
.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin: 12px 0;
  font-size: 16px;
}

.list-icon {
  font-weight: 700;
  color: var(--color-orange);
}

.list-icon.no {
  color: var(--color-amber);
}

.contrast-card,
.program-card,
.testimonial-card,
.feature-card,
.letter-card,
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contrast-card {
  padding: 34px;
}

.contrast-card h3 {
  font-size: 20px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.program-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 30px;
  border-top: 4px solid var(--color-orange);
  transition: transform 0.2s, box-shadow 0.2s;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-slate-tint);
  color: var(--color-slate);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.tag.gold {
  color: var(--color-gold);
}

.program-card p {
  flex: 1;
  font-size: 15px;
}

.price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-orange);
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-slate-light);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}

.image-panel.wide {
  aspect-ratio: 16 / 10;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-link {
  color: var(--color-orange);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

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

.testimonial-card {
  padding: 30px;
  border-top: 3px solid var(--color-gold);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
}

.testimonial-name {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-slate);
}

.newsletter-strip {
  background: var(--color-slate);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
}

.newsletter-strip h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 36px;
}

.newsletter-strip p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-strip .newsletter-privacy {
  margin: 14px auto 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.ghl-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  background: rgba(15, 35, 43, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ghl-modal-overlay.active {
  opacity: 1;
}

.ghl-modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 28px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: var(--color-slate);
  box-shadow: 0 30px 96px rgba(8, 25, 32, 0.42);
}

.ghl-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.ghl-modal-close:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.ghl-modal-header {
  flex-shrink: 0;
  padding-right: 42px;
}

.ghl-modal-header h2 {
  margin: 0 0 6px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
}

.ghl-modal-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.ghl-modal-form-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 12px -28px 0;
  background: var(--color-slate);
  -webkit-overflow-scrolling: touch;
}

.ghl-loading {
  padding: 48px 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.inline-form,
.full-form {
  display: grid;
  gap: 14px;
}

.inline-form {
  grid-template-columns: 1fr auto;
  max-width: 560px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-slate);
}

.dark .form-group label,
.newsletter-strip .form-group label {
  color: var(--color-white);
}

.form-group input,
.form-group select,
.form-group textarea,
.inline-form input {
  width: 100%;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-gray-dark);
  padding: 13px 16px;
  font-size: 15px;
  transition: border-color 0.2s;
}

.inline-form input {
  border-radius: var(--radius-pill);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.inline-form input:focus {
  outline: none;
  border-color: var(--color-slate);
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  font-size: 13px;
}

.form-note {
  color: rgba(255, 255, 255, 0.58);
}

.form-status {
  min-height: 22px;
  font-weight: 700;
}

.form-status.success {
  color: var(--color-slate);
}

.dark .form-status.success,
.newsletter-strip .form-status.success {
  color: var(--color-white);
}

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

.story-block {
  padding-top: 24px;
  border-top: 2px solid var(--color-gold);
}

.case-grid,
.feature-grid,
.stat-grid,
.journey-strip {
  display: grid;
  gap: 24px;
}

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

.feature-card {
  padding: 30px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--color-slate-tint);
  color: var(--color-orange);
}

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

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  color: var(--color-white);
}

.stat-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.footnote {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-style: italic;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.comparison-col {
  padding: 28px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.comparison-arrow {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-gold);
}

.framework-list {
  position: relative;
  max-width: 880px;
  margin: 44px auto 0;
  text-align: left;
}

.framework-list::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 31px;
  width: 1px;
  background: rgba(197, 138, 43, 0.5);
}

.framework-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 116px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(47, 79, 92, 0.1);
}

.framework-step:last-child {
  border-bottom: 0;
}

.step-letter {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 108, 47, 0.3);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange);
  background: var(--color-white);
}

.framework-step > div:last-child {
  min-width: 0;
  text-align: left;
}

.framework-step h3 {
  margin-bottom: 6px;
}

.framework-step p {
  max-width: 720px;
  margin: 0;
}

.journey-strip {
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.journey-step {
  padding: 40px 32px;
  color: var(--color-white);
  text-align: center;
}

.journey-step:nth-child(1) {
  background: var(--color-slate);
}

.journey-step:nth-child(2) {
  background: var(--color-orange);
}

.journey-step:nth-child(3) {
  background: var(--color-gold);
}

.journey-step .step-num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.74;
}

.letter-card {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 36px;
  border-top: 3px solid var(--color-gold);
  text-align: left;
}

.contact-card {
  padding: 32px;
}

.contact-card.contact-form-embed {
  min-height: 656px;
  padding: 0;
  overflow: hidden;
  background: var(--color-slate);
}

.contact-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 656px;
  border: 0;
}

.link-list li {
  margin: 14px 0;
}

.legal-hero {
  padding: 152px 0 72px;
  background: var(--color-slate);
  color: var(--color-white);
  border-bottom: 3px solid var(--color-gold);
}

.legal-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.08;
}

.legal-hero p {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-notice {
  padding: 22px 0;
  background: var(--color-gold-tint);
  color: var(--color-slate-dark);
  border-bottom: 1px solid rgba(197, 138, 43, 0.22);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.legal-shell {
  padding: 76px 0 96px;
  background: var(--color-white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 72px;
  align-items: start;
  justify-content: center;
}

.legal-toc {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
  border-left: 2px solid var(--color-orange);
}

.legal-toc > span {
  margin-bottom: 6px;
  color: var(--color-slate);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-toc a {
  color: var(--color-gray-mid);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.18s ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--color-orange);
}

.legal-document {
  min-width: 0;
}

.legal-section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(47, 79, 92, 0.12);
  scroll-margin-top: 112px;
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 18px;
  color: var(--color-slate-dark);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.2;
}

.legal-section p {
  margin: 0 0 16px;
  color: var(--color-gray-dark);
  font-size: 15px;
  line-height: 1.8;
}

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

.legal-section a {
  color: var(--color-orange-hover);
  font-weight: 700;
}

.legal-list {
  margin: 12px 0 18px;
  padding-left: 22px;
}

.legal-list li {
  margin: 10px 0;
  padding-left: 5px;
  color: var(--color-gray-dark);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer {
  background: var(--color-slate-dark);
  color: var(--color-white);
  padding: 64px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 330px;
}

.footer-brand h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.footer-brand p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.footer-links h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--color-gold);
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--color-white);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.shell-empty {
  min-height: 48vh;
  display: grid;
  place-items: center;
  color: transparent;
}

@media (max-width: 1023px) {
  .site-header,
  .nav-inner {
    height: 68px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 101;
  }

  .brand-text {
    font-size: 17px;
  }

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

  .brand-mark {
    width: 51px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .hero.with-image .hero-grid,
  .two-col,
  .about-teaser,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-height: 520px;
  }

  .proof-bar-inner,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-grid,
  .testimonial-grid,
  .testimonial-grid.two,
  .case-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-arrow {
    transform: rotate(90deg);
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 2px solid var(--color-orange);
  }

  .legal-toc > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .brand-tagline {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .legal-hero {
    padding: 116px 0 52px;
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-meta {
    flex-direction: column;
    gap: 6px;
  }

  .legal-notice {
    padding: 18px 0;
    font-size: 14px;
  }

  .legal-shell {
    padding: 52px 0 64px;
  }

  .legal-toc {
    display: none;
  }

  .legal-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .legal-section h2 {
    font-size: 23px;
  }

  .hero p,
  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .mobile-cta {
    width: calc(100% - 64px);
  }

  .proof-bar-inner,
  .stat-grid,
  .form-row,
  .inline-form,
  .journey-strip {
    grid-template-columns: 1fr;
  }

  .inline-form .btn-primary {
    width: 100%;
  }

  .contrast-card,
  .program-card,
  .testimonial-card,
  .feature-card,
  .letter-card,
  .contact-card {
    padding: 24px;
  }

  .framework-list {
    margin-top: 32px;
  }

  .framework-list::before {
    left: 24px;
    top: 28px;
    bottom: 28px;
  }

  .framework-step {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    min-height: 104px;
    padding: 20px 0;
  }

  .step-letter {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .framework-step h3 {
    font-size: 20px;
  }

  .framework-step p {
    font-size: 15px;
    line-height: 1.6;
  }

  .ghl-modal-box {
    padding: 24px 20px 0;
  }

  .ghl-modal-form-scroll {
    margin: 12px -20px 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

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