/* SHEINX Accelerator - Main Styles */

/* CSS Variables - Black & White Theme */
:root {
    /* SHEIN Brand Colors - Black & White with sophisticated grays */
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #2d2d2d;
    --text-light: #6b6b6b;
    --text-muted: #8b8b8b;
    --background-primary: #ffffff;
    --background-secondary: #fafafa;
    --background-accent: #f5f5f5;
    --background-dark: #000000;
    --border-color: #e8e8e8;
    --border-light: #f0f0f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --brand-black: #000000;
    --brand-gray-50: #fafafa;
    --brand-gray-100: #f5f5f5;
    --brand-gray-200: #e8e8e8;
    --brand-gray-300: #d1d1d1;
    --brand-gray-400: #a8a8a8;
    --brand-gray-500: #8b8b8b;
    --brand-gray-600: #6b6b6b;
    --brand-gray-700: #4a4a4a;
    --brand-gray-800: #2d2d2d;
    --brand-gray-900: #1a1a1a;
    
    /* Layout & Spacing */
    --container-max-width: 1400px;
    --container-padding: 24px;
    --section-padding: 60px 0;
    --section-padding-medium: 50px 0;
    --section-padding-small: 35px 0;
    --content-spacing: 1.5rem;
    --content-spacing-sm: 1rem;
    --content-spacing-lg: 2rem;
    --border-radius: 8px;
    --border-radius-medium: 12px;
    --border-radius-large: 16px;
    --border-radius-xl: 20px;
    --border-width: 1px;
    --border-width-thick: 2px;
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 800;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 var(--shadow-light);
    --shadow-sm: 0 1px 3px 0 var(--shadow-light), 0 1px 2px -1px var(--shadow-light);
    --shadow-md: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -2px var(--shadow-color);
    --shadow-lg: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
    --shadow-xl: 0 20px 25px -5px var(--shadow-color), 0 8px 10px -6px var(--shadow-color);
    --shadow-2xl: 0 25px 50px -12px var(--shadow-color);
    --shadow-inner: inset 0 2px 4px 0 var(--shadow-light);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Enhanced spacing utilities */
.section {
    padding: var(--section-padding);
}

.section-medium {
    padding: var(--section-padding-medium);
}

.section-small {
    padding: var(--section-padding-small);
}

.content-spacing {
    margin-bottom: var(--content-spacing);
}

.content-spacing-sm {
    margin-bottom: var(--content-spacing-sm);
}

.content-spacing-lg {
    margin-bottom: var(--content-spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    letter-spacing: -0.015em;
}

h5 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}

h6 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: var(--font-weight-normal);
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-primary);
}

.text-large {
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.text-small {
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.text-subtle {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border-radius: var(--border-radius);
    border: var(--border-width-thick) solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    justify-content: center;
    letter-spacing: -0.01em;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

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

.btn-primary:hover {
    background-color: var(--text-secondary);
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: var(--font-size-lg);
}

/* Premium Header Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.navbar.scrolled .container {
    padding: 0.75rem;
}

.navbar-brand {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}
.navbar-brand a{
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 2px;
    padding-bottom: 0;
}

.brand-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

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

.nav-link.btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.nav-link.btn:hover {
    transform: translateY(-2px);
    color: white;
}

.lang-switcher {
    position: static;
    display: none;
    gap: 2px;
    background: var(--primary-color);
    border-radius: 16px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 2rem;
    align-self: center;
}

.lang-btn {
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 70px;
}

/* Mobile menu toggle button - Hidden by default on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Legacy carousel styles for backwards compatibility */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    z-index: 2;
}

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

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.05;
    letter-spacing: -2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    color: #fff;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    min-width: 180px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: none;
}

.hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.3);
}

/* Page Hero */
.page-hero {
    text-align: center;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--background-secondary), var(--background-accent));
}

.page-hero h1 {
    margin-bottom: 1rem;
    font-size: 2.8rem;
    line-height: 1.15;
}

.page-hero p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    /* max-width: 1000px; */
    margin: 0 auto;
    line-height: 1.55;
}

/* Features Section */
.page-home .features {
    padding: var(--section-padding);
    background-color: var(--background-secondary);
}

.features h2 {
    text-align: center;
    margin-bottom: var(--content-spacing-lg);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.features #platform-intro-desc {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: var(--font-size-lg);
}

.page-home .program-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 0 auto 0rem auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    padding: 2.5rem 3rem;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.program-summary-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.program-summary-content p {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.3rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.program-summary-content p:first-child {
    font-weight: var(--font-weight-bold);
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.program-summary-icon {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.program-summary-icon i {
    font-size: 4rem;
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

/* Hover effects for program summary */
.program-summary:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.program-summary:hover .program-summary-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.25);
}

/* Responsive design for program summary */
@media (max-width: 768px) {
    .page-home .program-summary {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .program-summary-content {
        text-align: center;
        max-width: none;
    }
    
    .program-summary-content p:first-child {
        font-size: 2rem;
    }
    
    .program-summary-icon {
        width: 100px;
        height: 100px;
    }
    
    .program-summary-icon i {
        font-size: 2.5rem;
    }
    
    /* Story details responsive layout */
    .story-details {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: auto;
        padding-top: 1rem;
    }
    
    .story-details p {
        font-size: 0.75rem;
    }
    
    .story-details strong {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
}

.program-description {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: left;
}

.program-description p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.7;
}

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

.feature-card {
    background: var(--background-primary);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition-normal);
    border: var(--border-width) solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--content-spacing);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
}
.feature-card p{
        text-align: left;
    }

/* Cases Section */
.page-cases .cases-section {
    padding: 30px 0;
}

.cases-preview h2, .cases-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    line-height: 1.15;
}

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

