/* ============================================
   DR OLIVER ZOLMAN — Design Tokens & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Type Scale (fluid clamp) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.18vw, 1rem);
  --text-lg: clamp(1.0625rem, 1rem + 0.25vw, 1.1875rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 1.5vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.6rem + 2vw, 3.25rem);
  --text-hero: clamp(2.5rem, 1.8rem + 3vw, 4rem);

  /* Colors — Light Mode */
  --color-primary-dark: #1B2A4A;
  --color-primary-accent: #0A7E8C;
  --color-primary-accent-hover: #098b9b;
  --color-light-accent: #E8F4F6;
  --color-gold: #C9A55A;
  --color-gold-light: #f5ecd4;
  --color-bg: #F8F7F4;
  --color-surface: #FFFFFF;
  --color-text: #1a1a2e;
  --color-text-muted: #6B7280;
  --color-text-light: #9CA3AF;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 12px rgba(27,42,74,0.08);
  --shadow-lg: 0 8px 30px rgba(27,42,74,0.12);
  --shadow-xl: 0 20px 60px rgba(27,42,74,0.15);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-max: 1200px;
  --content-narrow: 800px;
  --content-wide: 1400px;
  --header-height: 72px;
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --color-bg: #0F1419;
  --color-surface: #1A2332;
  --color-text: #E5E7EB;
  --color-text-muted: #9CA3AF;
  --color-text-light: #6B7280;
  --color-border: #2D3748;
  --color-border-light: #1F2937;
  --color-primary-dark: #0F1419;
  --color-light-accent: rgba(10, 126, 140, 0.1);
  --color-gold-light: rgba(201, 165, 90, 0.12);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.5);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary-accent);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

a:hover {
  color: var(--color-primary-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--content-narrow);
}

.container--wide {
  max-width: var(--content-wide);
}

.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.section--sm {
  padding: clamp(var(--space-8), 4vw, var(--space-16)) 0;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  height: var(--header-height);
}

[data-theme="dark"] .site-header {
  background: rgba(15, 20, 25, 0.92);
}

.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.header-logo svg {
  width: 40px;
  height: 40px;
}

.header-logo span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-nav a,
.main-nav .nav-dropdown-trigger {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition-interactive), background var(--transition-interactive);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  background: none;
}

.main-nav a:hover,
.main-nav .nav-dropdown-trigger:hover,
.main-nav a.active {
  color: var(--color-text);
  background: var(--color-border-light);
}

[data-theme="dark"] .main-nav a:hover,
[data-theme="dark"] .main-nav .nav-dropdown-trigger:hover {
  background: var(--color-border-light);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s var(--ease-out);
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
}

.nav-dropdown-menu a:hover {
  color: var(--color-text);
  background: var(--color-border-light);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  background: var(--color-primary-accent);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.header-cta:hover {
  background: var(--color-primary-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.header-cta:active {
  transform: translateY(0);
}

/* Header Actions (CTA + dark mode toggle) */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color var(--transition-interactive), border-color var(--transition-interactive), background var(--transition-interactive);
  flex-shrink: 0;
}

.dark-mode-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
  background: var(--color-border-light);
}

.dark-mode-toggle .icon-sun,
.dark-mode-toggle .icon-moon {
  width: 18px;
  height: 18px;
}

.dark-mode-toggle .icon-moon { display: none; }
[data-theme="dark"] .dark-mode-toggle .icon-sun { display: none; }
[data-theme="dark"] .dark-mode-toggle .icon-moon { display: block; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  flex-shrink: 0;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1B2A4A 0%, #0F1B33 60%, #0A2540 100%);
  color: #fff;
  padding: clamp(var(--space-20), 10vw, var(--space-32)) 0 clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10,126,140,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,165,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: var(--text-hero);
  color: #fff;
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary-accent);
  color: #fff;
  border-color: var(--color-primary-accent);
}

.btn--primary:hover {
  background: var(--color-primary-accent-hover);
  border-color: var(--color-primary-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10,126,140,0.3);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary-accent);
  border-color: var(--color-primary-accent);
}

