/* ===========================
   CSS Variables - African Theme
   =========================== */
:root {
    /* Brand Palette - Mentorship & Beyond (logo-inspired) */
    --color-primary: #e91d74;        /* Magenta/pink from logo */
    --color-primary-dark: #c01760;
    --color-primary-light: #f8d4e7;
    
    --color-secondary: #00a4e4;      /* Logo blue */
    --color-accent: #5e3a9c;         /* Logo purple */
    --color-accent-light: #a684d6;
    --color-accent-vibrant: #ff5fbf; /* Vibrant pink highlight */
    
    --color-dark: #1c2030;           /* Text/contrast base */
    --color-text: #1f2430;
    --color-text-light: #5b6170;
    
    --color-bg: #fdf7fb;             /* Soft pink-tinted canvas */
    --color-bg-secondary: #f4f7fc;   /* Light blue-tinted secondary */
    --color-white: #ffffff;
    
    --color-green: #27d8a7;          /* Keep secondary accent for highlights */
    --color-purple: #5e3a9c;         /* Logo purple */
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.logo-symbol {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Logo with Hand & Butterfly */
.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo-container {
    position: relative;
    width: 70px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.nav-hand {
    max-height: 24px;
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    object-fit: contain;
}

.nav-butterfly {
    position: absolute;
    z-index: 2;
    object-fit: contain;
}

.nav-butterfly-1 {
    max-width: 28px;
    max-height: 22px;
    width: auto;
    height: auto;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: navFly1 3s ease-in-out infinite;
}

.nav-butterfly-2 {
    max-width: 16px;
    max-height: 14px;
    width: auto;
    height: auto;
    top: 12px;
    left: 4px;
    animation: navFly2 3.5s ease-in-out infinite;
}

.nav-butterfly-3 {
    max-width: 14px;
    max-height: 12px;
    width: auto;
    height: auto;
    top: 14px;
    right: 4px;
    animation: navFly3 4s ease-in-out infinite;
}

/* Flying animations matching hero section style */
@keyframes navFly1 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-5deg); }
    25% { transform: translateX(-45%) translateY(-4px) rotate(5deg); }
    50% { transform: translateX(-50%) translateY(-8px) rotate(-3deg); }
    75% { transform: translateX(-55%) translateY(-3px) rotate(3deg); }
}

@keyframes navFly2 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(10deg); }
    25% { transform: translateY(-5px) translateX(4px) rotate(-5deg); }
    50% { transform: translateY(-3px) translateX(6px) rotate(15deg); }
    75% { transform: translateY(-6px) translateX(3px) rotate(0deg); }
}

@keyframes navFly3 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(-10deg); }
    25% { transform: translateY(-4px) translateX(-5px) rotate(5deg); }
    50% { transform: translateY(-7px) translateX(-3px) rotate(-15deg); }
    75% { transform: translateY(-5px) translateX(-6px) rotate(0deg); }
}

/* Flutter effect on nav butterflies */
.nav-butterfly img,
.nav-butterfly {
    animation-timing-function: ease-in-out;
}

.nav-butterfly-1 {
    animation: navFly1 3s ease-in-out infinite, navFlutter 0.15s ease-in-out infinite alternate;
}

.nav-butterfly-2 {
    animation: navFly2 3.5s ease-in-out infinite, navFlutter 0.15s ease-in-out infinite alternate 0.05s;
}

.nav-butterfly-3 {
    animation: navFly3 4s ease-in-out infinite, navFlutter 0.15s ease-in-out infinite alternate 0.1s;
}

@keyframes navFlutter {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.05); }
}

.nav-logo-link:hover .nav-butterfly {
    animation-duration: 1.5s, 0.1s;
}

.nav-logo-link:hover .nav-hand {
    transform: translateX(-50%) scale(1.05);
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    border-left: 2px solid var(--color-primary);
    padding-left: var(--spacing-xs);
}

/* Hide logo text on mobile */
@media (max-width: 768px) {
    .nav-logo-link .logo-text {
        display: none;
    }
    
    .nav-logo-container {
        width: 55px;
        height: 42px;
    }
    
    .nav-hand {
        max-height: 20px;
    }
    
    .nav-butterfly-1 {
        max-width: 22px;
        max-height: 18px;
    }
    
    .nav-butterfly-2 {
        max-width: 12px;
        max-height: 10px;
    }
    
    .nav-butterfly-3 {
        max-width: 10px;
        max-height: 9px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    letter-spacing: 0.3px;
    padding: 0.35rem 0.4rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent-vibrant));
    transition: var(--transition);
    border-radius: 999px;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(154, 63, 247, 0.15), 0 10px 30px rgba(39, 216, 167, 0.12);
}

/* Smaller nav button */
.nav-menu .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Active state for nav Apply button */
.nav-menu .btn.active {
    background: linear-gradient(120deg, var(--color-primary) 0%, #88195e 50%, var(--color-accent-vibrant) 100%);
    box-shadow: 0 0 0 3px rgba(136, 25, 94, 0.3), 0 12px 30px rgba(136, 25, 94, 0.35);
    transform: scale(1.02);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(120deg, var(--color-accent-vibrant) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
    color: var(--color-white);
    box-shadow: 0 18px 40px rgba(154, 63, 247, 0.28), 0 10px 35px rgba(255, 122, 61, 0.22);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 22px 50px rgba(154, 63, 247, 0.32), 0 16px 40px rgba(39, 216, 167, 0.25);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.35);
    color: var(--color-dark);
    border: 2px solid rgba(255, 122, 61, 0.4);
    position: relative;
    backdrop-filter: blur(6px);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50px;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--color-white);
    box-shadow: 0 14px 30px rgba(255, 122, 61, 0.25);
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--spacing-xl) + 60px) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(154, 63, 247, 0.18), transparent 30%),
                radial-gradient(circle at 80% 10%, rgba(39, 216, 167, 0.18), transparent 30%),
                linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
}

/* African Pattern Backgrounds */
.hero-pattern-left {
    position: absolute;
    top: 0;
    left: -10%;
    width: 600px;
    height: 600px;
    background: 
        radial-gradient(circle at 30% 30%, var(--color-primary) 2px, transparent 2px),
        radial-gradient(circle at 70% 70%, var(--color-accent) 2px, transparent 2px);
    background-size: 60px 60px;
    opacity: 0.18;
    transform: rotate(-15deg);
    z-index: 0;
    filter: drop-shadow(0 10px 30px rgba(154, 63, 247, 0.2));
}

.hero-pattern-right {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: 
        repeating-conic-gradient(from 0deg, transparent 0deg 60deg, rgba(154, 63, 247, 0.08) 60deg 120deg);
    border-radius: 50%;
    z-index: 0;
    filter: drop-shadow(0 10px 30px rgba(39, 216, 167, 0.18));
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-primary), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--color-accent-vibrant), transparent);
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent-vibrant), var(--color-accent));
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(232, 111, 40, 0.3);
    animation: pulse 2s infinite;
}

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

.badge-icon {
    font-size: 1.2rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    font-weight: 700;
}

