/* ============================================================
   MOVE THE CROWD — Shared Stylesheet
   Theme: Warm Cream base · Deep Slate hero · Green accents
   ============================================================ */
html, body {
  overflow-x: hidden;
}
/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  /* Palette */
  --cream:        #FAF7F2;
  --cream-mid:    #F2EDE4;
  --cream-dark:   #E8E0D4;
  --cream-border: #DDD5C8;
  --green:        #39B549;
  --green-dark:   #2A8E38;
  --green-deeper: #1A6828;
  --green-pale:   #EBF7ED;
  --green-light:  #4DCF5E;
  /* Slate — primary hero / dark section colour */
  --slate:        #1E2D2B;
  --slate-mid:    #263533;
  --slate-soft:   #2F403D;
  --slate-border: rgba(255,255,255,0.09);
  --charcoal:     #1A1A18;
  --ink:          #2E2E2A;
  --gray:         #6B6B65;
  --gray-light:   #9B9B93;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Instrument Sans', sans-serif;

  /* Radii */
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(30,30,20,0.07);
  --shadow-md:  0 4px 20px rgba(30,30,20,0.1);
  --shadow-lg:  0 12px 48px rgba(30,30,20,0.13);
  --shadow-green: 0 8px 32px rgba(57,181,73,0.28);
}

/* ── BASE ── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem, 6vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; }

p { font-size: 1rem; line-height: 1.75; color: var(--gray); }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);       /* dark green — readable on cream/white */
  background: var(--green-pale);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* Use this class on slate/dark backgrounds */
.section-label-dark {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);      /* light green — readable on dark */
  background: rgba(57,181,73,0.18);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 8px; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--cream-border);
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
  box-shadow: var(--shadow-green);
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* ── Mobile hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  z-index: 300;
  flex-shrink: 0;
}
.burger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: center;
}
.nav-hamburger.open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* On slate/dark hero pages the burger needs light bars */
.course-hero ~ * .nav-hamburger .burger-bar,
.hero ~ * .nav-hamburger .burger-bar { background: var(--white); }

/* ── Mobile drawer ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  z-index: 260;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.nav-drawer.open { transform: translateX(0); }

.drawer-inner {
  padding: 88px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 100%;
}
.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer-links a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-border);
  transition: color 0.2s;
}
.drawer-links a:hover,
.drawer-links a.active { color: var(--green-dark); }
.drawer-links a.nav-cta {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--green-dark) !important;
  padding: 14px 0 !important;
  border-radius: 0 !important;
}
.drawer-contact {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.975rem;
  border-radius: var(--radius-sm);
  padding: 15px 30px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(57,181,73,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-1px);
}

/* For use ONLY on dark/slate backgrounds — white text is readable there */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* For use on cream/white backgrounds — dark text, always readable */
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--cream-border);
}
.btn-outline-dark:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.card-on-green {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

/* ─────────────────────────────────────────
   COURSE TAGS / BADGES
───────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  width: fit-content;
}

.tag-green {
  background: var(--green-pale);
  color: var(--green-dark);
}

.tag-gray {
  background: var(--cream-mid);
  color: var(--gray);
}

.tag-white {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

/* ─────────────────────────────────────────
   SECTION WRAPPERS
───────────────────────────────────────── */
.section { padding: 100px 5%; }
.section-sm { padding: 60px 5%; }
.section-lg { padding: 130px 5%; }

/* Cream section */
.bg-cream { background: var(--cream); }
.bg-cream-mid { background: var(--cream-mid); }
.bg-white { background: var(--white); }

/* Slate — primary dark/hero section */
.bg-slate {
  background: var(--slate);
  color: var(--white);
}
.bg-slate h1,
.bg-slate h2,
.bg-slate h3 { color: var(--white); }
.bg-slate p  { color: rgba(255,255,255,0.75); }

.bg-slate-mid {
  background: var(--slate-mid);
  color: var(--white);
}
.bg-slate-mid h1,
.bg-slate-mid h2,
.bg-slate-mid h3 { color: var(--white); }
.bg-slate-mid p  { color: rgba(255,255,255,0.72); }

/* ─────────────────────────────────────────
   GRID HELPERS
───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }

/* ─────────────────────────────────────────
   COURSE CARD COMPONENT
───────────────────────────────────────── */
.course-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.course-card:hover {
  border-color: var(--green);
  box-shadow: 0 16px 48px rgba(57,181,73,0.14);
  transform: translateY(-5px);
}

.course-card h3 { margin-bottom: 10px; color: var(--charcoal); }
.course-card p { font-size: 0.9rem; flex: 1; }

.course-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.course-meta span {
  font-size: 0.75rem;
  background: var(--cream-mid);
  color: var(--gray);
  border-radius: 50px;
  padding: 4px 12px;
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap 0.2s, color 0.2s;
}
.course-link:hover { gap: 10px; color: var(--green); }

/* Featured course card */
.course-card.featured {
  background: var(--slate);
  border-color: var(--green);
}
.course-card.featured h3,
.course-card.featured p { color: var(--white); }
.course-card.featured p { color: rgba(255,255,255,0.85); }
.course-card.featured .course-meta span {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}
.course-card.featured .course-link { color: var(--white); }
.course-card.featured:hover {
  background: var(--slate-mid);
  border-color: var(--slate-mid);
  box-shadow: var(--shadow-green);
}

/* ─────────────────────────────────────────
   STAT BOX
───────────────────────────────────────── */
.stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}
.stat-box .num.on-green { color: var(--white); }
.stat-box .lbl {
  font-size: 0.82rem;
  color: var(--gray-light);
}
.stat-box .lbl.on-green { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────
   TESTIMONIAL CARD
───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 24px;
}
.testimonial-card p {
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.7;
  margin-top: 18px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.t-info strong { display: block; font-size: 0.9rem; color: var(--charcoal); }
.t-info span { font-size: 0.78rem; color: var(--gray-light); }

/* ─────────────────────────────────────────
   PILLAR / FEATURE ITEM
───────────────────────────────────────── */
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.pillar:hover {
  border-color: var(--green);
  box-shadow: 0 8px 28px rgba(57,181,73,0.12);
  transform: translateX(5px);
}
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.pillar h3 { font-size: 1rem; margin-bottom: 5px; }
.pillar p { font-size: 0.875rem; line-height: 1.6; }

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(57,181,73,0.1);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 20px 26px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--cream-mid); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 250px; padding: 0 26px 22px; }

