/* ================================
           DESIGN SYSTEM FOUNDATION
        ================================ */

:root {
    /* Color Palette */
    --primary-dark: #0a0a0f;
    --secondary-dark: #1a1a2e;
    --accent-dark: #16213e;

    /* Vibrant Accents */
    --electric-blue: #00d4ff;
    --energetic-orange: #ff6b35;
    --confident-purple: #8b5cf6;
    --success-green: #10b981;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    --hero-gradient: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.98) 100%);
    --accent-gradient: linear-gradient(135deg, var(--electric-blue) 0%, var(--confident-purple) 100%);
    --warm-gradient: linear-gradient(135deg, var(--energetic-orange) 0%, var(--confident-purple) 100%);

    /* Typography */
    --font-primary: "Poppins", 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Caveat', cursive;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

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

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    --transition-bounce: 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-primary);
    background: var(--primary-gradient);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ================================
           TYPOGRAPHY SYSTEM
        ================================ */

.heading-hero {
    font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heading-section {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.heading-subsection {
    font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
    font-weight: 700;
    line-height: 1.2;
}

.text-lead {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 1);
}

.text-accent {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--electric-blue);
}

/* ================================
           COMPONENT SYSTEM
        ================================ */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border: none;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    font-size: var(--text-lg);
    padding: var(--space-5) var(--space-10);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 212, 255, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Info Pills */
.info-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: all var(--transition-base);
}

.info-pill:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--electric-blue);
}

/* Section Container */
.section {
    min-height: 100vh;
    padding: var(--space-20) var(--space-4);
    position: relative;
    overflow: hidden;
}

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="%2300d4ff" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300d4ff" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>') center/cover;
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    margin-bottom: var(--space-6);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
    font-weight: 600;
    color: var(--electric-blue);
    margin-bottom: var(--space-4);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto var(--space-8);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-cta {
    margin-bottom: var(--space-12);
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 1.3s both;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 800;
    font-size: var(--text-xl);
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
}

.nav-links {
    display: flex;
    gap: var(--space-6);
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: width var(--transition-base);
}

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

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: -1s;
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.floating-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -5s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    .info-pill {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }

    .section {
        padding: var(--space-16) var(--space-4);
    }
}

/* ================================
           SECTION-SPECIFIC STYLES
        ================================ */

/* Section Numbers */
.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    font-size: var(--text-xl);
    font-weight: 900;
    color: white;
    margin-bottom: var(--space-4);
}

.section-intro {
    margin-bottom: var(--space-16);
}

.text-accent-large {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    font-weight: 700;
}

/* ================================
           AWAKENING SECTION
        ================================ */

.awakening {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
    position: relative;
}

.awakening::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.awakening-content {
    position: relative;
    z-index: 2;
}

.transformation-container {
    margin-bottom: var(--space-16);
}

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

.transformation-side {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-slow);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.transformation-side:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.before-side {
    border-left: 4px solid var(--energetic-orange);
}

.after-side {
    border-left: 4px solid var(--success-green);
}

.transformation-image {
    text-align: center;
    margin-bottom: var(--space-6);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    position: relative;
    overflow: hidden;
}

.before-avatar {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
}

.after-avatar {
    background: linear-gradient(135deg, var(--success-green), var(--electric-blue));
}

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

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-full);
}

.transformation-label {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.transformation-text h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-align: center;
}

.struggle-list, .achievement-list {
    list-style: none;
    space-y: var(--space-2);
}

.struggle-list li, .achievement-list li {
    padding: var(--space-2) 0;
    position: relative;
    padding-left: var(--space-6);
}

.struggle-list li::before {
    content: '😰';
    position: absolute;
    left: 0;
}

.achievement-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.transformation-magic {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

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

.message-quote {
    font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-6);
}

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

.message-emphasis {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.message-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
}

/* ================================
           HERITAGE SECTION
        ================================ */

.heritage {
    background: var(--primary-dark);
    position: relative;
}

