/* ===========================
   CSS RESET & BASE
   =========================== */

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

html {
  scroll-behavior: smooth;
}

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */

:root {
  /* Fastbreak Warm & Energetic Palette */
  --brand-primary: #EFD93C;      /* Mustard Yellow - Primary CTA & Highlights */
  --brand-secondary: #E3642A;    /* Burnt Orange - Secondary CTA & Section BG */
  --brand-accent: #7DC6E8;       /* Sky Blue - Tertiary Accent & Hover */
  --brand-text: #2B211A;         /* Espresso Brown - Ground/Text/Anchor */
  --brand-bg: #F5F1E6;           /* Warm Ivory - Base Background */
  --brand-success: #22C55E;      /* Keep green for success states */
  --brand-warning: #E3642A;      /* Use burnt orange for warnings */
  --brand-error: #DC2626;        /* Keep red for errors */

  /* Warm Neutral Scale */
  --gray-50: #F5F1E6;           /* Warm Ivory */
  --gray-100: #F0EBE0;          /* Light Ivory */
  --gray-200: #E8E0D0;          /* Soft Beige */
  --gray-300: #D4C4A8;          /* Warm Gray */
  --gray-400: #A68B5B;          /* Medium Brown */
  --gray-500: #8B7355;          /* Darker Brown */
  --gray-600: #5D4A37;          /* Dark Brown */
  --gray-700: #3D3226;          /* Very Dark Brown */
  --gray-800: #2B211A;          /* Espresso Brown */
  --gray-900: #1A1510;          /* Almost Black Brown */

  /* Warm Background Tints */
  --bg-primary-light: #FDF9E7;   /* Light Mustard */
  --bg-secondary-light: #FDF2ED; /* Light Burnt Orange */
  --bg-accent-light: #F0F9FF;    /* Light Sky Blue */
  --bg-warm-light: #F5F1E6;      /* Warm Ivory */
  --bg-orange-light: #FDF2ED;    /* Light Orange */

  /* Semantic Colors - Updated to match new palette */
  --success: #22C55E;
  --warning: #E3642A;
  --error: #DC2626;
  --info: #7DC6E8;

  /* Warm & Energetic Gradients */
  --gradient-primary: linear-gradient(135deg, #EFD93C 0%, #D4C02A 100%);
  --gradient-secondary: linear-gradient(135deg, #E3642A 0%, #D55A1F 100%);
  --gradient-accent: linear-gradient(135deg, #7DC6E8 0%, #6BB6D6 100%);
  --gradient-warm: linear-gradient(135deg, #F5F1E6 0%, #F0EBE0 100%);
  --gradient-mesh: radial-gradient(at 27% 37%, hsla(45, 85%, 60%, 0.08) 0px, transparent 0%),
                    radial-gradient(at 97% 21%, hsla(15, 75%, 55%, 0.08) 0px, transparent 50%),
                    radial-gradient(at 52% 99%, hsla(200, 65%, 70%, 0.06) 0px, transparent 50%),
                    radial-gradient(at 10% 29%, hsla(30, 40%, 85%, 0.05) 0px, transparent 50%);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Fluid Typography */
  --text-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  --text-sm: clamp(0.875rem, 2vw, 1rem);
  --text-base: clamp(1rem, 2.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 3vw, 1.25rem);
  --text-xl: clamp(1.25rem, 3.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 4vw, 2rem);
  --text-3xl: clamp(2rem, 5vw, 3rem);
  --text-4xl: clamp(2.5rem, 6vw, 4rem);

  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;

  /* 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;
}

/* ===========================
   BASE STYLES
   =========================== */

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


/* ===========================
   LAYOUT SYSTEM
   =========================== */

.container {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 max(24px, 5vw);
}

.section {
  padding: clamp(80px, 10vh, 120px) 0;
  position: relative;
}

.grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ===========================
   LOGO STYLES
   =========================== */

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.hero-logo {
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease;
}

.fastbreak-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.fastbreak-logo:hover {
  transform: scale(1.05);
}

.fastbreak-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 4vw, 3.5rem);
  height: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--brand-primary);
  color: var(--brand-text);
  border-radius: 50%;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 900;
}

.logo-text {
  font-size: clamp(36px, 8vw, 48px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  border: none;
  font-family: inherit;
}

.btn-small {
  padding: 8px 16px;
  font-size: var(--text-sm);
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--brand-text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--brand-accent);
  color: white;
  box-shadow: 0 4px 16px rgba(125, 198, 232, 0.4);
  transform: translateY(-1px);
}


.btn-large {
  padding: 16px 32px;
  font-size: var(--text-lg);
  border-radius: 12px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--gradient-warm);
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 80px 0;
}

/* Clean minimal background */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(239, 217, 60, 0.05) 0%, transparent 70%);
  z-index: 0;
}


@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-60px, -60px); }
}

/* Hide particles for clean look */
.particle {
  display: none;
}

.particle-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.15), rgba(168, 85, 247, 0.1));
}