/* ─────────────────────────────────────────
   MODULE ACCORDION (Curriculum)
───────────────────────────────────────── */
.module {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.module.open { border-color: var(--green); }
.module-header {
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.module-header:hover { background: var(--cream-mid); }
.module-num {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.module-title { flex: 1; font-weight: 600; font-size: 0.95rem; color: var(--charcoal); }
.module-toggle { font-size: 1.1rem; color: var(--green); transition: transform 0.3s; }
.module.open .module-toggle { transform: rotate(45deg); }
.module-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.module.open .module-body { max-height: 300px; }
.module-body-inner { padding: 0 26px 22px 78px; }
.module-body-inner ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.module-body-inner li {
  font-size: 0.875rem;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}
.module-body-inner li::before { content: '›'; position: absolute; left: 0; color: var(--green); }

/* ─────────────────────────────────────────
   STICKY COURSE CARD (sidebar)
───────────────────────────────────────── */
.sticky-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow-lg);
}
.sticky-card h3 { font-size: 1.5rem; margin-bottom: 5px; }
.sticky-card .price-note { font-size: 0.82rem; color: var(--gray-light); margin-bottom: 22px; }
.card-features { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray);
}
.card-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   TRUST / LOGO BAR
───────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray);
}
.trust-icon {
  width: 38px; height: 38px;
  background: var(--green-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--cream-border);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: 72px 5% 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  max-width: 220px;
  margin-top: 14px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.2); margin-left: 16px; transition: color 0.2s; }
.footer-bottom p a { margin-left: 0; }
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--slate); color: var(--white); }

/* ─────────────────────────────────────────
   LEARN / CHECKLIST GRID
───────────────────────────────────────── */
.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.learn-item:hover { border-color: var(--green); }
.learn-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.learn-item p { font-size: 0.875rem; color: var(--gray); line-height: 1.5; }

