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

/* ── VARIABLES ── */
:root {
  --green: #7E9B75;
  --gold: #D6A24A;
  --brown: #9C5B2E;
  --cream: #F6F1E9;
  --dark: #2F2F2F;
  --white: #ffffff;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SITE HEADER ── */
.site-header {
  background: var(--white);
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.logo-link {
  display: inline-block;
  line-height: 0;
}

.site-header .header-logo {
  height: 55px;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav .nav-link {
  margin-left: 25px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.desktop-nav .nav-link:hover {
  color: var(--gold);
}

.desktop-nav .nav-link:hover::after {
  width: 100%;
}

.desktop-nav .nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

.desktop-nav .nav-link.active::after {
  width: 100%;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 301;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SIDEBAR ── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47,47,47,0.55);
  backdrop-filter: blur(4px);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.25);
}

.sidebar.open {
  right: 0;
}

.sidebar-header {
  padding: 28px 30px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-header .header-logo {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.sidebar-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  line-height: 1;
  transition: color 0.2s ease;
}

.sidebar-close:hover {
  color: var(--gold);
}

.sidebar-nav {
  padding: 30px 0;
  flex: 1;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 14px 30px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-left-color 0.25s ease;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  color: var(--gold);
  background: rgba(214,162,74,0.06);
  border-left-color: var(--gold);
}

.sidebar-cta {
  padding: 24px 30px 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sidebar-cta p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-bottom: 14px;
}

.sidebar-cta a {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--dark);
  padding: 13px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sidebar-cta a:hover {
  background: var(--brown);
  color: #fff;
}

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 80px 8% 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--brown));
  background-size: 200% 200%;
  animation: gradient-move 6s linear infinite;
}

@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-col h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--gold);
}

.footer-col p,
.footer-col a {
  font-size: 15px;
  color: var(--cream);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-logo .footer-logo-img {
  width: 120px;
  margin-bottom: 20px;
}

.footer-logo p {
  max-width: 260px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--cream);
}

.footer-bottom a {
  display: inline;
  color: var(--gold);
  text-decoration: underline;
}

.site-footer--fade {
  opacity: 0;
  transform: translateY(40px);
  animation: footer-fade 1.2s ease forwards;
}

@keyframes footer-fade {
  to { opacity: 1; transform: translateY(0); }
}

/* ── SHARED TYPOGRAPHY ── */
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: var(--brown);
  margin-bottom: 18px;
}

/* ── SHARED BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 15px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}

.btn-gold:hover {
  background: #c49040;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 15px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 15px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: var(--brown);
}

.btn-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 15px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-green:hover {
  background: #6b8862;
}

/* ── PAGE HERO ── */
.page-hero {
  color: #fff;
  padding: 130px 8%;
}

.page-hero .hero-tag {
  display: inline-block;
  background: rgba(214,162,74,0.18);
  border: 1px solid rgba(214,162,74,0.45);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.page-hero .hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero .hero-desc {
  max-width: 580px;
  opacity: 0.8;
  font-size: 17px;
}

/* ── INDEX: HERO ── */
.hero-section {
  background: linear-gradient(rgba(47,47,47,0.68), rgba(47,47,47,0.68)), url("../images/hero.webp") center/cover no-repeat;
  color: #fff;
  padding: 130px 8%;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(214,162,74,0.18);
  border: 1px solid rgba(214,162,74,0.45);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-section .hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  max-width: 700px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-section .hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-section .hero-desc {
  max-width: 530px;
  opacity: 0.8;
  font-size: 17px;
  margin-bottom: 12px;
}

.hero-psych-line {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── INDEX: STAT BAR ── */
.stat-bar {
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 34px 5%;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ── INDEX: CROSSROAD ── */
.crossroad-section {
  padding: 90px 8%;
  background: var(--white);
}

.crossroad-section .section-intro {
  font-size: 17px;
  color: #666;
  max-width: 640px;
  margin-bottom: 50px;
}

.trap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.trap-item {
  background: var(--cream);
  border-radius: 18px;
  padding: 28px;
  border-left: 4px solid var(--brown);
}

.trap-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trap-item h4 .badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(156,91,46,0.1);
  color: var(--brown);
  padding: 2px 10px;
  border-radius: 20px;
}

.trap-item p {
  font-size: 14px;
  color: #777;
}

.trap-consequence {
  background: var(--dark);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.trap-consequence img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.trap-consequence p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

.trap-consequence strong {
  color: var(--gold);
}

/* ── INDEX/ABOUT: PSYCHOLOGY ── */
.psychology-section {
  padding: 90px 8%;
}

.psych-header {
  margin-bottom: 44px;
}

.psych-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.psych-col {
  border-radius: 24px;
  padding: 44px 36px;
}

.psych-col.status {
  background: #f5f2ed;
}

.psych-col.vision {
  background: var(--dark);
}

.psych-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 24px;
}

.psych-col.status h3 {
  color: #aaa;
}

.psych-col.vision h3 {
  color: var(--gold);
}

.psych-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.psych-item img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.psych-col.status .psych-item p {
  color: #888;
  font-size: 15px;
}

.psych-col.vision .psych-item p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}

.psych-vs {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

.shift-banner {
  background: var(--gold);
  padding: 28px 8%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

/* ── INDEX: PILLARS ── */
.pillars-section {
  background: var(--dark);
  padding: 90px 8%;
}

.pillars-section .section-title {
  color: #fff;
  margin-bottom: 14px;
}

.pillars-section .section-sub {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 54px;
}

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

.pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 42px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
}

.pillar:nth-child(1)::before { background: var(--green); }
.pillar:nth-child(2)::before { background: var(--gold); }
.pillar:nth-child(3)::before { background: var(--brown); }

.pillar:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
}

.pillar .p-num {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 18px;
}

.pillar h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  color: #fff;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}

.pillar a {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pillar a:hover {
  color: #c49040;
}

/* ── INDEX: CAPITAL BAND ── */
.capital-band {
  background: linear-gradient(135deg, var(--brown) 0%, #1a1a1a 100%);
  padding: 80px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.capital-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(214,162,74,0.15) 0%, transparent 65%);
}

.capital-band .big-fig {
  font-family: 'Poppins', sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  position: relative;
}

.capital-band h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #fff;
  margin: 14px 0 10px;
  position: relative;
}

.capital-band .band-desc {
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto;
  font-size: 16px;
  position: relative;
}

.capital-band .not-broker {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(214,162,74,0.4);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  position: relative;
}

.capital-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 44px auto 0;
  text-align: left;
  position: relative;
}

.cap-item {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,0.08);
}