.heritage-bg {
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.legacy-showcase {
    text-align: center;
}

.legacy-logo {
    margin-bottom: var(--space-12);
}

.toastmasters-emblem {
    width: 150px;
    height: 150px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.emblem-text {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: white;
}

.legacy-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 800;
    margin-bottom: var(--space-2);
}

.legacy-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
}

.heritage-timeline {
    position: relative;
    margin: var(--space-12) 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-line {
    position: absolute;
    top: 10%;
    left: 80px;
    right: 70px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    transform: translateY(-50%);
}

.timeline-points {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.point-marker {
    width: 20px;
    height: 20px;
    background: var(--electric-blue);
    border-radius: var(--radius-full);
    border: 4px solid var(--primary-dark);
    box-shadow: 0 0 0 2px var(--electric-blue);
}

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

.point-year {
    display: block;
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--electric-blue);
}

.point-label {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.95);
    margin-top: var(--space-1);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.impact-number {
    font-size: var(--text-3xl);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.impact-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================
           RITUAL SECTION
        ================================ */

.ritual {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--secondary-dark) 100%);
    border-top: 4px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

.ritual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

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

.meeting-visual {
    position: relative;
}

.meeting-image {
    width: 100%;
    border-radius: var(--radius-xl);
}

.meeting-room {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.meeting-atmosphere {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.atmosphere-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--electric-blue);
    border-radius: var(--radius-full);
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.atmosphere-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: -1s;
}

.atmosphere-particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: -2s;
}

.atmosphere-particle:nth-child(3) {
    bottom: 30%;
    left: 60%;
    animation-delay: -3s;
}

.podium-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-6);
}

.podium {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, var(--confident-purple), var(--electric-blue));
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2);
}

.speaker-figure {
    width: 30px;
    height: 50px;
    background: var(--energetic-orange);
    border-radius: var(--radius-sm) var(--radius-sm) var(--radius-full) var(--radius-full);
}

.audience-area {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
}

.audience-member {
    width: 20px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm) var(--radius-sm) var(--radius-full) var(--radius-full);
}

.meeting-agenda {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
}

.agenda-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-align: center;
}

.agenda-items {
    space-y: var(--space-4);
    margin-bottom: var(--space-8);
}

.agenda-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.agenda-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.agenda-icon {
    font-size: var(--text-xl);
    min-width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.agenda-details h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.agenda-details p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

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

/* ================================
           CHAMPIONS SECTION
        ================================ */

.champions {
    background: var(--primary-dark);
    border-top: 4px solid rgba(139, 92, 246, 0.3);
    position: relative;
}

.champions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.champions-bg {
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.champions-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.champion-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.champion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left var(--transition-slow);
}

.champion-card:hover::before {
    left: 100%;
}

.champion-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.featured-champion {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
}

@media (min-width: 992px) {
    .featured-champion .champion-story {
        max-width: 80%;
        margin: 0 auto;
    }

    .featured-champion .champion-metrics {
        justify-content: center;
    }

    .featured-champion .champion-tedx-button {
        justify-content: center;
    }
}

.champion-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-6);
    position: relative;
}

.champion-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    position: relative;
}

.tedx-speaker {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.toastmaster-champion {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.student-president {
    background: linear-gradient(135deg, #10b981, #059669);
}

.achievement-badge {
    font-size: var(--text-2xl);
}

.champion-achievement {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-2);
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius-full);
    display: inline-block;
}

.champion-story {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    padding: 0 var(--space-2);
}

.champion-name {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
    line-height: 1.2;
}

.champion-age {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-4);
    display: inline-block;
}

.transformation-title {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    color: var(--electric-blue);
    margin-bottom: var(--space-4);
    line-height: 1.3;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding-bottom: var(--space-2);
}

.champion-description {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 1);
    margin-bottom: var(--space-5);
    padding-left: var(--space-1);
    border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.champion-metrics {
    display: flex;
    gap: var(--space-3);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
}

