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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FFF9F5;
}

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

/* Nav Bar */
.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 15px 20px;
}

.site-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-nav .nav-brand {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 2px;
}

.site-nav .nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.site-nav .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-nav .nav-links a:hover {
    color: white;
}

/* Solid nav for non-home pages */
.nav-solid {
    position: relative;
    background: #2D2D2D;
}

.nav-solid .nav-brand {
    color: #FF9933;
}

.nav-solid .nav-links a {
    color: rgba(255, 255, 255, 0.8);
}

.nav-solid .nav-links a:hover {
    color: #FF9933;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

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

.hero .brand {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero .vendor-types {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

.video-hero-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto 15px;
    padding-bottom: 36.5%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

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

.video-caption {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 25px;
    font-style: italic;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.hero .launch-location {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.85;
}

/* Section Base */
.section {
    padding: 60px 20px;
}

.section-white {
    background: white;
}

.section-warm {
    background: #FFF9F5;
}

.section h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Benefits Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 950px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.15);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: #FF6B35;
    margin-bottom: 8px;
}

.benefit-card .hindi {
    font-size: 0.95rem;
    color: #FF6B35;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #555;
    font-size: 1rem;
}

/* How It Works */
.flow-steps {
    max-width: 700px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF9933, #FF6B35);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 5px;
}

.step-content .hindi {
    font-size: 0.95rem;
    color: #FF6B35;
    margin-bottom: 6px;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Challenge Section */
.challenge-section {
    text-align: center;
}

.challenge-items {
    max-width: 600px;
    margin: 0 auto;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 153, 51, 0.15);
}

.challenge-item:last-child {
    border-bottom: none;
}

.challenge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.challenge-item p {
    color: #555;
    font-size: 1.05rem;
    text-align: left;
}

.challenge-bridge {
    margin-top: 30px;
    font-size: 1.2rem;
    color: #FF6B35;
    font-weight: 500;
}

/* Screenshots Section */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.screenshot-card {
    text-align: center;
}

.screenshot-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.screenshot-card .caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF9933 100%);
    text-align: center;
    padding: 70px 20px;
    color: white;
}

.cta-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.cta-section .whatsapp-btn {
    font-size: 1.15rem;
    padding: 18px 40px;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-location {
    margin-top: 10px;
    font-size: 1rem;
    opacity: 0.85;
}

/* Footer */
.footer {
    background: #2D2D2D;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 12px;
    transition: color 0.2s ease;
}

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

.footer-company {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer-content {
    font-size: 0.95rem;
    color: #999;
}

.footer-content a {
    color: #FF9933;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 70px 20px 50px;
    }

    .hero .brand {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .vendor-types {
        font-size: 1rem;
    }

    .video-hero-container {
        padding-bottom: 56.25%;
        border-radius: 12px;
    }

    .section {
        padding: 45px 15px;
    }

    .section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .challenge-item {
        justify-content: center;
    }

    .challenge-item p {
        text-align: center;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    /* Mobile nav */
    .nav-toggle {
        display: block;
    }

    .site-nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(45, 45, 45, 0.95);
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .site-nav .nav-links.active {
        display: flex;
    }

    .footer-links a {
        display: inline-block;
        margin: 5px 10px;
    }
}