.cap-item strong {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.cap-item p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ── INDEX: NETWORK ── */
.network-section {
  padding: 90px 8%;
  background: var(--white);
}

.network-section .section-intro {
  font-size: 17px;
  color: #666;
  max-width: 640px;
  margin-bottom: 50px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.network-item {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(214,162,74,0.15);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.network-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.network-icon {
  width: 56px;
  height: 56px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.network-icon img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.network-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
}

.network-item p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.network-disclaimer {
  background: var(--dark);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.network-disclaimer img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.network-disclaimer p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.network-disclaimer strong {
  color: var(--gold);
}

/* ── INDEX: OUTCOMES ── */
.outcomes-section {
  padding: 90px 8%;
  background: var(--dark);
}

.outcomes-section .section-title {
  color: #fff;
}

.outcomes-section .section-intro {
  color: rgba(255,255,255,0.55);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 50px;
}

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

.outcome-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.outcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.outcome-card:nth-child(1)::before { background: var(--green); }
.outcome-card:nth-child(2)::before { background: var(--gold); }
.outcome-card:nth-child(3)::before { background: var(--brown); }

.outcome-sector {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(214,162,74,0.12);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.outcome-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}

.outcome-stat {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.1;
}

.outcome-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.65;
}

.outcome-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.outcome-note {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ── INDEX/PROGRAMME: TIERS ── */
.tiers-section {
  padding: 90px 8%;
  background: var(--white);
}

.tiers-section .section-sub {
  font-size: 16px;
  color: #777;
  max-width: 640px;
  margin-bottom: 50px;
}

.tiers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tp-card {
  border-radius: 24px;
  padding: 42px 32px;
  position: relative;
  border: 2px solid transparent;
  box-shadow: 0 10px 35px rgba(0,0,0,0.07);
  transition: border-color 0.35s ease, transform 0.35s ease;
  text-align: center;
  background: var(--cream);
}

.tp-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.tp-card.featured {
  background: var(--dark);
}

.tp-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.tp-card:nth-child(1) .tp-label { background: rgba(214,162,74,0.12); color: var(--gold); }
.tp-card:nth-child(2) .tp-label { background: rgba(214,162,74,0.2); color: var(--gold); }
.tp-card:nth-child(3) .tp-label { background: rgba(156,91,46,0.12); color: var(--brown); }

.tp-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--dark);
}

.tp-card.featured h4 {
  color: #fff;
}

.tp-price {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.tp-price-note {
  font-size: 13px;
  color: #aaa;
  margin: 5px 0 12px;
}

.tp-card.featured .tp-price-note {
  color: rgba(255,255,255,0.35);
}

.tp-focus {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 18px;
  display: block;
}

.tp-card.featured .tp-focus {
  color: rgba(255,255,255,0.5);
}

.tp-ideal {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(126,155,117,0.12);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}

.tp-card.featured .tp-ideal {
  background: rgba(214,162,74,0.1);
  color: var(--gold);
}

.tp-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 4px;
}

.tp-card.featured .tp-desc {
  color: rgba(255,255,255,0.5);
}

.tp-card a {
  display: inline-block;
  margin-top: 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  transition: background 0.3s ease, color 0.3s ease;
  border: 2px solid var(--green);
  color: var(--green);
}

.tp-card a:hover {
  background: var(--green);
  color: #fff;
}

.tp-card.featured a {
  border-color: var(--gold);
  color: var(--gold);
}

.tp-card.featured a:hover {
  background: var(--gold);
  color: var(--dark);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.all-tiers-note {
  text-align: center;
  margin-top: 34px;
  padding: 18px 28px;
  background: var(--cream);
  border-radius: 14px;
  font-size: 14px;
  color: #777;
  border: 1px solid rgba(214,162,74,0.2);
}

.all-tiers-note strong {
  color: var(--dark);
}

/* ── INDEX/ABOUT: LEGACY ── */
.legacy-section {
  background: linear-gradient(135deg, var(--brown), var(--dark));
  padding: 90px 8%;
}

.legacy-section .section-title {
  color: #fff;
}

.legacy-section .section-intro {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 50px;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.legacy-item {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.3s ease;
}

.legacy-item:hover {
  background: rgba(255,255,255,0.12);
}

.legacy-item img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.legacy-item h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--gold);
  margin-bottom: 6px;
  font-size: 16px;
}

.legacy-item p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}

/* ── INDEX: MANIFESTO ── */
.manifesto-section {
  background: var(--cream);
  padding: 90px 8%;
  text-align: center;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
}

.value-pill {
  background: rgba(214,162,74,0.1);
  border: 1px solid rgba(214,162,74,0.25);
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
}

.manifesto-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  max-width: 780px;
  margin: 0 auto 14px;
  line-height: 1.35;
}

