/* HHH — Manus-style rebuild · July 2026 */
/* Palette locked to Manus reference · HHH branding preserved */

:root {
  --green-hero: #0F2E1E;
  --green-hero-alt: #1B3A2D;
  --green: #1B3A2D;
  --green-deep: #0A1F13;
  --cream: #F5F0E8;
  --cream-alt: #EDE8DC;
  --gold: #C8831A;
  --gold-light: #D4832A;
  --terracotta: #5C2A12;
  --charcoal: #1A1A1A;
  --grey-600: #4A4A4A;
  --grey-400: #8A8A8A;
  --grey-200: #D8D3C7;
  --white: #FFFFFF;
  --border: rgba(26,26,26,0.10);
  --border-dark: rgba(255,255,255,0.14);
  --shadow-soft: 0 2px 24px rgba(15,46,30,0.08);
  --radius: 14px;
  --radius-pill: 999px;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-serif: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-brand img, .nav-logo {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .nav-brand img, .nav-logo { height: 52px; }
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand-text strong {
  font-weight: 700;
  font-size: 15px;
  color: var(--green);
  letter-spacing: -0.01em;
}
.nav-brand-text span {
  font-size: 11.5px;
  color: var(--grey-600);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  color: var(--charcoal);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white) !important;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--green-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.2s; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-inner.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }
  .nav-inner.open .nav-cta {
    display: inline-flex;
    margin: 8px 32px 20px;
    align-self: flex-start;
  }
}

/* ============ HERO ============ */
.hero {
  background: var(--green-hero);
  color: var(--white);
  padding: 130px 0 160px;
  position: relative;
  overflow: hidden;
}
.hero.terracotta { background: var(--terracotta); }
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 34px;
  color: var(--white);
}
.eyebrow.dark {
  border-color: rgba(26,26,26,0.25);
  color: var(--green);
}
.hero h1 {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  max-width: 780px;
}
.hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  display: block;
  letter-spacing: -0.015em;
}
.hero-sub {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0 0 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
}
.btn-primary {
  background: var(--white);
  color: var(--green) !important;
}
.btn-primary:hover { background: var(--cream); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: var(--white) !important;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.btn-solid {
  background: var(--green);
  color: var(--white) !important;
}
.btn-solid:hover { background: var(--green-deep); }
.btn-gold {
  background: var(--gold);
  color: var(--white) !important;
}
.btn-gold:hover { background: var(--gold-light); }

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 34px;
  font-size: 13.5px;
  color: var(--grey-600);
  text-align: center;
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-item strong { color: var(--charcoal); font-weight: 600; }
.trust-sep { color: var(--grey-400); }

/* ============ SECTION ============ */
section.sect {
  padding: 110px 0;
}
section.sect.cream { background: var(--cream); }
section.sect.white { background: var(--white); }
section.sect.dark { background: var(--green-hero); color: var(--white); }

.sect-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.sect-head.left {
  text-align: left;
  margin-left: 0;
}
.sect-head h2 {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 20px 0 20px;
  color: inherit;
}
.sect-head h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.sect-head p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--grey-600);
  margin: 0;
}
section.sect.dark .sect-head p { color: rgba(255,255,255,0.75); }

/* ============ CARDS ============ */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.card p { color: var(--grey-600); margin: 0 0 20px; font-size: 15.5px; line-height: 1.6; }
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 14.5px;
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card.featured { border-color: var(--gold); }

/* stat cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.stat-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.stat-lbl {
  font-size: 13px;
  color: var(--grey-600);
  margin-top: 10px;
  letter-spacing: 0.03em;
}

/* pricing card */
.pricing {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}
.pricing.featured { border-color: var(--gold); border-width: 2px; }
.pricing h3 { font-size: 22px; font-weight: 700; margin: 0 0 6px; }
.pricing .price {
  font-size: 44px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  margin: 14px 0 6px;
}
.pricing .price small { font-size: 15px; font-weight: 500; color: var(--grey-600); }
.pricing .meta { font-size: 13.5px; color: var(--grey-400); margin-bottom: 22px; letter-spacing: 0.02em; }
.pricing p { color: var(--grey-600); font-size: 15px; margin: 0 0 24px; }
.pricing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 14.5px;
  color: var(--charcoal);
}
.pricing ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.pricing ul li:last-child { border-bottom: 0; }
.pricing ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-weight: 700;
}

