/* ============================================================
   DivergenCIE Coaching — Global Styles
   divergencie.co.uk
   ============================================================ */

/* ── ROOT VARIABLES — LIGHT MODE (default) ── */
:root {
  --gold:         #e8a832;
  --gold-dim:     #c98820;
  --gold-pale:    rgba(232,168,50,0.12);
  --dark:         #ffffff;
  --dark-1:       #f4f4f4;
  --dark-2:       #f0f0f0;
  --dark-3:       #e8e8e8;
  --dark-4:       #dddddd;
  --text:         #1a1a1a;
  --text-primary: #1a1a1a;
  --text-muted:   #666666;
  --text-dim:     #999999;
  --radius:       0px;
  --transition:   0.22s ease;
}

/* ── DARK MODE VARIABLES (activated by html.dark) ── */
html.dark {
  --gold:         #f5c842;
  --gold-dim:     #c9a030;
  --gold-pale:    rgba(245,200,66,0.12);
  --dark:         #0a0a0a;
  --dark-1:       #0d0d0d;
  --dark-2:       #111111;
  --dark-3:       #1a1a1a;
  --dark-4:       #222222;
  --text:         #ffffff;
  --text-primary: #ffffff;
  --text-muted:   rgba(255,255,255,0.55);
  --text-dim:     rgba(255,255,255,0.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Satoshi', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── UTILITIES ── */
.text-gold   { color: var(--gold); }
.bg-gold     { background: var(--gold); }
.text-muted  { color: var(--text-muted); }
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: #0a0a0a;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.85rem 2rem; border: 2px solid var(--gold);
  border-radius: 0;
  cursor: pointer; transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-gold svg { flex-shrink: 0; }
.btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #ffffff;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.85rem 2rem; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 0;
  cursor: pointer; transition: border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Hero-specific button sizes */
.hero-btn-primary { padding: 1rem 2.4rem; font-size: 0.88rem; }
.hero-btn-secondary { padding: 1rem 2.4rem; font-size: 0.88rem; }

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

/* ============================================================
   SECTION 1 — NAV (homepage overrides — shared.css has base)
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.3s, box-shadow 0.3s;
}
/* Transparent nav — always white text (over hero image) */
#nav .nav-links a { color: rgba(255,255,255,0.75); }
#nav .nav-links a:hover { color: var(--gold); }
#nav .nav-logo-text { color: #ffffff; }
#nav .nav-hamburger span { background: #ffffff; }
#nav .theme-toggle { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
#nav .theme-toggle:hover { color: var(--gold); border-color: var(--gold); }

/* Scrolled state */
#nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}
#nav.scrolled .nav-links a { color: #5c5248; }
#nav.scrolled .nav-links a:hover { color: var(--gold); }
#nav.scrolled .nav-logo-text { color: #1a1a1a; }
#nav.scrolled .nav-hamburger span { background: #1a1a1a; }
#nav.scrolled .theme-toggle { color: #666; border-color: rgba(0,0,0,0.15); }

html.dark #nav.scrolled {
  background: rgba(10,10,10,0.94);
  box-shadow: 0 1px 0 var(--gold-pale);
}
html.dark #nav.scrolled .nav-links a { color: rgba(255,255,255,0.6); }
html.dark #nav.scrolled .nav-logo-text { color: #ffffff; }
html.dark #nav.scrolled .nav-hamburger span { background: #ffffff; }
html.dark #nav.scrolled .theme-toggle { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.2); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 900; font-size: 1.1rem; letter-spacing: -0.02em;
}
.nav-logo img {
  width: 36px; height: 36px;
  object-fit: contain; border-radius: 8px;
}
.nav-logo-text { font-weight: 900; font-size: 1.05rem; letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.6rem 1.5rem; border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: transparent; color: var(--gold); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
#mobile-menu {
  display: none; flex-direction: column;
  background: var(--dark-2); padding: 1.5rem 2rem; gap: 1rem;
  border-top: 1px solid var(--gold-pale);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); padding: 0.5rem 0;
  border-bottom: 1px solid rgba(128,128,128,0.1);
  transition: color var(--transition);
}
#mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.0); } }
#hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.92) 100%);
}
#hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  max-width: 1000px; margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.7s 0.3s both;
}
.hero-h1 {
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 900; line-height: 0.9;
  letter-spacing: -0.03em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.8s 0.5s both;
}
.hero-h1 .accent { color: var(--gold); display: block; }
.hero-sub {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-top: 1.4rem;
  opacity: 0; animation: fadeUp 0.8s 0.7s both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.8rem;
  opacity: 0; animation: fadeUp 0.8s 0.9s both;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.4; animation: fadeIn 1s 1.5s both;
}
.hero-scroll-label {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ============================================================
   SECTION 3 — RESULTS TICKER  (styles added next session)
   ============================================================ */

/* ============================================================
   SECTION 3 — RESULTS TICKER BAR
   ============================================================ */
#results-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(245,200,66,0.18);
  border-bottom: 1px solid rgba(245,200,66,0.18);
  overflow: hidden;
}
.results-bar-inner {
  display: flex;
  align-items: stretch;
  height: 52px;
}
.results-label {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  padding: 0 1.4rem;
  gap: 1px;
  z-index: 2;
}
.results-year {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1;
}
.results-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(10,10,10,0.6);
  text-transform: uppercase;
  line-height: 1;
}
.ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 2rem;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ticker-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 1.2rem;
  text-align: right;
}
.ticker-uni {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ticker-sep {
  padding: 0 1.8rem;
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.7rem;
}
@media (max-width: 480px) {
  .results-label { padding: 0 0.9rem; }
  .ticker-item { padding: 0 1.2rem; }
}

/* ============================================================
   SECTION 4 — STATS "THEY CAN'T REFUSE"
   ============================================================ */
#stats {
  background: var(--dark);
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
/* subtle grid texture */
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,200,66,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,200,66,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stats-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.stats-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 0.5rem;
}