.metric {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--electric-blue);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
}

.champion-tedx-button {
    margin-top: auto;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.champion-youtube-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: rgba(255, 0, 0, 0.08);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid rgba(255, 0, 0, 0.15);
    box-shadow: var(--shadow-sm);
    margin: 0;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    max-width: fit-content;
}

.champion-youtube-button i {
    font-size: 1rem;
    color: rgba(255, 0, 0, 0.8);
    transition: all var(--transition-fast);
}

.champion-youtube-button:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 10px rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: white;
}

.champion-youtube-button:hover i {
    color: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.champion-youtube-button span {
    display: inline-block;
    line-height: 1;
}

/* Responsive adjustments for champion cards and buttons */
@media (max-width: 768px) {
    .champion-card {
        padding: var(--space-6);
    }

    .champion-metrics {
        padding: var(--space-2) var(--space-3);
        gap: var(--space-2);
    }

    .champion-description {
        padding-left: var(--space-2);
    }
}

@media (max-width: 480px) {
    .champion-youtube-button {
        padding: var(--space-1) var(--space-3);
        font-size: calc(var(--text-xs) - 1px);
        letter-spacing: 0.3px;
    }

    .champion-youtube-button i {
        font-size: 0.9rem;
    }

    .champion-story {
        padding: 0;
    }

    .champion-metrics {
        justify-content: flex-start;
        padding: var(--space-2);
    }

    .metric {
        padding: var(--space-1) var(--space-2);
    }
}

.impact-showcase {
    text-align: center;
}

.impact-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

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

.impact-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
}

.impact-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================
           LEADERSHIP SECTION
        ================================ */

.leadership {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

.leadership-bg {
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.executive-showcase {
    margin-bottom: var(--space-16);
}

.leadership-intro {
    text-align: center;
    margin-bottom: var(--space-12);
}

.leadership-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.leadership-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

.executive-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.executive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.executive-card:hover::before {
    left: 100%;
}

.executive-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.featured-exec {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.exec-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.exec-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 700;
}

.president-avatar {
    background: linear-gradient(135deg, var(--electric-blue), var(--confident-purple));
}

.vpe-avatar {
    background: linear-gradient(135deg, #10b981, #059669);
}

.vpm-avatar {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.vppr-avatar {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.secretary-avatar {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.treasurer-avatar {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.saa-avatar {
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

.exec-icon {
    color: white;
}

.exec-badge {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.exec-name {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.exec-age {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-3);
}

.exec-description {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-4);
}

.exec-achievements {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.achievement-tag {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--electric-blue);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
}

.leadership-pathway {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
}

.pathway-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

.pathway-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.pathway-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.step-content h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.step-content p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
}

.pathway-arrow {
    font-size: var(--text-xl);
    color: var(--electric-blue);
    font-weight: 700;
}

/* ================================
           MENTOR SECTION
        ================================ */

.mentor {
    background: var(--accent-dark);
}

.mentor-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-16);
    margin-bottom: var(--space-20);
    align-items: center;
}

.mentor-profile {
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    backdrop-filter: blur(15px);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), 0 10px 25px rgba(0, 212, 255, 0.1);
}

.mentor-image {
    margin-bottom: var(--space-6);
}

.mentor-avatar {
    width: 220px;
    height: 220px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.mentor-icon {
    font-size: var(--text-4xl);
    color: white;
}

.mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-full);
}

.mentor-credentials {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
}

.credential-badge {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 700;
}

.mentor-name {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.mentor-title {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
    line-height: 1.5;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.mentor-experience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.experience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    justify-content: center;
    font-size: var(--text-sm);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    transition: background 0.3s ease;
}

.experience-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.experience-icon {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-1);
    color: var(--electric-blue);
}

.mentor-philosophy {
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-philosophy:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), 0 10px 25px rgba(0, 212, 255, 0.1);
}

.philosophy-quote {
    margin-bottom: var(--space-8);
}

.quote-text {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding: 0 var(--space-6);
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    opacity: 0.2;
    color: var(--electric-blue);
}

.quote-text::before {
    top: -2rem;
    left: 0;
}

.quote-text::after {
    bottom: -4rem;
    right: 0;
}

.quote-attribution {
    font-size: var(--text-base);
    color: var(--electric-blue);
    font-weight: 600;
    margin-top: var(--space-4);
}

.approach-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

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

.approach-item {
    text-align: center;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.approach-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), 0 5px 15px rgba(0, 212, 255, 0.05);
}

.approach-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--electric-blue);
}

