/* Gyde Website - New Design */
:root {
    --charcoal: #262626;
    --white: #fcfcfc;
    --light-green: #e5fe96;
    --dark-green: #698200;
    --light-gray: #f8f9fa;
    --medium-gray: #6b7280;
    
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-6) var(--spacing-8);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 42px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

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

.nav-right .cta-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-right .cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-8);
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--dark-green);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.btn-signin {
    background: none;
    border: 1px solid #e5e7eb;
    color: var(--charcoal);
    padding: 10px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-signin:hover {
    background: var(--light-gray);
    border-color: var(--dark-green);
}

.btn-download {
    background: var(--charcoal);
    border: none;
    color: var(--white);
    padding: 10px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-download:hover {
    background: var(--dark-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding-top: 120px;
    padding-bottom: var(--spacing-16);
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('/images/wave.png') no-repeat 50% center,
        radial-gradient(circle at 20% 30%, rgba(146, 201, 181, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(146, 201, 181, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(146, 201, 181, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(146, 201, 181, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(146, 201, 181, 0.02) 0%, rgba(146, 201, 181, 0.01) 100%);
    background-size: 100% auto, auto, auto, auto, auto, auto;
    opacity: 0.2;
    transform: rotate(-8deg) scale(1.1);
    transform-origin: center center;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    padding: var(--spacing-3) var(--spacing-6);
    background: var(--light-gray);
    color: var(--medium-gray);
    font-size: 16px;
    font-weight: 500;
    border: 2px solid var(--dark-green);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-8);
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: var(--spacing-6);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: var(--spacing-8);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--light-green);
    border: none;
    color: var(--charcoal);
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-1px);
}

/* Hero Visual */
/* Cleaned up - using new centered hero layout */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-2);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: var(--spacing-4) 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: var(--spacing-3) var(--spacing-6);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
    transition: background 0.2s ease;
}

.mobile-nav-links a:hover {
    background: var(--light-gray);
}

.mobile-cta {
    padding: var(--spacing-4) var(--spacing-6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav {
        padding: var(--spacing-4) var(--spacing-6);
        position: relative;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-right .cta-button {
        padding: var(--spacing-1) var(--spacing-3);
        font-size: 12px;
    }
    
    .auth-buttons {
        gap: var(--spacing-2);
    }
    
    .btn-signin,
    .btn-download {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: var(--spacing-8);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .hero .container {
        padding: 0 var(--spacing-6);
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content-centered {
        max-width: 100%;
        padding: 0 var(--spacing-4);
    }
    
    .hero-badge {
        font-size: 14px;
        padding: var(--spacing-2) var(--spacing-4);
        margin-bottom: var(--spacing-6);
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: var(--spacing-4);
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: var(--spacing-8);
    }
    
    .hero-background-pattern {
        transform: rotate(-8deg) scale(0.8);
        opacity: 0.15;
        background-size: 80%;
    }
    
    .hero-visual {
        height: 400px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        margin-left: auto;
    }

    .mobile-nav-menu {
        max-width: none;
        overflow: visible;
    }

    .header,
    .nav {
        overflow: visible !important;
    }

    .logo-text {
        font-size: 24px;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--spacing-8);
        display: block;
        overflow: hidden;
    }

    .hero .container {
        padding: 0 var(--spacing-4);
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-content-centered {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 11px;
        padding: var(--spacing-1) var(--spacing-3);
        margin-bottom: var(--spacing-4);
        display: inline-block;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: var(--spacing-4);
        word-break: keep-all;
        overflow-wrap: normal;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: var(--spacing-6);
        max-width: 100%;
        padding: 0 var(--spacing-2);
    }

    .hero-background-pattern {
        display: none;
    }

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

    .hero-social-proof {
        margin-top: var(--spacing-10);
        grid-column: auto;
    }

    .hero-social-proof .social-proof-text {
        font-size: 13px;
        padding: 0 var(--spacing-2);
    }

    .hero-social-proof .client-logos {
        padding: var(--spacing-3) var(--spacing-2);
        margin: 0 calc(-1 * var(--spacing-4));
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
    
    .mobile-cta .btn-primary {
        width: 100%;
        max-width: none;
    }
    
    .supporters-horizontal-card {
        padding: var(--spacing-4);
        margin-bottom: var(--spacing-6);
    }
    
    .supporters-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .team-simple-card {
        padding: var(--spacing-4);
    }
    
    .team-simple-card h3 {
        font-size: 20px;
    }

    /* Global Typography for Mobile */
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }
}

/* Features Section */
.features {
    padding: var(--spacing-24) 0;
    background: var(--white);
}

.features .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: var(--spacing-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--light-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(105, 130, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--light-green);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: var(--spacing-4);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-3);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Stats Section - Dark */
.stats-section {
    padding: var(--spacing-24) 0;
    background: var(--charcoal);
    color: var(--white);
}

.stats-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.stats-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-16);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-8);
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--light-green);
    margin-bottom: var(--spacing-2);
}

.stat-item p {
    color: var(--white);
    font-size: 18px;
}

/* Solutions Section */
.solutions {
    padding: var(--spacing-16) 0 var(--spacing-8);
    background: var(--white);
}

.solutions .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
}

.solution-card {
    background: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(105, 130, 0, 0.1);
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-3);
}