/* team card */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: left;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 18px;
  border: 2px solid var(--gold);
}
.team-card h4 { margin: 0 0 4px; font-size: 18px; font-weight: 700; }
.team-card .role { color: var(--grey-600); font-size: 14px; margin-bottom: 12px; }
.team-card .creds { font-size: 12.5px; color: var(--gold); font-weight: 600; letter-spacing: 0.03em; margin-bottom: 14px; }
.team-card .country { font-size: 13.5px; color: var(--grey-600); }

/* review card */
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.review .stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.review-quote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  margin: 0 0 24px;
}
.review-author {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review-author strong { font-size: 14.5px; font-weight: 700; }
.review-author .country { font-size: 13px; color: var(--grey-600); }
.review-author .program { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.02em; margin-top: 3px; }

/* ============ TWO-COL ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 50px; }
}

/* ============ CONTACT ============ */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 720px;
  margin: 0 auto;
}
.form-row { margin-bottom: 20px; }
.form-row.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .form-row.grid-2 { grid-template-columns: 1fr; } }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--grey-600); margin-top: 14px; }

/* ============ FOOTER ============ */
footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 40px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand img { height: 64px; }
.footer-brand strong { color: var(--white); font-size: 16px; }
.footer-grid p { font-size: 14px; line-height: 1.7; margin: 0 0 12px; }
.footer-grid h5 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid a { color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.creds-line { letter-spacing: 0.05em; font-size: 12px; }

/* IPHM badge */
.iphm-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 20px;
}
.iphm-strip img { height: 60px; }
.iphm-strip p { margin: 0; font-size: 13.5px; color: var(--grey-600); line-height: 1.5; }
.iphm-strip strong { color: var(--charcoal); font-weight: 600; }

/* Aggregate stats bar */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 900px;
  margin: 60px auto 0;
  background: var(--white);
}
.stat-bar > div {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-bar > div:last-child { border-right: 0; }
.stat-bar-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-bar-lbl {
  font-size: 12px;
  color: var(--grey-600);
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-bar > div:nth-child(2) { border-right: 0; }
}

/* utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ============ ACCESSIBILITY & ORIGINAL-SITE FEATURES · 2026-07-20 ============ */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-secondary {
  background: transparent;
  border-color: rgba(15,46,30,0.28);
  color: var(--green) !important;
}
.btn-secondary:hover { background: var(--cream); border-color: var(--green); }

.feature-band {
  background: var(--green-hero);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.feature-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -210px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255,255,255,0.025), 0 0 0 116px rgba(255,255,255,0.02);
}
.feature-band .two-col { position: relative; z-index: 1; }
.feature-band p { color: rgba(255,255,255,0.78); }
.feature-band .readiness-points { list-style: none; margin: 0; padding: 0; }
.feature-band .readiness-points li { padding: 13px 0 13px 30px; border-bottom: 1px solid rgba(255,255,255,0.12); position: relative; }
.feature-band .readiness-points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

.instagram-shell { border-top: 1px solid var(--border); padding-top: 34px; }
.instagram-profile-link { display: inline-flex; align-items: center; gap: 14px; color: var(--green); margin-bottom: 30px; }
.instagram-profile-link small { display: block; color: var(--grey-600); font-size: 12px; margin-top: 2px; }
.instagram-avatar { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: var(--white); font-weight: 800; font-size: 12px; letter-spacing: .08em; border: 3px solid var(--gold); }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.instagram-card { grid-column: span 2; min-height: 270px; padding: 28px; display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--border); position: relative; transition: transform .18s, border-color .18s, background .18s; }
.instagram-card:nth-child(4), .instagram-card:nth-child(5) { grid-column: span 3; }
.instagram-card:hover { transform: translateY(-4px); border-color: rgba(200,131,26,.55); background: var(--white); }
.instagram-card-number { font-family: var(--f-serif); font-style: italic; font-size: 44px; line-height: 1; color: rgba(200,131,26,.52); }
.instagram-card-meta { margin: 25px 0 12px; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-600); font-weight: 700; }
.instagram-card p { margin: 0 0 24px; font-size: 14px; color: var(--charcoal); line-height: 1.65; }
.instagram-card-link { margin-top: auto; color: var(--green); font-size: 13px; font-weight: 700; }
.instagram-status { margin: 22px 0 0; color: var(--grey-600); font-size: 12px; }
.instagram-loading { padding: 30px; background: var(--cream); border: 1px solid var(--border); color: var(--grey-600); }
.instagram-shell.is-ready .instagram-loading, .instagram-shell.has-error .instagram-loading { display: none; }