.hero-title .highlight {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(135deg, rgba(232, 111, 40, 0.3), rgba(255, 107, 53, 0.3));
    transform: skewY(-2deg);
    z-index: -1;
}

.hero-title .highlight-secondary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .underline-accent {
    position: relative;
    display: inline-block;
}

.hero-title .underline-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    border-radius: 2px;
    animation: underline-grow 3s ease-in-out infinite;
}

@keyframes underline-grow {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.1); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 
        0 15px 45px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(136, 25, 94, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: 0% 0; }
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(136, 25, 94, 0.05);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(136, 25, 94, 0.1), rgba(255, 122, 61, 0.1));
    border-radius: 8px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(136, 25, 94, 0.3), transparent);
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-primary);
    line-height: 1.1;
}

.stat-suffix {
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--color-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Hero Image with African Frame */
.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 0;
    overflow: visible;
}

.frame-pattern {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: 
        linear-gradient(45deg, var(--color-primary) 25%, transparent 25%),
        linear-gradient(-45deg, var(--color-primary) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--color-accent) 75%),
        linear-gradient(-45deg, transparent 75%, var(--color-accent) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    border-radius: 0;
    opacity: 0.15;
    z-index: -1;
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% { background-position: 0 0, 0 15px, 15px -15px, -15px 0px; }
    100% { background-position: 30px 30px, 30px 45px, 45px 15px, 15px 30px; }
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.image-frame:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-dark), var(--color-secondary));
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.3);
    border: 3px solid var(--color-primary);
    z-index: 10;
}

.badge-text {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, var(--color-dark), var(--color-primary), var(--color-accent-vibrant));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-top: var(--spacing-md);
}

/* ===========================
   About Preview Section (Pillars)
   =========================== */
.about-preview {
    background: linear-gradient(180deg, #faf8ff 0%, #fff5f8 50%, #fff9f5 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(136, 25, 94, 0.1), transparent);
}

.about-preview-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.about-preview-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.about-preview-title .title-dark {
    color: var(--color-dark);
    font-style: italic;
}

.about-preview-title .title-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #e91e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-preview-title .title-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #e91e8c);
    border-radius: 2px;
}

.about-preview-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Pillar Card */
.pillar-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Accent bar on right side */
.pillar-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    border-radius: 0 20px 20px 0;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-accent {
    opacity: 0.25;
}

/* Card number */
.pillar-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.12;
    transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-number {
    opacity: 0.2;
}

/* Icon wrapper */
.pillar-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon-wrapper {
    transform: scale(1.1);
}

/* Content */
.pillar-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.pillar-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.pillar-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Cyan Card (Card 1) */
.pillar-cyan .pillar-accent {
    background: linear-gradient(180deg, #06b6d4, #22d3ee, #67e8f9);
}

.pillar-cyan .pillar-number {
    color: #06b6d4;
}

.pillar-cyan .pillar-icon-wrapper {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    color: #fff;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

/* Pink Card (Card 2) */
.pillar-pink .pillar-accent {
    background: linear-gradient(180deg, #e91e8c, #f472b6, #fbcfe8);
}

.pillar-pink .pillar-number {
    color: #e91e8c;
}

.pillar-pink .pillar-icon-wrapper {
    background: linear-gradient(135deg, #e91e8c, #f472b6);
    color: #fff;
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
}

/* Coral Card (Card 3) */
.pillar-coral .pillar-accent {
    background: linear-gradient(180deg, #fb7185, #fda4af, #fecdd3);
}

.pillar-coral .pillar-number {
    color: #fb7185;
}

.pillar-coral .pillar-icon-wrapper {
    background: linear-gradient(135deg, #fb7185, #fda4af);
    color: #fff;
    box-shadow: 0 8px 20px rgba(251, 113, 133, 0.3);
}

/* CTA */
.about-preview-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .pillar-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .about-preview {
        padding: var(--spacing-lg) 0;
    }
    
    .about-preview-header {
        margin-bottom: var(--spacing-md);
    }
    
    .about-preview-title {
        font-size: 1.75rem;
    }
    
    .about-preview-subtitle {
        font-size: 1rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pillar-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .pillar-card:last-child {
        grid-column: span 1;
        max-width: none;
    }
    
    .pillar-number {
        font-size: 3rem;
    }
    
    .pillar-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .pillar-title {
        font-size: 1.2rem;
    }
}

/* ===========================
   Cohorts Section
   =========================== */
.cohorts {
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.cohorts::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent);
    border-radius: 50%;
}

.cohort-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.cohort-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 228, 214, 0.72));
    padding: var(--spacing-md);
    border-radius: 25px;
    border: 1px solid rgba(255, 122, 61, 0.16);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    z-index: 1;
}

.cohort-card:focus,
.cohort-card:active {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.cohort-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(154, 63, 247, 0.35), rgba(39, 216, 167, 0.32));
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.25;
}

.cohort-card:hover {
    transform: translateY(-12px) scale(1.01) rotate(1deg);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.cohort-upcoming {
    border: 2px solid rgba(154, 63, 247, 0.35);
    box-shadow: 0 20px 60px rgba(154, 63, 247, 0.32);
    background: linear-gradient(135deg, rgba(154, 63, 247, 0.14), rgba(255, 122, 61, 0.12), rgba(39, 216, 167, 0.18));
    transform: scale(1.05);
}

.cohort-upcoming:hover {
    transform: scale(1.08) rotate(0deg);
    box-shadow: 0 28px 75px rgba(154, 63, 247, 0.38);
}

.cohort-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--color-accent-vibrant), var(--color-accent));
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 5px 15px rgba(232, 111, 40, 0.3);
}

.cohort-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.cohort-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.3rem;
    font-family: var(--font-primary);
    transform: rotate(-10deg);
    transition: var(--transition-bounce);
}

.cohort-card:hover .cohort-icon {
    transform: rotate(0deg) scale(1.1);
}

.cohort-title {
    font-size: 2.2rem;
    color: var(--color-dark);
}

.cohort-date {
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.cohort-description {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.cohort-features {
    margin: var(--spacing-md) 0;
    background: var(--color-bg);
    padding: var(--spacing-sm);
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.cohort-features li {
    padding: 0.6rem 0;
    color: var(--color-text);
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.cohort-features li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: var(--color-accent-vibrant);
    font-weight: bold;
    font-size: 1.2rem;
}

.cohort-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--color-bg);
}

.cohort-stats div {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding: var(--spacing-xs);
    background: var(--color-bg);
    border-radius: 10px;
}

.cohort-stats strong {
    display: block;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-primary);
    margin-bottom: 0.25rem;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.testimonial-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(157, 243, 219, 0.25));
    padding: var(--spacing-md);
    border-radius: 18px;
    border: 1px solid rgba(39, 216, 167, 0.25);
    transition: var(--transition-bounce);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-vibrant));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(154, 63, 247, 0.3);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(120deg, var(--color-accent-vibrant), var(--color-primary), var(--color-accent));
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.18);
}

/* ===========================
   Pathway / Spider Secrets
   =========================== */