/* ── Top grid ── */
.stats-grid-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-pale);
  margin-bottom: 1px;
}
@media (max-width: 768px) {
  .stats-grid-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .stats-grid-top { grid-template-columns: 1fr; }
}

/* ── Bottom grid ── */
.stats-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-pale);
}
@media (max-width: 768px) {
  .stats-grid-bottom { grid-template-columns: repeat(2, 1fr); }
}

/* ── Stat card base ── */
.stat-card {
  background: var(--dark-2);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: background 0.22s;
}
.stat-card:hover { background: var(--dark-3); }

/* Large card */
.stat-card--large .stat-num {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-card--large .stat-desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Small card */
.stat-card--small { padding: 1.8rem 2rem; }
.stat-num--sm {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  display: block;
}
.stat-desc--sm {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}
.stat-desc--sm em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* Gold highlighted card */
.stat-card--gold {
  background: var(--gold);
}
.stat-card--gold .stat-num--sm { color: var(--dark); }
.stat-card--gold .stat-desc--sm { color: rgba(10,10,10,0.65); }
.stat-card--gold:hover { background: #e8b800; }

/* ── Divider ── */
.stats-divider {
  height: 1px;
  background: rgba(245,200,66,0.1);
}

/* ── Accreditation strip ── */
.stats-accreditation {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(128,128,128,0.1);
  flex-wrap: wrap;
}
.accred-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.accred-logos {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.accred-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.accred-item i { color: var(--gold); }
.accred-dot { color: rgba(255,255,255,0.2); }

/* ── Scroll animation ── */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION 5 — DIVERGENCIE GOES GLOBAL
   ============================================================ */
#global {
  background: var(--dark-2);
  padding: 6rem 2rem 5rem;
  overflow: hidden;
  position: relative;
}
/* radial glow behind map */
#global::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,200,66,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.global-top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.global-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-top: 0.5rem;
}
.global-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* ── Map SVG ── */
.global-map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.global-map-svg {
  width: 100%;
  height: auto;
  display: block;
}
.landmass {
  fill: rgba(255,255,255,0.07);
  stroke: rgba(245,200,66,0.15);
  stroke-width: 0.8;
  transition: fill 0.3s;
}

/* ── Pulse dots ── */
.dot-core {
  fill: var(--gold);
  filter: drop-shadow(0 0 4px rgba(245,200,66,0.9));
}
.dot-pulse-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  opacity: 0;
  animation: mapPulse 2.8s ease-out infinite;
}
.dot-pulse-ring--2 {
  animation-delay: 1.4s;
}
/* HQ dot is bigger/brighter */
.map-dot--hq .dot-core {
  fill: var(--gold);
  r: 6;
  filter: drop-shadow(0 0 8px rgba(245,200,66,1));
}
.dot-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 9px;
  font-weight: 700;
  fill: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  pointer-events: none;
}
html:not(.dark) .dot-label { fill: #1a1a1a; }
@keyframes mapPulse {
  0%   { opacity: 0.8; transform: scale(0.5); }
  100% { opacity: 0;   transform: scale(2.4); }
}
/* Stagger pulse delays per dot */
.map-dot:nth-child(2) .dot-pulse-ring { animation-delay: 0.3s; }
.map-dot:nth-child(3) .dot-pulse-ring { animation-delay: 0.6s; }
.map-dot:nth-child(4) .dot-pulse-ring { animation-delay: 0.9s; }
.map-dot:nth-child(5) .dot-pulse-ring { animation-delay: 1.2s; }
.map-dot:nth-child(6) .dot-pulse-ring { animation-delay: 1.5s; }
.map-dot:nth-child(7) .dot-pulse-ring { animation-delay: 1.8s; }
.map-dot:nth-child(8) .dot-pulse-ring { animation-delay: 0.4s; }
.map-dot:nth-child(9) .dot-pulse-ring { animation-delay: 0.8s; }
.map-dot:nth-child(10) .dot-pulse-ring { animation-delay: 1.1s; }

/* ── Footer tagline ── */
.global-footer {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(245,200,66,0.1);
}
.global-look {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.global-look-sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ============================================================
   SECTION 6 — "ARE YOU?" PERSONALITY SECTION
   ============================================================ */
#about {
  background: var(--dark);
  padding: 7rem 2rem;
  overflow: hidden;
}
.areyou-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .areyou-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* ── Left column ── */
.areyou-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 1.4rem;
  margin-top: 0.4rem;
}
.areyou-body {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
}
.areyou-body em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* ── Traits list ── */
.areyou-traits {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.areyou-trait {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trait-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 1px;
}
.trait-icon i { width: 16px; height: 16px; }
.trait-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.trait-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

/* ── Right column: card stack ── */
.areyou-right {
  position: relative;
  height: 420px;
}
.areyou-card {
  position: absolute;
  width: 100%;
  border-radius: 4px;
}
.areyou-card--back {
  background: rgba(245,200,66,0.05);
  border: 1px solid rgba(245,200,66,0.1);
  height: 380px;
  top: 32px;
  transform: rotate(3.5deg);
}
.areyou-card--mid {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  height: 390px;
  top: 16px;
  transform: rotate(-1.5deg);
}
.areyou-card--front {
  background: var(--dark-2);
  border: 1px solid rgba(245,200,66,0.2);
  height: 400px;
  top: 0;
  transform: rotate(0deg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,200,66,0.1);
}
.acard-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.acard-quote {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  flex: 1;
}
.acard-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.acard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.acard-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border-radius: 2px;
}
.acard-tag--gold {
  background: rgba(245,200,66,0.15);
  color: var(--gold);
}
.acard-bottom {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.acard-stat { display: flex; flex-direction: column; gap: 0.15rem; }
.acard-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.acard-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   SECTION 7 — WHAT'S COOKING (SERVICE CARDS)
══════════════════════════════════════════════════════════ */
#services {
  background: var(--dark-1);
  padding: 7rem 1.5rem;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-heading {
  margin-bottom: 3.5rem;
}
.services-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-top: 0.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 500px; }
}
.svc-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover { border-color: rgba(245,200,66,0.25); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card--featured {
  background: var(--dark-3);
  border-color: rgba(245,200,66,0.2);
}
.svc-card--featured::before { transform: scaleX(1); }
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,200,66,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  width: fit-content;
}
.svc-icon {
  width: 44px; height: 44px;
  background: rgba(245,200,66,0.08);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.svc-icon svg { width: 20px; height: 20px; }
.svc-title {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}
.svc-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.svc-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.svc-subject {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
  transition: gap 0.2s;
}
.svc-cta:hover { gap: 0.7rem; }
.svc-cta svg { width: 14px; height: 14px; }
.services-bottom {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 1rem;
}
.services-bottom-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.services-bottom-text strong { color: var(--text-primary); }

/* ══════════════════════════════════════════════════════════
   SECTION 8 — OUR RESULTS + UNIVERSITY LOGOS
══════════════════════════════════════════════════════════ */
#results {
  background: var(--dark-2);
  padding: 7rem 1.5rem;
}
.results-container {
  max-width: 1200px;
  margin: 0 auto;
}
.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.results-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-top: 0.5rem;
}
.results-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