.approach-item h5 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: rgba(255, 255, 255, 0.95);
}

.approach-item p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.parent-confidence {
    background: rgba(255, 255, 255, 0.09);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: var(--shadow-xl), 0 10px 30px rgba(0, 212, 255, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: var(--space-16);
    position: relative;
    overflow: hidden;
}

.parent-confidence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), var(--confident-purple), var(--energetic-orange));
    z-index: 1;
}

.parent-confidence:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 15px 35px rgba(0, 212, 255, 0.25);
}

.confidence-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: var(--space-8);
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-4);
    background: linear-gradient(90deg, var(--electric-blue), var(--confident-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confidence-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), var(--confident-purple));
    border-radius: var(--radius-full);
}

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

.confidence-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-4);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.confidence-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 10px 20px rgba(0, 212, 255, 0.1);
}

.confidence-stat {
    font-size: var(--text-3xl);
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric-blue), var(--confident-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-3);
    line-height: 1;
    display: block;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.confidence-label {
    font-size: var(--text-sm);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* ================================
           SKILLS SECTION
        ================================ */

.skills {
    background: var(--primary-dark);
}

.skills-bg {
    background: radial-gradient(circle at 60% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
    text-align: center;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.primary-skill {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.skill-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--text-2xl);
}

.speaking-icon {
    background: linear-gradient(135deg, var(--energetic-orange), #f97316);
}

.communication-icon {
    background: linear-gradient(135deg, var(--electric-blue), #0ea5e9);
}

.leadership-icon {
    background: linear-gradient(135deg, var(--confident-purple), #a855f7);
}

.thinking-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.emotional-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.skill-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.skill-transformation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.before-skill {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: rgba(255, 107, 53, 1);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.after-skill {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: rgba(16, 185, 129, 1);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.transform-arrow {
    color: var(--electric-blue);
    font-weight: 700;
    font-size: var(--text-lg);
}

.skill-description {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-4);
}

.skill-benefits {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-tag {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--electric-blue);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
}

.applications-showcase {
    text-align: center;
}

.applications-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

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

.application-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

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

.application-card h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.application-card p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
           COMMUNITY SECTION
        ================================ */

.community {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-dark) 100%);
}

.location-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
    align-items: center;
}

.location-visual {
    position: relative;
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    position: absolute;
    z-index: 20;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-pin {
    font-size: var(--text-3xl);
    animation: bounce 2s ease-in-out infinite;
}

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

.location-radius {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--electric-blue);
    border-radius: var(--radius-full);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.location-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--electric-blue);
}

.location-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
}

.location-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-align: center;
}

.meeting-info {
    space-y: var(--space-4);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.info-icon {
    font-size: var(--text-xl);
    min-width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.info-content p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.community-partners {
    margin-bottom: var(--space-16);
}

.partners-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

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

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

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

.partner-card h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.partner-card p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.local-pride {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
}

.pride-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

.pride-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-8);
    align-items: center;
}

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

.pride-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
}

.pride-message {
    text-align: center;
}

.pride-text {
    font-size: var(--text-base);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
}

/* ================================
           PARENTS SECTION
        ================================ */

.parents {
    background: var(--accent-dark);
}

.parents-bg {
    background: radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.concerns-showcase {
    margin-bottom: var(--space-12);
    position: relative;
}

.concerns-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.04) 0%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

