/* Fonts loaded asynchronously via HTML preload */

/* CSS Custom Properties - Design System */
:root {
    /* Primary Purple Palette */
    --primary-50: #f4f1fe;
    --primary-100: #e7e0fd;
    --primary-200: #d1c4fb;
    --primary-300: #b39cf7;
    --primary-400: #9670f1;
    --primary-500: #8B4DEF;
    --primary-600: #7c3ae8;
    --primary-700: #6d28d4;
    --primary-800: #5a22b0;
    --primary-900: #4a1d8f;
    
    /* Semantic Colors */
    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-200: #bbf7d0;
    --success-500: #22c55e;
    --success-600: #16a34a;
    --success-700: #15803d;
    
    --info-50: #eff6ff;
    --info-100: #dbeafe;
    --info-200: #bfdbfe;
    --info-500: #3b82f6;
    --info-600: #2563eb;
    --info-700: #1d4ed8;
    
    --warning-50: #fffbeb;
    --warning-100: #fef3c7;
    --warning-500: #f59e0b;
    --warning-600: #d97706;
    
    --error-50: #fef2f2;
    --error-100: #fee2e2;
    --error-500: #ef4444;
    --error-600: #dc2626;
    
    /* Neutral Palette */
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;
    
    /* Semantic Mappings */
    --color-primary: var(--primary-500);
    --color-primary-hover: var(--primary-600);
    --color-primary-light: var(--primary-100);
    --color-text: var(--neutral-950);
    --color-text-secondary: var(--neutral-700);
    --color-text-muted: var(--neutral-500);
    --color-background: var(--neutral-50);
    --color-surface: #ffffff;
    --color-border: var(--neutral-200);
    --color-border-light: var(--neutral-100);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius Scale */
    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-3xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

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

/* Image Loading Optimization */
img {
    height: auto;
    max-width: 100%;
}

img[loading="lazy"] {
    opacity: 1;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Skeleton Loading Screens */
.skeleton {
    background: linear-gradient(90deg, var(--neutral-200) 25%, var(--neutral-100) 50%, var(--neutral-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 1em;
    margin-block-end: 0.5em;
    border-radius: var(--radius-sm);
}

.skeleton-text.title {
    height: 1.5em;
    width: 60%;
}

.skeleton-text.subtitle {
    height: 1.2em;
    width: 80%;
}

.skeleton-text.paragraph {
    height: 1em;
    width: 100%;
}

.skeleton-text.paragraph:last-child {
    width: 70%;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-xl);
}

.skeleton-card {
    padding: var(--space-6);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
}

.skeleton-team-photo {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-4);
}

/* Progressive enhancement classes */
.loading .skeleton {
    display: block;
}

.loaded .skeleton {
    display: none;
}

.loading .content {
    display: none;
}

.loaded .content {
    display: block;
}

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

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable specific animations for reduced motion */
    .image-placeholder {
        animation: none;
        background: var(--neutral-200);
    }
    
    .learn-more-btn::before,
    .feature-column::before,
    .team-card::before {
        display: none;
    }
    
    /* Keep essential hover effects but reduce them */
    .card:hover,
    .team-card:hover,
    .feature-column:hover,
    .image-content:hover {
        transform: none;
    }
    
    /* Maintain focus indicators for accessibility */
    a:focus-visible,
    button:focus-visible {
        transition: outline 0.1s ease;
    }
}

/* Accessibility Improvements */
.skip-links {
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 2000;
}

.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: #333;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    left: 6px;
    top: 6px;
}

/* Enhanced Focus Indicators */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #8B4DEF;
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #8B4DEF;
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-background);
    font-size: clamp(16px, 2.5vw, 18px);
}

.container {
    max-inline-size: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.63);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 15px;
    padding-inline: 20px;
    max-inline-size: 1200px;
    margin-inline: auto;
}

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

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

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