/* Subject result rows */
.results-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 4rem;
}
.result-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 3px;
  transition: border-color 0.2s;
}
.result-row:hover { border-color: rgba(245,200,66,0.2); }
@media (max-width: 700px) {
  .result-row { grid-template-columns: 1fr auto; }
  .result-bar-wrap { display: none; }
}
.result-subject {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.result-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.result-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.result-bar.animated { width: var(--bar-w); }
.result-astar {
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.result-astar span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.3rem;
}

/* University logo strip */
.results-unis-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.results-unis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.uni-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}
.uni-chip:hover { border-color: rgba(245,200,66,0.3); color: var(--text-primary); }
.uni-chip i { width: 13px; height: 13px; color: var(--gold); opacity: 0.7; }
.uni-chip--more {
  color: var(--gold);
  border-color: rgba(245,200,66,0.15);
  background: rgba(245,200,66,0.05);
}

/* ══════════════════════════════════════════════════════════
   SECTION 9 — PARTNERS / CO-CONSPIRATORS
══════════════════════════════════════════════════════════ */
#partners {
  background: var(--dark-1);
  padding: 7rem 1.5rem;
  overflow: hidden;
}
.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}
.partners-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.partners-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-top: 0.5rem;
}
.partners-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) { .partners-grid { grid-template-columns: 1fr; } }
.partner-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}
.partner-card:hover { border-color: rgba(245,200,66,0.25); transform: translateY(-3px); }
.partner-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.partner-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.partner-icon {
  width: 48px; height: 48px;
  background: rgba(245,200,66,0.08);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.partner-icon i { width: 22px; height: 22px; }
.partner-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.partner-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.partner-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,200,66,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  width: fit-content;
  margin-top: auto;
}
.partners-footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.partners-footnote i { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   SECTION 10 — PRESS / PAPARAZZI
══════════════════════════════════════════════════════════ */
#press {
  background: var(--dark-2);
  padding: 6rem 1.5rem;
}
.press-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.press-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.press-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.press-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  background: var(--dark-3);
  border: 1px solid rgba(128,128,128,0.18);
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  user-select: none;
}
.press-logo i { width: 15px; height: 15px; flex-shrink: 0; }
.press-logo:hover { color: var(--text-primary); border-color: var(--gold); background: var(--dark-2); }
html:not(.dark) .press-logo { color: #444444; background: #ffffff; border-color: rgba(0,0,0,0.12); }
html:not(.dark) .press-logo:hover { color: #1a1a1a; border-color: var(--gold); }
.press-disclaimer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ── SECTION 11 — TESTIMONIALS ── */
.testimonials-section {
  background: var(--dark-2);
  padding: 7rem 1.5rem;
  overflow: hidden;
}
.testimonials-container {
  max-width: 1140px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.testimonials-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Carousel wrapper */
.tcarousel-wrapper {
  position: relative;
}
.tcarousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* Card */
.tcard {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color 0.3s;
}
.tcard:hover { border-color: rgba(245,200,66,0.3); }
.tcard-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; }
.tcard-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
  margin: 0;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
}
.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0a0a;
  font-weight: 900;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard-name { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.tcard-detail { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }
.tcard-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(245,200,66,0.1);
  color: var(--gold);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
}

/* Controls */
.tcarousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.tcarousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--dark-3);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.tcarousel-btn:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }
.tcarousel-btn i { width: 18px; height: 18px; }
.tcarousel-dots { display: flex; gap: 0.5rem; }
.tcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
}
.tcarousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* Responsive */
@media (max-width: 900px) {
  .tcard { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 600px) {
  .tcard { flex: 0 0 90%; }
  .tcard-badge { display: none; }
}

/* ══════════════════════════════════════════════
   SECTION 12 — SOCIAL FEED CTA
══════════════════════════════════════════════ */
.social-section {
  background: var(--dark);
  padding: 100px 0 80px;
  overflow: hidden;
}

.social-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.social-header {
  text-align: center;
  max-width: 640px;
}

.social-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.social-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Instagram grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 8px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.ig-tile--wide {
  grid-column: span 2;
}

.ig-tile--tall {
  grid-row: span 2;
}

.ig-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  border-radius: 4px;
  background: #111;
}