.concerns-intro {
    text-align: center;
    margin-bottom: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-4) var(--space-6);
    background: transparent;
    border-radius: var(--radius-xl);
}

.concerns-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: 700;
    margin-bottom: var(--space-6);
    color: white;
}

.concerns-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
    /* Adjusted for more compact layout */
}

.concern-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(5px);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Removed the ::before pseudo-element to reduce visual complexity */

.concern-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px -10px rgba(0, 0, 0, 0.25);
}

.safety-concern {
    border-top: 4px solid var(--success-green);
    border-left: none;
}

.effectiveness-concern {
    border-top: 4px solid var(--electric-blue);
    border-left: none;
}

.age-concern {
    border-top: 4px solid var(--confident-purple);
    border-left: none;
}

.time-concern {
    border-top: 4px solid var(--energetic-orange);
    border-left: none;
}

.concern-header {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.concern-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    box-shadow: 0 5px 10px -4px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Removed the ::after pseudo-element to reduce visual complexity */

.safety-icon {
    background: linear-gradient(135deg, var(--success-green), #059669);
}

.effectiveness-icon {
    background: linear-gradient(135deg, var(--electric-blue), #0ea5e9);
}

.age-icon {
    background: linear-gradient(135deg, var(--confident-purple), #a855f7);
}

.time-icon {
    background: linear-gradient(135deg, var(--energetic-orange), #f97316);
}

.concern-question {
    font-size: var(--text-xl);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.answer-highlight {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: var(--space-6);
    padding: var(--space-3) var(--space-4);
    background: rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-lg);
    display: inline-block;
}

.concern-body {
    position: relative;
    z-index: 1;
}

.safety-features {
    list-style: none;
    margin-bottom: var(--space-8);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-5);
}

.safety-features li {
    padding: var(--space-4);
    position: relative;
    padding-left: var(--space-10);
    background: transparent;
    border-radius: var(--radius-lg);
    border-left: 1px solid rgba(16, 185, 129, 0.3);
    transition: all var(--transition-base);
}

.safety-features li:hover {
    background: rgba(255, 255, 255, 0.02);
}

.safety-features li::before {
    content: '✓';
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: rgba(16, 185, 129, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: bold;
}

.reassurance-stat {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.2);
}

.reassurance-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.reassurance-stat .stat-number {
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--success-green);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.reassurance-stat .stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

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

.result-item {
    text-align: center;
    background: transparent;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 165, 233, 0.1);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.result-item:hover {
    background: rgba(14, 165, 233, 0.02);
}

.result-stat {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--electric-blue);
    margin-bottom: var(--space-2);
    position: relative;
    display: inline-block;
}

/* Removed the ::after pseudo-element to reduce visual complexity */

.result-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.results-note {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: center;
    padding: var(--space-2);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
}

.age-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-4);
}

.age-feature {
    background: transparent;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 85, 247, 0.1);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.age-feature:hover {
    background: rgba(168, 85, 247, 0.02);
}

.age-feature h5 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--confident-purple);
    position: relative;
}

/* Removed the ::after pseudo-element to reduce visual complexity */

.age-feature p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
}

.investment-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.time-investment, .time-return {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
}

.time-investment h5, .time-return h5 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--energetic-orange);
}

.roi-statement {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
}

.roi-statement p {
    font-style: italic;
    margin: 0;
}

.roi-statement span {
    font-weight: 700;
    color: var(--energetic-orange);
}

.testimonials-showcase {
    margin-bottom: var(--space-16);
}

.testimonials-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.featured-testimonial {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: var(--text-base);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
}

.author-name {
    font-size: var(--text-lg);
    font-weight: 700;
}

.author-relation {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-date {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
}

.investment-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    text-align: center;
}

.investment-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

.investment-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-8);
}

