/* ============================================================
   CANADIAN IMMIGRANT COMMUNITY — PREMIUM STYLESHEET
   Design System: Teal (#006B6E) | Slate (#1E293B) | Gold (#D4AF37)
   Typography: Inter | Plus Jakarta Sans
   ============================================================ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #006B6E;
  --teal-light: #008a8e;
  --teal-dark: #004a4d;
  --slate: #1E293B;
  --slate-mid: #334155;
  --slate-light: #475569;
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --gold-dark: #b89020;
  --white: #FFFFFF;
  --gray-light: #F7F7F7;
  --gray-mid: #e2e8f0;
  --gray-text: #475569;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  --nav-height: 80px;
  --section-pad: 120px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.15);
  --shadow-teal: 0 8px 32px rgba(0,107,110,0.25);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.30);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
.section-headline {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--slate);
}
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.headline-teal { color: var(--teal); }
.headline-outline {
  -webkit-text-stroke: 2px var(--slate);
  color: transparent;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,107,110,0.08);
  border: 1px solid rgba(0,107,110,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag-light {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.section-tag-gold {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.20);
}
.section-subhead {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 600px;
  line-height: 1.7;
}
.section-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.desktop-only { display: block; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,107,110,0.35);
}
.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-outline-nav {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  font-size: 0.875rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-nav:hover { background: rgba(255, 255, 255, 0.1); color: white; }
.btn-primary-nav {
  background: var(--teal);
  color: white;
  padding: 11px 22px;
  font-size: 0.875rem;
  box-shadow: var(--shadow-teal);
}
.btn-primary-nav:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-hero-primary {
  background: var(--gold);
  color: var(--slate);
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212,175,55,0.4);
}
.btn-hero-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 18px 36px;
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-final-primary {
  background: var(--gold);
  color: var(--slate);
  padding: 20px 44px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-final-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.5);
}
.btn-final-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 20px 44px;
  font-size: 1.05rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-final-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-membership {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1rem;
  margin-top: 8px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1; transform: translate(0,0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── FLOAT ANIMATIONS ─── */
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float2 { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(6px)} }
@keyframes float3 { 0%,100%{transform:translateY(-8px)} 50%{transform:translateY(8px)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scrollDot { 0%{top:0;opacity:1} 100%{top:100%;opacity:0} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:0.4} 100%{transform:scale(1.8);opacity:0} }
@keyframes progressFill { from{width:0} to{width:97%} }
@keyframes barGrow { from{width:0} to{width:100%} }
.float-anim-1 { animation: float1 4s ease-in-out infinite; }
.float-anim-2 { animation: float2 5s ease-in-out infinite; }
.float-anim-3 { animation: float3 4.5s ease-in-out infinite; }

/* ════════════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--slate);
  padding: 10px 24px;
  position: relative;
  z-index: 200;
}
.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.announcement-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}
.announcement-inner strong { color: var(--gold); }
.announcement-cta {
  margin-left: 8px;
  font-weight: 600;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.announcement-cta:hover { background: var(--gold); color: var(--slate); }
.announcement-close {
  background: none; border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  margin-left: auto;
  transition: var(--transition);
  position: absolute;
  right: 16px;
}
.announcement-close:hover { color: white; }

/* ════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════ */
.nav-header {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
.nav-header.scrolled {
  position: fixed;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow-sm);
  top: 0 !important;
  animation: slideDownNav 0.4s ease forwards;
}
@keyframes slideDownNav {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.nav-header.with-bar { top: 41px; }
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 101;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  transition: var(--transition);
}
.nav-header.scrolled .logo-text { color: var(--slate); }
.logo-accent { color: var(--teal); }

/* Real logo image — nav */
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.nav-logo-img:hover { transform: scale(1.04); }

/* Real logo image — footer */
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.nav-header.scrolled .nav-links a { color: var(--slate-mid); }
.nav-links a:hover { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-header.scrolled .btn-outline-nav { border-color: var(--gray-mid); color: var(--slate); }
.nav-header.scrolled .btn-outline-nav:hover { background: var(--gray-light); color: var(--slate); }
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-header.scrolled .mobile-menu-toggle span { background: var(--slate); }
.mobile-menu-toggle.active span { background: var(--slate); }
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 99;
  padding: 120px 32px 40px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu nav a {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--slate);
  border-bottom: 1px solid var(--gray-mid);
  padding-bottom: 24px;
}
.mobile-menu nav .btn-primary-nav { font-size: 1rem; justify-content: center; margin-top: 8px; }

/* ════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--slate);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,107,110,0.5) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  flex: 1;
}
.hero-content { display: flex; flex-direction: column; gap: 28px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74,222,128,0.8);
  animation: pulse-ring 2s ease-out infinite;
}
.hero-headline {
  font-family: var(--font-secondary);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: white;
}
.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.metric-number {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.metric-suffix {
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
}
.metric-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-metric-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Hero Ecosystem Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ecosystem {
  position: relative;
  width: 500px;
  height: 500px;
}
.ecosystem-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10;
}
.ecosystem-hub-inner {
  width: 110px; height: 110px;
  background: rgba(0,107,110,0.15);
  border: 2px solid rgba(0,107,110,0.4);
  border-radius: 50%;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}
.ecosystem-hub-inner span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.eco-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.eco-node-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.eco-node:hover .eco-node-icon {
  background: rgba(0,107,110,0.2);
  border-color: rgba(0,107,110,0.5);
  transform: scale(1.1);
}
.eco-node span {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eco-node-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.eco-node-2 { top: 22%; right: 5%; }
.eco-node-3 { bottom: 22%; right: 5%; }
.eco-node-4 { bottom: 8%; left: 50%; transform: translateX(-50%); }
.eco-node-5 { bottom: 22%; left: 5%; }
.eco-node-6 { top: 22%; left: 5%; }

/* Floating cards */
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 14px 18px;
  z-index: 20;
}
.hero-card-salary {
  bottom: 60px; left: 10px;
  min-width: 200px;
  animation: float2 5s ease-in-out infinite;
}
.hero-card-connect {
  top: 60px; right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float1 4s ease-in-out infinite;
}
.floating-card-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.floating-card-value {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.floating-card-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.floating-card-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  animation: progressFill 2s ease-out 1s forwards;
}
.floating-card-avatars { display: flex; }
.f-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
}
.f-avatar:first-child { margin-left: 0; }
.floating-card-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.floating-card-text strong { color: var(--gold); }

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: rgba(255,255,255,0.5);
  border-radius: 1px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════ */