.particle-2 {
  width: 12px;
  height: 12px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
  background: linear-gradient(45deg, rgba(6, 182, 212, 0.12), rgba(34, 197, 94, 0.08));
}

.particle-3 {
  width: 6px;
  height: 6px;
  bottom: 30%;
  left: 20%;
  animation-delay: 6s;
  background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(236, 72, 153, 0.08));
}

.particle-4 {
  width: 10px;
  height: 10px;
  top: 40%;
  right: 30%;
  animation-delay: 9s;
  background: linear-gradient(45deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.08));
}

.particle-5 {
  width: 14px;
  height: 14px;
  bottom: 20%;
  right: 10%;
  animation-delay: 12s;
  background: linear-gradient(45deg, rgba(34, 197, 94, 0.08), rgba(6, 182, 212, 0.1));
}

.particle-6 {
  width: 8px;
  height: 8px;
  top: 80%;
  left: 50%;
  animation-delay: 15s;
  background: linear-gradient(45deg, rgba(236, 72, 153, 0.1), rgba(249, 115, 22, 0.08));
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes heroGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes ambientFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% { 
    transform: translate(30px, -20px) scale(1.1);
    opacity: 0.7;
  }
  50% { 
    transform: translate(-20px, 30px) scale(0.9);
    opacity: 0.5;
  }
  75% { 
    transform: translate(20px, 10px) scale(1.05);
    opacity: 0.8;
  }
}

@keyframes floatParticle {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% { 
    transform: translate(40px, -30px) rotate(90deg);
    opacity: 0.7;
  }
  50% { 
    transform: translate(-30px, 40px) rotate(180deg);
    opacity: 0.4;
  }
  75% { 
    transform: translate(30px, 20px) rotate(270deg);
    opacity: 0.8;
  }
}

@keyframes techGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-40px, -40px); }
}

@keyframes rocketFloat {
  0%, 100% { 
    transform: translateY(0px);
  }
  50% { 
    transform: translateY(-8px);
  }
}

@keyframes badgeGlow {
  0%, 100% { 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  50% { 
    box-shadow: 0 4px 16px rgba(125, 198, 232, 0.3);
  }
}

@keyframes sectionGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes parallaxFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% { 
    transform: translate(20px, -15px) scale(1.05);
    opacity: 0.5;
  }
  50% { 
    transform: translate(-15px, 20px) scale(0.95);
    opacity: 0.4;
  }
  75% { 
    transform: translate(15px, 10px) scale(1.02);
    opacity: 0.6;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--brand-accent);
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease, badgeGlow 4s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--brand-text);
}

.hero-badge-bubble {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--brand-primary);
  border-radius: 24px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease;
}

.hero-badge-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border-right: 1px solid var(--brand-primary);
  border-bottom: 1px solid var(--brand-primary);
  border-radius: 0 0 4px 0;
  transform: translateX(-50%) rotate(45deg);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-success);
  border-radius: 50%;
}


.hero-subtitle h2 {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-4);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.cta-subtext {
  margin-top: var(--space-4);
  color: var(--gray-500);
  font-size: var(--text-sm);
}

/* ===========================
   SECTION HEADERS
   =========================== */

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: var(--tracking-normal);
  color: var(--gray-900);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ===========================
   ABOUT SECTION
   =========================== */

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

.about-text p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  color: var(--gray-600);
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: var(--bg-blue-light);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.value-prop {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 500;
  color: var(--gray-700);
}

.value-icon {
  font-size: 20px;
}

@media (min-width: 768px) {
  .value-props {
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
  }

  .value-prop {
    flex-direction: column;
    gap: var(--space-2);
  }
}

.lead {
  font-size: var(--text-xl) !important;
  font-weight: 500;
  color: var(--gray-800) !important;
}

.mentor-intro {
  font-weight: 600;
  margin-bottom: var(--space-8) !important;
}

.company-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.company-name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-600);
  padding: var(--space-2) var(--space-4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.company-name:nth-child(1) {
  color: #FF5A5F;
}

.company-name:nth-child(2) {
  color: #4285F4;
}

.company-name:nth-child(3) {
  color: #1DB954;
}

/* ===========================
   PROCESS SECTION
   =========================== */

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  background: #FFFFFF;
  padding: var(--space-8);
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-primary);
}

.process-step:hover::before {
  left: 0;
}

.step-header {
  margin-bottom: var(--space-6);
}

.step-number {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-normal);
}

.step-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-900);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.step-item {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-600);
}

.step-subtext {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-style: italic;
}

.process-arrow {
  font-size: var(--text-3xl);
  color: var(--brand-primary);
  font-weight: bold;
}

/* ===========================
   GLASS SECTION
   =========================== */