.manifesto-quote em {
  font-style: normal;
  color: var(--gold);
}

.manifesto-sub {
  font-size: 16px;
  color: #888;
  margin-bottom: 40px;
}

.manifesto-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── INDEX: AUDIT MODAL ── */
.audit-modal-bg {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(20,18,15,0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.audit-modal-bg.open {
  opacity: 1;
  pointer-events: all;
}

.audit-modal {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 52px 48px 44px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(214,162,74,0.3) transparent;
}

.audit-modal-bg.open .audit-modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.35);
  font-size: 22px;
  line-height: 1;
  transition: color 0.2s ease;
  padding: 4px 8px;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(214,162,74,0.6);
  margin-bottom: 10px;
}

.modal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
  line-height: 1.55;
}

.modal-progress-track {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  height: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.modal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 6px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  width: 0%;
}

.modal-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.modal-q-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(214,162,74,0.45);
  margin-bottom: 12px;
}

.modal-q-text {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 26px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.modal-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modal-option:hover {
  background: rgba(214,162,74,0.05);
  border-color: rgba(214,162,74,0.2);
}

.modal-option.selected {
  background: rgba(214,162,74,0.09);
  border-color: var(--gold);
}

.modal-option-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modal-option.selected .modal-option-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.modal-option.selected .modal-option-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark);
}

.modal-option-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}

.modal-option.selected .modal-option-text {
  color: #fff;
}

.modal-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-btn-back {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
  padding: 11px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.modal-btn-back:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
}

.modal-btn-back:disabled {
  opacity: 0.18;
  cursor: not-allowed;
}

.modal-btn-next {
  background: var(--gold);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  font-family: 'Inter', sans-serif;
  opacity: 0.3;
  pointer-events: none;
}

.modal-btn-next.ready {
  opacity: 1;
  pointer-events: all;
}

.modal-btn-next.ready:hover {
  background: #c49040;
  transform: translateY(-1px);
}

.modal-instant-score {
  display: none;
  text-align: center;
  padding: 20px 0 10px;
}

.modal-instant-score.active {
  display: block;
}