/* ─────────────────────────────────────────
   PERSONA CARDS
───────────────────────────────────────── */
.persona-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.persona-card:hover {
  border-color: var(--green);
  box-shadow: 0 10px 32px rgba(57,181,73,0.14);
  transform: translateY(-4px);
}
.persona-icon { font-size: 2.5rem; margin-bottom: 14px; }
.persona-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.persona-card p { font-size: 0.84rem; line-height: 1.6; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up  { animation: fadeUp 0.55s ease both; }
.anim-delay-1  { animation-delay: 0.1s; }
.anim-delay-2  { animation-delay: 0.2s; }
.anim-delay-3  { animation-delay: 0.3s; }
.anim-delay-4  { animation-delay: 0.4s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section, .section-lg { padding: 72px 5%; }
  .trust-bar { gap: 28px; }
  .trust-divider { display: none; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .section-sm { padding: 48px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─────────────────────────────────────────
   FORM ELEMENTS — shared across all pages
───────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B65' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
}

/* Radio choice rows */
/* 1. Hide the real radio button, but keep it in the DOM for screen readers and clicking */
.hidden-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

/* 2. Style the custom fake circle */
.custom-circle {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 2px solid var(--gray, #999);
  background-color: transparent;
  flex-shrink: 0; /* Prevents the circle from squishing in tight layouts */
  
  /* Faster transition for immediate feedback */
  transition: background-color 0.1s ease, border-color 0.1s ease;
}

/* 3. Instantly fill the fake circle when the hidden radio is checked */
.hidden-radio:checked + .custom-circle {
  background-color: var(--green, #28a745);
  border-color: var(--green, #28a745);
}

/* Optional: Add a focus ring so keyboard users can still see what they are tabbing to */
.hidden-radio:focus-visible + .custom-circle {
  outline: 2px solid var(--green, #28a745);
  outline-offset: 2px;
}

/* Privacy checkbox row */
.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.privacy-row input[type=checkbox] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--green);
  flex-shrink: 0;
}
.privacy-row label {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray);
  cursor: pointer;
  margin-bottom: 0;
}

/* GDPR cookie preferences */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  right: auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #171717;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  max-width: 360px;
}

.cookie-banner__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255,255,255,.72);
  font-size: 0.85rem;
  line-height: 1.5;
}

.cookie-banner__text strong {
  color: #fff;
  font-size: 1rem;
}

.cookie-banner__text a,
.cookie-modal__intro a {
  color: rgba(255,255,255,.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.cookie-modal__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .92rem;
  cursor: pointer;
  white-space: nowrap;
}

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

.cookie-btn--secondary {
  background: transparent;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.22);
}

.cookie-btn--secondary:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.cookie-link-btn,
.footer-cookie-btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.58);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 8px 4px;
}

.cookie-link-btn:hover,
.footer-cookie-btn:hover {
  color: #fff;
}

/* Adjusting buttons to fit the smaller card */
.cookie-banner__actions .cookie-btn {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.85rem;
  text-align: center;
}

.cookie-banner__actions .cookie-link-btn {
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
  padding-top: 4px;
}

.cookie-modal-open {
  overflow: hidden;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.56);
}

.cookie-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(860px, 92vh);
  overflow-y: auto;
  padding: 26px 18px 14px;
  background: #171717;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
  color: #fff;
}

.cookie-modal h2 {
  margin: 0 44px 8px 0;
  color: #fff;
  font-size: 1.45rem;
}

.cookie-modal__intro {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.58);
  font-size: .95rem;
  line-height: 1.55;
}

.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,.62);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__close:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 14px;
  padding: 22px;
  background: #242424;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
}

.cookie-option h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #fff;
  font-size: 1rem;
}

.cookie-option h3 span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(57,181,73,.16);
  border: 1px solid rgba(57,181,73,.38);
  color: var(--green-light);
  font-size: .75rem;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-option p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: .92rem;
  line-height: 1.6;
}

.cookie-switch {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  width: 54px;
  height: 30px;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #444;
  transition: background .2s;
}

.cookie-switch span::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
}

.cookie-switch input:checked + span {
  background: rgba(57,181,73,.72);
}

.cookie-switch input:checked + span::after {
  transform: translateX(24px);
  background: rgba(255,255,255,.68);
}

.cookie-switch:not(.cookie-switch--locked) input:checked + span::after {
  background: #fff;
}

.cookie-modal__actions {
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mtc-turnstile-wrap {
  margin: 14px 0 16px;
  min-height: 65px;
}

.newsletter-form .mtc-turnstile-wrap {
  flex-basis: 100%;
  margin: 6px 0 2px;
}

@media (max-width: 820px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 20px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-btn,
  .cookie-link-btn {
    width: 100%;
  }

  .cookie-option {
    align-items: flex-start;
  }
}