.glass-section {
  background: var(--bg-secondary-light);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.glass-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(227, 100, 42, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(125, 198, 232, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.schedule-card {
  background: #FFFFFF;
  padding: var(--space-6);
  border-radius: 12px;
  text-align: center;
  border: 1px solid #E2E8F0;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-primary);
}

/* Color variations for schedule cards */
.schedule-card:nth-child(1):hover { border-color: var(--brand-primary); }
.schedule-card:nth-child(2):hover { border-color: var(--brand-secondary); }
.schedule-card:nth-child(3):hover { border-color: var(--brand-accent); }
.schedule-card:nth-child(4):hover { border-color: var(--brand-success); }

.schedule-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.schedule-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.schedule-card p {
  color: var(--gray-600);
}

/* ===========================
   REQUIREMENTS SECTION
   =========================== */

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.requirements-card {
  background: #FFFFFF;
  padding: var(--space-8);
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.yes-card {
  border-left: 4px solid var(--brand-success);
}

.no-card {
  border-left: 4px solid var(--brand-secondary);
}

.requirements-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--gray-900);
}

.requirements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.check-item::before {
  content: "✓";
  color: var(--brand-success);
  font-weight: bold;
  margin-right: var(--space-3);
}

.cross-item::before {
  content: "✗";
  color: var(--gray-400);
  font-weight: bold;
  margin-right: var(--space-3);
}

.requirements-list li {
  font-size: var(--text-base);
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
}

/* ===========================
   BENEFITS SECTION
   =========================== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.benefit-card {
  background: #FFFFFF;
  padding: var(--space-6);
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
}

/* Color variations for benefit cards */
.benefit-card:nth-child(1)::before { background: var(--gradient-primary); }
.benefit-card:nth-child(2)::before { background: var(--gradient-secondary); }
.benefit-card:nth-child(3)::before { background: var(--gradient-accent); }
.benefit-card:nth-child(4)::before { background: var(--gradient-success); }
.benefit-card:nth-child(5)::before { background: var(--gradient-purple); }
.benefit-card:nth-child(6)::before { background: var(--gradient-pink); }

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-primary);
}

/* Hover border colors for benefit cards */
.benefit-card:nth-child(1):hover { border-color: var(--brand-primary); }
.benefit-card:nth-child(2):hover { border-color: var(--brand-secondary); }
.benefit-card:nth-child(3):hover { border-color: var(--brand-accent); }
.benefit-card:nth-child(4):hover { border-color: var(--brand-success); }
.benefit-card:nth-child(5):hover { border-color: var(--brand-purple); }
.benefit-card:nth-child(6):hover { border-color: var(--brand-pink); }

.benefit-card:hover::before {
  left: 0;
}

.benefit-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.benefit-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.benefit-card p {
  color: var(--gray-600);
  font-size: var(--text-sm);
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.faq-item {
  background: #FFFFFF;
  padding: var(--space-6);
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-primary);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-4);
}

.worry-emoji {
  font-size: var(--text-xl);
}

.faq-answer {
  font-size: var(--text-base);
  color: var(--gray-500);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-10);
}

/* ===========================
   CTA SECTION
   =========================== */

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

.program-details {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin: var(--space-8) 0;
  flex-wrap: wrap;
}

.detail-item {
  font-size: var(--text-lg);
  color: var(--gray-600);
}

.detail-item strong {
  color: var(--gray-900);
}

.final-cta {
  margin-top: var(--space-10);
}

.cta-security {
  margin-top: var(--space-4);
  color: var(--gray-500);
  font-size: var(--text-sm);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--brand-text);
  color: var(--brand-bg);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--gray-200);
}

.footer-content {
  text-align: center;
}

.footer-logo h3 {
  color: var(--brand-bg);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: var(--tracking-normal);
  margin-bottom: var(--space-4);
}

.footer-text p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.stagger-animation > * {
  animation: fadeInUp 0.6s ease both;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: var(--space-8) 0;
  }

  .hero-subtitle h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
  }

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

  .process-arrow {
    font-size: var(--text-2xl);
    transform: rotate(90deg);
    justify-self: center;
    margin: var(--space-4) 0;
  }

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

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

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

  .benefit-card {
    padding: var(--space-5);
  }

  .program-details {
    flex-direction: column;
    gap: var(--space-4);
  }

  .company-logos {
    gap: var(--space-3);
    flex-direction: column;
    align-items: center;
  }

  .company-name {
    font-size: var(--text-base);
    padding: var(--space-2) var(--space-4);
    min-width: 120px;
    text-align: center;
  }


  .section {
    padding: clamp(60px, 8vh, 80px) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .process-step {
    padding: var(--space-6);
  }

  .requirements-card {
    padding: var(--space-6);
  }

  .hero-badge {
    padding: 4px 12px;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: var(--text-base);
  }

  .company-logos {
    gap: var(--space-3);
  }

  .company-name {
    font-size: var(--text-sm);
    padding: var(--space-1) var(--space-2);
  }
}

/* ===========================
   ACCESSIBILITY
   =========================== */

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

/* Focus states */
.btn:focus,
a:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.fastbreak-logo:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 4px;
  border-radius: 8px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --gray-50: #ffffff;
    --gray-100: #f0f0f0;
    --gray-800: #000000;
    --gray-900: #000000;
  }
}

/* Bright mode only - no dark mode support */