.case-card {
    background: var(--background-primary);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
    border: var(--border-width) solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.case-content {
    padding: var(--content-spacing-lg) var(--content-spacing);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--content-spacing-sm);
}

.case-content h3 {
    margin-bottom: 0.5rem;
}

.case-category {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
}

.case-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--background-accent);
}

.case-stat {
    text-align: center;
}

.case-stat-value {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    color: var(--primary-color);
}

.case-stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* Partners Section */
.page-home .partners-section {
    padding: 0px 0 30px 0;
    background-color: var(--background-secondary);
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.partners-section #partners-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.5;
}

/* Success Stories Grid for Partners Section */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

.success-stories-grid-main {
    grid-template-columns: repeat(3, 1fr);
}

.success-stories-grid-secondary {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto 3rem;
}

.story-card {
    background: var(--background-primary);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
    border: var(--border-width) solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.12);
}

.story-image {
    height: 420px;
    overflow: hidden;
    position: relative;
    background: var(--background-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.case-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.brand-initial {
    display: none;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    opacity: 1;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.story-content {
    padding: var(--content-spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--content-spacing-sm);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.story-brand {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.story-category {
    background-color: var(--background-accent);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.story-description {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
    flex-grow: 1;
    max-height: 3.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.story-details {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--background-accent);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
}

.story-details p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: center;
    flex: 1;
}

.story-details strong {
    display: block;
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.story-metrics {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--background-accent);
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-value {
    display: block;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    color: var(--primary-color);
    line-height: 1.2;
}

.metric-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    line-height: 1.2;
    margin-top: 0.25rem;
}

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

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    transition: var(--transition-normal);
    border: 1px solid #f0f0f0;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.partner-name {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 0;
}

.partner-category {
    background-color: var(--background-accent);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.partner-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

.partner-details p {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.partner-details strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.partner-metrics {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--background-accent);
}

.partner-metrics p {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.partner-quote {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-large);
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

.partner-quote blockquote {
    margin: 0;
    font-style: italic;
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--text-secondary);
}

.partner-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
}

.case-stat-value {
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.case-stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
}

/* Cases Filter */
.cases-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: 1px solid var(--text-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}

/* GMV Disclaimer */
.gmv-disclaimer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.gmv-disclaimer p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* Stats Section */
.stats-section {
    padding: var(--section-padding);
    background-color: #000000;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: var(--border-radius-large);
    border: 2px solid #000000;
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #333333;
    font-weight: var(--font-weight-medium);
}

/* Formula Section */
.formula-section {
    padding: var(--section-padding);
    background-color: var(--background-secondary);
}

.formula-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: var(--font-size-3xl);
}

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

.formula-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    transition: var(--transition-normal);
}

.formula-item:hover {
    transform: translateY(-3px);
}

.formula-icon {
    margin-bottom: 1rem;
}

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

/* Challenges Section */
.challenges-section {
    padding: var(--section-padding);
}

.challenges-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.challenge-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--background-secondary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

/* Commitment Section */
.commitment-section {
    padding: var(--section-padding);
    background-color: var(--background-secondary);
}

.commitment-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.commitment-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition-normal);
}

.commitment-item:hover {
    transform: translateY(-3px);
}

.commitment-icon {
    margin-bottom: 1rem;
}

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

/* Business Models */
.business-models {
    padding: var(--section-padding);
}

.business-models h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.model-card {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-normal);
}

.model-card:hover {
    background-color: var(--primary-color);
    color: white;
}

.model-card h3 {
    margin-bottom: 0.5rem;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 4rem;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--text-secondary));
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-duration {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-top: 0.5rem;
}

/* Process Features */
.process-features {
    padding: var(--section-padding);
    background-color: var(--background-secondary);
}

.process-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    margin-bottom: 1rem;
}

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

/* Timeline Visual */
.timeline-visual {
    padding: var(--section-padding);
}