.ig-tile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ig-tile:hover .ig-tile-photo {
  transform: scale(1.06);
}

.ig-tile-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.ig-tile:hover .ig-tile-bg {
  transform: scale(1.06);
}

/* Tile background colours — rich dark gradients with gold/purple/teal */
.ig-bg-1 {
  background: linear-gradient(135deg, #1a1200 0%, #3d2e00 40%, #f5c842 100%);
}
.ig-bg-2 {
  background: linear-gradient(135deg, #0d0d1a 0%, #1e1040 50%, #4a2080 100%);
}
.ig-bg-3 {
  background: linear-gradient(135deg, #001a10 0%, #003d22 50%, #00a854 100%);
}
.ig-bg-4 {
  background: linear-gradient(135deg, #1a0008 0%, #3d0015 50%, #c9003a 100%);
}
.ig-bg-5 {
  background: linear-gradient(180deg, #0a0a14 0%, #1a1a2e 40%, #f5c842 100%);
}

.ig-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px 16px;
  gap: 6px;
  transition: background 0.3s ease;
}

.ig-tile:hover .ig-tile-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
}

.ig-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 14px;
  right: 14px;
}

.ig-tile:hover .ig-icon {
  opacity: 1;
}

.ig-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s ease;
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
  border-radius: 4px;
}

.ig-tile:hover .ig-tag {
  opacity: 1;
  background: rgba(0,0,0,0.65);
}

/* Social CTA buttons */
.social-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.social-cta-btn svg {
  width: 18px;
  height: 18px;
}

.social-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.social-cta-ig {
  background: #1a1a1a;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.social-cta-ig::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.social-cta-ig:hover::before { opacity: 1; }
.social-cta-ig svg, .social-cta-ig span { position: relative; z-index: 1; }

.social-cta-li {
  background: #0a66c2;
  color: #fff;
}

.social-cta-wa {
  background: #25d366;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px 160px;
  }
  .ig-tile--wide {
    grid-column: span 2;
  }
  .ig-tile--tall {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 140px);
  }
  .social-cta-btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
}