.solution-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-24) 0;
    background: var(--white);
    text-align: center;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-6);
}

.cta-description {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-8);
}

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

.cta-secondary-link {
    color: var(--medium-gray);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-secondary-link:hover {
    color: var(--dark-green);
}

/* Footer */
.footer {
    background: #2D2D2D;
    color: var(--white);
    padding: var(--spacing-16) 0 var(--spacing-8) 0;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1.2fr;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-12);
    padding-bottom: var(--spacing-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Brand Column */
.footer-brand-column {
    gap: var(--spacing-4);
}

.footer-logo {
    margin-bottom: var(--spacing-2);
}

.footer-logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--light-green);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* Footer Links */
.footer-heading {
    color: var(--light-green);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-5);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.footer-links li a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #00D9D9;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #00D9D9;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Certifications */
.footer-certifications {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-6);
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }

    .footer-certifications {
        justify-content: flex-start;
    }

    .cert-badge svg {
        width: 40px;
        height: 40px;
    }
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-4);
    margin-top: var(--spacing-8);
}

.btn-secondary {
    background: none;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    padding: 14px 28px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

/* Hero Social Proof - integrated into hero section */
.hero-social-proof {
    grid-column: 1 / -1;
    margin-top: var(--spacing-20);
    text-align: center;
}

.hero-social-proof .social-proof-text {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-8);
    font-weight: 500;
}

.hero-social-proof .client-logos {
    overflow: hidden;
    margin-top: var(--spacing-6);
    background: white;
    border-radius: 16px;
    padding: var(--spacing-6) var(--spacing-4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.hero-social-proof .client-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, white 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-social-proof .client-logos::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, white 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.logos-scroll {
    display: flex;
    gap: var(--spacing-6);
    animation: scroll-left 60s linear infinite;
    width: calc(220px * 24); /* 12 logos * 2 (duplicated) * 220px each */
}

.logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: var(--spacing-2);
    box-shadow: none;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-4px) scale(1.05);
}

.logo-item img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.9);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Trust Bar Section */
.trust-bar {
    background: var(--off-white);
    padding: 1.25rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--charcoal);
    color: var(--light-green);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.trust-badge svg {
    stroke: var(--light-green);
    flex-shrink: 0;
}

/* Technology Partners Section */
.technology-partners {
    padding: 5rem 0;
    background: var(--light-gray);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.partner-item img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.partner-item span {
    color: var(--charcoal);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* Integrations Page Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-200px * 12 - var(--spacing-6) * 12)); /* Move by width of 12 logos + gaps */
    }
}

/* Pause animation on hover */
.client-logos:hover .logos-scroll {
    animation-play-state: paused;
}


/* Gyde Scale Section */
.gyde-scale {
    padding: var(--spacing-16) 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d3748 100%);
    color: var(--white);
    position: relative;
}

.gyde-scale .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-4);
}

.gyde-scale .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 20px;
    margin-bottom: var(--spacing-12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gyde-scale .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.scale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
}

.scale-card {
    text-align: center;
    padding: var(--spacing-10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(105, 130, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scale-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(105, 130, 0, 0.4);
    box-shadow: 0 12px 35px rgba(105, 130, 0, 0.15);
}


.scale-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--light-green);
    margin-bottom: var(--spacing-2);
}

.scale-card p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
}

/* Trust Features Styling */
.trust-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-6);
    max-width: 1400px;
    margin: 0 auto;
}

.trust-feature:nth-child(1) {
    grid-column: 1 / 3;
}

.trust-feature:nth-child(2) {
    grid-column: 3 / 5;
}

.trust-feature:nth-child(3) {
    grid-column: 5 / 7;
}

.trust-feature:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.trust-feature:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
}

.trust-feature {
    padding: var(--spacing-6);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(105, 130, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.trust-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(105, 130, 0, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(105, 130, 0, 0.15);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-3);
}

.trust-icon svg {
    color: var(--light-green);
    stroke-width: 2;
}

.trust-feature h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--spacing-3);
}

.trust-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Challenge Section */
.challenge-section {
    position: relative;
    padding: var(--spacing-16) 0;
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.challenge-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
}

.challenge-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--light-green) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--light-green) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.challenge-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
    position: relative;
    z-index: 1;
}

.challenge-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
}

.challenge-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.challenge-badge {
    display: inline-block;
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(229, 254, 150, 0.1);
    color: var(--light-green);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-6);
    border: 1px solid rgba(229, 254, 150, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.challenge-header .section-title {
    color: var(--white);
    margin-bottom: var(--spacing-6);
    font-size: 48px;
}

.challenge-description {
    color: #9ca3af;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: var(--spacing-12);
}

.challenge-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-12);
    margin-top: var(--spacing-8);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    max-width: 160px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--light-green);
    line-height: 1;
    margin-bottom: var(--spacing-3);
}

.stat-label {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.3;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    display: block;
}

/* Challenge Items */
.challenge-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-24);
    margin-top: var(--spacing-16);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.challenge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    margin-bottom: var(--spacing-4);
}

.challenge-item h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-green);
    line-height: 1.3;
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.challenge-problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-8);
}