.timeline-visual h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-chart {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-bar {
    display: flex;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.timeline-phase {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
}

.phase-1 { background-color: #000000; color: white !important; }
.phase-2 { background-color: #333333; color: white !important; }
.phase-3 { background-color: #666666; color: white !important; }
.phase-4 { background-color: #999999; color: white !important; }
.phase-5 { background-color: #cccccc; color: #000000 !important; }

.timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* Pricing Section */
.no-fees-section {
    padding: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: white;
    position: relative;
}

.no-fees-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.no-fees-section * {
    color: white !important;
    position: relative;
    z-index: 1;
}

.no-fees-section h2,
.no-fees-section h3,
.no-fees-section p {
    color: white !important;
}

.no-fees-banner {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    /* max-width: 1100px; */
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.no-fees-icon i {
    font-size: 4rem;
    color: white;
}

.no-fees-content h2 {
    margin-bottom: 1rem;
    color: white;
}

.no-fees-content p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-table-section {
    padding: 30px 0 ;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.pricing-table-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    position: relative;
    line-height: 1.15;
}

.pricing-table-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.page-offering .track-title{
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 2rem;
}
.page-offering .track-subtitle{
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
    position: relative;
}

.pricing-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: var(--border-radius-large);
    pointer-events: none;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-table th {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    font-weight: var(--font-weight-bold);
    color: white;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-table th:first-child {
    border-top-left-radius: 12px;
}

.pricing-table th:last-child {
    border-top-right-radius: 12px;
}

.pricing-table .category-cell {
    background: var(--primary-color);
    font-weight: var(--font-weight-bold);
    color: white;
    vertical-align: middle;
    text-align: center;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    font-size: var(--font-size-lg);
    text-shadow: none;
    position: relative;
}

.pricing-table .category-cell::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.pricing-table tbody td {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    line-height: 1.6;
}


/* .pricing-table tbody td:nth-child(3) {
    color: var(--text-secondary);
    font-style: italic;
} */

.pricing-table tbody tr {
    transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0%, rgba(255, 255, 255, 0.8) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pricing-table tbody tr:hover .category-cell {
    background: var(--primary-color);
    transform: scale(1.02);
}

.pricing-table tbody tr:hover td {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pricing-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.pricing-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* Track Sections */
.pricing-table-section .track-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
}

.track-content {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.track-content p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.track-content p:last-child {
    margin-bottom: 0;
}
.page-about .track-label {
    flex: 1;
    text-align: center;
    padding: 12px 24px;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-3xl);
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-normal);
    z-index: 2;
    position: relative;
}

.page-about .track-title {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-about .track-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.track-table-wrapper {
    margin-bottom: 2rem;
}

.track-table {
    margin-bottom: 0;
}

/* Track 1 specific styling */
.provide-cell {
    color: #dc3545;
    font-weight: var(--font-weight-medium);
}

/* Track 2 specific styling */
.pricing-varies {
    color: #dc3545;
    font-weight: var(--font-weight-medium);
}

.production-cell {
    color: #dc3545;
    font-weight: var(--font-weight-medium);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-top: 3rem;
    font-style: italic;
}

/* Calculator Section */
.calculator-section {
    padding: var(--section-padding);
    background-color: var(--background-secondary);
}

.calculator-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form,
.calculator-results {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--background-accent);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    line-height: 1.5;
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

/* Form Error Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Loading button state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn .fa-spinner {
    margin-right: 8px;
}

.cost-breakdown {
    margin-top: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--background-accent);
}

.cost-item.total {
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Included Section */
.included-section {
    padding: 60px 0 50px 0;
    background: var(--background-secondary);
}

.included-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    position: relative;
    line-height: 1.15;
}

.included-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.included-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.included-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.included-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.included-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.included-icon i {
    font-size: 2rem;
}

.included-item h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
}

.included-item ul {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.included-item li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.included-item li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    top: 0.75rem;
}

/* Investment Section */
.investment-section {
    padding: 60px 0 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.investment-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    position: relative;
    line-height: 1.15;
}

.investment-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.investment-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.investment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.investment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.investment-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.investment-icon i {
    font-size: 2rem;
}

.investment-item h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
}

.investment-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.investment-item p:last-child {
    margin-bottom: 0;
}


.contact-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-icon {
    margin-bottom: 2rem;
}

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

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

/* Application Section */
.page-apply .application-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--background-secondary), var(--background-primary));
    min-height: 100vh;
}

.page-apply .application-wrapper {
    max-width: 800px;
    margin: 0 auto;
}


/* Info Section Styling */
.info-section {
    margin-bottom: 3rem;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: var(--font-weight-bold);
}

.info-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.section-intro {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.requirement-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.requirement-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.requirement-content {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefit-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--secondary-color);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.benefit-content {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
}

/* Legacy support for old structure */
.info-list {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item i {
    color: var(--accent-color);
    font-size: var(--font-size-lg);
}

.application-benefits h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.application-benefits ul {
    list-style: none;
}

.application-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.application-benefits li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
}

.application-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--background-accent);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

/* Enhanced form layout for better width utilization */
.track-form .form-group {
    margin-bottom: 1.5rem;
}

.track-form .form-section h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
}

/* Two-column layout for appropriate fields */
.track-form .form-row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.page-apply .checkbox-label {
    display: flex;
    gap: 0.5rem;
    cursor: pointer;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

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

/* Privacy Policy Link Styling */
.page-apply .checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
}

.page-apply .checkbox-label a:hover {
    color: var(--text-secondary);
}


/* Application Process Flow */
.application-process-flow {
    padding: 60px 0 40px 0;
    background: var(--background-primary);
    position: relative;
}

.application-process-flow h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
}

.process-flow-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
    padding: 0 1rem;
}

.flow-step {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 160px;
    max-width: 200px;
}

.flow-step-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.flow-step-icon:hover {
    transform: translateY(-5px);
}

.flow-step-icon i {
    font-size: 2rem;
    color: white;
}

.flow-step-number {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.flow-step h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.flow-step p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: var(--font-size-sm);
    max-width: 180px;
    margin: 0 auto;
}

.process-timeline-line {
    position: relative;
    margin-top: 2rem;
    height: 2px;
    background: var(--background-accent);
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid white;
}

/* Application Process */
.application-process {
    padding: var(--section-padding);
    background-color: var(--background-secondary);
}

.application-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}


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