.marquee-section {
  background: var(--teal);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  gap: 0;
}
.marquee-content span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 20px;
}
.marquee-sep { color: rgba(255,255,255,0.3) !important; }

/* ════════════════════════════════════════════════
   TRUST SECTION
════════════════════════════════════════════════ */
.trust-section {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}
.trust-header {
  text-align: center;
  margin-bottom: 64px;
}
.trust-headline {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--slate);
}
.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.trust-metric-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.trust-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,107,110,0.2);
}
.trust-metric-number {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-metric-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.trust-metric-desc { font-size: 0.8rem; color: var(--gray-text); }
.trust-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate-mid);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; color: var(--slate); }
.testimonial-author span { font-size: 0.75rem; color: var(--gray-text); }

/* ════════════════════════════════════════════════
   STRUGGLE SECTION
════════════════════════════════════════════════ */
.struggle-section {
  padding: var(--section-pad) 0;
  background: var(--slate);
}
.struggle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.struggle-content .section-headline { color: white; }
.struggle-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.struggle-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}
.struggle-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,107,110,0.3);
}
.struggle-icon { font-size: 1.5rem; flex-shrink: 0; }
.struggle-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.struggle-item p { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.struggle-item em { color: var(--gold); font-style: normal; font-weight: 600; }

/* Solution Card */
.solution-card {
  background: linear-gradient(145deg, rgba(0,107,110,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(0,107,110,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solution-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.solution-headline {
  font-family: var(--font-secondary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: white;
}
.solution-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.solution-proof { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.proof-avatars { display: flex; }
.p-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: white;
  border: 2px solid var(--slate);
}
.p-avatar:first-child { margin-left: 0; }
.solution-proof span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════════════
   PILLARS SECTION
════════════════════════════════════════════════ */
.pillars-section {
  padding: var(--section-pad) 0;
  background: white;
}
.pillars-header {
  text-align: center;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 24px;
}

/* Pillar Cards */
.pillar-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.pillar-card:hover { transform: translateY(-6px); }
.pillar-card-large {
  grid-column: span 2;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pillar-card-medium {
  grid-column: span 1;
  min-height: 200px;
}
.pillar-card-small {
  grid-column: span 1;
  min-height: 180px;
}
.pillar-card-content {
  padding: 36px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-card-large .pillar-card-content { padding: 44px; }
.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}
.pillar-icon { font-size: 2rem; }
.pillar-icon-large { font-size: 2.8rem; }
.pillar-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}
.pillar-card-large h3 { font-size: 1.8rem; }
.pillar-card p { font-size: 0.875rem; line-height: 1.65; }
.pillar-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.stat-num {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 900;
}
.stat-label { font-size: 0.78rem; color: var(--gray-text); line-height: 1.4; }
.pillar-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.pillar-topics span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0,0,0,0.06);
  color: inherit;
}
.pillar-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: inherit;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
  transition: var(--transition);
}
.pillar-cta:hover { opacity: 1; gap: 8px; }

/* Individual pillar styles */
.pillar-linkedin {
  background: linear-gradient(145deg, #0D2030, #0a1929);
  color: white;
}
.pillar-linkedin .pillar-stat { background: rgba(255,255,255,0.06); }
.pillar-linkedin .pillar-topics span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.pillar-linkedin .stat-label { color: rgba(255,255,255,0.5); }
.pillar-linkedin .stat-num { color: var(--gold); }
.pillar-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,107,110,0.2), transparent);
}
.pillar-nursing {
  background: linear-gradient(145deg, #f0faf5, #e8f5ee);
  color: var(--slate);
  border: 1px solid #c8e6d0;
}
.pillar-career {
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  color: var(--slate);
  border: 1px solid #bfdbfe;
}
.pillar-digital {
  background: linear-gradient(145deg, #fdf4ff, #fae8ff);
  color: var(--slate);
  border: 1px solid #e9d5ff;
}
.pillar-finance {
  background: linear-gradient(145deg, #fffbeb, #fef3c7);
  color: var(--slate);
  border: 1px solid #fde68a;
}
.pillar-realestate {
  background: linear-gradient(145deg, #1E293B, #0f172a);
  color: white;
}
.pillar-realestate-bg {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), transparent);
}
.pillar-realestate .stat-num { color: var(--gold); }
.pillar-realestate .stat-label { color: rgba(255,255,255,0.5); }
.pillar-realestate .pillar-stat { background: rgba(255,255,255,0.04); }
.pillar-realestate .pillar-topics span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.pillar-ai {
  background: linear-gradient(145deg, #030712, #0f172a);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
}
.pillar-ai .pillar-topics span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.pillar-events {
  background: linear-gradient(145deg, #006B6E, #004a4d);
  color: white;
}
.pillar-events .pillar-topics span { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.pillar-community {
  background: linear-gradient(145deg, #D4AF37, #b89020);
  color: var(--slate);
}
.pillar-community .pillar-cta { color: var(--slate); }

/* LinkedIn Mockup */
.pillar-card-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 24px; }
.linkedin-mock {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  width: 100%;
  backdrop-filter: blur(10px);
}
.linkedin-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.lk-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: white;
  flex-shrink: 0;
}
.lk-name { font-size: 0.85rem; font-weight: 700; color: white; }
.lk-title { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.lk-connections {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 3px 8px;
  border-radius: 100px;
}
.lk-stat-bar { display: flex; gap: 16px; }
.lk-stat { flex: 1; }
.lk-stat-n {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}
.lk-stat span { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

/* Real Estate Visual */
.realestate-visual { padding: 24px; width: 100%; }
.property-value {}
.pv-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; display: block; }
.pv-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.pv-bar {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
}
.pv-bar span { font-size: 0.6rem; color: rgba(255,255,255,0.4); }
.pv-bar.active { background: linear-gradient(180deg, var(--gold), rgba(212,175,55,0.4)); }
.pv-bar.active span { color: var(--gold); font-weight: 700; }

/* ════════════════════════════════════════════════
   ROADMAP SECTION
════════════════════════════════════════════════ */
.roadmap-section {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}
.roadmap-header {
  text-align: center;
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.roadmap-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.roadmap-step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.roadmap-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,107,110,0.2);
}
.step-number {
  font-family: var(--font-secondary);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,107,110,0.06);
  line-height: 1;
  position: absolute;
  top: 24px; right: 28px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.step-list { display: flex; flex-direction: column; gap: 8px; }
.step-list li {
  font-size: 0.875rem;
  color: var(--slate-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.step-connector {
  position: absolute;
  top: 50%; right: -18px;
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 1;
  display: none;
}
.roadmap-cta { text-align: center; margin-top: 56px; }

/* ════════════════════════════════════════════════
   OPPORTUNITIES SECTION
════════════════════════════════════════════════ */
.opportunities-section {
  padding: var(--section-pad) 0;
  background: white;
}
.opp-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.opp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.opp-card {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.opp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.opp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: var(--transition);
}
.opp-card:hover::before { opacity: 1; }
.opp-card-featured {
  background: linear-gradient(145deg, var(--slate), #0f172a);
  border-color: rgba(0,107,110,0.3);
  color: white;
  grid-row: span 1;
}
.opp-card-featured::before { background: linear-gradient(90deg, var(--teal), var(--gold)); opacity: 1; }
.opp-icon { font-size: 2rem; }
.opp-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}
.opp-card-featured .opp-label { color: var(--gold); }
.opp-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate);
}
.opp-card-featured h3 { color: white; }
.opp-card p { font-size: 0.875rem; color: var(--gray-text); line-height: 1.65; }
.opp-card-featured p { color: rgba(255,255,255,0.65); }
.opp-salary {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  background: rgba(0,107,110,0.06);
  border-radius: var(--radius-sm);
}
.opp-card-featured .opp-salary { background: rgba(212,175,55,0.1); }
.salary-range {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--teal);
}
.opp-card-featured .salary-range { color: var(--gold); }
.salary-label { font-size: 0.72rem; color: var(--gray-text); }
.opp-card-featured .salary-label { color: rgba(255,255,255,0.45); }
.opp-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.opp-card-featured .opp-link { color: var(--gold); }
.opp-link:hover { gap: 8px; }

/* ════════════════════════════════════════════════
   EDITORIAL SECTION
════════════════════════════════════════════════ */
.editorial-section {
  background: var(--slate);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.editorial-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.editorial-headline {
  font-family: var(--font-secondary);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: white;
  margin: 16px 0 32px;
}
.editorial-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 28px;
}
.editorial-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}
.editorial-left strong { color: var(--gold); font-weight: 700; }
.editorial-left .btn-primary { margin-top: 8px; }
.editorial-pillars-mini { display: flex; flex-direction: column; gap: 24px; }
.epm-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.epm-item:hover {
  background: rgba(0,107,110,0.1);
  border-color: rgba(0,107,110,0.2);
}
.epm-icon { font-size: 1.5rem; flex-shrink: 0; }
.epm-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.epm-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ════════════════════════════════════════════════
   SOCIAL PROOF SECTION
════════════════════════════════════════════════ */
.social-proof-section {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}
.sp-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.tm-col { display: flex; flex-direction: column; gap: 20px; }
.tm-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.tm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tm-card-featured {
  background: linear-gradient(145deg, var(--slate), #0f172a);
  border-color: rgba(0,107,110,0.3);
  color: white;
}
.tm-card-featured blockquote { color: rgba(255,255,255,0.75); }
.tm-card-featured .tm-author strong { color: white; }
.tm-card-featured .tm-author span { color: rgba(255,255,255,0.45); }
.tm-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.tm-card blockquote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate-mid);
  font-style: italic;
  margin-bottom: 20px;
}
.tm-author { display: flex; align-items: center; gap: 12px; }
.tm-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.tm-author strong { display: block; font-size: 0.875rem; color: var(--slate); }
.tm-author span { font-size: 0.75rem; color: var(--gray-text); }

.tm-win-card {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.win-icon { font-size: 1.5rem; flex-shrink: 0; }
.win-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.win-text p { font-size: 0.9rem; color: white; line-height: 1.5; }

.tm-stat-card {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.tm-stat-num {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 8px;
}
.tm-stat-text { font-size: 0.875rem; color: rgba(30,41,59,0.75); line-height: 1.5; }

/* ════════════════════════════════════════════════
   MENTOR SECTION
════════════════════════════════════════════════ */
.mentor-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(145deg, #0d1a2a, var(--slate));
  overflow: hidden;
}
.mentor-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mentor-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.mentor-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mentor-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
}
.mentor-credentials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.credential {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.65);
}
.mentor-content { display: flex; flex-direction: column; gap: 16px; }
.mentor-headline {
  font-family: var(--font-secondary);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
}
.mentor-tagline {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1.5;
}
.mentor-bio { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.mentor-quote {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}
.mentor-stats { display: flex; gap: 32px; padding-top: 8px; }
.m-stat { display: flex; flex-direction: column; gap: 2px; }
.m-stat-n {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.m-stat span:last-child { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ════════════════════════════════════════════════
   AUDIENCE SECTION
════════════════════════════════════════════════ */
.audience-section {
  padding: var(--section-pad) 0;
  background: white;
}
.aud-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aud-card {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.aud-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  background: white;
}
.aud-icon { font-size: 2.5rem; margin-bottom: 16px; }
.aud-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--slate);
  margin-bottom: 10px;
}
.aud-card p { font-size: 0.875rem; color: var(--gray-text); line-height: 1.65; }

/* ════════════════════════════════════════════════
   TRANSFORMATION SECTION
════════════════════════════════════════════════ */
.transformation-section {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}
.trans-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.transformation-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.trans-side {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
}
.trans-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 24px;
}
.trans-label-before {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,0.15);
}
.trans-label-after {
  background: rgba(0,107,110,0.08);
  color: var(--teal);
  border: 1px solid rgba(0,107,110,0.15);
}
.trans-list { display: flex; flex-direction: column; gap: 14px; }
.trans-list li {
  font-size: 0.9rem;
  color: var(--slate-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.trans-x { color: #dc2626; font-weight: 700; flex-shrink: 0; }
.trans-check { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.trans-center { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.trans-arrow {
  font-size: 2rem;
  color: var(--teal);
  font-weight: 900;
}
.trans-join {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal);
}
.trans-join-inner {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ════════════════════════════════════════════════
   RESOURCES SECTION
════════════════════════════════════════════════ */
.resources-section {
  padding: var(--section-pad) 0;
  background: white;
}
.resources-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resource-card {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.resource-type { font-size: 0.8rem; font-weight: 600; color: var(--teal); }
.resource-card h3 {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 800;
  color: var(--slate);
  line-height: 1.35;
}
.resource-card p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; flex: 1; }
.resource-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.resource-cta:hover { gap: 8px; }
.resource-card-cta {
  background: linear-gradient(145deg, var(--slate), #0f172a);
  border-color: rgba(0,107,110,0.3);
  color: white;
}
.resource-card-cta h3 { color: white; }
.resource-card-cta p { color: rgba(255,255,255,0.6); }
.resource-card-cta .resource-type { color: var(--gold); }
.resource-card-cta .btn-primary {
  margin-top: 8px;
  align-self: flex-start;
}

/* ════════════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--gray-light);
}
.faq-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(0,107,110,0.2); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate);
  transition: var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question[aria-expanded="true"] { color: var(--teal); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--slate-mid);
}
.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
  background: var(--teal);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 28px 24px;
}
.faq-answer p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.75; }

/* ════════════════════════════════════════════════
   MEMBERSHIP SECTION
════════════════════════════════════════════════ */
.membership-section {
  padding: var(--section-pad) 0;
  background: white;
}
.membership-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.membership-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.membership-card {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,107,110,0.3);
}
.membership-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.membership-badge {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 4px 10px;
  border-radius: 100px;
}
.membership-plan {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.membership-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-secondary);
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.price-period { font-size: 1rem; color: rgba(255,255,255,0.4); }
.membership-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 24px 0;
}
.membership-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.membership-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.feat-check {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.membership-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* Aside */
.membership-aside { display: flex; flex-direction: column; gap: 24px; }
.aside-quote {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-mid);
}
.aside-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }
.aside-quote blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-mid);
  font-style: italic;
  margin-bottom: 12px;
}
.aside-quote cite { font-size: 0.8rem; color: var(--gray-text); font-style: normal; font-weight: 600; }
.aside-benefits {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-mid);
}
.aside-benefits h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.aside-benefit {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.aside-benefit > span { font-size: 1.3rem; flex-shrink: 0; }
.aside-benefit strong { display: block; font-size: 0.875rem; color: var(--slate); margin-bottom: 3px; }
.aside-benefit p { font-size: 0.8rem; color: var(--gray-text); line-height: 1.5; }

/* ════════════════════════════════════════════════
   FINAL CTA SECTION
════════════════════════════════════════════════ */
.final-cta-section {
  padding: 160px 0;
  background: var(--slate);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg { position: absolute; inset: 0; }
.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.final-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,107,110,0.4) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.final-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.final-cta-headline {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
  line-height: 0.95;
  margin-bottom: 8px;
}
.final-cta-sub {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 32px;
}
.final-cta-body {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.final-cta-proof { display: flex; align-items: center; justify-content: center; gap: 14px; }
.fcp-avatars { display: flex; }
.fcp-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  margin-left: -10px;
  border: 2px solid var(--slate);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: white;
}
.fcp-av:first-child { margin-left: 0; }
.final-cta-proof span { font-size: 0.875rem; color: rgba(255,255,255,0.45); }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer { background: #0a1120; overflow: hidden; position: relative; }
.footer-top { padding: 80px 0 60px; }
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
}
.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  line-height: 1.3;
}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(0,107,110,0.2);
  border-color: rgba(0,107,110,0.4);
  color: white;
  transform: translateY(-2px);
}
.footer-nav-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-nav-section ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-section a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-nav-section a:hover { color: white; }
.footer-newsletter h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}
.footer-newsletter p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 8px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 11px 18px;
  font-size: 0.875rem;
  color: white;
  font-family: var(--font-primary);
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--teal); background: rgba(255,255,255,0.08); }
.newsletter-note { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .nav-links, .nav-actions .btn-outline-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(3rem, 8vw, 5rem); }
  .trust-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-testimonials { grid-template-columns: 1fr; }
  .struggle-layout { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar-card-large { grid-column: span 2; grid-template-columns: 1fr; }
  .pillar-card-visual { display: none; }
  .roadmap-steps { grid-template-columns: 1fr; }
  .opp-cards { grid-template-columns: 1fr 1fr; }
  .editorial-inner { grid-template-columns: 1fr; gap: 60px; }
  .editorial-headline { font-size: clamp(3.5rem, 8vw, 5rem); }
  .testimonials-masonry { grid-template-columns: 1fr 1fr; }
  .mentor-inner { grid-template-columns: 1fr; gap: 48px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .transformation-layout { grid-template-columns: 1fr; gap: 24px; }
  .trans-center { flex-direction: row; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .membership-card-wrap { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .desktop-only { display: none; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-pad: 60px; }
  .section-container { padding: 0 20px; }
  .hero { padding-top: calc(var(--nav-height) + 20px); padding-bottom: 120px; }
  .hero-container { padding: 0 20px; }
  .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-subheadline { font-size: 1rem; }
  .hero-cta-group { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; width: 100%; }
  .hero-metrics { gap: 20px; }
  .metric-number, .metric-suffix { font-size: 1.4rem; }
  .trust-metrics-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-testimonials { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card-large, .pillar-card-medium, .pillar-card-small { grid-column: span 1; }
  .roadmap-steps { grid-template-columns: 1fr; }
  .opp-cards { grid-template-columns: 1fr; }
  .testimonials-masonry { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .membership-card { padding: 32px 24px; }
  .final-cta-headline { font-size: clamp(3rem, 12vw, 5rem); }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .btn-final-primary, .btn-final-secondary { width: 100%; justify-content: center; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .announcement-inner { font-size: 0.78rem; }
  .nav-container { padding: 0 20px; }
  .nav-header.with-bar { top: 54px; }
  .real-testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .mentor-inner { grid-template-columns: 1fr; gap: 32px; }
  .mentor-headline { font-size: clamp(2rem, 10vw, 3rem); }
  .editorial-inner { grid-template-columns: 1fr; gap: 40px; }
  .editorial-headline { font-size: clamp(3rem, 12vw, 5rem); }
  .transformation-layout { grid-template-columns: 1fr; }
  .trans-center { flex-direction: row; justify-content: center; }
  .membership-card-wrap { grid-template-columns: 1fr; }
  .section-headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .btn-large { padding: 16px 28px; font-size: 0.95rem; }
  .nav-links { display: none; }
  .nav-actions .btn-outline-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ════════════════════════════════════════════════
   REAL TESTIMONIAL SCREENSHOTS
════════════════════════════════════════════════ */
.real-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.real-tm {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
  background: white;
  transition: var(--transition);
}
.real-tm:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,107,110,0.25);
}
.real-tm img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.sp-cta {
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .real-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .real-testimonials-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
════════════════════════════════════════════════ */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--teal);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 107, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background-color: #005a5d;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 107, 110, 0.5);
}
@media (max-width: 640px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  /* Prevent hero overflow on mobile */
  .hero-ecosystem {
    width: 300px;
    height: 300px;
  }
  .eco-node-icon {
    width: 40px; height: 40px;
    font-size: 1.2rem;
  }
  .eco-node span {
    font-size: 0.55rem;
  }
  .hero-floating-card {
    transform: scale(0.85);
  }
  .hero-card-salary {
    left: 0; bottom: 10px;
  }
  .hero-card-connect {
    right: 0; top: 10px;
  }
}

/* ====================================================== */
/* HERO FIXES */
/* ====================================================== */
.hero-content { position: relative; z-index: 10; }
.hero-cta-group { position: relative; z-index: 10; }
.hero-scroll-indicator { z-index: 100; }
.mobile-menu { overflow-y: auto; }

/* ====================================================== */
/* MOBILE MENU CLOSE BUTTON */
/* ====================================================== */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--slate);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.mobile-menu-close:hover {
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
}

/* ====================================================== */
/* HAUWA VIDEO SECTION */
/* ====================================================== */
.hauwa-video-section {
  padding: 100px 0;
  background: var(--slate);
  color: white;
  position: relative;
}
.hauwa-video-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.hauwa-video-header .section-headline {
  color: white;
}
.hauwa-video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  position: relative;
}
.hauwa-video-player {
  width: 100%;
  max-height: 80vh;
  display: block;
}
.hauwa-trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: white;
}
.hauwa-video-cta {
  text-align: center;
  margin-top: 48px;
}

/* ====================================================== */
/* COMMUNITY INSIGHTS SECTION */
/* ====================================================== */
.insights-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.insights-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.insights-featured {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}
.tiktok-mock-card {
  padding: 24px;
}
.tiktok-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.tiktok-avatar {
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.tiktok-username {
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 2px;
}
.tiktok-desc {
  font-size: 0.9rem;
  color: var(--slate-mid);
}
.tiktok-video-placeholder {
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tiktok-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  z-index: 2;
  transition: transform 0.2s;
}
.tiktok-play-btn:hover {
  transform: scale(1.1);
}
.tiktok-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
}
.insights-clips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.insight-clip {
  background: white;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  transition: transform 0.2s;
}
.insight-clip:hover {
  transform: translateX(4px);
  border-color: var(--teal);
}
.clip-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--teal);
}
.clip-placeholder span {
  color: var(--slate);
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .insights-clips {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 16px;
  }
  .insight-clip {
    min-width: 250px;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .hauwa-trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .insights-clips {
    flex-direction: column;
  }
  .insight-clip {
    min-width: 100%;
  }
}

/* ====================================================== */
/* FACEBOOK TESTIMONIALS GRID */
/* ====================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