.problem-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.problem-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--light-green);
    transform: translateY(-4px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
}

.problem-icon.problem-time { background: var(--light-green); color: var(--charcoal); }
.problem-icon.problem-skills { background: var(--light-green); color: var(--charcoal); }
.problem-icon.problem-tools { background: var(--light-green); color: var(--charcoal); }

.problem-icon svg {
    color: var(--charcoal);
}

.problem-category h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    color: var(--medium-gray);
    font-size: 16px;
    margin-bottom: var(--spacing-3);
    padding-left: var(--spacing-6);
    position: relative;
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
    font-size: 18px;
}

/* Minimalistic Solution Approach Section */
.solution-approach {
    padding: var(--spacing-16) 0 var(--spacing-16);
    background: var(--white);
}

.solution-approach .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.solution-approach .section-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-approach .section-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.highlight-text {
    color: var(--dark-green);
    font-weight: 700;
    background: var(--light-green);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
}

.solution-item {
    text-align: center;
    padding: var(--spacing-10);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(229, 254, 150, 0.2);
    background: linear-gradient(135deg, var(--white) 0%, rgba(229, 254, 150, 0.02) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.solution-item:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 254, 150, 0.4);
    box-shadow: 0 8px 30px rgba(105, 130, 0, 0.12);
    background: linear-gradient(135deg, var(--white) 0%, rgba(229, 254, 150, 0.05) 100%);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--light-green) 0%, #8FBC5A 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    box-shadow: 0 4px 16px rgba(105, 130, 0, 0.2);
    transition: all 0.3s ease;
}

.solution-icon svg {
    color: var(--charcoal);
}

.solution-item:hover .solution-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(105, 130, 0, 0.3);
}

.solution-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-4);
}

.solution-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 16px;
}

/* Solutions Library Section */
.solutions-library {
    padding: var(--spacing-16) 0;
    background: var(--white);
}

.solutions-library .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.solution-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
}

.solution-category {
    background: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    height: 800px; /* Further increased height for maximum visibility */
}

.solution-items-container {
    height: 100%;
    overflow: hidden;
}

.solution-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

/* Vertical scrolling animations for solution categories */
.scroll-up .solution-items {
    animation: scroll-vertical-up 25s linear infinite;
    animation-play-state: paused; /* Start paused */
}

.scroll-down .solution-items {
    animation: scroll-vertical-down 25s linear infinite;
    animation-play-state: paused; /* Start paused */
}

/* Start animation on hover */
.solution-category:hover .solution-items {
    animation-play-state: running;
}

@keyframes scroll-vertical-up {
    0% { 
        transform: translateY(0); 
    }
    100% { 
        transform: translateY(calc(-50% - var(--spacing-4) * 3)); 
    }
}

@keyframes scroll-vertical-down {
    0% { 
        transform: translateY(calc(-50% - var(--spacing-4) * 3)); 
    }
    100% { 
        transform: translateY(0); 
    }
}

.solution-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-6);
    border-bottom: 2px solid var(--light-green);
    padding-bottom: var(--spacing-2);
}

.solution-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.solution-item {
    padding: var(--spacing-4);
    border-left: 3px solid var(--light-green);
    background: rgba(229, 254, 150, 0.03);
    border-radius: var(--border-radius);
}

.solution-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-2);
}

.solution-item p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-16) 0;
    background: var(--white);
    position: relative;
}

.how-it-works .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.steps-scroll-area {
    max-width: 600px;
    margin: 0 auto;
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    padding: var(--spacing-8) 0;
    position: relative;
}

/* Hide scrollbar but keep functionality */
.steps-scroll-area::-webkit-scrollbar {
    display: none;
}

.steps-scroll-area {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.step-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-8);
    margin-bottom: var(--spacing-8);
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
    transition: all 0.4s ease;
    scroll-snap-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0.6;
    transform: scale(0.95);
    min-height: 180px;
    position: relative;
}

.step-card:last-child {
    margin-bottom: var(--spacing-8);
}

.step-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--light-green);
    box-shadow: 0 8px 32px rgba(105, 130, 0, 0.15);
    background: linear-gradient(135deg, rgba(229, 254, 150, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.step-card .step-number {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(105, 130, 0, 0.2);
    transition: all 0.3s ease;
}

.step-card.active .step-number {
    background: var(--dark-green);
    color: var(--white);
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-3);
    transition: color 0.3s ease;
}

.step-card.active .step-content h4 {
    color: var(--charcoal);
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    transition: color 0.3s ease;
}

.step-card.active .step-content p {
    color: var(--charcoal);
}

.step-navigation {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-8);
}

.step-indicators {
    display: flex;
    gap: var(--spacing-3);
}

.step-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: var(--light-green);
    border-color: var(--light-green);
    transform: scale(1.2);
}

.step-indicator:hover {
    border-color: var(--dark-green);
    transform: scale(1.1);
}

/* POD Structure Section */
.pod-structure {
    padding: var(--spacing-16) 0;
    background: var(--white);
    color: var(--charcoal);
}

/* Circular POD Process Design */
.circular-pod-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-12);
    margin-top: var(--spacing-16);
    padding: var(--spacing-8) 0;
    position: relative;
}