.instant-score-val {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.instant-score-max {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.instant-score-bar-track {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  height: 6px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto 10px;
}

.instant-score-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s;
  width: 0%;
}

.instant-score-label {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.instant-score-msg {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 340px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.instant-score-note {
  font-size: 11px;
  color: rgba(214,162,74,0.6);
  font-style: italic;
  margin-bottom: 24px;
}

.modal-capture {
  display: none;
}

.modal-capture.active {
  display: block;
}

.capture-field {
  margin-bottom: 18px;
}

.capture-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 7px;
}

.capture-field input,
.capture-field select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.capture-field input::placeholder {
  color: rgba(255,255,255,0.2);
}

.capture-field input:focus,
.capture-field select:focus {
  border-color: rgba(214,162,74,0.45);
}

.capture-field select option {
  background: var(--dark);
}

.capture-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  padding: 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.capture-submit:hover {
  background: #c49040;
}

.capture-privacy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.modal-results {
  display: none;
  text-align: center;
}

.modal-results.active {
  display: block;
}

.result-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.result-badge.tier-0 { background: rgba(156,91,46,0.15); color: var(--brown); border: 1px solid rgba(156,91,46,0.3); }
.result-badge.tier-1 { background: rgba(214,162,74,0.12); color: var(--gold); border: 1px solid rgba(214,162,74,0.3); }
.result-badge.tier-2 { background: rgba(126,155,117,0.12); color: var(--green); border: 1px solid rgba(126,155,117,0.3); }

.result-score {
  font-family: 'Poppins', sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.result-score-max {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 22px;
}

.result-bar-track {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  height: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}

.result-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1) 0.2s;
  width: 0%;
}

.result-bar-fill.tier-0 { background: linear-gradient(90deg, #9C5B2E, #c4793d); }
.result-bar-fill.tier-1 { background: linear-gradient(90deg, #b8883a, var(--gold)); }
.result-bar-fill.tier-2 { background: linear-gradient(90deg, var(--green), var(--gold)); }

.result-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  margin-bottom: 24px;
}

.result-category {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.result-diagnostic {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: left;
}

.result-implication {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  text-align: left;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
  margin-bottom: 30px;
}

.result-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.result-cta:hover {
  background: #c49040;
  transform: translateY(-2px);
}

.result-retake {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease;
}

.result-retake:hover {
  color: rgba(255,255,255,0.5);
}

/* ── ABOUT: STORY ── */
.story-section {
  padding: 90px 8%;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.story-grid h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  color: var(--brown);
  margin-bottom: 20px;
}

.story-grid p {
  max-width: 520px;
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
}

.story-grid .story-img {
  width: 100%;
  border-radius: 24px;
  height: 420px;
  object-fit: cover;
}

/* ── ABOUT: MISSION/VISION ── */
.mv-section {
  background: var(--dark);
  padding: 90px 8%;
}

.mv-section .section-label { color: var(--gold); }
.mv-section .section-title { color: var(--white); }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.mv-card {
  background: rgba(255,255,255,0.06);
  padding: 50px;
  border-radius: 24px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.mv-card .mv-num {
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.mv-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--gold);
}

.mv-card p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

/* ── ABOUT: VALUES ── */
.values-section {
  padding: 90px 8%;
  text-align: center;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  padding: 45px 30px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.value-card h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  font-size: 18px;
}

.value-card p {
  font-size: 15px;
  color: #666;
}

/* ── ABOUT: CRITERIA ── */
.criteria-section {
  padding: 90px 8%;
}

.criteria-card {
  background: var(--white);
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.criteria-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 16px;
}

.criteria-card .criteria-intro {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.criteria-list {
  list-style: none;
  padding: 0;
}

.criteria-list li {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
}

.criteria-list li:last-child {
  border-bottom: none;
}

.criteria-list li img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.criteria-list li strong {
  color: var(--dark);
  display: block;
  margin-bottom: 3px;
}

.criteria-list li span {
  color: #888;
  font-size: 14px;
}

.tier-revenue-guide {
  background: var(--cream);
  border: 1px solid rgba(214,162,74,0.2);
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 28px;
}

.tier-revenue-guide-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.tier-revenue-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
}

.tier-revenue-row:last-child {
  border-bottom: none;
}

.tier-revenue-row .t-name {
  font-weight: 700;
  color: var(--dark);
}

.tier-revenue-row .t-range {
  color: var(--brown);
  font-size: 13px;
  font-weight: 600;
}

.apply-cta {
  background: var(--gold);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.apply-cta h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 12px;
}

.apply-cta p {
  color: rgba(0,0,0,0.65);
  margin-bottom: 30px;
  font-size: 15px;
}

/* ── SERVICE: BLOCKS ── */
.main-section {
  padding: 90px 8%;
}

.section-sub {
  max-width: 680px;
  font-size: 17px;
  color: #666;
  margin-bottom: 64px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 90px;
}

.service-block:last-of-type {
  margin-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-block .service-img {
  width: 100%;
  border-radius: 24px;
  height: 360px;
  object-fit: cover;
}

.service-num {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.service-tag {
  display: inline-block;
  background: rgba(126,155,117,0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.service-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 14px;
}

.service-block .service-desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 22px;
}

.service-block ul {
  list-style: none;
  padding: 0;
}

.service-block ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-block ul li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── SERVICE: CAPITAL HIGHLIGHT ── */
.capital-highlight {
  background: var(--dark);
  border-radius: 28px;
  padding: 64px;
  text-align: center;
  margin-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.capital-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(214,162,74,0.15) 0%, transparent 70%);
}

.capital-highlight .not-broker {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(214,162,74,0.4);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  position: relative;
}

.capital-highlight .big-num {
  font-family: 'Poppins', sans-serif;
  font-size: 74px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  position: relative;
}

.capital-highlight h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #fff;
  margin: 12px 0 20px;
  position: relative;
}

.capital-highlight .cap-desc {
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  position: relative;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
  text-align: left;
  position: relative;
}

/* ── SERVICE: WHY ── */
.why-section {
  background: var(--white);
  border-radius: 28px;
  padding: 64px;
}

.why-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: var(--brown);
  margin-bottom: 44px;
  text-align: center;
}

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

.why-item {
  text-align: center;
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.why-icon img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

.why-item h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  font-size: 17px;
}

.why-item p {
  font-size: 15px;
  color: #666;
}

/* ── SHARED: CTA BLOCK ── */
.cta-wrap {
  padding: 0 8% 90px;
}

.cta-block {
  background: linear-gradient(135deg, var(--brown), var(--dark));
  border-radius: 28px;
  padding: 70px;
  text-align: center;
}

.cta-block h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}

.cta-block p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 17px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 15px 36px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
  background: #c49040;
  transform: translateY(-2px);
}

/* ── PROGRAMME: TIERS GRID ── */
.tiers-grid-prog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tier-card {
  border-radius: 28px;
  padding: 48px 36px;
  position: relative;
  transition: transform 0.4s ease;
}

.tier-card.gold {
  background: var(--cream);
  border: 2px solid rgba(214,162,74,0.3);
}

.tier-card.platinum {
  background: var(--dark);
  border: 2px solid rgba(214,162,74,0.25);
}

.tier-card.diamond {
  background: var(--cream);
  border: 2px solid rgba(156,91,46,0.3);
}

.tier-card:hover {
  transform: translateY(-8px);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 22px;
}

.tier-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 6px;
}

.tier-card.gold h3, .tier-card.diamond h3 { color: var(--dark); }
.tier-card.platinum h3 { color: #fff; }

.tier-focus {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.tier-ideal {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}

.tier-card.gold .tier-ideal, .tier-card.diamond .tier-ideal {
  background: rgba(126,155,117,0.12);
  color: var(--green);
}

.tier-card.platinum .tier-ideal {
  background: rgba(214,162,74,0.1);
  color: var(--gold);
}

.tier-price {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.tier-card.gold .tier-price, .tier-card.diamond .tier-price { color: var(--brown); }
.tier-card.platinum .tier-price { color: var(--gold); }

.tier-price-note {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
  margin-top: 4px;
}

.tier-card.platinum .tier-price-note { color: rgba(255,255,255,0.4); }

.tier-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tier-card.gold .tier-desc, .tier-card.diamond .tier-desc { color: #666; }
.tier-card.platinum .tier-desc { color: rgba(255,255,255,0.65); }

.deliverable-group {
  margin-bottom: 20px;
}

.deliverable-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.tier-card.gold .deliverable-group-label,
.tier-card.diamond .deliverable-group-label {
  background: rgba(214,162,74,0.1);
  color: var(--brown);
}

.tier-card.platinum .deliverable-group-label {
  background: rgba(214,162,74,0.15);
  color: var(--gold);
}

.tier-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
}

.tier-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tier-card.platinum ul li {
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
}

.tier-card ul li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-btn {
  display: block;
  text-align: center;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 28px;
}

.tier-card.gold .tier-btn, .tier-card.diamond .tier-btn {
  border: 2px solid var(--green);
  color: var(--green);
}

.tier-card.gold .tier-btn:hover, .tier-card.diamond .tier-btn:hover {
  background: var(--green);
  color: #fff;
}

.tier-card.platinum .tier-btn {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}

.tier-card.platinum .tier-btn:hover {
  background: #c49040;
  border-color: #c49040;
}

.family-callout {
  background: rgba(214,162,74,0.08);
  border: 1px solid rgba(214,162,74,0.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 16px;
}

.family-callout-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.family-callout ul {
  margin-bottom: 0;
}

.family-callout ul li {
  border-bottom-color: rgba(214,162,74,0.1);
  font-size: 14px;
}

.family-callout ul li:last-child {
  border-bottom: none;
}

/* ── PROGRAMME: INCLUDES ── */
.includes-section {
  background: var(--dark);
  padding: 90px 8%;
}

.includes-section .section-title { color: #fff; }
.includes-section .section-sub { color: rgba(255,255,255,0.6); }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.include-item {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.include-item:hover {
  border-color: var(--gold);
  background: rgba(214,162,74,0.08);
}

.include-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.include-item h4 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}

.include-item p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

/* ── PROGRAMME: PILLARS SUMMARY ── */
.pillars-summary {
  padding: 90px 8%;
}

.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-mini {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
  border-top: 4px solid var(--gold);
  transition: transform 0.3s ease;
}

.pillar-mini:nth-child(1) { border-top-color: var(--green); }
.pillar-mini:nth-child(2) { border-top-color: var(--gold); }
.pillar-mini:nth-child(3) { border-top-color: var(--brown); }

.pillar-mini:hover {
  transform: translateY(-6px);
}

.pillar-mini h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 14px;
}

.pillar-mini p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.pillar-mini a {
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pillar-mini a:hover {
  color: var(--gold);
}

.pillar-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(126,155,117,0.12);
  color: var(--green);
}

.pillar-mini:nth-child(2) .pillar-tag { background: rgba(214,162,74,0.12); color: var(--gold); }
.pillar-mini:nth-child(3) .pillar-tag { background: rgba(156,91,46,0.12); color: var(--brown); }

/* ── CONTACT: CRITERIA ── */
.contact-criteria-section {
  padding: 90px 8%;
  background: var(--white);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.criteria-item {
  background: var(--cream);
  border-radius: 20px;
  padding: 34px;
  border-left: 5px solid var(--gold);
}

.criteria-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.criteria-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}

.criteria-item p {
  font-size: 15px;
  color: #777;
}

.criteria-item strong {
  color: var(--brown);
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

.criteria-note {
  background: var(--dark);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.criteria-note img {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  flex-shrink: 0;
}

.criteria-note p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
}

.criteria-note strong {
  color: var(--gold);
}

/* ── CONTACT: APPLICATION FORM ── */
.application-section {
  padding: 90px 8%;
}

.application-section .section-title {
  margin-bottom: 32px;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.application-form {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.09);
  overflow: hidden;
}

.progress-rail {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 28px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.progress-rail::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(48px + 20px);
  right: calc(48px + 20px);
  height: 1px;
  background: #ddd;
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.progress-step.completed::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 1px;
  background: var(--gold);
  z-index: 1;
}

.step-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #bbb;
  background: var(--white);
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.progress-step.active .step-node {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(214,162,74,0.08);
  box-shadow: 0 0 0 4px rgba(214,162,74,0.12);
}

.progress-step.completed .step-node {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
  transition: color 0.35s ease;
  text-align: center;
}

.progress-step.active .step-label { color: var(--gold); }
.progress-step.completed .step-label { color: var(--brown); }

.card-body {
  padding: 52px 56px 44px;
}

.step-panel {
  display: none;
  animation: step-in 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}

.step-panel.active {
  display: block;
}

.step-panel.exit {
  animation: step-out 0.28s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes step-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

.step-heading {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.step-counter {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.step-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  color: var(--brown);
  margin-bottom: 6px;
}

.step-heading p {
  font-size: 15px;
  color: #888;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-field {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid #e0dbd4;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--cream);
  color: var(--dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-field:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(126,155,117,0.15);
  background: #fff;
}

.has-error .form-field {
  border-color: #c0392b;
  background: rgba(192,57,43,0.04);
}

.form-field--select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239C5B2E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-color: var(--cream);
  padding-right: 40px;
}

.form-field--textarea {
  resize: vertical;
}

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

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

.field-hint {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}

.label-hint {
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.char-counter {
  font-size: 11px;
  color: #bbb;
  text-align: right;
  margin-top: 4px;
}

.char-counter.warn {
  color: var(--gold);
  font-weight: 600;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: 6px;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.field-error.visible {
  display: flex;
}

.toggle-group {
  display: flex;
  gap: 12px;
}

.toggle-option {
  flex: 1;
  position: relative;
}

.toggle-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1.5px solid #e0dbd4;
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
  user-select: none;
}

.toggle-label .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  transition: background 0.22s ease, border-color 0.22s ease;
  flex-shrink: 0;
}

.toggle-option input:checked + .toggle-label {
  border-color: var(--gold);
  background: rgba(214,162,74,0.08);
  color: var(--brown);
}

.toggle-option input:checked + .toggle-label .dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,162,74,0.2);
}

.nda-note {
  background: var(--dark);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 8px;
}

.nda-note img {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.nda-note p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.65;
}

.nda-note strong { color: var(--gold); }

.nda-note a {
  color: var(--gold);
  text-decoration: underline;
}

.nda-note a:hover {
  color: #fff;
}

.privacy-note {
  font-size: 13px;
  color: #aaa;
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

.privacy-note a {
  color: var(--gold);
  text-decoration: underline;
}

.privacy-note a:hover {
  color: var(--brown);
}

.recaptcha-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid #e0dbd4;
  border-radius: 12px;
  background: var(--cream);
}

.recaptcha-checkbox {
  width: 22px;
  height: 22px;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  background: #fff;
}

.recaptcha-checkbox.checked {
  background: var(--green);
  border-color: var(--green);
}

.recaptcha-checkbox.checked::after {
  content: '';
  width: 12px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.recaptcha-wrap p {
  font-size: 14px;
  color: #666;
}

.recaptcha-badge {
  margin-left: auto;
  font-size: 10px;
  color: #bbb;
  text-align: right;
  line-height: 1.5;
}

.review-block {
  margin-bottom: 32px;
}

.review-block-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
}

.review-item {
  background: var(--cream);
  padding: 14px 18px;
}

.review-item.full {
  grid-column: span 2;
}

.review-item dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
}

.review-item dd {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.55;
}

.review-item dd.empty {
  color: #bbb;
  font-style: italic;
}

.form-group--recaptcha {
  margin-bottom: 24px;
}

.card-footer {
  padding: 24px 56px 40px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.btn-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: none;
}

.btn-back-form {
  background: transparent;
  border: 1.5px solid #e0dbd4;
  color: #888;
  visibility: hidden;
}

.btn-back-form:hover {
  border-color: #bbb;
  color: var(--dark);
}

.btn-back-form .btn-icon {
  filter: none;
  opacity: 0.7;
}

.btn-next-form {
  background: var(--green);
  color: #fff;
  min-width: 180px;
  justify-content: center;
  position: relative;
}

.btn-next-form:hover {
  background: var(--gold);
}

.btn-next-form:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-next-form.loading .btn-text {
  opacity: 0;
}

.btn-next-form.loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.btn-form img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.confirm-highlight {
  color: var(--brown);
}

#step_confirm {
  text-align: center;
  padding: 72px 40px;
}

.confirm-emblem {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(126,155,117,0.12);
  border: 2px solid rgba(126,155,117,0.3);
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  animation: pop-in 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes pop-in {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.confirm-ref {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

#step_confirm h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  color: var(--brown);
  margin-bottom: 16px;
}

#step_confirm p {
  font-size: 16px;
  color: #777;
  max-width: 460px;
  margin: 0 auto 12px;
  line-height: 1.75;
}

.confirm-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
  margin: 28px auto;
  border-radius: 2px;
}

.confirm-note {
  font-size: 13px;
  color: #aaa;
  font-style: italic;
}

/* ── CONTACT: INFO PANEL ── */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-panel h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  color: var(--brown);
  margin-bottom: 4px;
}

.info-intro {
  color: #666;
  font-size: 16px;
  margin-bottom: 8px;
}

.info-card {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.info-card h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 15px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.info-card h4 img {
  width: 18px;
  height: 18px;
}

.info-card p {
  font-size: 15px;
  color: #666;
}

.tier-summary {
  background: var(--dark);
  border-radius: 18px;
  padding: 30px;
}

.tier-summary h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 17px;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tier-row:last-child {
  border-bottom: none;
}

.tier-row .tier-name {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
}

.tier-row .tier-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.tier-row .tier-desc {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* ── PRIVACY POLICY ── */
.privacy-section {
  padding: 80px 8%;
}

.privacy-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

.privacy-nav {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.privacy-nav h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.privacy-nav a {
  display: block;
  font-size: 13px;
  color: #777;
  text-decoration: none;
  padding: 7px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color 0.2s ease, border-left-color 0.2s ease;
  margin-bottom: 2px;
}

.privacy-nav a:hover {
  color: var(--brown);
  border-left-color: var(--gold);
}

.privacy-content {
  max-width: 760px;
}

.privacy-content .last-updated {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.privacy-block {
  margin-bottom: 52px;
  scroll-margin-top: 120px;
}

.privacy-block h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(214,162,74,0.12);
  border: 1px solid rgba(214,162,74,0.3);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.privacy-block p {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.8;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-block ul {
  margin: 12px 0 14px 0;
  padding-left: 0;
  list-style: none;
}

.privacy-block ul li {
  font-size: 15px;
  color: #555;
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.7;
}

.privacy-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.highlight-box {
  background: var(--dark);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 24px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-box .icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-box p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.highlight-box strong {
  color: var(--gold);
}

.privacy-text-link {
  color: var(--brown);
  font-weight: 500;
}

.privacy-update-note {
  margin-top: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
  margin-top: 24px;
}

.contact-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--gold);
}

/* ── ABOUT: PAGE HERO OVERRIDE ── */
.page-hero--about {
  background: linear-gradient(rgba(47,47,47,0.7), rgba(47,47,47,0.7)), url("../images/about.webp") center/cover no-repeat;
}

/* ── SERVICE: PAGE HERO OVERRIDE ── */
.page-hero--service {
  background: linear-gradient(rgba(47,47,47,0.75), rgba(47,47,47,0.75)), url("../images/services.webp") center/cover no-repeat;
}

/* ── PROGRAMME: PAGE HERO OVERRIDE ── */
.page-hero--programme {
  background: linear-gradient(rgba(47,47,47,0.72), rgba(47,47,47,0.72)), url("../images/OneWater.webp") center/cover no-repeat;
}

/* ── CONTACT: PAGE HERO OVERRIDE ── */
.page-hero--contact {
  background: linear-gradient(rgba(47,47,47,0.72), rgba(47,47,47,0.72)), url("../images/contact-hero.webp") center/cover no-repeat;
}

/* ── PRIVACY: PAGE HERO OVERRIDE ── */
.page-hero--privacy {
  background: linear-gradient(rgba(47,47,47,0.75), rgba(47,47,47,0.75)), url("../images/contact-hero.webp") center/cover no-repeat;
  padding: 110px 8% 90px;
}

/* ── ABOUT: STORY SECTION (about-story image) ── */
.story-section .page-hero--about-story {
  background-image: url("../images/about-story.webp");
}

/* ── RESPONSIVE ── */
@media (width < 901px) {
  .site-header { padding: 16px 6%; }
  .desktop-nav { display: none; }
  .hamburger { display: flex; }

  .page-hero { padding: 90px 6% 70px; }
  .page-hero .hero-title { font-size: 32px; }
  .page-hero .hero-desc { font-size: 15px; }
  .page-hero--privacy { padding: 80px 6% 60px; }
  .page-hero--privacy .hero-title { font-size: 28px; }

  .hero-section { padding: 90px 6% 70px; }
  .hero-section .hero-title { font-size: 32px; }
  .hero-section .hero-desc { font-size: 15px; }

  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }

  .trap-grid,
  .psych-compare,
  .pillars-grid,
  .tiers-row,
  .legacy-grid,
  .capital-two-col,
  .footer-container,
  .network-grid,
  .outcomes-grid,
  .story-grid,
  .mv-grid,
  .values-grid,
  .criteria-card,
  .tiers-grid-prog,
  .pillars-row,
  .includes-grid,
  .criteria-grid,
  .app-grid,
  .privacy-wrapper { grid-template-columns: 1fr; }

  .psych-vs { display: none; }
  .capital-band .big-fig { font-size: 42px; }
  .manifesto-quote { font-size: 22px; }

  .crossroad-section,
  .psychology-section,
  .pillars-section,
  .capital-band,
  .tiers-section,
  .legacy-section,
  .manifesto-section,
  .network-section,
  .outcomes-section,
  .story-section,
  .mv-section,
  .values-section,
  .main-section,
  .cta-wrap,
  .contact-criteria-section,
  .application-section,
  .privacy-section,
  .tiers-section,
  .includes-section,
  .pillars-summary { padding: 70px 6%; }

  .cta-wrap { padding: 0 6% 70px; }
  .site-footer { padding: 60px 6% 24px; }

  .psych-col { padding: 32px 24px; }
  .audit-modal { padding: 40px 28px 36px; }

  .story-grid .story-img { height: 300px; margin-top: 30px; }
  .mv-card { padding: 30px; }
  .criteria-card { padding: 40px 30px; }
  .apply-cta { padding: 30px; margin-top: 30px; }

  .service-block,
  .service-block.reverse { direction: ltr; grid-template-columns: 1fr; gap: 36px; }
  .service-block .service-img { height: 240px; }

  .capital-highlight { padding: 40px 24px; }
  .capital-highlight .big-num { font-size: 46px; }
  .cap-grid { grid-template-columns: 1fr; }

  .why-section { padding: 40px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 48px 28px; }

  .tier-card { padding: 36px 24px; }

  .card-body { padding: 32px 24px 28px; }
  .card-footer { padding: 20px 24px 32px; flex-direction: column; }
  .btn-next-form, .btn-back-form { width: 100%; justify-content: center; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .review-item.full { grid-column: span 1; }
  .criteria-note { padding: 24px; }
  .progress-rail { padding: 20px 24px; }
  .step-label { display: none; }
  #step_confirm { padding: 48px 24px; }

  .privacy-nav { position: static; }
  .shift-banner { padding: 24px 6%; }
}

@media (width >= 901px) {
  .hamburger { display: none; }
}