.pathway {
    background: linear-gradient(180deg, #050510 0%, #0a0a1a 30%, #0f0f2a 70%, #0a0a1a 100%);
    color: #e8ecff;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

/* ===========================
   Animated Starfield Background
   =========================== */
.stars-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    animation: starsMove 100s linear infinite;
}

.stars-small {
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 160px, #fff, transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 200px 50px, #fff, transparent),
        radial-gradient(1px 1px at 250px 140px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 300px 90px, #fff, transparent),
        radial-gradient(1px 1px at 350px 180px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 400px 60px, #fff, transparent),
        radial-gradient(1px 1px at 450px 130px, rgba(255,255,255,0.6), transparent);
    background-size: 500px 200px;
    opacity: 0.8;
    animation-duration: 150s;
}

.stars-medium {
    background-image: 
        radial-gradient(1.5px 1.5px at 100px 50px, #ffc069, transparent),
        radial-gradient(1.5px 1.5px at 200px 150px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 300px 100px, #27d8a7, transparent),
        radial-gradient(1.5px 1.5px at 400px 200px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1.5px 1.5px at 150px 250px, #ffc069, transparent),
        radial-gradient(1.5px 1.5px at 350px 50px, rgba(255,255,255,0.9), transparent);
    background-size: 500px 300px;
    opacity: 0.7;
    animation-duration: 120s;
}

.stars-large {
    background-image: 
        radial-gradient(2px 2px at 150px 100px, #fff, transparent),
        radial-gradient(2.5px 2.5px at 350px 200px, #ffc069, transparent),
        radial-gradient(2px 2px at 250px 300px, #27d8a7, transparent),
        radial-gradient(3px 3px at 50px 200px, rgba(255,255,255,0.9), transparent);
    background-size: 500px 400px;
    opacity: 0.9;
    animation-duration: 100s;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-500px); }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    border-radius: 50%;
    top: 10%;
    left: -100px;
    animation: shootingStar 8s ease-in-out infinite;
    opacity: 0;
}

.shooting-star::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    left: 0;
    top: -3px;
    box-shadow: 0 0 10px #fff, 0 0 20px #ffc069;
}

.shooting-star-2 {
    top: 25%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.shooting-star-3 {
    top: 45%;
    animation-delay: 6s;
    animation-duration: 9s;
}

@keyframes shootingStar {
    0% { left: -100px; opacity: 0; transform: rotate(-15deg); }
    10% { opacity: 1; }
    30% { opacity: 1; }
    100% { left: 110%; opacity: 0; transform: rotate(-15deg); }
}

/* Nebula Glow Effect */
.nebula-glow {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(154, 63, 247, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(39, 216, 167, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255, 192, 105, 0.08), transparent 50%);
    animation: nebulaShift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes nebulaShift {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
    100% { opacity: 0.6; transform: scale(1); }
}

.pathway .section-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 1.25rem 1.75rem;
    background: rgba(6, 10, 22, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.pathway .section-title {
    color: #ffffff;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
    letter-spacing: 0.3px;
}

.pathway .section-subtitle {
    color: #f6f8ff;
    font-weight: 650;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.pathway::before {
    content: '';
    position: absolute;
    inset: 10% 5%;
    border: 1px solid rgba(255, 192, 105, 0.1);
    border-radius: 30px;
    pointer-events: none;
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.pathway-copy h3 {
    color: #f7f7ff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pathway-lede {
    color: #e9edff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.pathway-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 192, 105, 0.12);
    color: #ffc069;
    border: 1px solid rgba(255, 192, 105, 0.3);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.pathway-bullets {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
    display: grid;
    gap: 0.8rem;
}

.pathway-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ecf0ff;
    font-weight: 600;
}

.pathway-bullets .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffc069;
    box-shadow: 0 0 12px rgba(255, 192, 105, 0.6);
}

.pathway-bullets .dot.locked {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.pathway-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===========================
   Realistic Spider Web Visual
   =========================== */
.spider-web-realistic {
    position: relative;
    min-height: 400px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(15, 20, 40, 0.95) 0%, rgba(8, 12, 28, 0.98) 100%);
    border: 1px solid rgba(255, 192, 105, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 0, 0, 0.4),
        inset 0 0 120px rgba(154, 63, 247, 0.05);
}

/* Concentric web rings */
.web-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 192, 105, 0.25);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 192, 105, 0.1);
}

.web-ring.ring-1 { width: 90%; height: 90%; border-color: rgba(255, 192, 105, 0.12); }
.web-ring.ring-2 { width: 70%; height: 70%; border-color: rgba(255, 192, 105, 0.18); }
.web-ring.ring-3 { width: 50%; height: 50%; border-color: rgba(255, 192, 105, 0.25); }
.web-ring.ring-4 { width: 28%; height: 28%; border-color: rgba(255, 192, 105, 0.35); box-shadow: 0 0 25px rgba(255, 192, 105, 0.15); }

/* Radial threads from center */
.web-radial {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 192, 105, 0.5), rgba(255, 192, 105, 0.05));
    transform-origin: left center;
    box-shadow: 0 0 8px rgba(255, 192, 105, 0.2);
}

.web-radial.radial-1 { transform: rotate(0deg); }
.web-radial.radial-2 { transform: rotate(45deg); }
.web-radial.radial-3 { transform: rotate(90deg); }
.web-radial.radial-4 { transform: rotate(135deg); }
.web-radial.radial-5 { transform: rotate(180deg); }
.web-radial.radial-6 { transform: rotate(225deg); }
.web-radial.radial-7 { transform: rotate(270deg); }
.web-radial.radial-8 { transform: rotate(315deg); }

/* Center hub */
.web-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(145deg, rgba(20, 28, 55, 0.95), rgba(12, 18, 40, 0.98));
    border: 2px solid rgba(255, 192, 105, 0.5);
    border-radius: 16px;
    box-shadow: 
        0 0 30px rgba(255, 192, 105, 0.3),
        0 0 60px rgba(255, 192, 105, 0.15),
        inset 0 0 20px rgba(255, 192, 105, 0.1);
    z-index: 10;
}

.web-hub.glow {
    animation: hubGlow 3s ease-in-out infinite;
}

@keyframes hubGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 192, 105, 0.3), 0 0 60px rgba(255, 192, 105, 0.15); }
    50% { box-shadow: 0 0 45px rgba(255, 192, 105, 0.45), 0 0 90px rgba(255, 192, 105, 0.25); }
}

.hub-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 192, 105, 0.6));
}

.hub-label {
    color: #ffc069;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 192, 105, 0.5);
}

/* Stage nodes on the web */
.web-stage {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(155deg, rgba(18, 26, 50, 0.95), rgba(10, 16, 35, 0.98));
    border: 2px solid rgba(255, 192, 105, 0.3);
    border-radius: 50%;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(255, 192, 105, 0.05);
    transition: all 0.4s ease;
    z-index: 5;
}

.web-stage .stage-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffc069;
    line-height: 1;
}

.web-stage .stage-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #e8ecff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.web-stage .stage-status {
    font-size: 0.6rem;
    font-weight: 600;
    color: #27d8a7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.5rem;
    background: rgba(39, 216, 167, 0.15);
    border-radius: 999px;
    margin-top: 0.25rem;
}