.pod-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    max-width: 200px;
}

/* Circle Design */
.circle-wrapper {
    position: relative;
    margin-bottom: var(--spacing-6);
}

.outer-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(105, 130, 0, 0.1);
    transition: all 0.3s ease;
}

.inner-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icon Styling */
.pod-circle-item .member-icon {
    font-size: 32px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pod-circle-item .member-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--charcoal);
}

/* Pod Info Text */
.pod-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-2);
    line-height: 1.3;
}

.pod-info p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

/* Hover Effects */
.pod-circle-item:hover .outer-circle {
    transform: scale(1.05);
    border-color: #8FBC5A;
    box-shadow: 0 8px 25px rgba(105, 130, 0, 0.2);
}

.pod-circle-item:hover .inner-circle {
    background: rgba(229, 254, 150, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .circular-pod-process {
        gap: var(--spacing-8);
        justify-content: center;
    }
    
    .pod-circle-item {
        max-width: 150px;
        margin-bottom: var(--spacing-6);
    }
    
    .outer-circle {
        width: 100px;
        height: 100px;
        border: 2px solid var(--light-green);
    }
    
    .inner-circle {
        width: 75px;
        height: 75px;
    }
    
    .pod-info h4 {
        font-size: 16px;
    }
    
    .pod-info p {
        font-size: 13px;
    }
}

.pod-structure .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.pod-structure .section-title {
    color: var(--charcoal);
    text-align: center;
    margin-bottom: var(--spacing-4);
}

.pod-structure .section-subtitle {
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: var(--spacing-16);
}

.pod-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-6);
    margin-top: var(--spacing-16);
    position: relative;
}

/* Add connecting lines between team members */
.pod-members::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--light-green) 20%, var(--light-green) 80%, transparent 100%);
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.3;
}

.pod-member {
    text-align: center;
    padding: var(--spacing-6);
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(229, 254, 150, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.pod-member:hover {
    background: var(--white);
    border-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(105, 130, 0, 0.12);
}

.member-icon {
    font-size: 32px;
    margin-bottom: var(--spacing-4);
    color: var(--charcoal);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-4) auto;
    background: var(--light-green);
    border-radius: 50%;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
}

.member-icon svg {
    width: 32px;
    height: 32px;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.pod-member:hover .member-icon {
    background: var(--dark-green);
    border-color: var(--dark-green);
    transform: scale(1.1);
}

/* Leadership member photo styling */
.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--spacing-4) auto;
    border: 3px solid rgba(229, 254, 150, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.leadership-member {
    background: rgba(229, 254, 150, 0.05);
    border: 2px solid rgba(229, 254, 150, 0.2);
}

.leadership-member:hover .member-photo {
    border-color: #8FBC5A;
    transform: scale(1.05);
}


.pod-member h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-2);
    transition: color 0.3s ease;
}

.pod-member p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.pod-member:hover h4 {
    color: var(--dark-green);
}

.pod-member:hover p {
    color: var(--charcoal);
}

/* Add team hierarchy indicators */
.pod-member:first-child::after {
    content: "Lead";
    position: absolute;
    top: var(--spacing-2);
    right: var(--spacing-2);
    background: rgba(229, 254, 150, 0.2);
    color: var(--light-green);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Add subtle animations */
.pod-member {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.pod-member:nth-child(1) { animation-delay: 0.1s; }
.pod-member:nth-child(2) { animation-delay: 0.2s; }
.pod-member:nth-child(3) { animation-delay: 0.3s; }
.pod-member:nth-child(4) { animation-delay: 0.4s; }
.pod-member:nth-child(5) { animation-delay: 0.5s; }

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

/* Intelligence Mesh Section */
.intelligence-mesh {
    padding: var(--spacing-8) 0;
    background: transparent;
}

.intelligence-mesh-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.intelligence-mesh-image img {
    max-width: 100%;
    height: auto;
}

/* Mobile responsive design for intelligence mesh image */
@media (max-width: 768px) {
    .intelligence-mesh {
        padding: var(--spacing-6) 0;
    }

    .intelligence-mesh-image {
        padding: 0 var(--spacing-4);
    }
}

/* Team Grid Variations */
.founders-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: var(--spacing-12);
}

/* Team Section Headers */
.team-section-header {
    text-align: center;
    margin: var(--spacing-12) 0 var(--spacing-8);
}

.team-section-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0;
}

/* Supporters Horizontal Card (Investors & Advisors) */
.supporters-horizontal-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(229, 254, 150, 0.2);
    padding: var(--spacing-8);
    margin-bottom: var(--spacing-8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.supporters-horizontal-card:hover {
    border-color: var(--light-green);
    box-shadow: 0 4px 16px rgba(105, 130, 0, 0.12);
}

.supporters-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-8);
    align-items: center;
}

.supporter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.supporter-item .supporter-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--spacing-4);
    border: 2px solid rgba(229, 254, 150, 0.3);
}

.supporter-item .supporter-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supporter-item .supporter-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-2);
    line-height: 1.3;
}

