/* ========================================
   EMI Landing Page - Unified Styles
   ======================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY - Unified System
   ======================================== */

/* Main Logo */
.logo {
    font-size: 5rem;
    font-weight: 800;
    color: #00ff88;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

/* Hero Tagline */
.tagline {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Titles (H2) */
.section-title,
.why-emi-title,
.stats-title,
.footer-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Unified Body Copy - Same everywhere */
.body-copy,
.subtitle,
.footer-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.body-copy strong,
.subtitle strong,
.footer-subtitle strong {
    color: #00ff88;
    font-weight: 600;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animated bubbles background */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 50%;
    opacity: 0.5;
    animation: rise 20s infinite ease-in;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px);
    }
    100% {
        bottom: 110%;
        transform: translateX(-100px);
    }
}

/* ========================================
   CTA BUTTONS
   ======================================== */

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-primary {
    background: #00ff88;
    color: #000;
}

.cta-button-primary:hover {
    background: #00dd77;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 255, 136, 0.5);
}

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

/* ========================================
   WHY EMI SECTION
   ======================================== */

.why-emi-section {
    padding: 5rem 2rem 0;
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-emi-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    flex-shrink: 0;
}

.phone-mockup-container {
    text-align: center;
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.phone-mockup-container img {
    max-width: 1100px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 50px 120px rgba(0, 255, 136, 0.4));
    display: block;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    background: #161616;
    padding: 4rem 0;
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.feature-bullets {
    margin-top: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.feature-bullets li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-bullets li:before {
    content: "\2022";
    color: #00ff88;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
    background: #000;
    padding: 4rem 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* ========================================
   FOOTER CTA
   ======================================== */

.footer-cta {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.footer-cta .container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    margin: 2rem 0;
    padding: 1.5rem;
    border: 2px solid #00ff88;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.05);
}

.footer-small-text {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-small-text p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    /* Typography - Mobile sizes */
    .logo {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.5rem;
        padding: 0 32px;
    }

    .section-title,
    .why-emi-title,
    .stats-title,
    .footer-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
        padding: 0 32px;
        line-height: 1.2;
    }

    /* Unified mobile body copy */
    .body-copy,
    .subtitle,
    .footer-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 32px;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 3rem 1rem;
    }

    /* Why EMI Section */
    .why-emi-section {
        min-height: auto;
        padding: 2rem 0 0;
    }

    /* Phone mockup - Use pre-cropped mobile image */
    .phone-mockup-container {
        padding: 0;
        margin-top: 3rem;
    }

    .phone-mockup-container img {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        filter: drop-shadow(0 30px 80px rgba(0, 255, 136, 0.5));
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 32px;
    }

    .feature-card {
        padding: 2rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-cta .container {
        padding: 0 32px;
    }

    .pricing-highlight {
        font-size: 1.2rem;
        padding: 1rem;
    }

    /* CTA Buttons */
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   CONTAINER UTILITY
   ======================================== */

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