.web-stage .stage-lock {
    font-size: 0.9rem;
    margin-top: 0.2rem;
    opacity: 0.7;
}

/* Active stage styling */
.web-stage.active {
    border-color: rgba(39, 216, 167, 0.7);
    box-shadow: 
        0 0 25px rgba(39, 216, 167, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(39, 216, 167, 0.1);
    transform: scale(1.08);
}

.web-stage.active .stage-num {
    color: #27d8a7;
    text-shadow: 0 0 15px rgba(39, 216, 167, 0.5);
}

/* Locked stage styling */
.web-stage.locked {
    opacity: 0.55;
    border-color: rgba(255, 255, 255, 0.15);
}

.web-stage.locked .stage-num {
    color: #8090b0;
}

/* Stage positions on web */
.web-stage.stage1 { bottom: 8%; left: 12%; }
.web-stage.stage2 { top: 15%; right: 12%; }
.web-stage.stage3 { bottom: 12%; right: 15%; }
.web-stage.stage4 { top: 10%; left: 18%; }

/* SVG silk threads */
.web-silk {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.silk-thread {
    stroke: rgba(255, 192, 105, 0.4);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 4px rgba(255, 192, 105, 0.3));
}

.silk-thread.active-thread {
    stroke: rgba(39, 216, 167, 0.6);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(39, 216, 167, 0.4));
}

.silk-thread.silk-faint {
    stroke: rgba(255, 192, 105, 0.2);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

/* ===========================
   Animated Spider
   =========================== */
.spider-animated {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 20;
    animation: spiderCrawl 30s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) 
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.7));
    transition: filter 0.3s ease;
}

.spider-animated:hover {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)) 
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.8));
}

.spider-svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
}

/* Make spider body more visible */
.spider-svg ellipse,
.spider-svg circle {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

/* Spider leg animation - faster for realistic crawling */
.spider-leg {
    animation: legMove 0.15s ease-in-out infinite alternate;
    transform-origin: 50% 50%;
}

.leg-1, .leg-5 { animation-delay: 0s; }
.leg-2, .leg-6 { animation-delay: 0.04s; }
.leg-3, .leg-7 { animation-delay: 0.08s; }
.leg-4, .leg-8 { animation-delay: 0.12s; }

@keyframes legMove {
    0% { transform: rotate(-5deg) scaleX(0.95); }
    100% { transform: rotate(5deg) scaleX(1.05); }
}

/* Spider crawling path: Stage 1 → Center → Stage 2 → Center → Stage 3 → Center → Stage 4 → Center → repeat */
/* Head is at top of SVG; rotations point the head toward direction of travel */
@keyframes spiderCrawl {
    /* At Stage 1 (bottom-left), heading to center (up-right) */
    0%, 2% {
        top: 85%;
        left: 15%;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
    /* Moving to center */
    10% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg) scale(1.05);
    }
    /* At center, preparing for Stage 2 (still up-right) */
    12%, 14% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
    /* Moving to Stage 2 (top-right) */
    22% {
        top: 18%;
        left: 85%;
        transform: translate(-50%, -50%) rotate(45deg) scale(1.05);
    }
    /* At Stage 2, turn back toward center (down-left) */
    24%, 26% {
        top: 18%;
        left: 85%;
        transform: translate(-50%, -50%) rotate(225deg) scale(1);
    }
    /* Moving back to center (down-left) */
    34% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(225deg) scale(1.05);
    }
    /* At center, preparing for Stage 3 (down-right) */
    36%, 38% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(135deg) scale(1);
    }
    /* Moving to Stage 3 (bottom-right) */
    46% {
        top: 85%;
        left: 82%;
        transform: translate(-50%, -50%) rotate(135deg) scale(1.05);
    }
    /* At Stage 3, turn back toward center (up-left) */
    48%, 50% {
        top: 85%;
        left: 82%;
        transform: translate(-50%, -50%) rotate(315deg) scale(1);
    }
    /* Moving back to center (up-left) */
    58% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(315deg) scale(1.05);
    }
    /* At center, preparing for Stage 4 (up-left) */
    60%, 62% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
    /* Moving to Stage 4 (top-left) */
    70% {
        top: 15%;
        left: 20%;
        transform: translate(-50%, -50%) rotate(-45deg) scale(1.05);
    }
    /* At Stage 4, turn back toward center (down-right) */
    72%, 74% {
        top: 15%;
        left: 20%;
        transform: translate(-50%, -50%) rotate(135deg) scale(1);
    }
    /* Moving back to center (down-right) */
    82% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(135deg) scale(1.05);
    }
    /* At center, preparing for Stage 1 return (down-left) */
    84%, 86% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(225deg) scale(1);
    }
    /* Moving back to Stage 1 (down-left) */
    96% {
        top: 85%;
        left: 15%;
        transform: translate(-50%, -50%) rotate(225deg) scale(1.05);
    }
    /* At Stage 1, turn to head toward center (up-right) */
    98%, 100% {
        top: 85%;
        left: 15%;
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
}

/* ===========================
   Web Floating Particles
   =========================== */
.web-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.web-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 192, 105, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 192, 105, 0.4);
    animation: particleFloat 8s ease-in-out infinite;
}

.web-particles .particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.web-particles .particle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.web-particles .particle:nth-child(3) {
    top: 40%;
    left: 15%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.web-particles .particle:nth-child(4) {
    top: 75%;
    left: 45%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.web-particles .particle:nth-child(5) {
    top: 30%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 10s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) translateX(-8px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(5px) scale(1.1);
        opacity: 0.9;
    }
}

/* Enhanced web ring animations */
.web-ring {
    animation: webPulse 4s ease-in-out infinite;
}

.web-ring.ring-1 { animation-delay: 0s; }
.web-ring.ring-2 { animation-delay: 0.5s; }
.web-ring.ring-3 { animation-delay: 1s; }
.web-ring.ring-4 { animation-delay: 1.5s; }

@keyframes webPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.02); }
}

/* Enhanced radial thread glow */
.web-radial {
    animation: radialGlow 3s ease-in-out infinite alternate;
}

@keyframes radialGlow {
    0% { opacity: 0.8; box-shadow: 0 0 8px rgba(255, 192, 105, 0.2); }
    100% { opacity: 1; box-shadow: 0 0 15px rgba(255, 192, 105, 0.4); }
}

/* Hover effects */
.web-stage:hover {
    transform: scale(1.1);
    z-index: 15;
}

.web-stage.active:hover {
    transform: scale(1.15);
}

/* Large spider web variant for pathway page */
.spider-web-large {
    min-height: 500px;
}

.spider-web-large .web-ring.ring-5 { 
    width: 95%; 
    height: 95%; 
    border-color: rgba(255, 192, 105, 0.08); 
}

.spider-web-large .web-hub {
    padding: 1.5rem 2rem;
}

.spider-web-large .hub-icon {
    font-size: 2.2rem;
}

.spider-web-large .hub-label {
    font-size: 1rem;
    letter-spacing: 2px;
}

.spider-web-large .web-stage {
    width: 120px;
    height: 120px;
}

.spider-web-large .web-stage .stage-num {
    font-size: 2rem;
}