.contact-btn {
    background-color: var(--neutral-800);
    border: 1px solid var(--neutral-800);
    color: white;
    padding: 0 var(--space-5);
    height: 32px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: normal;
    font-size: inherit;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.contact-btn:hover {
    background-color: var(--color-surface);
    border-color: var(--neutral-800);
    color: var(--neutral-800);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.contact-btn.large {
    font-size: 18px;
    padding: 15px 30px;
}

/* Mobile Menu Toggle - Hidden */
.mobile-menu-toggle {
    display: none;
}

/* Mobile Navigation Overlay - Hidden */
.mobile-nav-overlay {
    display: none;
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    inline-size: 100%;
    padding-block-end: 60px;
    padding-inline-start: 40px;
}

.hero-content {
    max-inline-size: 500px;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 300;
    color: #0f0f0f;
    margin-bottom: clamp(24px, 4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.learn-more-btn {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border: 1px solid var(--primary-500);
    color: white;
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.learn-more-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

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

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


/* Typography Scale */
h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; line-height: 1.3; }
h4 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 500; line-height: 1.4; }
h5 { font-size: clamp(18px, 2vw, 20px); font-weight: 500; line-height: 1.4; }
h6 { font-size: clamp(16px, 1.5vw, 18px); font-weight: 500; line-height: 1.5; }

p {
    line-height: 1.75;
    margin-bottom: 1.5em;
    color: var(--color-text-secondary);
}

/* Sections */
.section {
    padding-block: clamp(60px, 8vw, 120px);
}

/* Modern Grid Layouts */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

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

.content-row.reverse .text-content {
    order: 2;
}

.content-row.reverse .image-content {
    order: 1;
}

/* Advanced Grid Areas */
.story-vision-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-10);
    place-items: center;
}

.section-header {
    display: grid;
    gap: var(--space-4);
    text-align: center;
    margin-block-end: var(--space-16);
}

/* Form Grid Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: grid;
    gap: var(--space-2);
}

/* Responsive Breakpoints */
/* Mobile Small: 320px - 479px */
@media (max-width: 479px) {
    .hero {
        align-items: flex-start;
    }
    
    .hero-container {
        padding: 100px 20px 40px 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .header-container {
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-image {
        height: 24px;
    }
    
    .nav-right {
        gap: 16px;
    }
    
    .contact-btn {
        padding: 6px 12px;
        font-size: 12px;
        height: 32px;
    }
}

/* Mobile Medium: 480px - 639px */
@media (max-width: 639px) {
    .hero {
        align-items: flex-start;
    }
    
    .hero-container {
        padding: 90px 32px 40px 32px;
    }
    
    .navigation {
        display: none;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-image {
        height: 26px;
    }
    
    .contact-btn {
        padding: 8px 16px;
        font-size: 14px;
        height: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .content-row,
    .content-row.reverse {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .content-row .image-content,
    .content-row.reverse .image-content {
        order: -1;
    }
    
    .content-row .text-content,
    .content-row.reverse .text-content {
        order: 1;
    }
    
    /* Why Us section adjustments */
    .feature-icon svg {
        width: 72px !important;
        height: 72px !important;
    }
    
    .infographic {
        display: none;
    }
    
    /* About section mobile adjustments */
    #about {
        padding: var(--space-20) 0;
        min-height: 150vh;
        background-size: 100% 100%;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .story-vision-row {
        gap: var(--space-8);
    }
    
    .story-content, .vision-content {
        margin: 0 var(--space-4);
        padding: var(--space-6);
        background: rgba(0, 0, 0, 0.3);
        border-radius: var(--radius-xl);
        backdrop-filter: blur(10px);
    }
    
    .story-content p, .vision-content p {
        font-size: clamp(14px, 3vw, 16px);
        line-height: 1.6;
        margin-bottom: var(--space-3);
    }
    
    /* Hide both images on mobile to reduce content height */
    .story-image-container,
    .vision-image-container {
        display: none;
    }
    
    /* Team carousel on mobile */
    .team-section-wrapper {
        position: relative;
    }
    
    .team-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 40px 40px;
        margin: 0 -40px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .team-grid::-webkit-scrollbar {
        display: none;
    }
    
    .team-card {
        flex: 0 0 calc(100vw - 80px);
        scroll-snap-align: center;
        margin: 0 20px;
        max-width: none;
        width: calc(100vw - 80px);
        box-shadow: var(--shadow-2xl);
    }
    
    /* Carousel indicators */
    .team-carousel-indicators {
        display: flex;
        justify-content: center;
        gap: var(--space-2);
        margin-top: var(--space-6);
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--neutral-300);
        cursor: pointer;
        transition: background-color var(--transition-fast);
    }
    
    .carousel-dot.active {
        background-color: var(--primary-500);
    }
}

/* Tablet: 640px - 1023px */
@media (min-width: 640px) and (max-width: 1023px) {
    .hero-container {
        padding: 0 0 60px 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        max-width: 400px;
    }
    
    .team-card {
        padding: var(--space-8);
        max-width: 350px;
        margin: 0 auto;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
        margin-bottom: var(--space-5);
    }
}

/* Desktop Small: 1024px - 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        max-width: 960px;
    }
}

/* Desktop Large: 1440px+ */
@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-content {
        max-width: 600px;
    }
}

.section:nth-child(even) {
    background-color: var(--color-surface);
    box-shadow: inset 0 1px 0 var(--color-border-light);
}

/* Card Components */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: var(--space-6);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-border-light);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.card-elevated {
    box-shadow: var(--shadow-lg);
}

.card-elevated:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.image-content {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.image-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    transition: transform var(--transition-slow);
    display: block;
}

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

.image-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(139, 77, 239, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--radius-2xl);
    z-index: 1;
}

.image-content:hover::before {
    opacity: 1;
}

/* Supported By Section */
.supported-by {
    background: linear-gradient(135deg, var(--primary-900), var(--primary-700));
    color: var(--color-surface);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.supported-by::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.supported-by .container {
    position: relative;
    z-index: 1;
}

.supported-by .section-header h2 {
    color: var(--color-surface);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 600;
    margin-bottom: var(--space-8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 100%;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 77, 239, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--radius-2xl);
}

.logo-card:hover::before {
    opacity: 1;
}

.logo-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-300);
}

.logo-card img {
    max-width: 220px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.logo-card:hover img {
    transform: scale(1.05);
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    margin-block-end: var(--space-16);
}

.feature-column {
    text-align: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: visible;
}

.feature-column:hover {
    transform: translateY(-2px);
}

.feature-icon {
    margin-bottom: var(--space-6);
    color: var(--primary-500);
    transition: all var(--transition-normal);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-column:hover .feature-icon {
    color: var(--primary-600);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
}

.feature-column h3 {
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.feature-column p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.infographic {
    text-align: center;
}

.infographic img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

/* About Section */
#about {
    position: relative;
    background-image: url('images/about-bg.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1px);
    z-index: 1;
}

#about .container {
    position: relative;
    z-index: 2;
}

#about h2 {
    color: var(--color-surface);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-vision-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

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

.story-content h2, .vision-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--color-surface);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-content p, .vision-content p {
    color: var(--neutral-50);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    line-height: 1.8;
    font-size: clamp(16px, 2.5vw, 18px);
    margin-bottom: var(--space-5);
    text-align: left;
}

.story-content p:last-of-type, .vision-content p:last-of-type {
    margin-bottom: var(--space-8);
}

.story-image-container,
.vision-image-container {
    position: relative;
    margin: var(--space-8) auto 0;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    max-width: 600px;
    width: 100%;
}

.story-image-container:hover,
.vision-image-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.story-image, .vision-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    transition: transform var(--transition-slow);
    display: block;
}

.story-image-container:hover .story-image,
.vision-image-container:hover .vision-image {
    transform: scale(1.05);
}

.story-image-container::after,
.vision-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(139, 77, 239, 0.2));
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--radius-2xl);
}

