/* =====================================
   Build Beyond Belief — Landing Page Styles
   ===================================== */

:root {
  /* Colors */
  --color-bg: #0a0a0f;
  --color-bg-elevated: #12121a;
  --color-bg-card: #16161f;
  --color-surface: #1a1a24;
  
  --color-text: #ffffff;
  --color-text-muted: #9ca3af;
  --color-text-subtle: #6b7280;
  
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-dark: #4f46e5;
  
  --color-accent: #06b6d4;
  --color-accent-light: #22d3ee;
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  
  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 120px;
  --section-padding-mobile: 80px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* =====================================
   Reset & Base
   ===================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* =====================================
   Utilities
   ===================================== */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Pre-hide elements animated by GSAP to prevent flash-of-unstyled-content */
[data-animate],
.coaching-card,
.offer-card {
  opacity: 0;
}

/* =====================================
   Particles Background
   ===================================== */

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0.6;
  }
}

/* =====================================
   Buttons
   ===================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-full {
  width: 100%;
}

/* =====================================
   Navigation
   ===================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  color: white !important;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* =====================================
   Hero Section
   ===================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: var(--gradient-glow);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual — Animated Logo */
.hero-visual {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 550px;
  max-width: 45vw;
  height: 550px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Initial state: all B's invisible strokes, GSAP handles transforms */
.hero-b {
  opacity: 0;
}

.hero-b path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

/* Smooth pulsating glow — runs continuously; invisible when paths are invisible */
@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(99, 102, 241, 0.3))
            drop-shadow(0 0 10px rgba(6, 182, 212, 0.15));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(99, 102, 241, 0.75))
            drop-shadow(0 0 36px rgba(6, 182, 212, 0.4));
  }
}

.hero-logo {
  animation: logoPulse 4s ease-in-out infinite;
}

/* =====================================
   Who This Is For Section
   ===================================== */

.who {
  padding: var(--section-padding) 0;
  position: relative;
}

.who::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.who-card {
  position: relative;
  padding: 40px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.who-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
}

.who-card-featured {
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, var(--color-bg-card) 100%);
}

.who-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.who-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary-light);
  margin-bottom: 24px;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.who-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

/* Shared CTA blocks (Who + Offers sections) */
.who-cta,
.offers-cta {
  text-align: center;
  margin-top: 56px;
}

.who-cta p,
.offers-cta p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================
   How We Work Together (Offers) Section
   ===================================== */

.offers {
  padding: var(--section-padding) 0;
  background: var(--color-bg-elevated);
}

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

.offer-card {
  position: relative;
  padding: 40px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
}

.offer-card-featured {
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, var(--color-bg-card) 100%);
}

.offer-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.offer-tier {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 12px;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.offer-price {
  margin-bottom: 20px;
}

.offer-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.offer-unit {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}

.offer-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.offer-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.offer-details li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.offer-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.offer-status {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-warning);
  text-align: center;
}

/* =====================================
   Final CTA Buttons
   ===================================== */

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================
   Thesis Section
   ===================================== */

.thesis {
  padding: var(--section-padding) 0;
  background: var(--color-bg-elevated);
  position: relative;
}

.thesis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.thesis-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thesis-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 32px;
}

.thesis-quote .highlight {
  color: var(--color-accent);
}

.thesis-text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.thesis-text strong {
  color: var(--color-text);
}

/* =====================================
   Lead Magnet Section
   ===================================== */

.lead-magnet {
  padding: var(--section-padding) 0;
  position: relative;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lead-magnet-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-bg-card);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.lead-magnet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.lead-magnet-content {
  padding: 64px;
}

.lead-magnet-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.lead-magnet-text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.lead-magnet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-magnet-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.lead-magnet-features svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--color-success);
}

.lead-magnet-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  background: var(--color-surface);
}

.lead-magnet-form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input::placeholder {
  color: var(--color-text-subtle);
}

.form-group select {
  color: var(--color-text-subtle);
}