.spider-web-large .web-stage .stage-name {
    font-size: 0.85rem;
}

.spider-web-large .web-stage .stage-status {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
}

.spider-web-large .web-stage.stage1 { bottom: 10%; left: 5%; }
.spider-web-large .web-stage.stage2 { top: 8%; right: 5%; }
.spider-web-large .web-stage.stage3 { bottom: 8%; right: 8%; }
.spider-web-large .web-stage.stage4 { top: 5%; left: 12%; }

/* Pathway hero specific styles */
.pathway-hero {
    padding-top: 120px;
}

.pathway-hero .section-title {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffc069, #ff9f3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pathway-hero .section-subtitle {
    color: #b8c4e8;
    max-width: 700px;
    margin: 0 auto;
}

.spider-intro {
    background: linear-gradient(135deg, #0b1020 0%, #0f172a 60%, #0b1020 100%);
    color: #e8ecff;
}
.spider-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(11, 16, 32, 0.95));
    border: 1px solid rgba(255, 192, 105, 0.15);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.spider-copy h3 {
    color: #ffc069;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}
.spider-copy p {
    color: #c7cee5;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.spider-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.spider-visual {
    position: relative;
    min-height: 260px;
    background: radial-gradient(circle, rgba(255, 192, 105, 0.1) 0%, transparent 62%);
    border: 1px solid rgba(255, 192, 105, 0.2);
    border-radius: 22px;
    overflow: hidden;
    perspective: 900px;
}

/* ===========================
   Mini Spider Web (Intro Card)
   =========================== */
.spider-web-mini {
    position: relative;
    min-height: 300px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(15, 20, 40, 0.95) 0%, rgba(8, 12, 28, 0.98) 100%);
    border: 1px solid rgba(255, 192, 105, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(0, 0, 0, 0.3);
}

/* Mini concentric rings */
.mini-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 192, 105, 0.2);
    border-radius: 50%;
}

.mini-ring.ring-1 { width: 85%; height: 85%; border-color: rgba(255, 192, 105, 0.1); }
.mini-ring.ring-2 { width: 55%; height: 55%; border-color: rgba(255, 192, 105, 0.18); }
.mini-ring.ring-3 { width: 25%; height: 25%; border-color: rgba(255, 192, 105, 0.3); box-shadow: 0 0 20px rgba(255, 192, 105, 0.1); }

/* Mini radial threads */
.mini-radial {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 192, 105, 0.45), rgba(255, 192, 105, 0.05));
    transform-origin: left center;
    box-shadow: 0 0 6px rgba(255, 192, 105, 0.15);
}

.mini-radial.r1 { transform: rotate(0deg); }
.mini-radial.r2 { transform: rotate(60deg); }
.mini-radial.r3 { transform: rotate(120deg); }
.mini-radial.r4 { transform: rotate(180deg); }
.mini-radial.r5 { transform: rotate(240deg); }
.mini-radial.r6 { transform: rotate(300deg); }

/* Mini center hub */
.mini-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(20, 28, 55, 0.95), rgba(12, 18, 40, 0.98));
    border: 2px solid rgba(255, 192, 105, 0.5);
    border-radius: 50%;
    box-shadow: 
        0 0 25px rgba(255, 192, 105, 0.25),
        0 0 50px rgba(255, 192, 105, 0.1);
    z-index: 10;
    animation: miniHubGlow 3s ease-in-out infinite;
}

@keyframes miniHubGlow {
    0%, 100% { box-shadow: 0 0 25px rgba(255, 192, 105, 0.25), 0 0 50px rgba(255, 192, 105, 0.1); }
    50% { box-shadow: 0 0 35px rgba(255, 192, 105, 0.4), 0 0 70px rgba(255, 192, 105, 0.2); }
}

.mini-hub-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 6px rgba(255, 192, 105, 0.5));
}

/* Mini stage nodes */
.mini-stage {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(155deg, rgba(18, 26, 50, 0.95), rgba(10, 16, 35, 0.98));
    border: 2px solid rgba(255, 192, 105, 0.3);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    z-index: 5;
}

.mini-stage .mini-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffc069;
    line-height: 1;
}

.mini-stage .mini-name {
    font-size: 0.55rem;
    font-weight: 700;
    color: #c7cee5;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 0.15rem;
}

/* Mini stage positions */
.mini-stage.s1 { top: 18%; right: 15%; }
.mini-stage.s2 { bottom: 18%; left: 15%; }
.mini-stage.s3 { bottom: 15%; right: 18%; }
.mini-stage.s4 { top: 15%; left: 18%; }

/* Mini active state */
.mini-stage.active {
    border-color: rgba(39, 216, 167, 0.7);
    box-shadow: 
        0 0 20px rgba(39, 216, 167, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.35);
    transform: scale(1.1);
}

.mini-stage.active .mini-num {
    color: #27d8a7;
    text-shadow: 0 0 10px rgba(39, 216, 167, 0.5);
}

.mini-stage.active .mini-name {
    color: #e8ecff;
}

/* Mini locked state */
.mini-stage.locked {
    opacity: 0.5;
    border-color: rgba(255, 255, 255, 0.12);
}

.mini-stage.locked .mini-num {
    color: #6a7a9a;
}

/* Mini SVG silk threads */
.mini-silk {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.mini-thread {
    stroke: rgba(255, 192, 105, 0.35);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 3px rgba(255, 192, 105, 0.25));
}

.mini-thread.active-line {
    stroke: rgba(39, 216, 167, 0.55);
    stroke-width: 2;
    filter: drop-shadow(0 0 6px rgba(39, 216, 167, 0.35));
}

.mini-thread.faint {
    stroke: rgba(255, 192, 105, 0.15);
    stroke-width: 1;
    stroke-dasharray: 3 3;
}

/* Mini hover effects */
.mini-stage:hover {
    transform: scale(1.15);
    z-index: 15;
}

.mini-stage.active:hover {
    transform: scale(1.2);
}

.web-ring {
    position: absolute;
    inset: 18%;
    border: 1px dashed rgba(255, 192, 105, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(255, 192, 105, 0.25);
}
.web-node {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(155deg, #101a35, #0b1020 55%, #070d1f);
    border: 1px solid rgba(255, 192, 105, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8ecff;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), inset 0 0 14px rgba(255, 192, 105, 0.08);
}
.web-node.active {
    box-shadow: 0 0 26px rgba(39, 216, 167, 0.38), 0 16px 42px rgba(0, 0, 0, 0.38);
    border-color: rgba(39, 216, 167, 0.7);
    transform: translateZ(8px) scale(1.04);
}
.web-node.locked {
    opacity: 0.65;
}
.web-node:nth-of-type(2) { top: 22%; left: 52%; }
.web-node:nth-of-type(3) { top: 65%; left: 60%; }
.web-node:nth-of-type(4) { top: 48%; left: 78%; }
.web-lines {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 192, 105, 0.8), rgba(154, 63, 247, 0.6));
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(255, 192, 105, 0.4);
}
.line-1 { top: 41%; left: 33%; width: 20%; transform: rotate(10deg); }
.line-2 { top: 56%; left: 48%; width: 22%; transform: rotate(-8deg); }
.line-3 { top: 50%; left: 63%; width: 18%; transform: rotate(16deg); }
.stage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stage-card {
    background: linear-gradient(145deg, #0f172a, #0b1020);
    border: 1px solid rgba(255, 192, 105, 0.18);
    border-radius: 18px;
    padding: 1.75rem;
    color: #e8ecff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.stage-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 192, 105, 0.2), transparent 60%);
    transform: rotate(25deg);
}

.stage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #ffc069;
}