.supporter-item .supporter-info .role {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Simple Team Card */
.team-simple-card {
    background: rgba(229, 254, 150, 0.05);
    border: 1px solid rgba(229, 254, 150, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-8);
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.team-simple-card:hover {
    background: rgba(229, 254, 150, 0.08);
    border-color: var(--light-green);
}

.team-simple-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
}

.team-simple-avatar {
    background: var(--light-green);
    color: var(--charcoal);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.team-simple-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-3);
}

.team-simple-text p {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Team Section Mobile Styles */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .supporters-horizontal-card {
        padding: var(--spacing-6);
    }
    
    .supporters-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-6);
    }
    
    .supporter-item .supporter-info h4 {
        font-size: 14px;
        margin-bottom: var(--spacing-1);
    }
    
    .supporter-item .supporter-info .role {
        font-size: 12px;
    }
    
    .team-simple-card {
        padding: var(--spacing-6);
    }
    
    .team-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-6);
    }
    
    .team-info-section h4 {
        font-size: 20px;
    }
    
    .team-info-section p {
        font-size: 15px;
    }
}

.team-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-8);
    max-width: 1000px;
    margin: 0 auto;
}

/* Force founder cards to take first row */
.team-grid .founder-card:first-child {
    grid-column: 1;
    grid-row: 1;
}

.team-grid .founder-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Regular team members go to second row */
.team-grid .team-member:not(.founder-card) {
    grid-row: 2;
}

.team-member {
    text-align: center;
    padding: var(--spacing-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--light-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(105, 130, 0, 0.1);
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto var(--spacing-4);
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Enhanced styling for founder cards */
.founder-card {
    background: linear-gradient(135deg, rgba(229, 254, 150, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(229, 254, 150, 0.3);
    padding: var(--spacing-10);
    min-height: 400px;
    position: relative;
    overflow: hidden;
    grid-column: span 1;
    width: 100%;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-green) 0%, #8FBC5A 100%);
}

.founder-card:hover {
    border-color: var(--light-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(229, 254, 150, 0.2);
}

.founder-avatar {
    width: 120px;
    height: 120px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    overflow: hidden;
    border: 4px solid rgba(229, 254, 150, 0.4);
    transition: all 0.3s ease;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-card:hover .founder-avatar {
    border-color: var(--light-green);
    transform: scale(1.05);
}

.founder-info h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-2);
    text-align: center;
}

.founder-title {
    font-size: 18px;
    font-weight: 700;
    color: #8FBC5A;
    text-align: center;
    margin-bottom: var(--spacing-4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, #8FBC5A 0%, #698200 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.team-member h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--spacing-2);
}

.team-member p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero .container {
        padding: 0 var(--spacing-6);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-social-proof {
        margin-top: var(--spacing-16);
    }
    
    .hero-social-proof .social-proof-text {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    /* Enhanced Challenge Section Mobile */
    .challenge-header .section-title {
        font-size: 36px;
    }
    
    .challenge-description {
        font-size: 16px;
    }
    
    .challenge-stats {
        flex-direction: column;
        gap: var(--spacing-6);
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .challenge-items {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
        margin-top: var(--spacing-10);
    }
    
    .challenge-item h4 {
        font-size: 20px;
    }
    
    .challenge-problems {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .problem-category {
        padding: var(--spacing-6);
    }
    
    /* Solution Section Mobile */
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .solution-item {
        padding: var(--spacing-6);
    }
    
    .scale-grid,
    .approach-grid,
    .solution-categories,
    .platform-features,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .trust-feature:nth-child(1),
    .trust-feature:nth-child(2),
    .trust-feature:nth-child(3),
    .trust-feature:nth-child(4),
    .trust-feature:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .trust-feature {
        padding: var(--spacing-4);
    }
    
    .trust-feature h4 {
        font-size: 18px;
    }
    
    .trust-feature p {
        font-size: 15px;
    }
    
    .steps-scroll-area {
        height: 400px;
        max-width: 100%;
        padding: var(--spacing-2) 0;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-4);
        padding: var(--spacing-6);
        min-height: 180px;
        margin-bottom: var(--spacing-4);
    }
    
    .step-card .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-card.active .step-number {
        transform: scale(1.05);
    }
    
    .step-content h4 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .pod-members {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .pod-members::before {
        display: none;
    }
    
    .pod-member {
        padding: var(--spacing-4);
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .member-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto var(--spacing-3) auto;
    }
    
    .member-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .pod-member h4 {
        font-size: 16px;
    }
    
    .pod-member p {
        font-size: 13px;
    }
    
    .challenge-points {
        grid-template-columns: 1fr;
    }
    
    /* Client Logos Mobile Styles */
    .hero-social-proof .client-logos {
        padding: var(--spacing-4) var(--spacing-3);
        border-radius: 12px;
    }
    
    .hero-social-proof .client-logos::before {
        width: 60px;
    }
    
    .hero-social-proof .client-logos::after {
        width: 60px;
    }
    
    .logo-item {
        width: 160px;
        height: 75px;
        padding: var(--spacing-1);
        background: transparent;
        box-shadow: none;
    }
    
    .logos-scroll {
        animation-duration: 45s; /* Faster on mobile */
        width: calc(180px * 24); /* Adjusted for mobile logo width */
        gap: var(--spacing-4);
    }
    
    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-160px * 12 - var(--spacing-4) * 12)); /* Adjusted for mobile */
        }
    }

    /* CTA Section Mobile */
    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 18px;
    }

    /* Founder Cards Mobile */
    .founder-card {
        min-height: auto;
        padding: var(--spacing-8);
    }

    .founder-avatar {
        width: 100px;
        height: 100px;
    }

    .founder-info h4 {
        font-size: 24px;
    }

    .founder-info p {
        font-size: 14px;
    }

    /* Solutions Library Tablet */
    .solution-category {
        height: auto;
        min-height: 400px;
        max-height: 500px;
    }

    .solution-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-6);
    }

}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-6);
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--medium-gray);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--charcoal);
}