.story-image-container:hover::after,
.vision-image-container:hover::after {
    opacity: 1;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    margin-block-start: var(--space-10);
    max-width: 900px;
    margin-inline: auto;
}

.team-card {
    background: var(--color-surface);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 77, 239, 0.02), rgba(139, 77, 239, 0.08));
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--radius-3xl);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-200);
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-6);
    border: 4px solid var(--color-surface);
    box-shadow: 0 8px 32px rgba(139, 77, 239, 0.15);
    transition: all var(--transition-normal);
    position: relative;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(139, 77, 239, 0.25);
    border-color: var(--primary-100);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: grayscale(20%);
}

.team-card:hover .team-photo img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.team-info {
    position: relative;
    z-index: 2;
}

.team-card h3 {
    font-size: clamp(20px, 3vw, 22px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.team-role {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.4;
    font-weight: 500;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-surface);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    text-decoration: none;
    border-radius: 50%;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.linkedin-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: 50%;
}

.linkedin-link:hover::before {
    opacity: 1;
}

.linkedin-link:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.linkedin-link svg {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast);
}

.linkedin-link:hover svg {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.slider-btn {
    background-color: #8B4DEF;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: #7A42D8;
}

.testimonial-content {
    flex: 1;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 18px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 20px;
}

.testimonial-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-logo {
    width: 60px;
    height: auto;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #8B4DEF;
}

.faq-icon {
    font-size: 24px;
    color: #8B4DEF;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background-image: url('images/cta.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: var(--space-32) 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.cta-container {
    background: var(--color-surface);
    border-radius: var(--radius-3xl);
    padding: var(--space-16) var(--space-12);
    text-align: center;
    box-shadow: var(--shadow-2xl);
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 77, 239, 0.02), rgba(139, 77, 239, 0.05));
    border-radius: var(--radius-3xl);
}

