/* ========================================
   1. VARIABLES & RESET
======================================== */
:root {
    /* New Variables from Request */
    --primary: #7c3aed;         /* hsl(263, 70%, 50%) */
    --primary-hover: #6d28d9;   /* hsl(263, 70%, 45%) */
    --accent: #a855f7;          /* hsl(290, 60%, 55%) */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    
    /* Retained Variables for Light Sections */
    --font-inter: "Inter", sans-serif;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter);
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   2. HERO SECTION
======================================== */
/* --- Variables --- */
:root {
  --primary: hsl(263, 70%, 50%);
  --primary-hover: hsl(263, 70%, 45%);
  --accent: hsl(290, 60%, 55%);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --green: #16a34a;
  --amber: #fcd34d;
  --amber-dark: #d97706;
  --bg-secondary: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
}

/* --- Base Setup --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, sans-serif; background: #000; color: var(--text-main); }
.icon { width: 16px; height: 16px; flex-shrink: 0; }
.icon-sm { width: 12px; height: 12px; }
.icon-mr { margin-right: 8px; }

/* --- Layout: Hero Section --- */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem 0;
}
@media (min-width: 1024px) {
  .hero-section { padding: 9rem 0 7rem 0; }
}

/* --- Background Video & Overlays --- */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.65), rgba(0,0,0,0.3));
}
.hero-overlay-color {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(277, 89%, 37%, 0.3), transparent, hsla(322, 70%, 43%, 0.1));
}

/* --- Layout: Grid & Container --- */
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .hero-grid { flex-direction: row; gap: 4rem; }
}

/* --- Left Content --- */
.hero-content {
  flex: 1;
  max-width: 36rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-main);
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.4rem; } }

.text-gradient {
  background: linear-gradient(to right, #d8b4fe, #f9a8d4);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.625;
  margin-bottom: 2rem;
  max-width: 32rem;
}

/* --- Buttons --- */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 9999px;
  padding: 0 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  height: 3rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover { opacity: 0.9; }
.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(4px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.2); }

/* --- Stats Row --- */
.stats-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stat-item strong { color: white; font-weight: 600; }
.text-purple { color: #d8b4fe; }
.text-amber { color: var(--amber); }
.fill-amber { fill: var(--amber); }

/* --- Right Visuals (Glass Cards) --- */
.hero-visuals {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-visuals { justify-content: flex-end; }
}

.visuals-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 420px;
}
@media (min-width: 1024px) { .visuals-wrapper { height: 460px; } }

.visuals-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.1), rgba(167, 139, 250, 0.05), rgba(244, 114, 182, 0.1));
  filter: blur(40px);
}

/* Glass Card Base */
.glass-card {
  background:#ffffffbf;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(168, 85, 247, 0.1); /* purple-glow-sm equivalent */
  border-radius: 1rem;
  position: absolute;
  z-index: 10;
}