.cta * {
    color: white !important;
}

.cta h2,
.cta h3,
.cta p {
    color: white !important;
}

.cta h2 {
    margin-bottom: 1rem;
    color: white;
}

.cta p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta .btn-primary:hover {
    background-color: var(--background-secondary);
    color: var(--primary-color);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    width: 800px;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-body {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.close:hover {
    color: var(--text-primary);
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

/* Case Modal Specific Styles */
.case-modal-header {
    display: none;
}

.case-modal-body {
    text-align: left;
    margin-top: 0;
}

.case-modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--background-accent);
}

.modal-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-info-item.achievements {
    grid-column: 1 / -1;
}

.modal-info-item.additional-info {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.modal-info-label {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}

.modal-info-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.25rem;
}

.modal-info-content {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.5;
}

.case-modal-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-section {
    padding: 1rem 0;
}

.detail-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

/* Responsive modal styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        max-width: none;
        padding: 1.5rem;
    }
    
    .case-modal-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-info-item.achievements {
        grid-column: 1;
    }
}

/* Home Footer (Footer1 Style - Dark) */
.footer,
.home-footer {
    background-color: #000000;
    color: white;
    padding: 4rem 0 2rem;
}

.home-footer * {
    color: white !important;
}

.home-footer h2,
.home-footer h3,
.home-footer p,
.home-footer span,
.home-footer a {
    color: white !important;
}

.home-footer a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand-section {
    flex: 0 0 300px;
}

.footer-logo h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    display: block;
    margin-top: 0.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    flex: 1;
    margin-left: 4rem;
}

.footer-column h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Other Pages Footer (Footer2 Style - Dark) */
.other-footer {
    background-color: #000000;
    color: white;
    padding: 3rem 0 2rem;
}

.other-footer * {
    color: white !important;
}

.other-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.other-footer .footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.other-footer .footer-section ul {
    list-style: none;
    padding: 0;
}

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

.other-footer .footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.other-footer .footer-section a:hover {
    color: white;
}

.footer-social-simple {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.instagram {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.social-icon.youtube {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.social-icon.tiktok {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.footer-bottom-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--background-accent);
    font-size: 0.9rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

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

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--text-secondary);
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Business Model Section */
.business-model-section {
    padding: var(--section-padding);
    background-color: var(--background-secondary);
}

.business-model-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.2;
}

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

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition-normal);
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-icon {
    margin-bottom: 1.5rem;
}

.overview-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

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

.overview-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Manifesto Section - Premium Design */
.manifesto-section {
    padding: 30px 0 30px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.manifesto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.manifesto-main-title {
    text-align: center;
    font-size: 4.2rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
    line-height: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.manifesto-main-title::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.manifesto-subtitle {
    text-align: center;
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: 4rem;
    font-weight: 600;
}

.manifesto-section-title {
    text-align: center;
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin: 4rem 0 3rem 0;
    font-weight: 600;
}

.manifesto-list-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.manifesto-list-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-large);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.manifesto-list-item:last-child {
    margin-bottom: 0;
}

.manifesto-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.manifesto-icon i {
    color: white;
    font-size: 1.5rem;
}

.manifesto-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.manifesto-list-item:hover .manifesto-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.manifesto-content {
    flex: 1;
}

.manifesto-content h4 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.manifesto-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Legacy styles - keeping for backward compatibility */
.page-home .manifesto-section-block {
    margin-bottom: 2rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 2;
}

.manifesto-section-block:last-child {
    margin-bottom: 0;
}

.manifesto-section-header {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -1.2px;
    text-align: center;
    border: none;
    padding: 0;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.manifesto-section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--primary-color);
}

.manifesto-section-description {
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    padding: 0 2rem;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.manifesto-grid-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-large);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.manifesto-grid-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), #333);
    transition: height 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.manifesto-grid-item:hover::before {
    height: 100%;
}

.manifesto-grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.manifesto-grid-item p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.65;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
}

.manifesto-grid-item p::before {
    content: '•';
    position: absolute;
    left: -1.2rem;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.manifesto-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
    transition: var(--transition-normal);
}