/* ══════════════════════════════════════════════
   SECTION 13 — FAQ ACCORDION
══════════════════════════════════════════════ */
.faq-section {
  background: var(--dark-2);
  padding: 100px 0 80px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.faq-header {
  text-align: center;
}

.faq-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 12px 0 0;
  letter-spacing: -0.02em;
}

/* Accordion list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(128,128,128,0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(128,128,128,0.15);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  transition: color 0.2s;
}

.faq-q:hover {
  color: #f5c842;
}

.faq-q[aria-expanded="true"] {
  color: #f5c842;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #f5c842;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}

.faq-a.open {
  grid-template-rows: 1fr;
}

.faq-a > p {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  padding-bottom: 24px;
  margin: 0;
}

/* Bottom CTA */
.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.faq-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* btn-gold defined above — no override here */

@media (max-width: 600px) {
  .faq-q {
    font-size: 0.97rem;
    padding: 20px 0;
  }
}

/* ═══════════════════════════════
   SECTION 14 — FOOTER CTA + FOOTER
═══════════════════════════════ */

/* --- Footer CTA Banner --- */
.footer-cta {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 80px 24px;
  text-align: center;
}
html.dark .footer-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 60%, #1a1100 100%);
}
.footer-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.footer-cta-headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}
.footer-cta-sub {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: #f5c842;
  margin: 8px 0 0;
}
.footer-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-cta-btn {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.btn-outline-white {
  border: 2px solid var(--text);
  color: var(--text);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(128,128,128,0.12);
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-pale);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Brand col */
.footer-logo {
  width: 120px;
  height: auto;
  border-radius: 6px;
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 8px;
}
.footer-domain {
  color: #f5c842;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 20px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border: 1px solid rgba(128,128,128,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  color: #f5c842;
  border-color: #f5c842;
  background: rgba(245,200,66,0.08);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}

/* Column titles */
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5c842;
  margin: 0 0 20px;
}