.modal-body {
    padding: var(--spacing-6);
}

.modal-body p {
    margin-bottom: var(--spacing-6);
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--spacing-4);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-2);
    font-weight: 500;
    color: var(--charcoal);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-3);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form-actions {
    margin-top: var(--spacing-6);
}

.form-actions button {
    width: 100%;
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions button:hover {
    background: var(--dark-green);
}

.form-actions button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Success State */
.form-success {
    text-align: center;
    padding: var(--spacing-8) var(--spacing-4);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto var(--spacing-4);
}

.form-success h4 {
    margin-bottom: var(--spacing-2);
    color: var(--charcoal);
    font-size: 18px;
}

.form-success p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-weight: normal;
    margin-bottom: 0;
}

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

/* =====================================================
   MOBILE RESPONSIVENESS - 480px (iPhone 14 and below)
   ===================================================== */
@media (max-width: 480px) {

    /* CTA Section Mobile */
    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-section .container {
        padding: 0 var(--spacing-4);
    }

    .cta-section {
        padding: var(--spacing-16) 0;
    }

    /* Solutions Library - Static Display */
    .solution-categories {
        grid-template-columns: 1fr;
    }

    .solution-category {
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
        padding: var(--spacing-6);
    }

    /* Disable scroll animation - static stacked display */
    .scroll-up .solution-items,
    .scroll-down .solution-items {
        animation: none !important;
    }

    .solution-items-container {
        height: auto;
        overflow: visible;
    }

    /* Hide duplicate items (used for infinite scroll) on mobile */
    .solution-category:nth-child(1) .solution-item:nth-child(n+7),
    .solution-category:nth-child(2) .solution-item:nth-child(n+5),
    .solution-category:nth-child(3) .solution-item:nth-child(n+6),
    .solution-category:nth-child(4) .solution-item:nth-child(n+7) {
        display: none;
    }

    .solution-category h3 {
        font-size: 18px;
        margin-bottom: var(--spacing-4);
    }

    .solutions-library .solution-item {
        padding: var(--spacing-3);
        margin-bottom: var(--spacing-3);
    }

    .solutions-library .solution-item h4 {
        font-size: 15px;
    }

    .solutions-library .solution-item p {
        font-size: 13px;
    }

    /* Trust Features Mobile */
    .trust-feature {
        padding: var(--spacing-3);
    }

    .trust-icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-feature h4 {
        font-size: 16px;
    }

    .trust-feature p {
        font-size: 14px;
    }

    .gyde-scale .section-title {
        font-size: 28px;
    }

    .gyde-scale .section-subtitle {
        font-size: 16px;
    }

    /* POD Structure Mobile */
    .circular-pod-process {
        gap: var(--spacing-6);
        flex-direction: column;
    }

    .pod-circle-item {
        max-width: 100%;
    }

    .outer-circle {
        width: 80px;
        height: 80px;
    }

    .inner-circle {
        width: 60px;
        height: 60px;
    }

    .pod-info h4 {
        font-size: 14px;
    }

    .pod-info p {
        font-size: 12px;
    }

    .pod-circle-item .member-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }

    /* Reset grid positioning for mobile - stack vertically */
    .team-grid .founder-card:first-child,
    .team-grid .founder-card:nth-child(2) {
        grid-column: 1;
        grid-row: auto;
    }

    .founder-card {
        padding: var(--spacing-6);
        min-height: auto;
    }

    .founder-avatar {
        width: 90px;
        height: 90px;
    }

    .founder-info h4 {
        font-size: 22px;
    }

    .founder-title {
        font-size: 14px;
    }

    .founder-info p {
        font-size: 14px;
        line-height: 1.5;
    }

    .supporter-item .supporter-avatar {
        width: 60px;
        height: 60px;
    }

    .supporters-list {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-4);
    }

    /* How It Works Mobile */
    .steps-scroll-area {
        height: 350px;
        padding: var(--spacing-4) 0;
    }

    .step-card {
        padding: var(--spacing-4);
        min-height: 160px;
        margin-bottom: var(--spacing-3);
    }

    .step-card .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-content h4 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 13px;
    }

    /* Challenge Section Mobile */
    .challenge-items {
        gap: var(--spacing-6);
    }

    .challenge-item h4 {
        font-size: 18px;
    }

    .challenge-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Intelligence Mesh Mobile */
    .intelligence-mesh-image {
        padding: 0 var(--spacing-2);
    }

    /* Client Logos Mobile */
    .logo-item {
        width: 120px;
        height: 60px;
    }

    .logos-scroll {
        gap: var(--spacing-3);
        width: calc(120px * 24);
    }

    /* Solution Approach Mobile */
    .solution-approach .section-subtitle {
        font-size: 16px;
    }

    .solution-approach .solution-item h4 {
        font-size: 18px;
    }
}