.final-cta h2 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-8);
    line-height: 1.3;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.final-cta .contact-btn {
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--color-text-secondary);
    margin-top: var(--space-5);
    line-height: 1.5;
    font-weight: 400;
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--neutral-900), var(--neutral-800));
    color: var(--neutral-50);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-20);
    padding: var(--space-16) 0 var(--space-12);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Company Info Column */
.footer-company .footer-logo {
    margin-bottom: var(--space-4);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.footer-tagline {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-300);
    margin-bottom: var(--space-3);
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--neutral-300);
    margin-bottom: var(--space-6);
    max-width: 280px;
}

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

.cert-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 12px;
    color: var(--neutral-400);
}

.cert-icon {
    font-size: 14px;
}

/* Links and Resources Columns */
.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-surface);
    margin-bottom: var(--space-4);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-500);
    border-radius: 2px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    color: var(--neutral-300);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-500);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-300);
    padding-left: var(--space-4);
}

.footer-link:hover::before {
    opacity: 1;
}

/* Contact Column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 14px;
    line-height: 1.5;
}

.contact-icon {
    font-size: 16px;
    margin-top: 2px;
}

.contact-link {
    color: var(--primary-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 77, 239, 0.1);
    color: var(--primary-300);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(139, 77, 239, 0.2);
}

.social-link:hover {
    background: var(--primary-500);
    color: var(--color-surface);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 77, 239, 0.3);
}


/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding: var(--space-6) 0;
    margin-top: var(--space-8);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-legal p {
    font-size: 12px;
    color: var(--neutral-400);
    margin: 0;
}

.footer-reg {
    margin-top: var(--space-1) !important;
}


/* Mobile Responsive */
@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
        padding: var(--space-16) 0 var(--space-10);
    }
    
    .footer-company {
        order: 1;
        grid-column: span 2;
    }
    
    .footer-links {
        order: 2;
    }
    
    .footer-contact {
        order: 3;
    }
}

@media (max-width: 639px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        padding: var(--space-12) 0 var(--space-8);
    }
    
    .footer-company {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: var(--space-4);
    }
}

/* Animation for loading spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background: var(--color-surface);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-2xl);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-border-light);
    transform: translateY(50px) scale(0.9);
    transition: all var(--transition-normal);
    opacity: 0;
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-8) var(--space-8) 0;
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: var(--space-8);
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    margin: 0;
    padding: var(--space-8);
}

.modal-header h2 {
    color: var(--color-text);
    font-size: 24px;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #333;
}

.contact-form {
    padding: 0 30px 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4DEF;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    border: none;
    padding: var(--space-4);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    margin-bottom: var(--space-5);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.submit-btn.loading .spinner {
    display: block;
}

.submit-btn.loading .btn-text {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error States */
.form-message {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: var(--success-50);
    color: var(--success-700);
    border: 1px solid var(--success-200);
}

.form-message.error {
    background-color: var(--error-50);
    color: var(--error-700);
    border: 1px solid var(--error-200);
}

.form-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alternative-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .navigation {
        gap: 20px;
    }
    
    .hero-container,
    .content-row,
    .story-vision-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .features-grid,
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonial-slider {
        flex-direction: column;
        gap: 20px;
    }
    
    .slider-btn {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        max-width: 350px;
    }
    
    .logo-card {
        max-width: none;
        width: 100%;
        min-height: 140px;
        padding: var(--space-8);
    }
    
    .logo-card img {
        max-width: 250px;
        max-height: 100px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .feature-column {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Disable parallax on mobile for performance */
    #about {
        background-attachment: scroll;
    }
    
    .story-content, .vision-content {
        max-width: none;
        margin: 0 var(--space-4);
    }
    
    .story-image-container,
    .vision-image-container {
        max-width: none;
        margin: var(--space-6) var(--space-4) 0;
    }
    
    .story-image, .vision-image {
        height: 240px;
    }
    
    .story-vision-row {
        gap: var(--space-16);
    }
    
    /* Disable parallax on mobile for CTA section */
    .final-cta {
        background-attachment: scroll;
        min-height: 300px;
        padding: var(--space-20) 0;
    }
    
    .cta-container {
        padding: var(--space-12) var(--space-8);
        max-width: 90%;
        margin: 0 var(--space-4);
    }
}