/* Link lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-icon {
  width: 15px;
  height: 15px;
  color: #f5c842;
  flex-shrink: 0;
}
.footer-contact a,
.footer-contact span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--text);
}

/* Accreditation badges */
.footer-accreditations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-accred-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid rgba(128,128,128,0.2);
  border-radius: 4px;
  padding: 4px 8px;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(128,128,128,0.1);
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.78rem;
  margin: 0;
}
.footer-bottom-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .footer-cta-btn {
    width: 100%;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   LIGHT MODE OVERRIDES
   These fix sections that use hardcoded dark rgba values.
   Applied when html does NOT have class="dark".
   ============================================================ */

html:not(.dark) body { background: #ffffff; color: #1a1a1a; }

/* Nav light */
html:not(.dark) .nav-logo-text { color: #1a1a1a; }
html:not(.dark) .nav-hamburger span { background: #1a1a1a; }
html:not(.dark) .nav-cta { background: #e8a832; border-color: #e8a832; color: #0a0a0a; }
html:not(.dark) .nav-cta:hover { background: transparent; color: #e8a832; }

/* Stats section */
html:not(.dark) #stats { background: #f4f4f4; }
html:not(.dark) .stat-card { background: #ffffff; }
html:not(.dark) .stat-card:hover { background: #f8f8f8; }
html:not(.dark) .stat-card--gold { background: #e8a832; }
html:not(.dark) .stat-card--gold:hover { background: #d4941e; }
html:not(.dark) .stats-title { color: #1a1a1a; }

/* Results ticker bar */
html:not(.dark) #results-bar { background: #f0f0f0; border-color: rgba(232,168,50,0.2); }
html:not(.dark) .ticker-item { border-right-color: rgba(0,0,0,0.07); }
html:not(.dark) .ticker-uni { color: #666666; }

/* Global map section */
html:not(.dark) #global { background: #f0f0f0; }
html:not(.dark) .global-map-svg .landmass { fill: rgba(0,0,0,0.07); stroke: rgba(232,168,50,0.2); }
html:not(.dark) .global-footer { border-top-color: rgba(232,168,50,0.15); }

/* About/AreYou section */
html:not(.dark) #about { background: #ffffff; }
html:not(.dark) .areyou-card--mid { background: #f4f4f4; border-color: rgba(0,0,0,0.08); }
html:not(.dark) .areyou-card--front { background: #ffffff; border-color: rgba(232,168,50,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
html:not(.dark) .acard-quote { color: #1a1a1a; }
html:not(.dark) .acard-divider { background: rgba(0,0,0,0.08); }
html:not(.dark) .acard-tag { background: rgba(0,0,0,0.05); color: #666666; }
html:not(.dark) .acard-bottom { border-top-color: rgba(0,0,0,0.08); }
html:not(.dark) .trait-icon { background: rgba(232,168,50,0.1); border-color: rgba(232,168,50,0.25); }

/* Services section */
html:not(.dark) #services { background: #f4f4f4; }
html:not(.dark) .svc-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
html:not(.dark) .svc-card:hover { border-color: rgba(232,168,50,0.3); }
html:not(.dark) .svc-card--featured { background: #ffffff; border-color: rgba(232,168,50,0.5); box-shadow: 0 0 0 1px rgba(232,168,50,0.15), 0 8px 32px rgba(0,0,0,0.07); }
html:not(.dark) .svc-subject { background: rgba(0,0,0,0.04); }
html:not(.dark) .services-bottom { border-top-color: rgba(0,0,0,0.08); }

/* Results section */
html:not(.dark) #results { background: #f0f0f0; }
html:not(.dark) .result-row { background: #ffffff; border-color: rgba(0,0,0,0.07); }
html:not(.dark) .result-row:hover { border-color: rgba(232,168,50,0.25); }
html:not(.dark) .result-bar-wrap { background: rgba(0,0,0,0.07); }
html:not(.dark) .uni-chip { background: #f8f8f8; border-color: rgba(0,0,0,0.08); color: #666666; }
html:not(.dark) .uni-chip:hover { border-color: rgba(232,168,50,0.3); color: #1a1a1a; }

/* Partners section */
html:not(.dark) #partners { background: #ffffff; }
html:not(.dark) .partner-card { background: #f4f4f4; border-color: rgba(0,0,0,0.07); }
html:not(.dark) .partner-card:hover { border-color: rgba(232,168,50,0.25); }
html:not(.dark) .partner-icon { background: rgba(232,168,50,0.08); }

/* Press section */
html:not(.dark) #press { background: #f0f0f0; }

/* Testimonials section */
html:not(.dark) .testimonials-section { background: #f4f4f4; }
html:not(.dark) .tcard { background: #ffffff; border-color: rgba(0,0,0,0.08); }
html:not(.dark) .tcard:hover { border-color: rgba(232,168,50,0.3); }
html:not(.dark) .tcarousel-btn { background: #f4f4f4; border-color: rgba(0,0,0,0.12); color: #1a1a1a; }
html:not(.dark) .tcarousel-dot { background: rgba(0,0,0,0.15); }

/* Social section */
html:not(.dark) .social-section { background: #f0f0f0; }

/* FAQ section */
html:not(.dark) .faq-section { background: #f4f4f4; }

/* Footer CTA */
html:not(.dark) .footer-cta { background: #1a1a1a; }
html:not(.dark) .footer-cta-headline { color: #ffffff; }
html:not(.dark) .footer-cta-sub { color: #e8a832; }
html:not(.dark) .btn-outline-white { border-color: #ffffff; color: #ffffff; }

/* Footer */
html:not(.dark) .site-footer { background: #1a1a1a; }
html:not(.dark) .footer-col-title { color: #e8a832; }
html:not(.dark) .footer-tagline { color: rgba(255,255,255,0.7); }
html:not(.dark) .footer-domain { color: #e8a832; }
html:not(.dark) .footer-social a { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); }
html:not(.dark) .footer-social a:hover { color: #e8a832; border-color: #e8a832; }
html:not(.dark) .footer-links a { color: rgba(255,255,255,0.6); }
html:not(.dark) .footer-links a:hover { color: #ffffff; }
html:not(.dark) .footer-contact a,
html:not(.dark) .footer-contact span { color: rgba(255,255,255,0.6); }
html:not(.dark) .footer-accred-badge { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); }
html:not(.dark) .footer-bottom { border-top-color: rgba(255,255,255,0.08); }
html:not(.dark) .footer-bottom p { color: rgba(255,255,255,0.3); }
html:not(.dark) .footer-bottom-links a { color: rgba(255,255,255,0.35); }

/* Scrollbar */
html:not(.dark) ::-webkit-scrollbar-track { background: #f4f4f4; }

/* Instagram embed grid */
.ig-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  margin: 2rem 0;
}
.ig-embed-grid .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 12px !important;
}
@media (max-width: 768px) {
  .ig-embed-grid { grid-template-columns: 1fr; }
}

/* ── Dummy IG grid (IG_EMBEDS_ENABLED: false) ── */
.ig-grid-dummy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 8px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
}
.ig-dummy-tile--wide { grid-column: span 2; }
.ig-dummy-tile--tall { grid-row: span 2; }
.ig-dummy-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.ig-dummy-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ig-dummy-tile:hover .ig-dummy-photo { transform: scale(1.06); }
.ig-dummy-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.ig-dummy-tile:hover .ig-dummy-overlay { opacity: 1; }
.ig-dummy-tag {
  font-size: 0.72rem; font-weight: 700;
  color: #fff; letter-spacing: 0.04em;
  text-transform: uppercase; margin-left: 6px;
}
@media (max-width: 768px) {
  .ig-grid-dummy {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .ig-dummy-tile--wide { grid-column: span 2; }
  .ig-dummy-tile--tall { grid-row: span 1; }
}
