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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background-color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 32px;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4f46e5;
}

.cta-button {
    background-color: #000000;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #333333;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: white;
    color: #333;
    padding: 100px 20px 60px;
    width: 100%;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    text-align: left;
    padding-top: 60px;
    min-width: 0;
}

.hero-chip {
    display: inline-block;
    background: #FB722E;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-intro {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #ef4444;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero .hero-highlight {
    color: #FB722E;
    display: block;
}

.hero-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.hero-subtitle span {
    color: #ef4444;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #6b7280;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.play-store-button {
    display: inline-block;
    transition: transform 0.3s;
}

.play-store-button:hover {
    transform: translateY(-3px);
}

.play-store-button img {
    height: 60px;
}

.made-in-india {
    margin-top: 30px;
    font-size: 20px;
    color: #1f2937;
    font-weight: 800;
}

.india-flag {
    font-size: 24px;
}

/* Phone Mockup */
.phone-mockup {
    max-width: 320px;
    width: 100%;
    margin: -40px 0 0 auto;
    position: relative;
    overflow: hidden;
}

.phone-mockup img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

img {
    max-width: 100%;
    height: auto;
}

/* Categories Section */
.categories {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1f2937;
}

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

.category-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1f2937;
}

.category-card p {
    color: #6b7280;
    font-size: 15px;
}

/* Social Proof Section */
.social-proof {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.stat {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 10px;
}

.stat-label {
    color: #6b7280;
    font-size: 16px;
}

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

.review-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.review-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: #4b5563;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    color: #6b7280;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background-color: #f9fafb;
}

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

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.7;
}

/* Mini Footer */
.mini-footer {
    background-color: white;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

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

.footer-links .separator {
    color: #d1d5db;
    font-size: 12px;
}

.footer-copyright {
    text-align: center;
    color: #9ca3af;
    font-size: 11px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .logo img {
        height: 24px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 40px 16px 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }

    .hero-content {
        text-align: center;
        padding-top: 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .made-in-india {
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .phone-mockup {
        max-width: 280px;
        margin: 0 auto;
    }
}