.stage-card p {
    color: #c7cee5;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.stage-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.stage-card li {
    padding: 0.35rem 0;
    color: #e8ecff;
    position: relative;
    padding-left: 1.2rem;
}

.stage-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #27d8a7;
}

.stage-card .stage-status {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 0.75rem;
    background: rgba(39, 216, 167, 0.16);
    color: #27d8a7;
    border: 1px solid rgba(39, 216, 167, 0.35);
}

.stage-card.locked .stage-status {
    background: rgba(255, 255, 255, 0.08);
    color: #9aa3c5;
    border-color: rgba(255, 255, 255, 0.1);
}

.stage-card.locked {
    opacity: 0.75;
}

.stage-card button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.cta-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.cta-form {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.cta-form input,
.cta-form select {
    padding: 1rem;
    border: 2px solid var(--color-bg-secondary);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

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

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

/* Footer Brand Section (with logo) */
.footer-brand {
    padding-right: var(--spacing-md);
}

.footer-logo-link {
    display: block;
    width: 100%;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
    text-decoration: none;
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-hand {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 0.75rem;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-name {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 700;
    color: #E91E8C;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.footer-ampersand {
    color: #6B3FA0;
    font-size: 2rem;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    color: #ffffff;
    font-style: italic;
    margin-top: 0.35rem;
}

.footer-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Sections */
.footer-section h3,
.footer-section h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

/* Footer Contact Section */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-primary);
    stroke: var(--color-primary);
}

.footer-contact ul li a,
.footer-contact ul li span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: var(--transition);
}

.footer-contact ul li a:hover {
    color: var(--color-primary);
    padding-left: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom .powered-by {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .powered-by a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom .powered-by a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Footer Responsive - Tablet */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo-wrapper {
        align-items: center;
        width: 100%;
    }
    
    .footer-logo-text {
        align-items: center;
    }
    
    .footer-hand {
        width: 100%;
        max-width: 220px;
    }
    
    .footer-brand-name {
        text-align: center;
        font-size: 2rem;
    }
    
    .footer-ampersand {
        font-size: 1.75rem;
    }
    
    .footer-logo {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
}

/* Footer Responsive - Mobile */
@media (max-width: 576px) {
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-hand {
        width: 100%;
        max-width: 180px;
    }
    
    .footer-brand-name {
        font-size: 1.75rem;
    }
    
    .footer-ampersand {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-logo {
        max-width: 180px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* ===========================
   Enrollment & Contact Pages
   =========================== */
.enrollment-steps {
    padding: 4rem 0;
    background: var(--color-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: var(--font-primary);
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.why-choose {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg-secondary) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: var(--font-primary);
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.who-should-join {
    padding: 5rem 0;
    background: var(--color-bg);
}

.target-audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.audience-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    transition: var(--transition);
}

.audience-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
}

.audience-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.audience-card p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.enrollment-form-section {
    padding: 5rem 0;
    background: var(--color-bg-secondary);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.form-wrapper h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* Radio/Checkbox Group Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: var(--color-bg);
    border: 2px solid var(--color-bg-secondary);
    border-radius: 10px;
    transition: var(--transition);
}

.radio-option:hover {
    border-color: var(--color-primary-light);
    background: var(--color-primary-light);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.radio-option .radio-label {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
}

.radio-option:has(input:checked) {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.required {
    color: var(--color-primary);
    font-weight: 700;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 1.5rem;
}

/* Google Form CTA Styles */
.google-form-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-bg-secondary));
    border-radius: 20px;
    margin-bottom: 2rem;
}

.google-form-cta .form-cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.google-form-cta h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.google-form-cta p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.google-form-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.google-form-cta .form-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-alternative {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-alternative h4 {
    font-family: var(--font-primary);
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.form-alternative p {
    color: var(--color-text-light);
    margin: 0;
}

.form-alternative a {
    color: var(--color-primary);
    transition: var(--transition);
}

.form-alternative a:hover {
    color: var(--color-primary-dark);
}

/* CTA Actions */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.enrollment-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.enrollment-form .form-group {
    margin-bottom: 1.5rem;
}

.enrollment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-bg-secondary);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.enrollment-form small {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.btn-block {
    width: 100%;
    margin-top: 2rem;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
    background: var(--color-bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: var(--font-primary);
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--color-bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.contact-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.quick-links {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 15px;
}

.quick-links h4 {
    font-family: var(--font-primary);
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.quick-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-bg-secondary);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.map-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

.map-wrapper {
    text-align: center;
}

.map-wrapper h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.map-wrapper p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Testimonials Page Styles */
.testimonials-filter {
    padding: 2rem 0;
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-bg-secondary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--color-white);
    border: 2px solid var(--color-bg-secondary);
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.testimonials-page {
    padding: 5rem 0;
    background: var(--color-bg-secondary);
}

.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-full-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-full-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 165, 116, 0.2);
}

.testimonial-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.testimonial-meta h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.testimonial-season {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.testimonial-footer {
    padding-top: 1rem;
    border-top: 2px solid var(--color-bg-secondary);
}

.testimonial-date {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.testimonial-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-dark));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-primary-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .hero-content,
    .features,
    .testimonials-grid,
    .pathway-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Cohort cards - 2 columns on tablet */
    .cohort-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .cohort-timeline .cohort-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cohort-upcoming {
        transform: scale(1);
    }
    
    .cohort-upcoming:hover {
        transform: scale(1.02);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 10px 20px rgba(44, 24, 16, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
        justify-content: center;
    }
    
    .stat {
        flex: 1;
        min-width: 120px;
        padding: 0.25rem;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
    }
    
    .stat-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-suffix {
        font-size: 0.95rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
        padding: var(--spacing-sm);
    }
    
    .stat {
        width: 100%;
        justify-content: flex-start;
        padding: 0.35rem 0.5rem;
        background: rgba(136, 25, 94, 0.03);
        border-radius: 8px;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    /* Cohort cards - single column on mobile */
    .cohort-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cohort-timeline .cohort-card:last-child {
        grid-column: span 1;
        max-width: none;
    }
    
    .cohort-card {
        padding: 1.25rem;
    }
    
    .cohort-title {
        font-size: 1.6rem;
    }
    
    .cohort-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .cohort-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    /* Spider web responsive */
    .spider-web-realistic {
        min-height: 320px;
    }
    
    .spider-web-large {
        min-height: 380px;
    }
    
    .web-stage {
        width: 70px;
        height: 70px;
    }
    
    .web-stage .stage-num {
        font-size: 1.2rem;
    }
    
    .web-stage .stage-name {
        font-size: 0.55rem;
    }
    
    .web-stage .stage-status {
        display: none;
    }
    
    .spider-web-large .web-stage {
        width: 85px;
        height: 85px;
    }
    
    .spider-web-large .web-stage .stage-num {
        font-size: 1.4rem;
    }
    
    .spider-web-large .web-stage .stage-name {
        font-size: 0.65rem;
    }
    
    .web-hub {
        padding: 0.6rem 0.8rem;
    }
    
    .hub-icon {
        font-size: 1.2rem;
    }
    
    .hub-label {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    
    .spider-web-large .web-hub {
        padding: 0.8rem 1rem;
    }
    
    .spider-web-large .hub-icon {
        font-size: 1.5rem;
    }
    
    .spider-web-large .hub-label {
        font-size: 0.65rem;
    }
    
    .pathway-hero .section-title {
        font-size: 2rem;
    }
}

/* ===========================
   Page Header Styles
   =========================== */
.page-header {
    padding: calc(var(--spacing-xl) + 60px) 0 var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-dark), var(--color-secondary));
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent);
    border-radius: 50%;
}

.page-title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.page-breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.page-breadcrumb a {
    color: var(--color-primary);
}

/* ===========================
   Mission Vision Section
   =========================== */
.mission-vision {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.mv-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: var(--transition-bounce);
}

.mv-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.3);
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.mv-card ul {
    list-style: none;
}

.mv-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mv-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* ===========================
   About Story Section
   =========================== */
.about-story {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.story-text p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    color: var(--color-text);
}

.story-highlight {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-bg), var(--color-bg-secondary));
    border-left: 4px solid var(--color-primary);
    border-radius: 10px;
}

.story-highlight h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.2);
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-dark), var(--color-secondary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-box {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-primary);
    display: block;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   Impact Section
   =========================== */
.impact-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.impact-card {
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.impact-card h4 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

/* ===========================
   Program Detail Styles
   =========================== */
.program-detail {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.program-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.program-header h2 {
    font-size: 3rem;
    color: var(--color-dark);
}

.program-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-sm);
}

.program-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
    line-height: 1.8;
}

.program-content p {
    margin-bottom: var(--spacing-sm);
}

/* CREATE Curriculum - Timeline Design */
.create-curriculum {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
}

.curriculum-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.curriculum-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.create-curriculum h3 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.curriculum-intro {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--color-primary) 0%, 
        var(--color-accent) 50%, 
        var(--color-primary) 100%);
    border-radius: 4px;
    transform: translateX(-50%);
}

