/* Bootstrap CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Custom CSS Variables */
:root {
    --primary-purple: #8A2BE2;
    --neon-green: #C6FF00;
    --white: #FFFFFF;
    --dark-bg: #0A0A0A;
    --navy-bg: #1a1a2e;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--neon-green));
    --gradient-dark: linear-gradient(135deg, var(--dark-bg), var(--navy-bg));
    --shadow-primary: 0 10px 30px rgba(138, 43, 226, 0.3);
    --shadow-green: 0 10px 30px rgba(198, 255, 0, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}


/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(198, 255, 0, 0.1)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(138,43,226,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23grid)"/><circle cx="200" cy="150" r="100" fill="rgba(198,255,0,0.05)"/><circle cx="800" cy="300" r="150" fill="rgba(138,43,226,0.05)"/><circle cx="1000" cy="600" r="80" fill="rgba(198,255,0,0.08)"/><path d="M0,400 Q300,200 600,400 T1200,400" stroke="rgba(138,43,226,0.1)" stroke-width="2" fill="none"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(26, 26, 46, 0.7) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0 2rem 0;
    margin-top: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-primary);
    opacity: 0.9;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero_text{
    padding-top: 70px;
}
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature-item i {
    color: var(--neon-green);
    font-size: 1.2rem;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Overview Section */
.overview {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.overview-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-purple);
}

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

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.overview-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.card-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Impact Metrics */
.impact {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.metric-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(198, 255, 0, 0.2);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--navy-bg);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 100px;
    background: 
        linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(198, 255, 0, 0.1)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(138,43,226,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/><circle cx="300" cy="100" r="80" fill="rgba(198,255,0,0.05)"/><circle cx="900" cy="200" r="120" fill="rgba(138,43,226,0.05)"/><path d="M0,300 Q300,150 600,300 T1200,300" stroke="rgba(198,255,0,0.1)" stroke-width="2" fill="none"/></svg>'),
        var(--gradient-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--neon-green);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    color: var(--text-muted);
}

/* Hamburger Menu - Hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Close button: hidden on desktop by default */
.mobile-menu-close {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    /* Show and style close button on mobile */
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--white);
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        border-radius: 50%;
        transition: var(--transition);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--neon-green);
        transform: scale(1.1);
    }

    .mobile-menu-close:active {
        transform: scale(0.95);
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(138, 43, 226, 0.2);
        width: 100%;
        text-align: center;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--neon-green);
        background: rgba(198, 255, 0, 0.1);
        border-radius: 8px;
        transform: translateX(10px);
    }

    .nav-link.active::after {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }


    .hero-content {
        padding: 2rem 0 1rem 0;
        margin-top: 1rem;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        margin-top: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-features {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .page-hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }

    .page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }


    .hero-content {
        padding: 1.5rem 0 0.5rem 0;
        margin-top: 0.5rem;
    }

    .hero-image {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        margin-top: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }

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

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-content p {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-cta {
        gap: 0.8rem;
    }

    .hero-features {
        gap: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 1.8rem;
    }
}

/* About Page Styles */
.who-we-are {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.content-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.vision-mission {
    padding: 100px 0;
    background: var(--dark-bg);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.vm-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

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

.vm-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.vm-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.core-goals {
    padding: 100px 0;
    background: var(--navy-bg);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(198, 255, 0, 0.2);
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.goal-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.founder-story {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.founder-image {
    position: relative;
}

.founder-details h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.founder-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-credentials {
    margin: 2rem 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.credential-item i {
    color: var(--neon-green);
    width: 20px;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.team-profiles {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary-purple);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.values {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(198, 255, 0, 0.2);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

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

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* Products Page Styles */
.product-showcase {
    padding: 100px 0;
    background: var(--navy-bg);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-info h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-muted);
    margin: 0;
}

.product-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.supporting-solutions {
    padding: 100px 0;
    background: var(--dark-bg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

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

.solution-icon i {
    font-size: 2rem;
    color: var(--white);
}

.solution-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.solution-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(198, 255, 0, 0.2);
    color: var(--neon-green);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.solution-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-benefits {
    padding: 100px 0;
    background: var(--navy-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(198, 255, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-green);
    border-color: var(--neon-green);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 600;
}

.benefit-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.implementation {
    padding: 100px 0;
    background: var(--dark-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
}

.product-cta-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

/* Portfolio Page Styles */
.impact-stats {
    padding: 100px 0;
    background: var(--navy-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(198, 255, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.case-studies {
    padding: 100px 0;
    background: var(--dark-bg);
}

.case-studies-grid {
    display: grid;
    gap: 4rem;
    margin-top: 3rem;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.case-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.case-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.case-image:hover img {
    transform: scale(1.05);
}

.case-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.case-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.case-results {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-green);
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.case-quote {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--neon-green);
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

.case-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--neon-green);
    font-style: normal;
    font-weight: 600;
}

.visual-gallery {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 250px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.gallery-overlay p {
    color: var(--text-muted);
    margin: 0;
}

.testimonials-carousel {
    padding: 100px 0;
    background: var(--dark-bg);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.testimonial-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-purple);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-muted);
}

.download-resources {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.resource-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition);
}

.resource-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

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

.resource-icon i {
    font-size: 2rem;
    color: var(--white);
}

.resource-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.resource-item p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Partners Page Styles */
.why-partner {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.why-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

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

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.partner-types {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

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

.partner-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.partner-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.partner-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.partner-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefit-item i {
    color: var(--neon-green);
    width: 20px;
}

.partnership-process {
    padding: 100px 0;
    background: var(--navy-bg);
}

.partnership-forms {
    padding: 100px 0;
    background: var(--dark-bg);
}

.forms-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid rgba(138, 43, 226, 0.3);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

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

.form-tab {
    display: none;
}

.form-tab.active {
    display: block;
}

.partnership-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.partnership-form h3 {
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-light);
}

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

.partnership-cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

/* Team Page Styles */
.founder-bio {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.founder-image {
    position: relative;
}

.founder-details h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.founder-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-credentials {
    margin: 2rem 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.credential-item i {
    color: var(--neon-green);
    width: 20px;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.leadership-team {
    padding: 100px 0;
    background: var(--dark-bg);
}

.extended-team {
    padding: 100px 0;
    background: var(--navy-bg);
}

.team-categories {
    margin-top: 3rem;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category h3 {
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member-small {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition);
}

.team-member-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.member-photo-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 2px solid var(--primary-purple);
}

.member-photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-small h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-member-small p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.team-values {
    padding: 100px 0;
    background: var(--dark-bg);
}

.join-team {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.join-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.join-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.join-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.join-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.join-benefits .benefit-item i {
    color: var(--neon-green);
}

.join-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background: var(--navy-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: var(--text-muted);
    margin: 0;
}

.social-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.social-section .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-section .social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.social-section .social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(10px);
}

.map-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.faq-section {
    padding: 100px 0;
    background: var(--navy-bg);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.faq-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    margin: 0;
}

.contact-cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-grid,
    .vm-grid,
    .founder-content,
    .product-content,
    .case-study,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .forms-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }

    .nav-menu {
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(138, 43, 226, 0.2);
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--neon-green);
        background: rgba(198, 255, 0, 0.1);
        border-radius: 8px;
        transform: translateX(10px);
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-features .feature-item {
        text-align: center;
    }

    .overview-card,
    .team-member,
    .partner-card,
    .solution-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .goals-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

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

    .join-benefits {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .overview-card,
    .team-member,
    .partner-card,
    .solution-card,
    .benefit-item {
        padding: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}