/* =====================================================
   CUSTOMER STORY DETAIL PAGES - Mobile Responsiveness
   ===================================================== */
@media (max-width: 768px) {
    .story-detail-hero {
        min-height: auto !important;
        padding: 120px 0 3rem 0 !important;
    }

    .story-detail-hero .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }

    .story-detail-hero .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    .story-detail-hero .hero-image {
        max-width: 250px !important;
        margin: 0 auto;
    }

    .story-detail-stats {
        padding: 2rem !important;
    }

    .story-detail-stats .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .story-detail-stats .stat-item {
        padding: 1.5rem 1rem !important;
    }

    .story-detail-stats .stat-number {
        font-size: 36px !important;
    }

    .story-detail-stats .stat-label {
        font-size: 14px !important;
    }

    .challenge-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .challenge-card {
        padding: 1.5rem !important;
    }

    .challenge-card .card-content {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .challenge-card .card-icon {
        width: 48px !important;
        height: 48px !important;
    }

    .challenge-card .card-title {
        font-size: 18px !important;
    }

    .challenge-card .card-text {
        font-size: 14px !important;
    }

    .related-stories-grid {
        grid-template-columns: 1fr !important;
    }

    .related-story-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .story-detail-hero .hero-title {
        font-size: 24px !important;
    }

    .story-detail-stats .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .story-detail-stats .stat-number {
        font-size: 32px !important;
    }
}

/* =====================================================
   PLATFORM & USE-CASE PAGES - Mobile Responsiveness
   ===================================================== */
@media (max-width: 768px) {
    .platform-hero {
        min-height: auto !important;
        padding: 120px 0 3rem 0 !important;
    }

    .platform-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }

    .platform-hero .hero-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }

    .usecase-hero-content {
        padding: 0 1rem;
    }

    .usecase-hero-subtitle {
        font-size: 18px !important;
    }

    .platform-hero-image {
        max-width: 300px !important;
        margin: 0 auto;
    }

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

    .platform-benefit-card {
        padding: 2rem !important;
    }

    .platform-benefit-card h3 {
        font-size: 22px !important;
    }

    .platform-benefit-card p {
        font-size: 16px !important;
    }

    .platform-feature {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 3rem !important;
    }

    .platform-feature > div {
        order: 0 !important;
    }

    .platform-feature h3 {
        font-size: 24px !important;
        text-align: center;
    }

    .platform-feature p {
        font-size: 16px !important;
        text-align: center;
    }

    .platform-feature-image {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .platform-hero .hero-title {
        font-size: 26px !important;
    }

    .platform-benefit-card {
        padding: 1.5rem !important;
    }

    .platform-benefit-card h3 {
        font-size: 20px !important;
    }

    .platform-benefit-card p {
        font-size: 15px !important;
    }

    .platform-feature h3 {
        font-size: 20px !important;
    }

    .platform-feature p {
        font-size: 15px !important;
    }

    .usecase-hero-subtitle {
        font-size: 16px !important;
    }
}

/* =====================================================
   MOBILE HORIZONTAL SCROLL FIX - Final Override
   ===================================================== */
@media (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
    }

    .hero,
    .hero .container,
    section:not(.header),
    .container {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Exclude nav elements from max-width to allow mobile menu */
    .mobile-nav-menu,
    .mobile-nav-menu * {
        max-width: none !important;
    }
}

/* =====================================================
   ABOUT, CONTACT, POLICY PAGES - Mobile Responsiveness
   ===================================================== */