.quiz-page-intro { max-width: 720px; }
.quiz-page-intro p { max-width: 660px; }
.quiz-shell { max-width: 900px; margin: 0 auto; }
.quiz-frame { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.quiz-meta { display: flex; justify-content: space-between; gap: 20px; padding: 22px 28px 14px; color: var(--grey-600); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.quiz-progress { height: 6px; background: var(--cream-alt); overflow: hidden; }
.quiz-progress span { display: block; height: 100%; width: 5%; background: var(--gold); transition: width .2s ease-out; }
.quiz-question { padding: 42px 48px 16px; outline: none; }
.quiz-question fieldset { border: 0; margin: 0; padding: 0; }
.quiz-question legend { font-size: clamp(25px, 3vw, 36px); font-weight: 800; line-height: 1.18; letter-spacing: -.02em; color: var(--green); margin-bottom: 30px; }
.quiz-options { display: grid; gap: 12px; }
.quiz-option { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 14px; padding: 17px 18px; border: 1px solid var(--border); background: var(--white); cursor: pointer; transition: border-color .15s, background .15s; }
.quiz-option:hover, .quiz-option.is-selected { border-color: var(--gold); background: var(--cream); }
.quiz-option input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-option-marker { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--cream-alt); color: var(--green); font-size: 12px; font-weight: 800; }
.quiz-option.is-selected .quiz-option-marker { background: var(--gold); color: var(--white); }
.quiz-actions { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 48px 42px; }
.quiz-actions .btn[disabled] { opacity: .38; cursor: not-allowed; }
.quiz-message { color: #8a2a1f; font-size: 14px; min-height: 24px; padding: 0 48px; }
.quiz-result-card { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-soft); padding: 54px; outline: none; }
.quiz-result-card h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1; color: var(--green); margin: 18px 0; }
.quiz-result-card > p { color: var(--grey-600); }
.quiz-score { color: var(--gold) !important; font-size: 68px; line-height: 1; font-weight: 800; letter-spacing: -.04em; margin: 18px 0; }
.quiz-score span { font-size: 18px; color: var(--grey-400); letter-spacing: 0; }
.quiz-result-card ol { margin: 30px 0; padding-left: 22px; }
.quiz-result-card li { margin: 10px 0; padding-left: 6px; }
.quiz-result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.quiz-disclaimer { border-top: 1px solid var(--border); margin-top: 34px !important; padding-top: 20px; font-size: 12px; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.path-card { background: var(--white); border: 1px solid var(--border); padding: 34px 30px; position: relative; }
.path-card h2 { font-size: 25px; line-height: 1.18; color: var(--green); }
.path-card p, .path-card li { color: var(--grey-600); font-size: 14px; }
.path-card ul { padding-left: 18px; }
.path-card.is-recommended { border: 2px solid var(--gold); transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.path-recommendation-badge { display: inline-flex; background: var(--gold); color: var(--white); padding: 6px 11px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin-bottom: 14px; }

/* ============ REVENUE FUNNEL · PRIVACY-SAFE CONSULTATION LEADS ============ */
.revenue-funnel-grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: 48px; align-items: start; }
.revenue-funnel-grid > *, .revenue-form, .revenue-form .form-row, .revenue-form .form-group { min-width: 0; max-width: 100%; box-sizing: border-box; }
.revenue-form .form-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
.revenue-form input:not([type="checkbox"]):not([type="hidden"]), .revenue-form select, .revenue-form textarea { width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box; }
.revenue-form label, .revenue-form .form-help, .revenue-form .form-safety, .revenue-form .btn { overflow-wrap: anywhere; white-space: normal; }
.revenue-summary { min-width: 0; background: var(--green); color: var(--white); padding: 40px; border-top: 5px solid var(--gold); }
.revenue-summary .eyebrow { color: var(--gold); }
.revenue-summary h2 { color: var(--white); font-size: clamp(30px,4vw,48px); margin: 18px 0; }
.revenue-summary p { color: rgba(255,255,255,.78); }
.revenue-summary ol { list-style: none; padding: 0; margin: 28px 0 0; counter-reset: steps; }
.revenue-summary li { counter-increment: steps; display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.88); font-size: 14px; }
.revenue-summary li::before { content: counter(steps); width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--white); font-size: 12px; font-weight: 800; }
.revenue-form { max-width: none; margin: 0; }
.form-help { color: var(--grey-600); font-size: 12px; margin-top: 7px; line-height: 1.55; }
.consent-row { min-width: 0; max-width: 100%; display: grid; grid-template-columns: 22px minmax(0,1fr); gap: 12px; align-items: start; margin: 22px 0; }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.consent-row label { color: var(--grey-600); font-size: 13px; line-height: 1.55; }
.form-safety { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 18px; color: var(--grey-600); font-size: 12px; line-height: 1.6; }
.booking-boundary { margin-top: 18px; padding: 14px 16px; background: var(--cream); border-left: 4px solid var(--gold); color: var(--charcoal); font-size: 13px; line-height: 1.6; }
.thank-you-card { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-top: 5px solid var(--gold); padding: 54px; box-shadow: var(--shadow-soft); }
.thank-you-card h1 { color: var(--green); margin: 18px 0; font-size: clamp(36px,6vw,64px); }
.thank-you-card p { color: var(--grey-600); }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.degree-status { background: var(--cream); }
.degree-status-inner { display: grid; grid-template-columns: minmax(190px, .42fr) minmax(0, 1.58fr); gap: 40px; align-items: start; padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.degree-status-label { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; }
.degree-status-copy h2 { color: var(--green); font-size: clamp(25px, 3vw, 38px); line-height: 1.1; margin: 0 0 12px; }
.degree-status-copy p { color: var(--grey-600); line-height: 1.7; margin: 0; }
.degree-status-copy p + p { margin-top: 10px; }
.degree-status-boundary { color: var(--charcoal) !important; font-size: 13px; font-weight: 700; }

@media (max-width: 900px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-card, .instagram-card:nth-child(4), .instagram-card:nth-child(5) { grid-column: span 1; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card.is-recommended { transform: none; }
  .degree-status-inner { grid-template-columns: 1fr; gap: 12px; }
  .revenue-funnel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section.sect { padding: 78px 0; }
  .hero { padding-top: 90px; }
  .instagram-grid { grid-template-columns: 1fr; }
  .quiz-meta { padding-inline: 20px; }
  .quiz-question { padding: 32px 22px 12px; }
  .quiz-actions { padding: 20px 22px 34px; align-items: stretch; flex-direction: column-reverse; }
  .quiz-actions .btn { justify-content: center; width: 100%; }
  .quiz-message { padding-inline: 22px; }
  .quiz-result-card { padding: 34px 24px; }
  .contact-form { padding: 28px 22px; }
  .sect-head em { overflow-wrap: anywhere; word-break: break-word; }
  .revenue-form .form-row { grid-template-columns: minmax(0,1fr); }
  .revenue-form .btn { width: 100%; justify-content: center; }
  .revenue-summary { padding: 30px 24px; }
  .thank-you-card { padding: 36px 24px; }
  .thank-you-actions { flex-direction: column; }
  .thank-you-actions .btn { width: 100%; justify-content: center; }
}


/* ============ INSTITUTE SECURE ACCESS ============ */
.institute-access-strip {
  background: var(--green-deep);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.institute-access-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 11px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.institute-access-label {
  flex-shrink: 0;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.institute-access-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 22px;
}
.institute-access-links a {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(212,131,42,0.55);
  text-underline-offset: 4px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.institute-access-links a:hover {
  color: var(--white);
  text-decoration-color: var(--gold-light);
}
.institute-access-links a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 2px;
}
@media (max-width: 720px) {
  .institute-access-inner {
    align-items: flex-start;
    padding: 12px 20px;
    flex-direction: column;
    gap: 7px;
  }
  .institute-access-links {
    justify-content: flex-start;
    gap: 7px 16px;
  }
}
