/* Nexus Workshops - Where Potential Meets Opportunity */

:root {
    --nexus-blue: #2563eb;
    --nexus-blue-light: #3b82f6;
    --nexus-blue-dark: #1d4ed8;
    --nexus-teal: #06b6d4;
    --nexus-purple: #7c3aed;
    
    --warm-orange: #f97316;
    --warm-yellow: #fbbf24;
    --warm-pink: #ec4899;
    
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #06b6d4 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--neutral-50);
    color: var(--neutral-700);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Wave Background */
.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nexus-blue);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    margin-bottom: 0;
}

.tagline {
    font-size: 0.85rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--nexus-blue);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 100px 20px;
    background: var(--gradient-hero);
    color: white;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-family: 'Playfair Display', 'Space Grotesk', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: white;
    color: var(--nexus-blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-hint i {
    width: 32px;
    height: 32px;
    color: white;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    color: var(--nexus-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Playfair Display', 'Space Grotesk', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--neutral-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    padding: 120px 20px;
    background: white;
}

.mission-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-quote {
    max-width: 900px;
    margin: 0 auto 80px auto;
    text-align: center;
    padding: 50px 40px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.quote-icon i {
    width: 30px;
    height: 30px;
}

.mission-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-author {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 600;
}

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

.mission-card {
    text-align: center;
    padding: 40px 30px;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.mission-icon i {
    width: 35px;
    height: 35px;
    color: white;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 15px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.mission-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-600);
}

/* Workshops Section */
.workshops-section {
    padding: 120px 20px;
    background: var(--neutral-50);
}

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

.workshop-card {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.workshop-card.featured {
    border: 2px solid var(--nexus-blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, white 50%);
}

.workshop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.workshop-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.workshop-icon i {
    width: 32px;
    height: 32px;
    color: var(--nexus-blue);
}

.workshop-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--neutral-800);
}

.workshop-category {
    color: var(--nexus-blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.workshop-description {
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.workshop-skills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.workshop-skills li {
    background: var(--neutral-100);
    color: var(--neutral-700);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 20px;
    background: white;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.model-card {
    background: var(--neutral-50);
    border: 2px solid var(--neutral-200);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.model-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.model-icon.free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.model-icon.paid {
    background: var(--gradient-primary);
}

.model-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.model-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 15px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.model-card p {
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 15px;
}

.model-card strong {
    color: var(--nexus-blue);
}

.model-note {
    font-weight: 600;
    color: var(--nexus-blue);
    font-style: italic;
}

.flywheel {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
}

.flywheel h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.flywheel-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.flow-step {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 180px;
    max-width: 200px;
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--nexus-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px auto;
}

.flow-step p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.flow-arrow {
    font-size: 2rem;
    opacity: 0.7;
}

.flywheel-note {
    font-size: 1.05rem;
    opacity: 0.95;
    font-style: italic;
}

/* Foundation Section Updates */
.foundation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.foundation-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.foundation-stat i {
    width: 32px;
    height: 32px;
}

.foundation-stat p {
    text-align: center;
    margin: 0;
    font-size: 1rem;
}

/* Impact Section */
.impact-section {
    padding: 120px 20px;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.impact-stat {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 10px;
}

.stat-description {
    color: var(--neutral-600);
    line-height: 1.6;
}

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

.impact-story h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 20px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.impact-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

.impact-story strong {
    color: var(--nexus-blue);
}

/* Foundation Section */
.foundation-section {
    padding: 120px 20px;
    background: var(--gradient-primary);
    color: white;
}

.foundation-content {
    max-width: 1100px;
    margin: 0 auto;
}

.foundation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.foundation-section h2 {
    font-family: 'Playfair Display', 'Space Grotesk', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.foundation-content > p:first-of-type {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.foundation-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.foundation-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.foundation-icon {
    width: 64px;
    height: 64px;
    background: white;
    color: var(--nexus-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.foundation-icon i {
    width: 32px;
    height: 32px;
}

.foundation-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.foundation-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

.foundation-vision {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.foundation-vision h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    text-align: center;
}

.foundation-vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.foundation-vision p:last-child {
    margin-bottom: 0;
}

.foundation-vision strong {
    color: white;
    font-weight: 700;
}

.foundation-buttons {
    text-align: center;
    margin-top: 0;
}

.btn-foundation {
    background: white;
    color: var(--nexus-blue);
}

.btn-foundation:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 120px 20px;
    background: var(--neutral-50);
}

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

.contact-card {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 15px;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.contact-card p {
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nexus-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    gap: 12px;
}

.contact-link:hover i {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-200);
    padding: 60px 20px 30px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-weight: 600;
    color: var(--nexus-blue-light);
}

.footer-mission {
    color: var(--neutral-400);
    line-height: 1.6;
}

.footer-links h4,
.footer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-info p {
    color: var(--neutral-400);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--neutral-800);
    color: var(--neutral-500);
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        padding: 120px 20px 80px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .mission-section,
    .workshops-section,
    .how-it-works,
    .impact-section,
    .foundation-section,
    .contact-section {
        padding: 80px 20px;
    }

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

    .workshop-card.featured {
        grid-column: span 1;
    }

    .flywheel-flow {
        flex-direction: column;
    }

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

    .flow-step {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .logo {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .mission-quote blockquote {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Fusion Lab Introduction */
.fusion-lab-intro {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.fusion-lab-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.fusion-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.fusion-example {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-top: 30px;
}

.fusion-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.fusion-step {
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
}

.fusion-step.tech {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.fusion-step.art {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.fusion-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.fusion-arrow {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: bold;
}

.fusion-final {
    padding: 20px 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    width: 100%;
    margin-top: 15px;
}

.fusion-note {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: left;
    font-style: italic;
    opacity: 0.9;
}

/* Foundation Section Spacing Fix */
.foundation-approach {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .fusion-flow {
        flex-direction: column;
    }
    
    .fusion-arrow {
        transform: rotate(90deg);
    }
    
    .fusion-step {
        width: 100%;
    }
}