.form-group select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-note {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  text-align: center;
}

/* =====================================
   Trust Bar Section
   ===================================== */

.trust-bar {
  padding: 80px 0;
  background: var(--color-bg);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =====================================
   About Socials
   ===================================== */

.about-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-primary-light);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

/* =====================================
   Final CTA Section
   ===================================== */

.final-cta {
  padding: var(--section-padding) 0;
}

.final-cta-card {
  text-align: center;
  padding: 80px 48px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: var(--gradient-glow);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.final-cta-text {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* =====================================
   Mobile Menu Toggle
   ===================================== */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-fast);
}

/* =====================================
   Workshops Section
   ===================================== */

.workshops {
  padding: var(--section-padding) 0;
}

.workshop-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
  overflow: hidden;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.workshop-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-warning);
}

.workshop-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

.workshop-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.workshop-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.workshop-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.workshop-features svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--color-success);
}

.workshop-pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
}

.price {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-label {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}

.workshop-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
}

/* =====================================
   Coaching Section
   ===================================== */

.coaching {
  padding: var(--section-padding) 0;
  background: var(--color-bg-elevated);
}

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

.coaching-card {
  padding: 40px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.coaching-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
}

.coaching-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary-light);
  margin-bottom: 24px;
}

.coaching-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.coaching-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.coaching-pricing {
  display: flex;
  justify-content: center;
}

.coaching-price-card {
  text-align: center;
  padding: 48px 64px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  max-width: 480px;
}

.coaching-price {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coaching-price-label {
  display: block;
  font-size: 1rem;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
}

.coaching-price-card p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* =====================================
   Guarantee Section
   ===================================== */

.guarantee {
  padding: var(--section-padding) 0;
  position: relative;
}

.guarantee::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: var(--gradient-glow);
  pointer-events: none;
}

.guarantee-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  color: var(--color-primary-light);
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.guarantee-text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.guarantee-text.highlight-text {
  color: var(--color-text);
  font-weight: 500;
}

/* =====================================
   About Section
   ===================================== */

.about {
  padding: var(--section-padding) 0;
  background: var(--color-bg-elevated);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

.about-headshot {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(99, 102, 241, 0.2);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--color-text);
}

/* =====================================
   Footer
   ===================================== */

.footer {
  padding: 80px 0 40px;
  background: var(--color-bg-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-text-subtle);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-text);
}

.footer-note {
  font-size: 0.9375rem;
  color: var(--color-text-subtle);
  font-style: italic;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}

/* =====================================
   Animations
   ===================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* =====================================
   Responsive Design
   ===================================== */

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 260px;
    max-width: none;
    height: 260px;
    margin: 0 auto 24px;
    order: -1;
  }

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

  .hero-subtitle {
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .workshop-content {
    grid-template-columns: 1fr;
  }
  
  .workshop-pricing {
    max-width: 400px;
  }
  
  .coaching-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .who-grid,
  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .about-image-placeholder {
    margin: 0 auto;
    max-width: 300px;
  }

  .about-socials {
    justify-content: center;
  }
  
  .lead-magnet-card {
    grid-template-columns: 1fr;
  }
  
  .lead-magnet-form-wrap {
    padding: 48px;
  }

  .trust-items {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .nav-cta {
    text-align: center;
  }

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

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    padding-top: 90px;
  }

  .hero-visual {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 32px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .workshop-card {
    padding: 32px;
  }
  
  .workshop-badge {
    position: static;
    display: inline-block;
    margin-bottom: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 48px;
  }
  
  .footer-links {
    gap: 48px;
  }
  
  .lead-magnet-content {
    padding: 40px;
  }

  .lead-magnet-form-wrap {
    padding: 40px;
  }

  .final-cta-card {
    padding: 48px 24px;
  }

  .trust-items {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .coaching-price-card {
    padding: 40px 32px;
  }
  
  .coaching-price {
    font-size: 2.5rem;
  }
}