/* Helper Text Classes inside Cards */
.text-sm { color:black;font-size: 0.75rem; font-weight: 500; }
.text-sm-bold { color:black;font-size: 0.75rem; font-weight: 600; }
.text-xl { color:black;font-size: 1.5rem; font-weight: 700; }
.text-xs { font-size: 0.75rem; }
.text-micro-bold { font-size: 10px; font-weight: 600; }
/* .text-muted { color: var(--text-muted); } */
.text-muted { color:black;}
.text-green { color: var(--green); }
.text-amber { color: var(--amber-dark); }
.text-bold { font-weight: 700; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-1 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.flex-center { display: flex; align-items: center; gap: 4px; }

/* Reusable Components inside cards */
.gradient-primary { background: linear-gradient(to right, var(--primary), var(--accent)); }
.card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.card-header-small { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.icon-box { width: 2.25rem; height: 2.25rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; }

/* Card 1 Specifics */
.card-readiness { top: 0; left: 1rem; width: 14rem; padding: 1.25rem; }
@media (min-width: 1024px) { .card-readiness { left: 0; width: 16rem; } }
.progress-bar-bg { width: 100%; height: 0.5rem; background: var(--bg-secondary); border-radius: 9999px; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 9999px; }

/* Card 2 Specifics */
.card-trend { top: 1rem; right: 0; width: 12rem; padding: 1rem; }
@media (min-width: 1024px) { .card-trend { width: 13rem; } }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 4rem; }
.chart-bars .bar { flex: 1; border-top-left-radius: 2px; border-top-right-radius: 2px; }

/* Card 3 Specifics */
.card-sessions { bottom: 5rem; left: 0; width: 15rem; padding: 1rem; }
@media (min-width: 1024px) { .card-sessions { left: -0.5rem; width: 16rem; } }
.list-item { display: flex; align-items: center; justify-content: space-between; padding: 0.375rem 0; }


/* Card 4 Specifics */
.card-prediction { bottom: 1rem; right: 1rem; width: 11rem; padding: 1rem; }
@media (min-width: 1024px) { .card-prediction { right: 0.5rem; width: 12rem; } }
.circular-progress { position: relative; width: 5rem; height: 5rem; margin: 0 auto; }
.circular-progress svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.circular-progress-text { color:black;position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; }

/* Card 5 Specifics */
.card-weak-areas { color:black;top: 45%; left: 30%; width: 11rem; padding: 0.75rem; z-index: 0; opacity: 0.7; }
.list-item-micro { display: flex; align-items: center; gap: 0.5rem; padding: 2px 0; font-size: 10px; color: black; }
.list-item-micro .dot { width: 6px; height: 6px; border-radius: 50%; }
.bg-amber { background: var(--amber); }

/* --- Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 5s ease-in-out infinite; }
/* ========================================
   4. STATS BANNER
======================================== */
.stats-banner {
    background: linear-gradient(135deg,#6a0dad,#c71585);
    padding: 28px 40px;
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.stats-block {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}
.stats-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.stats-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.stats-label {
    font-size: 13px;
    opacity: 0.9;
}
.stats-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
    .stats-banner { padding: 24px 20px; }
    .stats-grid { justify-content: center; }
    .stats-divider { display: none; }
    .stats-block { width: 100%; justify-content: center; }
}
.text-accent {
  color: #3498db; 
}
.text-primary{
   color: #3498db; 
}
.text-sm-bold {
  font-size: 14px; /* Change font size */
  font-weight: bold; /* Ensure bold text */
}
/* ========================================
   5. SHARED SECTION STYLES
======================================== */
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: #f3e8ff;
    padding: 6px 14px;
    border-radius: 9999px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

/* ========================================
   6. CERTIFICATION PATHS
======================================== */
.certification-paths {
    padding: 80px 40px;
    background: #ffffff;
}
.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) { .paths-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .paths-grid { grid-template-columns: 1fr; } }
.path-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #d8b4fe;
}
.path-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.path-icon.purple { background: #f3e8ff; color: #7c3aed; }
.path-icon.pink { background: #fce7f3; color: #db2777; }
.path-icon.blue { background: #dbeafe; color: #2563eb; }
.path-icon.green { background: #d1fae5; color: #059669; }
.path-icon.orange { background: #ffedd5; color: #ea580c; }
.path-icon.teal { background: #ccfbf1; color: #0d9488; }
.path-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.path-desc { font-size: 14px; color: var(--text-gray); margin-bottom: 16px; line-height: 1.5; }
.path-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}
.path-count {
    font-size: 13px;
    color: #7c3aed;
    font-weight: 600;
    background: #f3e8ff;
    padding: 4px 10px;
    border-radius: 9999px;
}
.path-link { font-size: 14px; color: #7c3aed; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.path-link:hover { color: #6d28d9; }

/* ========================================
   7. HOW IT WORKS (ROADMAP)
======================================== */
/* ========================================
   7. HOW IT WORKS (ROADMAP)
======================================== */
.how-it-works-roadmap {
    padding: 80px 40px;
    background: #fce7f3;
    overflow: hidden;
}

.roadmap-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: #fce7f3;
}

.roadmap-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   STEP CARDS BELOW ROADMAP
======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.step-card[data-step="1"]:hover {
    border-color: #8b5cf6;
}

.step-card[data-step="2"]:hover {
    border-color: #22c55e;
}

.step-card[data-step="3"]:hover {
    border-color: #3b82f6;
}

.step-card[data-step="4"]:hover {
    border-color: #ec4899;
}

.step-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-badge.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-badge.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.step-badge.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.step-badge.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #f8fafc;
}

.step-icon-wrapper.purple {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #7c3aed;
}

.step-icon-wrapper.green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
}

.step-icon-wrapper.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.step-icon-wrapper.pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #db2777;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}
/* ========================================
   8. PLATFORM FEATURES
======================================== */
.platform-features {
    padding: 80px 40px;
    background: #ffffff;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #d8b4fe;
}
.feature-icon {
    width: 40px;
    height: 40px;
    background: #f9fafb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}
.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.feature-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ========================================
   9. FEATURE HIGHLIGHTS
======================================== */
.feature-highlights {
    padding: 80px 40px;
    background: #fce7f3;
}
.highlight-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 64px;
}
.highlight-block:last-child { margin-bottom: 0; }
.highlight-block.reverse { flex-direction: row-reverse; }

@media (max-width: 768px) {
    .highlight-block, .highlight-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
}

.highlight-text { flex: 1; max-width: 500px; }
.highlight-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
.highlight-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-card {
    flex: 1;
    max-width: 380px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 768px) {
    .highlight-card { width: 100%; max-width: 100%; }
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.highlight-stats { display: flex; flex-direction: column; gap: 12px; }
.h-stat { display: flex; flex-direction: column; }
.h-val { font-size: 22px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.h-lbl { font-size: 12px; color: var(--text-gray); margin-top: 2px; }

/* ========================================
   10. TESTIMONIALS
======================================== */
.testimonials {
    padding: 80px 40px;
    background: #ffffff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.stars { color: #fbbf24; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px;
}
.testimonial-divider { height: 1px; background: #f3f4f6; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.author-avatar.sm { background: #7c3aed; }
.author-avatar.jr { background: #db2777; }
.author-avatar.ps { background: #a855f7; }
.author-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.author-cert { font-size: 12px; color: #7c3aed; font-weight: 500; }

/* ========================================
   11. FAQ SECTION
======================================== */
.faq-section {
    padding: 80px 40px;
    background: #fce7f3;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.faq-question:hover { background: #f9fafb; }
.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   12. FINAL CTA
======================================== */
.final-cta-section {
    padding: 80px 40px 100px;
    background: #ffffff;
}
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #db2777 100%);
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) { .cta-title { font-size: 36px; } }
.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.btn-cta {
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-cta-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-cta-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}
.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}
/* ========================================
   ABOUT PAGE - NEW STYLES ONLY
   (Append to your existing styles.css)
   ======================================== */

/* --- About Hero (Light Version - Different from Dark Video Hero) --- */
.hero-section.about-hero {
    background: linear-gradient(135deg, #faf5ff 0%, #fce7f3 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    min-height: auto;
    position: static;
    overflow: visible;
}

.hero-section.about-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: normal;
}

.hero-section.about-hero .hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Mission Section --- */
.mission-section {
    padding: 5rem 0;
    background: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mission-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* --- Stats Cards (Different from Stats Banner) --- */
.stats-grid.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* --- Categories Section --- */
.categories-section {
    padding: 5rem 0;
    background: #f9fafb;
    text-align: center;
}

.categories-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.categories-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.category-btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
    border-color: var(--primary);
}

/* --- Contact Section --- */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.contact-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-value {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 2rem;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s;
    background: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.submit-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* --- Success Message & Loading --- */
.success-message {
    display: none;
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-loading svg {
    animation: spin 1s linear infinite;
}

/* --- Responsive Overrides for About Page --- */
@media (max-width: 968px) {
    .mission-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .hero-section.about-hero .hero-title { font-size: 2rem !important; }
    .hero-section.about-hero .hero-subtitle { font-size: 0.95rem !important; }
    .mission-title, .categories-title, .contact-title { font-size: 1.5rem !important; }
    .stats-grid.about-stats { grid-template-columns: 1fr 1fr !important; }
    .categories-grid { grid-template-columns: 1fr !important; }
    .contact-form-wrapper { padding: 1.5rem !important; }
}

@media (max-width: 480px) {
    .stats-grid.about-stats { grid-template-columns: 1fr !important; }
    .hero-section.about-hero { padding: 3rem 0 2rem !important; }
    .mission-section, .categories-section, .contact-section { padding: 3rem 0 !important; }
}

/* --- Smooth Scroll --- */
html { scroll-behavior: smooth; }