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

section {
    width: 100%;
}

section:not(.milestones-section) {
    overflow-x: hidden;
}

:root {
    --primary-color: rgb(99, 102, 241);
    --primary-dark: rgb(79, 82, 221);
    --primary-light: rgb(129, 132, 251);
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background: #ffffff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

/* Add space for fixed navigation on mission-vision page */
body:has(.page-navigation) #milestones {
    padding-top: 8rem;
}

/* Remove all scrollbars from milestones section */
.milestones-section,
.milestones-section *,
.timeline,
.timeline *,
.timeline-content,
.timeline-content *,
.timeline-item,
.timeline-item * {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    max-height: none !important;
    height: auto !important;
}

.milestones-section::-webkit-scrollbar,
.milestones-section *::-webkit-scrollbar,
.timeline::-webkit-scrollbar,
.timeline *::-webkit-scrollbar,
.timeline-content::-webkit-scrollbar,
.timeline-content *::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body.loading {
    overflow: hidden;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-logo {
    width: 95vw;
    max-width: 1400px;
    height: 90vh;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    display: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 5px solid rgba(99, 102, 241, 0.2);
    border-top: 5px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

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

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.milestones-section .container {
    overflow: visible !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

.logo-icon {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: #1a1a1a;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
    margin: 0;
}

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

.nav-cta .btn {
    padding: 0.75rem 1.25rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.lang-btn:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.lang-btn.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
    font-weight: 700;
}

.lang-divider {
    color: #ddd;
    font-weight: 300;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #666;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #1a1a1a;
    padding-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: #ff6b6b;
    text-decoration-thickness: 3px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

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

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

/* Dashboard Preview */
.hero-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 500px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.control-dot:first-child {
    background: #ff5f57;
}

.control-dot:nth-child(2) {
    background: #ffbd2e;
}

.control-dot:last-child {
    background: #28ca42;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    animation: metricCardSlideIn 1s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.metric-card:nth-child(1) {
    animation-delay: 0.2s;
}

.metric-card:nth-child(2) {
    animation-delay: 0.4s;
}

.metric-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes metricCardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.metric-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    animation: metricCountUp 2s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.metric-value:nth-child(2) {
    animation-delay: 0.5s;
}

.metric-value:nth-child(3) {
    animation-delay: 1s;
}

.metric-value:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes metricCountUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #28ca42;
    animation: positivePulse 2s ease-in-out infinite;
}

@keyframes positivePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.metric-change.negative {
    color: #ff5f57;
}

.chart-placeholder {
    grid-column: 1 / -1;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    height: 120px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    height: 80px;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
    animation: barGrow 2s ease-out forwards;
    transform-origin: bottom;
    opacity: 0;
}

.bar:nth-child(1) {
    animation-delay: 0.2s;
}

.bar:nth-child(2) {
    animation-delay: 0.4s;
}

.bar:nth-child(3) {
    animation-delay: 0.6s;
}

.bar:nth-child(4) {
    animation-delay: 0.8s;
}

.bar:nth-child(5) {
    animation-delay: 1.0s;
}

.bar:nth-child(6) {
    animation-delay: 1.2s;
}

.bar:hover {
    background: linear-gradient(to top, var(--primary-dark), var(--primary-light));
    transform: scaleY(1.1);
}

@keyframes barGrow {
    0% {
        height: 0%;
        opacity: 0;
        transform: scaleY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Page Navigation Links */
.page-navigation {
    padding: 1.2rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 100%;
    overflow-x: hidden;
    backdrop-filter: blur(10px);
}

.section-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.section-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-nav-link:active {
    transform: translateY(0);
}

.section-nav-link.active {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Animated Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    overflow: visible !important;
    height: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    animation: timelineGrow 2s ease-out forwards;
}

@keyframes timelineGrow {
    from {
        height: 0%;
    }
    to {
        height: 100%;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    animation: slideInTimeline 0.8s ease-out forwards;
    overflow: visible;
    max-width: 100%;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.9s;
}

.timeline-item:nth-child(4) {
    animation-delay: 1.2s;
}

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

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    border: 5px solid white;
    animation: pulseYear 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseYear {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
    }
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    width: calc(50% - 60px);
    position: relative;
    transition: all 0.3s ease;
    overflow: visible !important;
    word-wrap: break-word;
    height: auto;
    max-height: none;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.timeline-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
    line-height: 1.8;
    overflow: visible;
}

.timeline-list li {
    color: #666;
    margin-bottom: 0.75rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

.timeline-list li:last-child {
    margin-bottom: 0;
}

/* Timeline Mobile */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-year {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        font-size: 1rem;
        border: 4px solid white;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px !important;
        margin-right: 10px !important;
        padding: 1.5rem;
    }
    
    .timeline {
        padding: 2rem 0;
        overflow: visible;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #ffffff;
}

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

.feature-card {
    text-align: left;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    opacity: 0.3;
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #f8f9fa;
}

.works-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
}

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

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Specific Features Section */
.specific-features {
    padding: 6rem 0;
    background: #ffffff;
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sales-dashboard,
.ads-dashboard,
.ai-insights {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

.rag-dashboard {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #0ea5e9;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

.rag-metric {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 20px;
}

.rag-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.process-step {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.process-arrow {
    color: #0ea5e9;
    font-weight: bold;
    font-size: 1.2rem;
}

.sales-metric,
.ads-metric {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.chart-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.chart-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: chartLineFlow 3s ease-in-out infinite;
}

@keyframes chartLineFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.insight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.insight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.insight-text {
    font-weight: 600;
    color: #1a1a1a;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 2rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #666;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding-top: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #ffffff;
}

.contact .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

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

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-item .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-item .social-links a {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item .social-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* Contact form */
.contact-form { margin-top: 2rem; }
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-form input {
    padding: 0.9rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
}
.form-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #64748b;
}
@media (max-width: 768px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/* Video Demos Page */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #f8f9fa;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-info h3 i {
    color: #6366f1;
}

.video-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #999;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-meta i {
    color: #6366f1;
}

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

/* Mission & Vision Page Styles */
.mission-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #fbbf24 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.mission-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mission-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.mission-section, .vision-section {
    padding: 80px 0;
}

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

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mission-description, .vision-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.vision-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.vision-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.vision-icon {
    font-size: 3rem;
    color: white;
}

.vision-connections {
    position: absolute;
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, #6366f1, transparent);
    height: 2px;
    width: 100px;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 2s infinite;
}

.connection-line:nth-child(1) {
    left: -50px;
    transform: translateY(-50%) rotate(-45deg);
}

.connection-line:nth-child(2) {
    right: -50px;
    transform: translateY(-50%) rotate(45deg);
}

.connection-line:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.impact-section {
    padding: 80px 0;
}

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

.impact-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
}

.impact-number {
    font-size: 2rem;
    font-weight: 800;
    color: #6366f1;
    min-width: 120px;
}

.impact-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.impact-chart {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 20px;
    height: 200px;
    margin-bottom: 20px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 5px 5px 0 0;
    position: relative;
    min-height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 5px;
}

.bar-label {
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}

.bar-value {
    font-size: 0.9rem;
    color: white;
    font-weight: 700;
    text-align: center;
}

.chart-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #1e1b4b;
}

/* Active navigation link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Mission & Vision */
@media (max-width: 768px) {
    .mission-title {
        font-size: 2.5rem;
    }
    
    .mission-content, .vision-content, .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
    }
    
    .vision-graphic {
        order: -1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .chart-container {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    .chart-bar {
        height: 40px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Loading Screen - Mobile */
    .loading-logo {
        width: 95vw;
        max-width: 100%;
        height: 85vh;
    }
    
    .loading-text {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
        border: 4px solid rgba(99, 102, 241, 0.2);
        border-top: 4px solid #6366f1;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-cta { display: none; }
    
    .language-switcher {
        margin-left: 0;
        margin-right: 1rem;
    }
    
    .lang-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .logo-icon {
        height: 65px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

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

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

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }

    .works-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .dashboard-preview {
        padding: 1rem;
    }

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

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Demo Videos Section - Borderless YouTube Videos */
.demo-video-wrapper {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.demo-video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.demo-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.demo-video-container:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.demo-video-container:hover .play-button {
    background: rgba(99, 102, 241, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.demo-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.demo-video-info {
    padding: 2rem;
    background: white;
}

.demo-video-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demo-video-info h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.demo-video-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.video-meta span i {
    color: var(--primary-color);
}

/* Demos Page Carousel - Full Area Utilization */
.demos-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    cursor: pointer;
}

.demos-carousel-images {
    position: relative;
    width: 100%;
    height: 480px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demos-carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.demos-carousel-slide.active {
    display: block;
    animation: slowZoomIn 6s ease-in-out forwards;
}

@keyframes slowZoomIn {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.demos-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.demos-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demos-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.demos-indicator:hover {
    background: var(--primary-light);
}

/* Demos Page - Larger CreatorFlow Showcase */
body:has(.demos-carousel) .dashboard-preview {
    max-width: 950px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

body:has(.demos-carousel) .dashboard-content {
    width: 100%;
    display: block;
    margin-bottom: 0;
}

body:has(.demos-carousel) .dashboard-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

body:has(.demos-carousel) .dashboard-title {
    font-size: 1.2rem;
    font-weight: 700;
}

body:has(.demos-carousel) .control-dot {
    width: 14px;
    height: 14px;
}

body:has(.demos-carousel) .hero-container {
    max-width: 1500px;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: flex-start;
    padding: 0 30px;
}

body:has(.demos-carousel) .hero-content {
    padding-top: 0;
}

body:has(.demos-carousel) .hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

body:has(.demos-carousel) .hero-description {
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
    line-height: 1.6;
}

body:has(.demos-carousel) .hero-buttons {
    margin-top: 1rem;
}

body:has(.demos-carousel) .hero {
    min-height: auto;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
}

/* Tablet - Demos Carousel */
@media (max-width: 1200px) and (min-width: 769px) {
    body:has(.demos-carousel) .hero-container {
        max-width: 1100px;
        grid-template-columns: 1fr 1.2fr;
        gap: 3rem;
    }
    
    body:has(.demos-carousel) .dashboard-preview {
        max-width: 700px;
        padding: 2rem;
    }
    
    .demos-carousel-images {
        height: 450px;
    }
}

/* Page Navigation - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .section-nav {
        gap: 1rem;
        padding: 0 15px;
    }
    
    .section-nav-link {
        font-size: 0.9rem;
        padding: 0.65rem 1.1rem;
    }
}

/* Page Navigation - Mobile */
@media (max-width: 768px) {
    .page-navigation {
        padding: 0.8rem 0;
        top: 60px;
        position: fixed;
        left: 0;
        right: 0;
    }
    
    .section-nav {
        gap: 0.5rem;
        padding: 0 10px;
    }
    
    .section-nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.7rem;
    }
    
    body:has(.page-navigation) #milestones {
        padding-top: 6rem;
    }
}

/* Responsive Demo Videos */
@media (max-width: 768px) {
    .demo-video-wrapper {
        margin: 0 auto 3rem;
    }
    
    .demo-video-info {
        padding: 1.5rem;
    }
    
    .demo-video-info h3 {
        font-size: 1.25rem;
    }
    
    .video-meta {
        gap: 0.75rem;
    }
    
    .video-meta span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    /* Demos Page Carousel - Mobile */
    body:has(.demos-carousel) .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    body:has(.demos-carousel) .dashboard-preview {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    body:has(.demos-carousel) .dashboard-title {
        font-size: 1rem;
    }
    
    .demos-carousel-images {
        height: 350px;
    }
    
    .demos-indicator {
        width: 14px;
        height: 14px;
    }
    
    .demos-carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
}