.manifesto-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.manifesto-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.manifesto-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.manifesto-closing-statement {
    margin-top: 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    border-radius: var(--border-radius-large);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.manifesto-closing-statement::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.manifesto-closing-statement::after {
    content: '"';
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.manifesto-closing-statement p {
    margin: 0;
    color: white;
    font-size: 1.4rem;
    line-height: 1.75;
    text-align: center;
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* New Footer Styles - Based on footer.md */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 40px;
}

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

.footer__logo {
    display: inline-block;
    margin-bottom: 40px;
}

.footer__logo svg {
    width: 200px;
    height: auto;
    fill: #ffffff;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer__social-media-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 2rem;
}

.footer__social-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.footer__social-media-link:hover {
    opacity: 0.7;
}

.footer__social-media-link svg {
    fill: #ffffff;
    width: 24px;
    height: 24px;
}

.footer__info-links{
    display: flex;
    gap: 80px;
}

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

.footer__links-item {
    margin-bottom: 16px;
}

.footer__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer__link:hover {
    opacity: 0.7;
}

.footer__secondary-content {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.footer__copy-terms-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.footer__terms-links {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__info-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer__info-link:hover {
    opacity: 1;
}

/* Mobile Footer Responsive Styles */
@media (max-width: 767px) {
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer .container {
        padding: 0 16px;
    }
    
    .footer__logo {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer__logo svg {
        width: 120px;
    }
    
    
    .footer__social-media-links {
        order: 1;
        justify-content: center;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .footer__social-media-link {
        width: 40px;
        height: 40px;
    }
    
    .footer__social-media-link svg {
        width: 22px;
        height: 22px;
    }
    
    
    
    .footer__info-links-list {
        text-align: center;
    }
    
    .footer__links-item {
        margin-bottom: 14px;
    }
    
    .footer__link {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .footer__secondary-content {
        padding-top: 25px;
        text-align: center;
    }
    
    
    
    .footer__terms-links {
        gap: 15px;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
    
    .footer__info-link {
        font-size: 10px;
    }
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.list {
    list-style: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 30px 0 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    border-radius: var(--border-radius-large);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.page-home .testimonial-quote {
    /* margin-bottom: 2rem; */
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    position: relative;
    font-weight: 400;
}

.page-home .testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: var(--font-size-base);
    color: var(--text-light);
    margin: 0;
    font-weight: var(--font-weight-medium);
}

/* Responsive Design for Testimonials */
@media (max-width: 1199px) {
    .testimonials-grid {
        max-width: 700px;
        gap: 2.5rem;
    }
}

@media (max-width: 899px) {
    .testimonials-grid {
        max-width: 100%;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .testimonials-title {
        font-size: var(--font-size-3xl);
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 2rem;
    }
    
    .quote-text {
        font-size: var(--font-size-base);
    }
    
    .quote-icon {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* About Page Enhanced Styles */

/* About page specific hero styling */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Hero enhancements for About page */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    margin-bottom: 1.5rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: none;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 120px;
    transition: all var(--transition-normal);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.95);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* About Introduction Section */
.about-intro-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), #666);
    border-radius: 2px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
    margin-top: 0.5rem;
}

.intro-content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-top: 2rem;
}

.intro-text-block {
    margin-bottom: 2rem;
}

.intro-image-section {
    margin: 2rem 0;
}

.intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-image:hover {
    transform: translateY(-5px);
}

.intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.intro-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 0.5rem 0;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.highlight-quote {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
}

.highlight-quote i {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: block;
}

.highlight-quote p {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.intro-paragraphs p {
    margin-bottom: 1.5rem;
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--text-secondary);
}

.intro-highlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: var(--border-radius-large);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

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

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

.intro-highlight-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.intro-highlight-card > p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}


.feature-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-point i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.feature-point span {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
}

/* About Page Styles */

.philosophy-statement {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    border-radius: var(--border-radius-large);
    border: 2px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    position: relative;
    text-align: center;
}

.philosophy-statement::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    color: var(--text-light);
    line-height: 1;
}

.philosophy-statement::after {
    content: '"';
    position: absolute;
    bottom: -25px;
    right: 50%;
    transform: translateX(50%);
    font-size: 5rem;
    color: var(--text-light);
    line-height: 1;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-card, .approach-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    border-radius: var(--border-radius-large);
    padding: 3rem 2.5rem;
    border: 2px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
    position: relative;
}

.challenge-card:hover, .approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.challenge-card:hover .challenge-icon, 
.approach-card:hover .approach-icon {
    transform: scale(1.1);
}

.challenge-icon, .approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.challenge-icon i, .approach-icon i {
    font-size: 2rem;
    color: white;
}

.challenge-card h3, .approach-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.challenge-card p, .approach-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
}

.solution-section {
    margin-top: 6rem;
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.9));
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
}

.solution-section h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.benefits-list {
    max-width: 100%;
    margin: 3rem auto;
}


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

.benefit-icon i {
    font-size: 1.25rem;
    color: white;
}

.benefit-item p {
    margin: 0;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

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

.impact-statement {
    margin-top: 4rem;
    text-align: center;
}

.impact-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: var(--border-radius-large);
    color: white;
}

.impact-content p {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

.impact-content p:last-child {
    margin-bottom: 0;
}

/* Animations and Transitions for About Page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.slide-in-down {
    animation: slideInDown 0.6s ease-out forwards;
}

/* Enhanced transitions for interactive elements */
.hero-stats .stat-item {
    transition: transform var(--transition-normal);
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
}

.intro-highlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    border-radius: var(--border-radius-large);
    padding: 3rem 2.5rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    height: fit-content;
    position: sticky;
    top: 2rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-left: 4px solid var(--primary-color);
}

.intro-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.highlight-quote {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.highlight-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-normal);
}

.section-badge:hover {
    transform: scale(1.05);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.8);
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.benefit-item:hover {
    transform: translateX(8px);
    background: rgba(248, 249, 250, 1);
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: transform var(--transition-fast);
}

.feature-point:hover {
    transform: translateX(5px);
}

.feature-point i {
    color: var(--primary-color);
    font-size: 1.125rem;
    transition: color var(--transition-fast);
}

.feature-point:hover i {
    color: #333;
}

.impact-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: var(--border-radius-large);
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.impact-content:hover {
    transform: translateY(-5px);
}

.impact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

/* Responsive Design for About Page */
@media (max-width: 1199px) {
    .philosophy-statement {
        font-size: var(--font-size-2xl);
        padding: 1.5rem;
    }
    
    .challenges-grid, .approach-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .challenge-card, .approach-card {
        padding: 2rem 1.5rem;
    }
    
    .intro-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-highlight-card {
        position: relative;
        top: auto;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 767px) {
    .philosophy-statement {
        font-size: var(--font-size-xl);
        padding: 1.5rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .challenge-card, .approach-card {
        padding: 2rem 1.5rem;
    }
    
    .challenge-icon, .approach-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .challenge-icon i, .approach-icon i {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .impact-content {
        padding: 2rem;
    }
    
    .impact-content p {
        font-size: var(--font-size-base);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-width: auto;
    }
    
    .stat-number {
        font-size: var(--font-size-xl);
    }
    
    .intro-content-grid {
        gap: 2rem;
    }
    
    .highlight-quote {
        padding: 2rem;
    }
    
    .intro-highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2::after {
        width: 40px;
        height: 2px;
    }
    
    .about-intro-section {
        padding: 80px 0;
    }
    
    .philosophy-statement::before,
    .philosophy-statement::after {
        font-size: 3rem;
    }
    
    .philosophy-statement::before {
        top: -10px;
    }
    
    .philosophy-statement::after {
        bottom: -25px;
    }
    
    .solution-section {
        margin-top: 3rem;
        padding: 3rem 0;
    }
    
    /* Disable transform animations on mobile for better performance */
    .hero-stats .stat-item:hover,
    .intro-highlight-card:hover,
    .highlight-quote:hover,
    .section-badge:hover,
    .benefit-item:hover,
    .feature-point:hover,
    .impact-content:hover {
        transform: none;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1199px) {
    :root {
        --section-padding: 100px 0;
        --container-padding: 24px;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
        letter-spacing: -2px;
    }
    
    .hero-content p {
        font-size: 1.25rem;
        max-width: 500px;
    }
    
    .partners-section h2 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }
    
    .manifesto-main-title {
        font-size: 4rem;
        margin-bottom: 4rem;
    }
    
    .testimonials-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
    
    .program-summary {
        padding: 2rem 2.5rem;
        gap: 3rem;
        min-height: 160px;
    }
    
    .program-summary-icon {
        width: 120px;
        height: 120px;
    }
    
    .program-summary-icon i {
        font-size: 3.5rem;
    }
    
    .manifesto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 2rem;
    }
    
    .manifesto-grid-item {
        padding: 1.75rem;
    }
}


/* Case Row Layout - Left Image, Right Text */
.page-cases .case-row {
    display: flex;
    gap: 3.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--background-accent);
    margin-left: auto;
    margin-right: auto;
}

.case-row:last-child {
    border-bottom: none;
}

.case-image {
    flex: 0 0 320px;
    height: 420px;
    overflow: hidden;
    border-radius: var(--border-radius-large);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-content {
    flex: 1;
    padding-left: 1rem;
}

.case-header {
    margin-bottom: 0.5rem;
}

.case-brand {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 0;
}

.case-category {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: var(--font-weight-medium);
}

.case-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.case-description p {
    margin-bottom: 1rem;
}

.case-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--background-accent);
}

.case-details p {
    margin-bottom: 0.5rem;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.case-details strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.case-details a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Responsive Design for Case Rows */
@media (max-width: 768px) {
    .case-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .case-image {
        flex: none;
        height: 200px;
    }
    
    .case-content {
        padding-left: 0;
    }
    
    .case-brand {
        font-size: var(--font-size-xl);
    }
}

/* Track Toggle Styles */
.track-toggle-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-radius: var(--border-radius-large);
}

.track-toggle-section h2 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.track-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.track-toggle {
    position: relative;
    width: 300px;
    height: 50px;
    background: var(--background-accent);
    border-radius: 25px;
    padding: 4px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.track-toggle input[type="radio"] {
    display: none;
}

.page-apply .track-label {
    flex: 1;
    text-align: center;
    padding: 12px 24px;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-normal);
    z-index: 2;
    position: relative;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, var(--primary-color), #333);
    border-radius: 21px;
    transition: transform var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.track-toggle input[type="radio"]:checked + .track-label {
    color: white;
}

.track-toggle input[name="track"]:nth-of-type(2):checked ~ .toggle-slider {
    transform: translateX(100%);
}

/* Track Form Styles */
.track-form {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.track-form.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.4s ease-out;
}

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

.track-header {
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
    margin-bottom: 0;
}

.page-title .track-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    text-align: center;
}

.track-form .form-section {
    background: white;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--background-accent);
}

.track-form .form-section:last-of-type {
    border-bottom: none;
    border-radius: 0 0 var(--border-radius-large) var(--border-radius-large);
}

.track-form .form-section h4 {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.page-apply .form-prompt {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
    padding: 1rem;
    border-radius: var(--border-radius);
}

.form-help {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.track-form input[type="file"] {
    padding: 12px;
    border: 2px dashed var(--background-accent);
    border-radius: var(--border-radius);
    background: var(--background-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.track-form input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.track-form input[type="file"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Custom File Upload Styling */
.custom-file-upload {
    position: relative;
    display: block;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-normal);
    border: none;
    outline: none;
    width: 140px;
    text-align: center;
}

.file-upload-label:hover {
    background: var(--text-secondary);
    transform: translateY(-1px);
}

.file-upload-label i {
    font-size: 0.9rem;
}

.file-upload-name {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

.file-upload-name.has-file {
    color: var(--text-primary);
    font-style: normal;
    font-weight: var(--font-weight-medium);
}

/* Clean File Upload Status Styles */
.page-apply .file-upload-label.disabled {
    background: var(--brand-gray-400);
    cursor: not-allowed;
    opacity: 0.7;
}

.page-apply .upload-status-display {
    margin-top: 0.75rem;
    display: none;
}

.page-apply .uploaded-file-card {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background: var(--background-primary);
    transition: all var(--transition-normal);
    position: relative;
}

.page-apply .uploaded-file-card.uploading {
    border-color: var(--brand-gray-300);
    background: var(--brand-gray-50);
}

.page-apply .uploaded-file-card.success {
    border-color: var(--brand-gray-300);
    background: var(--background-secondary);
}

.page-apply .uploaded-file-card.error {
    border-color: #fecaca;
    background: #fef2f2;
}

.page-apply .uploaded-file-card .file-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--border-radius);
    background: var(--background-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.875rem;
    flex-shrink: 0;
}

.page-apply .uploaded-file-card.uploading .file-icon {
    background: var(--brand-gray-200);
}


.page-apply .uploaded-file-card.error .file-icon {
    background: #fecaca;
}

.page-apply .uploaded-file-card .file-icon i {
    font-size: 1rem;
    color: var(--brand-gray-600);
}

.page-apply .uploaded-file-card.uploading .file-icon i {
    color: var(--brand-gray-500);
}


.page-apply .uploaded-file-card.error .file-icon i {
    color: #ef4444;
}

.page-apply .uploaded-file-card .file-info {
    flex: 1;
    min-width: 0;
}

.page-apply .uploaded-file-card .file-name {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    line-height: 1.4;
    margin-bottom: 0.125rem;
    word-break: break-word;
}

.page-apply .uploaded-file-card .file-status {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    line-height: 1.3;
}


.page-apply .uploaded-file-card.error .file-status {
    color: #dc2626;
}

.page-apply .remove-file-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    border-radius: 50%;
    background: var(--brand-gray-200);
    color: var(--brand-gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.page-apply .remove-file-btn:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.05);
}

.page-apply .remove-file-btn i {
    font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-apply .uploaded-file-card {
        padding: 0.75rem;
    }
    
    .page-apply .uploaded-file-card .file-icon {
        width: 2.25rem;
        height: 2.25rem;
        margin-right: 0.75rem;
    }
    
    .page-apply .uploaded-file-card .file-icon i {
        font-size: 0.9rem;
    }
    
    .page-apply .remove-file-btn {
        top: 0.375rem;
        right: 0.375rem;
        width: 1.375rem;
        height: 1.375rem;
    }
    
    .page-apply .remove-file-btn i {
        font-size: 0.625rem;
    }
}

/* Enhanced checkbox styling for track forms */

.page-apply .track-form .form-actions {
    padding: 2rem 2.5rem;
    border-radius: 0 0 var(--border-radius-large) var(--border-radius-large);
    text-align: center;
    border-top: 1px solid var(--background-accent);
}

.track-form .form-actions .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
}

/* Enhanced application wrapper for tracks */
.application-wrapper {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-large);
    overflow: hidden;
}

/* Phone input styling */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.page-apply .phone-input-group select {
    flex: 0 0 100px;
    width: 220px;
    padding: 0.875rem 0.5rem;
    border: 1px solid var(--background-accent);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    background: white;
}

.phone-input-group input {
    flex: 1;
}

/* Social media styling */
.social-media-group {
    margin-top: 0.5rem;
}

.page-apply .social-platform {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    line-height: 1;
}

.page-apply .platform-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.platform-name {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    min-width: 80px;
}

.social-platform input {
    flex: 1;
    margin: 0;
    border: 1px solid var(--background-accent);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    font-size: var(--font-size-sm);
}

.social-platform input:first-of-type {
    max-width: 150px;
}


/* Contact Page Styles */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--background-secondary);
}