.investment-side, .investment-returns {
    background: rgba(255, 255, 255, 0.02);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.investment-side h4, .investment-returns h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.investment-items, .return-items {
    space-y: var(--space-3);
}

.investment-item, .return-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.investment-icon, .return-icon {
    font-size: var(--text-lg);
}

.investment-arrow {
    font-size: var(--text-2xl);
    color: var(--electric-blue);
    font-weight: 700;
}

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

.cta-message {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

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

.faq {
    background: var(--primary-dark);
}

.faq-interface {
    max-width: 900px;
    margin: 0 auto;
}

.faq-controls {
    margin-bottom: var(--space-12);
}

.faq-search {
    position: relative;
    margin-bottom: var(--space-6);
}

.search-input {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    padding-right: var(--space-12);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    color: white;
    font-size: var(--text-base);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.search-input:focus {
    outline: none;
    border-color: var(--electric-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-icon {
    position: absolute;
    right: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.6);
}

.faq-categories {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.category-btn:hover, .category-btn.active {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
    color: white;
    transform: translateY(-2px);
}

.faq-grid {
    space-y: var(--space-4);
    margin-bottom: var(--space-16);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    margin-bottom: var(--space-4);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    cursor: pointer;
    transition: all var(--transition-base);
}

.question-icon {
    font-size: var(--text-xl);
    min-width: 40px;
}

.question-text {
    flex: 1;
    font-size: var(--text-lg);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.toggle-icon {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--electric-blue);
    transition: transform var(--transition-base);
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-3);
}

.faq-answer ul {
    list-style: none;
    margin: var(--space-3) 0;
    padding-left: var(--space-4);
}

.faq-answer li {
    position: relative;
    margin-bottom: var(--space-2);
    padding-left: var(--space-4);
}

.faq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: 700;
}

.answer-highlight {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    margin: var(--space-3) 0;
    font-weight: 600;
    color: var(--electric-blue);
    text-align: center;
}

.ask-question-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    text-align: center;
}

.ask-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.ask-subtitle {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.question-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-input, .form-select, .form-textarea {
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: white;
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: var(--space-6);
}

.form-submit {
    width: 100%;
}

/* ================================
           INVITATION SECTION
        ================================ */

.invitation {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
}

.invitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.invitation-content {
    position: relative;
    z-index: 2;
}

.invitation-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.invitation-title {
    font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

.invitation-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.invitation-description {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--electric-blue);
    line-height: 1.5;
}

.opportunity-container {
    margin-bottom: var(--space-16);
}

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

.opportunity-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.opportunity-card:hover::before {
    left: 100%;
}

.opportunity-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.limited-seats {
    border-left: 4px solid var(--energetic-orange);
}

.next-meeting {
    border-left: 4px solid var(--electric-blue);
}

.special-offer {
    border-left: 4px solid var(--success-green);
}

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

.opportunity-card h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.opportunity-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-4);
}

.availability-indicator,
.meeting-countdown,
.offer-validity {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    margin-top: var(--space-4);
}

.spots-remaining {
    color: var(--energetic-orange);
    font-weight: 700;
    font-size: var(--text-sm);
}

.countdown-text {
    color: var(--electric-blue);
    font-weight: 700;
    font-size: var(--text-sm);
}

.offer-text {
    color: var(--success-green);
    font-weight: 700;
    font-size: var(--text-sm);
}

.decision-moment {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-16);
}

.decision-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.decision-description {
    text-align: center;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.choice-side {
    background: rgba(255, 255, 255, 0.02);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
}

.stay-same {
    border-left: 4px solid var(--energetic-orange);
}

.take-action {
    border-left: 4px solid var(--success-green);
}

.choice-side h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-align: center;
}

.choice-side ul {
    list-style: none;
}

.choice-side li {
    padding: var(--space-2) 0;
    position: relative;
    padding-left: var(--space-6);
}

.stay-same li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.take-action li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.choice-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--electric-blue);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.personal-connection {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-16);
}