.btn--outline:hover {
  background: var(--color-primary-accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, #C9A55A, #D4B86A);
  color: #1B2A4A;
  border-color: #C9A55A;
  font-weight: 700;
}

.btn--gold:hover {
  background: linear-gradient(135deg, #D4B86A, #DFC87A);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,165,90,0.35);
  color: #1B2A4A;
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

.btn:active {
  transform: translateY(0);
}

/* As Seen In Bar */
.seen-in {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.seen-in-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.seen-in-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  justify-content: center;
  align-items: center;
}

.seen-in-logos span {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ============================================
   LEAD MAGNET
   ============================================ */
.lead-magnet {
  background: var(--color-light-accent);
  padding: clamp(var(--space-16), 6vw, var(--space-24)) 0;
}

.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.lead-magnet h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  color: var(--color-primary-dark);
}

[data-theme="dark"] .lead-magnet h2 {
  color: var(--color-text);
}

.lead-magnet-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-4);
}

.lead-magnet-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.lead-magnet-list li::before {
  content: '✓';
  color: var(--color-primary-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.lead-form {
  background: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.lead-form h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary-accent);
  box-shadow: 0 0 0 3px rgba(10,126,140,0.1);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}

.form-success.active {
  display: block;
}

.form-success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-primary-accent);
}

/* ============================================
   VALUE LADDER / PRICING CARDS
   ============================================ */
.pricing-section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.pricing-section h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-3);
}

.pricing-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--color-primary-accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.pricing-card--premium {
  background: linear-gradient(135deg, #1B2A4A 0%, #0F1B33 100%);
  border-color: var(--color-gold);
  color: #fff;
}

.pricing-card--premium h3,
.pricing-card--premium .pricing-amount,
.pricing-card--premium .pricing-features li {
  color: #fff;
}

.pricing-card--premium .pricing-features li::before {
  color: var(--color-gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-badge--popular {
  background: var(--color-primary-accent);
  color: #fff;
}

.pricing-badge--premium {
  background: linear-gradient(135deg, #C9A55A, #D4B86A);
  color: #1B2A4A;
}

.pricing-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  margin-top: var(--space-2);
}

.pricing-amount {
  font-family: var(--font-body);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.pricing-amount span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: var(--space-6);
}

.pricing-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-primary-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-light-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary-accent);
}

/* ============================================
   PROTOCOL LEVELS
   ============================================ */
.protocol-section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  background: var(--color-bg);
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.protocol-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 0;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  overflow: hidden;
}

.protocol-card-image {
  width: 100%;
  overflow: hidden;
}

.protocol-card-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s var(--ease-out);
}

.protocol-card:hover .protocol-card-image img {
  transform: scale(1.02);
}

.protocol-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.protocol-card .level-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin: 0 auto var(--space-4);
  color: #fff;
}

.protocol-card:nth-child(1) .level-number {
  background: var(--color-primary-accent);
}

.protocol-card:nth-child(2) .level-number {
  background: var(--color-primary-dark);
}

.protocol-card:nth-child(3) .level-number {
  background: linear-gradient(135deg, var(--color-gold), #D4B86A);
  color: var(--color-primary-dark);
}

.protocol-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.protocol-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.protocol-card .target {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary-accent);
  font-style: italic;
}

/* ============================================
   WORK / PROJECTS GRID
   ============================================ */
.work-section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.work-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.work-card-body {
  padding: var(--space-5) var(--space-6);
}

.work-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.work-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.work-card .card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.work-card .card-link::after {
  content: '→';
  transition: transform var(--transition-interactive);
}

.work-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ============================================
   NEWSLETTER / BOTTOM CTA
   ============================================ */
.newsletter-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  background: linear-gradient(135deg, #1B2A4A 0%, #0F1B33 100%);
  color: #fff;
}

.newsletter-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h2 {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-3);
}