.timeline-line::before,
.timeline-line::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 4px solid var(--color-white);
    box-shadow: 0 0 20px rgba(136, 25, 94, 0.3);
}

.timeline-line::before {
    top: -8px;
}

.timeline-line::after {
    bottom: -8px;
    background: var(--color-accent);
}

/* Timeline Item */
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 50px);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 50px);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 
        0 8px 25px rgba(136, 25, 94, 0.35),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    border: 4px solid var(--color-white);
    transition: all 0.4s ease;
}

.timeline-marker:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(136, 25, 94, 0.45),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.marker-letter {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.marker-final {
    background: linear-gradient(135deg, #ffd700, var(--color-accent));
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Timeline Content */
.timeline-content {
    flex: 1;
    background: var(--color-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(136, 25, 94, 0.05);
    border: 1px solid rgba(136, 25, 94, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border: 1px solid rgba(136, 25, 94, 0.08);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-right: none;
    border-top: none;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 5px 20px rgba(136, 25, 94, 0.1);
}

.timeline-day {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(136, 25, 94, 0.1), rgba(255, 122, 61, 0.1));
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.day-icon {
    font-size: 1rem;
}

.timeline-content h4 {
    font-size: 1.6rem;
    font-family: var(--font-primary);
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.timeline-tag {
    display: inline-block;
    background: var(--color-bg-secondary);
    color: var(--color-text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-final {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--color-secondary);
}

/* Curriculum CTA */
.curriculum-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(136, 25, 94, 0.05), rgba(255, 122, 61, 0.05));
    border-radius: 20px;
    border: 2px dashed rgba(136, 25, 94, 0.2);
}

.curriculum-cta p {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
    }
    
    .marker-letter {
        font-size: 1.6rem;
    }
    
    .timeline-content::before {
        left: -10px !important;
        right: auto !important;
        border-right: none !important;
        border-top: none !important;
        border-left: 1px solid rgba(136, 25, 94, 0.08) !important;
        border-bottom: 1px solid rgba(136, 25, 94, 0.08) !important;
    }
    
    .timeline-content {
        padding: var(--spacing-md);
    }
    
    .timeline-content h4 {
        font-size: 1.4rem;
    }
    
    .create-curriculum h3 {
        font-size: 2rem;
    }
    
    .curriculum-intro {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
    
    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
    }
    
    .marker-letter {
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: var(--spacing-sm);
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .timeline-day {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }
    
    .create-curriculum h3 {
        font-size: 1.6rem;
    }
    
    .curriculum-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* All Programs Grid */
.all-programs {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-secondary);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.program-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.program-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.program-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
}

.program-duration {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.program-features {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.program-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Rigorous Path Section */
.rigorous-path {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-dark), var(--color-secondary));
    color: var(--color-white);
}

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

.path-content h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.path-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.nav-link.active {
    color: var(--color-primary);
    background: rgba(233, 29, 116, 0.12);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

.dev-marker-toggle {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: var(--color-dark);
    color: var(--color-white);
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.dev-marker-toggle:hover {
    opacity: 1;
    transform: translateY(-1px);
}

body.dev-markers [data-dev-label] {
    outline: 2px dashed rgba(233, 29, 116, 0.55);
    position: relative;
}

body.dev-markers [data-dev-label]::after {
    content: attr(data-dev-label);
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .mission-vision-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .pathway-grid {
        grid-template-columns: 1fr;
    }
    .pathway-actions {
        flex-direction: column;
    }
    .pathway-visual {
        min-height: 420px;
    }
    .stage-cards {
        grid-template-columns: 1fr;
    }
    
    /* Enrollment & Contact Pages Responsive */
    .enrollment-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .testimonials-full-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .benefits-grid,
    .target-audience {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .cohort-stats {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
}

/* ===========================
   Logo Card Hero Styles
   =========================== */
.logo-card-hero {
    background: #ffffff;
    border-radius: 0;
    padding: 20px 10px;
    text-align: center;
    position: relative;
    min-height: 420px;
    min-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    overflow: hidden;
}

.logo-card-hero .logo-container {
    position: relative;
    width: 340px;
    background: #ffffff;
    height: 200px;
    margin: 0 auto 5px;
    overflow: visible;
}

/* Hand SVG in Hero */
.logo-card-hero .hand {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: auto;
    max-width: 100%;
    border-radius: 0 !important;
    overflow: visible !important;
}

.logo-card-hero .hand img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Sparkles in Hero */
.logo-card-hero .sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.logo-card-hero .sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    /* border-radius: 50%; */
    animation: twinkle-hero 2s ease-in-out infinite;
}

.logo-card-hero .sparkle:nth-child(1) { top: 25%; left: 30%; animation-delay: 0s; }
.logo-card-hero .sparkle:nth-child(2) { top: 30%; left: 65%; animation-delay: 0.3s; }
.logo-card-hero .sparkle:nth-child(3) { top: 35%; left: 45%; animation-delay: 0.6s; }
.logo-card-hero .sparkle:nth-child(4) { top: 32%; left: 55%; animation-delay: 0.9s; }
.logo-card-hero .sparkle:nth-child(5) { top: 28%; left: 40%; animation-delay: 1.2s; }
.logo-card-hero .sparkle:nth-child(6) { top: 33%; left: 58%; animation-delay: 0.4s; }
.logo-card-hero .sparkle:nth-child(7) { top: 30%; left: 50%; animation-delay: 0.8s; }

@keyframes twinkle-hero {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Butterflies in Hero */
.logo-card-hero .butterfly {
    position: absolute;
    cursor: pointer;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Butterfly image sizing */
.logo-card-hero .butterfly-img {
    width: 100%;
    height: auto;
    display: block;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

.logo-card-hero .butterfly-1 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    animation: fly1-hero 4s ease-in-out infinite;
}

.logo-card-hero .butterfly-2 {
    top: 22%;
    left: 5%;
    width: 85px;
    animation: fly2-hero 5s ease-in-out infinite;
    animation-delay: -1s;
}

.logo-card-hero .butterfly-3 {
    top: 28%;
    right: 5%;
    width: 65px;
    animation: fly3-hero 4.5s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes fly1-hero {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-5deg); }
    25% { transform: translateX(-40%) translateY(-8px) rotate(5deg); }
    50% { transform: translateX(-50%) translateY(-15px) rotate(-3deg); }
    75% { transform: translateX(-60%) translateY(-5px) rotate(3deg); }
}

@keyframes fly2-hero {
    0%, 100% { transform: translateY(0) translateX(0) rotate(10deg); }
    25% { transform: translateY(-10px) translateX(8px) rotate(-5deg); }
    50% { transform: translateY(-5px) translateX(12px) rotate(15deg); }
    75% { transform: translateY(-12px) translateX(5px) rotate(0deg); }
}

@keyframes fly3-hero {
    0%, 100% { transform: translateY(0) translateX(0) rotate(-10deg); }
    25% { transform: translateY(-8px) translateX(-10px) rotate(5deg); }
    50% { transform: translateY(-15px) translateX(-5px) rotate(-15deg); }
    75% { transform: translateY(-10px) translateX(-12px) rotate(0deg); }
}

/* Butterfly wing animation - flutter effect on the img */
.logo-card-hero .butterfly .butterfly-img {
    animation: flutter-hero 0.15s ease-in-out infinite alternate;
}

.logo-card-hero .butterfly-1 .butterfly-img { animation-delay: 0s; }
.logo-card-hero .butterfly-2 .butterfly-img { animation-delay: 0.05s; }
.logo-card-hero .butterfly-3 .butterfly-img { animation-delay: 0.1s; }

@keyframes flutter-hero {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0.88); }
}

/* Glow effect in Hero */
.logo-card-hero .glow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 70px;
    background: radial-gradient(ellipse, rgba(255, 255, 200, 0.6) 0%, transparent 70%);
    animation: glow-pulse-hero 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse-hero {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* Text Styles in Hero */
.logo-text-hero {
    margin-top: 0;
}

.main-title-hero {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
    font-family: 'Georgia', serif;
}

.mentorship-hero {
    color: #e91e8c;
}

.ampersand-hero {
    color: #6a1b9a;
    font-size: 1.8rem;
}

.beyond-hero {
    color: #e91e8c;
}

.tagline-hero {
    font-size: 1rem;
    color: #e91e8c;
    font-style: italic;
    margin-top: 5px;
    font-family: 'Brush Script MT', cursive, serif;
}

/* Responsive adjustments for logo card in hero */
@media (max-width: 768px) {
    .logo-card-hero {
        padding: 15px 15px;
        min-height: 320px;
        min-width: auto;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .logo-card-hero .logo-container {
        width: 200px;
        height: 140px;
    }
    
    .logo-card-hero .hand {
        width: 150px;
    }
    
    .main-title-hero {
        font-size: 1.4rem;
    }
    
    .ampersand-hero {
        font-size: 1.3rem;
    }
    
    .tagline-hero {
        font-size: 0.9rem;
    }
    
    .logo-card-hero .butterfly-1 {
        top: 0%;
        width: 115px;
    }
    
    .logo-card-hero .butterfly-2 {
        top: 15%;
        left: 5%;
        width: 65px;
    }
    
    .logo-card-hero .butterfly-3 {
        top: 18%;
        right: 5%;
        width: 50px;
    }
    
    .logo-card-hero .glow {
        bottom: 20px;
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-card-hero {
        padding: 10px 10px;
        min-height: 280px;
        max-width: 280px;
        border-radius: 20px;
    }
    
    .logo-card-hero .logo-container {
        width: 160px;
        height: 110px;
    }
    
    .logo-card-hero .hand {
        width: 120px;
    }
    
    .main-title-hero {
        font-size: 1.2rem;
    }
    
    .ampersand-hero {
        font-size: 1.1rem;
    }
    
    .tagline-hero {
        font-size: 0.8rem;
    }
    
    .logo-card-hero .butterfly-1 {
        width: 90px;
    }
    
    .logo-card-hero .butterfly-2 {
        width: 52px;
    }
    
    .logo-card-hero .butterfly-3 {
        width: 40px;
    }
}

/* Logo Card - About Page Variant */
.logo-card-about {
    margin: 0 auto;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image .logo-card-hero {
    min-height: 550px;
    min-width: 550px;
}

.story-image .logo-card-hero .logo-container {
    width: 440px;
    height: 280px;
}

.story-image .logo-card-hero .hand {
    width: 380px;
}

.story-image .logo-card-hero .butterfly-1 {
    width: 175px;
}

.story-image .logo-card-hero .butterfly-2 {
    width: 110px;
}

.story-image .logo-card-hero .butterfly-3 {
    width: 78px;
}

.story-image .main-title-hero {
    font-size: 2.4rem;
}

.story-image .tagline-hero {
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .story-image .logo-card-hero {
        min-height: 420px;
        min-width: 420px;
    }
    
    .story-image .logo-card-hero .logo-container {
        width: 340px;
        height: 200px;
    }
    
    .story-image .logo-card-hero .hand {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .story-image .logo-card-hero {
        min-height: 350px;
        min-width: auto;
        max-width: 350px;
    }
    
    .story-image .logo-card-hero .logo-container {
        width: 280px;
        height: 160px;
    }
    
    .story-image .logo-card-hero .hand {
        width: 220px;
    }
    
    .story-image .main-title-hero {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .story-image .logo-card-hero {
        min-height: 300px;
        max-width: 300px;
    }
    
    .story-image .logo-card-hero .logo-container {
        width: 220px;
        height: 130px;
    }
    
    .story-image .logo-card-hero .hand {
        width: 180px;
    }
    
    .story-image .main-title-hero {
        font-size: 1.4rem;
    }
    
    .story-image .tagline-hero {
        font-size: 0.9rem;
    }
}