.connection-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.personal-quote {
    font-size: var(--text-lg);
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: var(--space-6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.message-signatures {
    text-align: center;
}

.signature {
    font-size: var(--text-sm);
    color: var(--electric-blue);
    font-weight: 600;
    margin: var(--space-2) 0;
}

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

.cta-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: var(--text-lg);
    padding: var(--space-5) var(--space-8);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--electric-blue);
    transform: translateY(-2px);
}

.primary-cta {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }
    50% {
        box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 212, 255, 0.5);
    }
}

.cta-assurance {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.cta-assurance p {
    font-size: var(--text-sm);
    color: var(--success-green);
    font-weight: 600;
    margin: 0;
}

/* ================================
           CONTACT SECTION
        ================================ */

.contact {
    background: var(--primary-dark);
}

.contact-methods {
    margin-bottom: var(--space-12);
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.primary-contact {
    border: 2px solid var(--electric-blue);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
}

.contact-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--electric-blue);
    transition: all var(--transition-base);
    margin-left: auto;
    margin-right: auto;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.15);
}

.whatsapp-icon {
    color: #25D366;
}

.email-icon {
    color: var(--electric-blue);
}

.visit-icon {
    color: var(--energetic-orange);
}

.contact-card h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
}

.contact-action {
    margin-bottom: var(--space-4);
}

.contact-details {
    margin-bottom: var(--space-4);
}

.contact-details a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-lg);
}

.contact-details a:hover {
    text-decoration: underline;
}

.response-time {
    font-size: var(--text-sm);
    color: var(--success-green);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    display: inline-block;
}

/* Direct Signup CTA Section */
.signup-cta {
    margin-bottom: var(--space-16);
}

.signup-cta-content {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 92, 246, 0.15));
    border: 2px solid var(--electric-blue);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.signup-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.signup-cta-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 212, 255, 0.3);
}

.signup-cta-icon {
    font-size: var(--text-5xl);
    color: var(--electric-blue);
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.signup-cta-content:hover .signup-cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.15);
}

.signup-cta-text {
    flex: 2;
}

.signup-cta-text h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.signup-cta-text p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.signup-cta-action {
    flex: 1;
    text-align: center;
}

.signup-cta-action .btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg), 0 0 15px rgba(0, 212, 255, 0.3);
    transition: all var(--transition-base);
}

.signup-cta-action .btn-lg:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 212, 255, 0.5);
}

.signup-cta-note {
    font-size: var(--text-sm);
    color: var(--success-green);
    font-weight: 600;
    margin-top: var(--space-4);
}

/* Responsive styles for signup CTA */
@media (max-width: 992px) {
    .signup-cta-content {
        flex-direction: column;
        text-align: center;
        padding: var(--space-8);
        gap: var(--space-6);
    }
    
    .signup-cta-text p {
        max-width: 100%;
    }
    
    .signup-cta-action {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .signup-cta-content {
        padding: var(--space-6);
    }
    
    .signup-cta-icon {
        width: 80px;
        height: 80px;
        font-size: var(--text-4xl);
    }
    
    .signup-cta-text h3 {
        font-size: var(--text-xl);
    }
    
    .signup-cta-text p {
        font-size: var(--text-base);
    }
    
    .signup-cta-action .btn-lg {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-base);
    }
}

.quick-contact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-16);
}

.form-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2);
}

.form-actions {
    text-align: center;
}

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

.form-note {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.connect-more {
    text-align: center;
}

.connect-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-8);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--electric-blue);
}

.social-icon {
    font-size: var(--text-xl);
}

.additional-resources h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.resource-link {
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--electric-blue);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all var(--transition-base);
}

.resource-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--electric-blue);
    transform: translateY(-2px);
}

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

.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-main {
    margin-bottom: var(--space-12);
}

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

.footer-brand {
    padding-right: var(--space-4);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 800;
    font-size: var(--text-xl);
    color: white;
    margin-bottom: var(--space-4);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.brand-credentials {
    space-y: var(--space-2);
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.credential-icon {
    font-size: var(--text-base);
}

.footer-links h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--electric-blue);
}