.contact-simple {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.contact-info-simple h2 {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: var(--font-weight-bold);
}

.contact-info-simple p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-info-simple p:last-child {
    margin-bottom: 0;
}

.contact-info-simple a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-secondary);
    border-radius: var(--border-radius);
    transition: transform var(--transition-normal);
}

.contact-detail-item:hover {
    transform: translateY(-2px);
}

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

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-detail-content h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-weight: var(--font-weight-semibold);
}

.contact-detail-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-size-base);
}

.quick-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--background-accent);
}

.quick-links h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: var(--font-size-lg);
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-base);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-links a:hover {
    color: var(--primary-color);
}

.quick-links a::before {
    content: '→';
    color: var(--primary-color);
    font-weight: bold;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
}

.contact-form .form-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: var(--font-size-2xl);
}

.contact-form .form-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: var(--font-size-base);
}

.contact-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: white;
    text-align: center;
}

.contact-cta-section .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: var(--font-size-3xl);
}

.contact-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-section .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.contact-cta-section .btn:hover {
    background: transparent;
    color: white;
}

/* Contact Form Loading State */
.contact-form.loading {
    position: relative;
    pointer-events: none;
}

.contact-form.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form.loading .btn {
    opacity: 0.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 1199px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        position: relative;
        top: auto;
    }
    
    .contact-simple {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-simple {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-simple h2 {
        font-size: var(--font-size-2xl);
    }
    
    .contact-info-simple p {
        font-size: var(--font-size-base);
    }
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-cta-section .cta-content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* Collaboration Tracks Section */
.collaboration-tracks {
    padding: 60px 0 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.tracks-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tracks-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.tracks-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

.tracks-intro {
    text-align: center;
    margin: 1.5rem 0 2.5rem;
}

.tracks-intro p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 1100px;
    margin: 0 auto;
}

.tracks-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.track-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
}

.track-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.page-apply .track-label {
    font-size: 1.1rem;
    font-weight: 700;
}

.page-apply .track-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0;
}

