/* =====================================================
   LANDING PAGE STYLE
===================================================== */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(5, 150, 105, 0.14);
    border-radius: 50%;
}

.hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #047857;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 18px;
}

.hero-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .14);
    border: 1px solid rgba(226, 232, 240, .9);
}

.hero-phone-preview {
    background: #0f172a;
    border-radius: 26px;
    padding: 18px;
    color: #ffffff;
    min-height: 420px;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    font-size: 14px;
}

.chat-bubble.in {
    background: #1e293b;
    color: #e2e8f0;
    border-bottom-left-radius: 4px;
}

.chat-bubble.out {
    background: #059669;
    color: #ffffff;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.feature-card {
    height: 100%;
    transition: .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, .12);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #ecfdf5;
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 16px;
}

.mode-card {
    height: 100%;
    border-radius: 26px;
    padding: 34px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: .25s ease;
}

.mode-card:hover {
    transform: translateY(-5px);
    border-color: #059669;
}

.mode-card.dark {
    background: #0f172a;
    color: #ffffff;
}

.mode-card.dark p {
    color: #cbd5e1;
}

.pricing-card {
    height: 100%;
    border-radius: 26px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 28px;
    transition: .25s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.pricing-card.popular {
    border: 2px solid #059669;
    box-shadow: 0 25px 70px rgba(5, 150, 105, .18);
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 22px;
    background: #059669;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.price {
    font-size: 34px;
    font-weight: 900;
    color: #059669;
}

.price small {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.pricing-list {
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.pricing-list li {
    padding: 8px 0;
    color: #475569;
    border-bottom: 1px dashed #e2e8f0;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.cta-section {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    border-radius: 34px;
    padding: 55px 30px;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
}

.stat-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
}

.stat-number {
    font-size: 34px;
    font-weight: 900;
    color: #059669;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }

    .section-padding {
        padding: 56px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

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

    .hero-phone-preview {
        min-height: auto;
    }

    .pricing-card,
    .mode-card {
        padding: 24px;
    }
}