.newsletter-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-8);
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary-accent);
  box-shadow: 0 0 0 3px rgba(10,126,140,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 var(--space-8);
}

[data-theme="dark"] .site-footer {
  background: #0a0e13;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-brand p {
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-interactive);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p, .footer-bottom a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-interactive);
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   PAGE HERO (non-home pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1B2A4A 0%, #0F1B33 100%);
  color: #fff;
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0 clamp(var(--space-12), 6vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10,126,140,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.page-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   GENERIC CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
}

.content-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.content-card h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.content-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.content-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.content-card ul, .content-card ol {
  color: var(--color-text-muted);
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.content-card li {
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

/* Two Column Grid */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Board Member Card */
.board-member {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.board-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.board-member-photo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
}

.board-member h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.board-member p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* Step Cards */
.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--color-primary-accent);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

/* Study Card */
.study-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.study-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.study-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.funding-amount {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  background: var(--color-gold-light);
  color: var(--color-gold);
  font-weight: 700;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
}

[data-theme="dark"] .funding-amount {
  color: #D4B86A;
}

/* Experience page premium styles */
.experience-hero {
  background: linear-gradient(135deg, #0F1419 0%, #1B2A4A 50%, #0F1B33 100%);
  padding: clamp(var(--space-20), 10vw, var(--space-32)) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.experience-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(201,165,90,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.gold-price {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  color: var(--color-gold);
  margin: var(--space-6) 0;
}

.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--space-8) auto;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.included-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: left;
}

.included-item .icon {
  width: 40px;
  height: 40px;
  background: var(--color-light-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  color: var(--color-primary-accent);
}

.included-item h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.included-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Who Is This For */
.who-for {
  background: var(--color-light-accent);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.who-for-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.who-for-item .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary-accent);
  box-shadow: var(--shadow-sm);
}

.who-for-item h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.who-for-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Gold CTA Section */
.gold-cta {
  padding: clamp(var(--space-20), 10vw, var(--space-32)) 0;
  background: linear-gradient(135deg, #1B2A4A 0%, #0F1B33 100%);
  text-align: center;
  color: #fff;
  position: relative;
}

.gold-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201,165,90,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.gold-cta h2 {
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.gold-cta p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

/* Contact Form */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.contact-form textarea {
  width: 100%;
  min-height: 120px;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  resize: vertical;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary-accent);
  box-shadow: 0 0 0 3px rgba(10,126,140,0.1);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* Fallback with IntersectionObserver class */
.reveal {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-1);
    overflow-y: auto;
    z-index: 99;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .main-nav .nav-dropdown-trigger {
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-4);
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: var(--space-4);
    background: transparent;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-actions .header-cta {
    display: none;
  }

  .lead-magnet-inner {
    grid-template-columns: 1fr;
  }

  .lead-magnet-list {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    aspect-ratio: 16/9;
  }

  .protocol-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .who-for-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Section titles */
.section-title {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-3);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-10);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: fixed;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 10000;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-content {
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  text-align: center;
  font-family: var(--font-body);
}

/* Zoom hint overlay */
.zoom-hint {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.lightbox-trigger {
  position: relative;
}

.lightbox-trigger:hover .zoom-hint {
  opacity: 1;
}

/* ============================================
   WHATSAPP BUTTON (Hero CTA)
   ============================================ */
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: background 0.2s, transform 0.15s;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}

.btn--whatsapp svg {
  flex-shrink: 0;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: var(--space-4);
    right: var(--space-4);
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   THANK-YOU PAGE — Checklist Items
   ============================================ */
.checklist-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: border-color 0.2s;
}

.checklist-item:hover {
  border-color: var(--color-primary-accent);
}

.checklist-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-light-accent);
  color: var(--color-primary-accent);
  font-weight: 700;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

/* ============================================
   CONSULT BOOKING STEPS
   ============================================ */
.consult-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-5);
  text-align: left;
}

.consult-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.consult-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

.consult-step > div {
  flex: 1;
}

.consult-step-label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin: 0;
}