.page-about .track-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.apply-cta {
    text-align: center;
    margin-top: 2rem;
}

.apply-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.apply-cta .btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Collaboration Tracks */
@media (max-width: 1199px) {
    .collaboration-tracks {
        padding: 50px 0 40px 0;
    }
    
    .tracks-container {
        gap: 1.5rem;
        max-width: 1000px;
    }
    
    .track-box {
        padding: 1.8rem 2rem;
    }
    
    .page-hero {
        padding: 3rem 0 2.5rem;
    }
    
    .case-row {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .case-image {
        flex: 0 0 280px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .collaboration-tracks {
        padding: 40px 0 35px 0;
    }
    
    .tracks-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .track-box {
        padding: 1.5rem;
    }
    
    .tracks-header h2 {
        font-size: 2.2rem;
    }
    
    .tracks-subtitle {
        font-size: 1.1rem;
    }
    
    .tracks-intro p {
        font-size: 1rem;
    }
    
    .track-title {
        font-size: 1.2rem;
    }
    
    .track-content p {
        font-size: 0.95rem;
    }
    
    .page-hero {
        padding: 2.5rem 0 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .case-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .case-image {
        flex: none;
        height: 220px;
    }
    
    .cases-preview, .cases-section {
        padding: 40px 0;
    }
    
    .no-fees-section {
        padding: 0;
    }
    
    .no-fees-banner {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .pricing-table-section,
    .included-section,
    .investment-section {
        padding: 40px 0 35px 0;
    }
    
    /* Disable hover effects on mobile */
    .track-box:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }
}

/* Print Styles */
@media print {
    .navbar, .cta, .modal {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* New Sections Styles - About SHEINX, Philosophy, What We Solve, On-Demand Production */

/* About SHEINX Section */
.page-about .about-sheinx {
    padding: 40px 0;
    background: var(--background-primary);
    position: relative;
}

.about-sheinx .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-sheinx .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-sheinx .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

.about-sheinx .highlight {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.about-sheinx .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-sheinx .highlight:hover::after {
    transform: scaleX(1);
}

.page-about .about-content {
    margin: 0 auto;
}

.page-about .about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Our Philosophy Section */
.page-about .our-philosophy {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.our-philosophy .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.our-philosophy .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-about .philosophy-content {
    margin: 0 auto;
}

.philosophy-item {
    margin-bottom: 2.5rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
}

.page-about .philosophy-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* What We Solve Section */
.page-about .what-we-solve {
    padding: 40px 0;
    background: var(--background-primary);
    position: relative;
}

.what-we-solve .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.what-we-solve .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.what-we-solve .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

.page-about .solve-content {
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-about .challenges-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.challenge-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.challenge-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.challenge-item p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.solution-content {
    margin-top: 3rem;
}

.solution-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.solution-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: stretch;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.closing-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

/* On-Demand Production Section */
.page-about .on-demand-production {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.on-demand-production .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.on-demand-production .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.on-demand-production .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

.page-about .production-content {
    margin: 0 auto;
}

.intro-section {
    margin-bottom: 3rem;
}

.page-about .intro-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.approach-section {
    margin-bottom: 3rem;
}

.approach-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: center;
}

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

.approach-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.approach-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.approach-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.page-about .impact-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Responsive Design for New Sections */
@media (max-width: 1199px) {
    .about-sheinx,
    .our-philosophy,
    .what-we-solve,
    .on-demand-production {
        padding: 60px 0;
    }
    
    .challenges-list {
        grid-template-columns: 1fr;
    }
    
    .approach-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-sheinx,
    .our-philosophy,
    .what-we-solve,
    .on-demand-production {
        padding: 50px 0;
    }
    
    .about-sheinx .section-header h2,
    .our-philosophy .section-header h2,
    .what-we-solve .section-header h2,
    .on-demand-production .section-header h2 {
        font-size: 2rem;
    }
    
    .about-sheinx .section-subtitle,
    .what-we-solve .section-subtitle,
    .on-demand-production .section-subtitle {
        font-size: 1.1rem;
    }
    
    .philosophy-item h3 {
        font-size: 1.3rem;
    }
    
    .solution-content h3 {
        font-size: 1.5rem;
    }
    
    .approach-section h3 {
        font-size: 1.4rem;
    }
    
    .challenge-item,
    .benefit-item,
    .approach-item {
        padding: 1rem;
    }
    
    .approach-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .approach-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .challenges-list {
        grid-template-columns: 1fr;
    }
    
    .challenge-item {
        min-width: auto;
    }
    
    .about-content p,
    .philosophy-item p,
    .solution-content p,
    .intro-section p,
    .impact-section p {
        text-align: left;
    }
}