.footer-contact h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: white;
}

.contact-info {
    space-y: var(--space-3);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
}

.contact-icon {
    font-size: var(--text-base);
    margin-top: 2px;
}

.contact-item a {
    color: var(--electric-blue);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-12);
}

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

.newsletter-content h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
}

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

.newsletter-input {
    flex: 1;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: white;
    font-size: var(--text-base);
}

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

.newsletter-btn {
    padding: var(--space-4) var(--space-6);
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-8);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: var(--space-8);
    align-items: center;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.legal-links p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.legal-menu {
    display: flex;
    gap: var(--space-4);
}

.legal-menu a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.legal-menu a:hover {
    color: var(--electric-blue);
}

.toastmasters-affiliation {
    text-align: center;
}

.toastmasters-affiliation p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    margin: var(--space-1) 0;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--electric-blue);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all var(--transition-base);
}

.back-to-top-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--electric-blue);
    transform: translateY(-2px);
}


/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .choice-comparison {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .choice-arrow {
        transform: rotate(90deg);
        order: 2;
    }

    .take-action {
        order: 3;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-assurance {
        flex-direction: column;
        gap: var(--space-2);
    }

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

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

    .full-width {
        grid-column: span 1;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        text-align: center;
    }

    .legal-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .concerns-grid {
        grid-template-columns: 1fr;
    }

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

    .investment-breakdown {
        grid-template-columns: 1fr;
    }

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

    .featured-testimonial {
        grid-column: span 1;
    }

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

    .investment-arrow {
        transform: rotate(90deg);
    }

    .faq-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--space-2);
    }

    .category-btn {
        white-space: nowrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive Adjustments for New Sections */
@media (max-width: 768px) {
    .executive-grid {
        grid-template-columns: 1fr;
    }

    .featured-exec {
        grid-column: span 1;
    }

    .pathway-steps {
        flex-direction: column;
        gap: var(--space-6);
    }

    .pathway-arrow {
        transform: rotate(90deg);
    }

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

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

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

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

    .primary-skill {
        grid-column: span 1;
    }

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

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

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

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

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .transformation-slider {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }

    .transformation-arrow {
        order: 2;
        transform: rotate(90deg);
    }

    .after-side {
        order: 3;
    }

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

    .champions-gallery {
        grid-template-columns: 1fr;
    }

    .featured-champion {
        grid-column: span 1;
    }

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-70 {
    opacity: 0.7;
}

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

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

.mb-8 {
    margin-bottom: var(--space-8);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.youtube-channel {
    margin-top: var(--space-8);
}

.youtube-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.youtube-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(255, 0, 0, 0.2);
}

.youtube-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--energetic-orange), #ff0000);
}

.youtube-card-content {
    display: flex;
    padding: var(--space-6);
    gap: var(--space-6);
    align-items: center;
}

.youtube-icon-container {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-icon {
    font-size: 2.5rem;
    color: white;
}

.youtube-text-content {
    flex: 1;
}

.youtube-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: white;
    position: relative;
    display: inline-block;
}

.youtube-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.youtube-stats {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.youtube-stats .stat {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
}

.youtube-stats .stat i {
    color: var(--energetic-orange);
}

.youtube-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: var(--space-4) var(--space-6);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: var(--text-sm);
}

.youtube-button:hover {
    background: linear-gradient(135deg, #cc0000 0%, #aa0000 100%);
    color: white;
}

.youtube-button i {
    font-size: 0.8em;
    transition: transform var(--transition-fast);
}

.youtube-button:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .youtube-card-content {
        flex-direction: column;
        text-align: center;
    }

    .youtube-icon-container {
        margin-bottom: var(--space-4);
    }

    .youtube-stats {
        flex-direction: column;
        gap: var(--space-2);
    }
}