@media (max-width: 768px) {
    /* Solution Grid - used on About page */
    .solution-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .solution-item {
        padding: 1.5rem !important;
    }

    .solution-item h4 {
        font-size: 18px !important;
    }

    .solution-item p {
        font-size: 15px !important;
    }

    /* About page - Story section image */
    .solution-approach .solution-grid img {
        max-width: 100% !important;
        margin: 0 auto 1.5rem auto !important;
    }

    /* About page - Team member images */
    .solution-item img[alt] {
        max-width: 200px !important;
        margin: 0 auto 1rem auto !important;
        display: block;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 2rem !important;
    }

    .section-title {
        font-size: 28px !important;
    }

    .section-subtitle {
        font-size: 16px !important;
    }

    /* Contact page - form container */
    .solution-approach > .container > div[style*="max-width: 800px"] {
        padding: 0 !important;
    }

    .solution-approach > .container > div[style*="max-width: 800px"] > div[style*="background: #ffffff"] {
        padding: 1.5rem !important;
    }

    /* Policy pages - container */
    .solution-approach > .container[style*="max-width: 1000px"] {
        padding: 0 1rem !important;
    }

    /* Policy pages - section headers */
    .solution-approach h3[style*="font-size: 28px"],
    .solution-approach h2[style*="font-size: 28px"] {
        font-size: 22px !important;
    }

    /* Policy pages - paragraph text */
    .solution-approach p[style*="font-size: 18px"] {
        font-size: 16px !important;
    }

    /* Policy pages - list items */
    .solution-approach ul li[style*="font-size: 18px"],
    .solution-approach ol li {
        font-size: 16px !important;
    }

    /* Privacy Policy - data tables with grid */
    div[style*="grid-template-columns: 30% 70%"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: 30% 70%"] > div {
        border-right: none !important;
        border-bottom: 1px solid #ddd;
    }

    div[style*="grid-template-columns: 30% 70%"] > div:last-child {
        border-bottom: none;
    }

    /* Privacy Policy - processor table */
    .solution-approach table {
        font-size: 14px !important;
    }

    .solution-approach table th,
    .solution-approach table td {
        padding: 0.75rem !important;
    }

    /* Contact page - office address */
    .solution-approach p[style*="font-size: 24px"] {
        font-size: 20px !important;
    }

    /* Hero subtitle on policy pages */
    .hero-subtitle[style*="max-width: 900px"] {
        font-size: 16px !important;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .solution-grid {
        gap: 1rem !important;
    }

    .solution-item {
        padding: 1rem !important;
    }

    .solution-item h4 {
        font-size: 16px !important;
    }

    .solution-item p {
        font-size: 14px !important;
    }

    .section-title {
        font-size: 24px !important;
    }

    /* Policy pages - section headers */
    .solution-approach h3[style*="font-size: 28px"],
    .solution-approach h2[style*="font-size: 28px"] {
        font-size: 18px !important;
    }

    /* Policy pages - paragraph text */
    .solution-approach p[style*="font-size: 18px"] {
        font-size: 15px !important;
    }

    /* Contact form padding */
    .solution-approach > .container > div[style*="max-width: 800px"] > div[style*="background: #ffffff"] {
        padding: 1rem !important;
    }

    /* Team member images smaller on mobile */
    .solution-item img[alt] {
        max-width: 150px !important;
    }

    /* Privacy Policy - processor table scroll */
    .solution-approach div[style*="border-radius: 8px; overflow: hidden"] {
        overflow-x: auto !important;
    }

    .solution-approach table {
        min-width: 500px;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for child elements */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   TAB COMPONENT STYLES
   ============================================ */

/* Solutions Library Tabs */
.solutions-tabs {
    width: 100%;
}

.solutions-tab-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.solutions-tab-btn {
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--charcoal);
    background: transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.solutions-tab-btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

.solutions-tab-btn.active {
    background: var(--charcoal);
    color: var(--light-green);
}

.solutions-tab-content {
    width: 100%;
}

.solutions-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.solutions-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.solutions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.solutions-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.solutions-list-item:hover {
    border-color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.solutions-list-item svg {
    flex-shrink: 0;
    color: var(--dark-green);
}

/* Trust Features Tabs */
.trust-tabs {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-tab-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-tab-btn {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--white);
    background: transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
}

.trust-tab-btn:hover {
    background: var(--white);
    color: var(--charcoal);
}

.trust-tab-btn.active {
    background: var(--white);
    color: var(--charcoal);
}

.trust-tab-content {
    width: 100%;
}

.trust-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.trust-tab-panel.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid #e5e7eb;
}

.trust-tab-panel .trust-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.trust-tab-panel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.trust-tab-panel p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    line-height: 1.7;
}

/* Mobile responsive for tabs */
@media (max-width: 768px) {
    .solutions-tab-nav,
    .trust-tab-nav {
        gap: 0.5rem;
    }

    .solutions-tab-btn,
    .trust-tab-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

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

    .trust-tab-panel {
        padding: 1.5rem;
    }

    .trust-tab-panel h3 {
        font-size: 1.25rem;
    }

    .trust-tab-panel p {
        font-size: 1rem;
    }
}

/* ===================================
   Enterprise AI Solutions Page
   =================================== */

/* Solutions Tabs */
.solutions-tabs {
    display: flex;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-8);
    flex-wrap: wrap;
    justify-content: center;
}

.solutions-tab {
    padding: var(--spacing-3) var(--spacing-5);
    background: transparent;
    border: 1px solid var(--charcoal);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    color: var(--charcoal);
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.solutions-tab:hover {
    background: var(--light-gray);
}

.solutions-tab.active {
    background: var(--charcoal);
    color: var(--light-green);
    border-color: var(--charcoal);
}

/* Solutions Panels */
.solutions-panel {
    display: none;
}

.solutions-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-6);
}

/* Solution Card */
.solution-card {
    display: block;
    background: var(--charcoal);
    padding: var(--spacing-6);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--light-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(229, 254, 150, 0.15);
}

.solution-card-title {
    color: var(--light-green);
    margin: 0 0 var(--spacing-3) 0;
    font-size: 18px;
    font-weight: 600;
}

.solution-card-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile responsive for enterprise AI page */
@media (max-width: 768px) {
    .solutions-tabs {
        gap: var(--spacing-2);
    }

    .solutions-tab {
        padding: var(--spacing-2) var(--spacing-4);
        font-size: 13px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }

    .solution-card {
        padding: var(--spacing-4);
    }

    .solution-card:hover {
        transform: translateX(4px);
    }
}