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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* Responsive media - mobile only */
img {
    max-width: 100%;
    height: auto;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 560px; /* Preserve original YouTube size */
    margin: 0 auto;
}

.video-container iframe {
    width: 560px;
    height: 315px;
}

/* Navigation */
nav {
    background: #0a2540;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    text-decoration: none;
    color: inherit;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: #1e88e5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8em;
    text-align: center;
    padding: 5px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    color: white;
    font-size: 1.3em;
    font-weight: 700;
}

.logo-text .product-name {
    font-size: 0.75em;
    font-weight: 500;
    display: block;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 25px 25px;
    display: block;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: #1e88e5;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    margin-left: 0;
}

.nav-cta .btn {
    padding: 12px 24px;
    font-size: 0.95em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a2540 0%, #1565c0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.video-placeholder {
    width: 100%;
    max-width: 900px;
    height: 400px;
    background: #0f3460;
    margin: 0 auto 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #94a3b8;
    border: 2px dashed #1e88e5;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.95;
}

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

.btn {
    padding: 16px 32px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #16a34a;
    color: white;
}

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.btn-secondary {
    background: white;
    color: #0a2540;
}

.btn-secondary:hover {
    background: #e4e4e4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Value Proposition Section */
.value-prop {
    padding: 60px 20px;
    background: #f8fafc;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1e88e5;
}

.value-card h3 {
    color: #0a2540;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.value-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* Problem Statement Section */
.problem {
    padding: 60px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #0a2540;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: #64748b;
    margin-bottom: 40px;
}

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

.problem-card {
    background: #fef2f2;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.problem-card h3 {
    color: #991b1b;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.problem-card p {
    color: #7f1d1d;
    font-size: 1.05em;
}

.alert-box {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.alert-box p {
    font-size: 1.3em;
    color: #92400e;
    font-weight: 600;
}

/* Solution Section */
.solution {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #eff6ff, #ffffff);
}

.solution-intro {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.capability-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.capability-number {
    background: #1e88e5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.capability-card h3 {
    color: #0a2540;
    margin-bottom: 10px;
    font-size: 1.2em;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background: white;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-phase {
    background: #f8fafc;
    padding: 35px;
    border-radius: 12px;
    border-top: 4px solid #16a34a;
}

.phase-badge {
    display: inline-block;
    background: #16a34a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-phase h3 {
    color: #0a2540;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.feature-phase ul {
    list-style: none;
    padding: 0;
}

.feature-phase li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
}

.feature-phase li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.2em;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a2540 0%, #1565c0 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

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

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 12px;
    color: #0a2540;
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    background: white;
}

.cta-number {
    background: #1e88e5;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.cta-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.cta-card p {
    color: #64748b;
    font-size: 1.05em;
}

/* Footer */
footer {
    background: #0a2540;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

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

.footer-logo-placeholder {
    width: 60px;
    height: 60px;
    background: #e4e4e4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a2540;
    font-size: 0.8em;
    text-align: center;
    padding: 5px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.footer-links a:hover {
    color: #1e88e5;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(228, 228, 228, 0.2);
    text-align: center;
    color: #e4e4e4;
    font-size: 0.9em;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 18px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 24px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 18px;
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
}

@media (max-width: 818px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a2540;
        flex-direction: column;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-links {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
    }
    
    .nav-cta {
        padding: 15px 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Mobile video responsiveness */
    .video-container {
        max-width: 100%;
    }
    
    .video-container iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .logo {
        padding: 15px 0;
    }
    
    .nav-links {
        width: 100%;
    }
    
    .nav-links li a {
        padding: 15px 20px;
    }
    
    .nav-cta {
        width: 100%;
        margin-left: 0;
        padding: 15px 20px;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.2em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .footer-cta {
        flex-direction: column;
    }
}