/* ============================================================
   price.css — Modern Pricing Page (Clean Light Theme)
   ============================================================ */

.price-page {
    width: 100%;
    font-family: 'Exo 2', 'Rajdhani', system-ui, sans-serif;
}

/* ── Hero ── */
.price-hero {
    padding: 120px 48px 60px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}
.price-hero::after {
    content: '';
    position: absolute;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(228, 14, 24, 0.03) 0%, rgba(249, 249, 249, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.price-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.price-hero-kicker {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(228, 14, 24, 0.08);
    color: #E40E18;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.price-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.price-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Plan Card Section ── */
.price-plan-section {
    padding: 0 48px 50px;
    background: #f9f9f9;
}
.price-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.price-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 24px;
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}
.price-card.recommended {
    border: 2px solid #E40E18;
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(228,14,24,0.12);
}
.price-card.recommended:hover {
    transform: translateY(-8px) scale(1.03);
}
.price-card-badge {
    position: absolute;
    top: 24px;
    right: -35px;
    background: #E40E18;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 160px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(228,14,24,0.3);
    z-index: 2;
}
.price-card-header {
    margin-bottom: 24px;
    text-align: center;
}
.price-card-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
}
.price-card-desc {
    font-size: 1.05rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
    min-height: 3em;
}

/* ── Pricing V2 ── */
.price-card-pricing-v2 {
    margin-bottom: 32px;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.price-value-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}
.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}
.price-cents {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}
.price-period {
    font-size: 0.9rem;
    color: #999;
    margin-left: 4px;
}
.price-savings {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 14px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ── CTA Button ── */
.price-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #E40E18;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 16px rgba(228,14,24,0.2);
    margin-bottom: 32px;
}
.price-card-cta:hover {
    background: #c50d15;
    box-shadow: 0 6px 24px rgba(228,14,24,0.3);
    transform: translateY(-1px);
}
.price-card-cta svg {
    transition: transform 0.3s ease;
}
.price-card-cta:hover svg {
    transform: translateX(4px);
}

/* ── Features List ── */
.price-card-features {
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
}
.price-features-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
}
.price-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.price-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.4;
}
.price-features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── CTA Banner ── */
.price-cta-banner {
    padding: 60px 48px;
    background: #f9f9f9;
}
.price-cta-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.price-cta-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.price-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #E40E18;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Exo 2','Rajdhani',system-ui,sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 16px rgba(228,14,24,0.2);
    white-space: nowrap;
    flex-shrink: 0;
}
.price-cta-button:hover {
    background: #c50d15;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(228,14,24,0.3);
}
.price-cta-button svg {
    transition: transform 0.3s ease;
}
.price-cta-button:hover svg {
    transform: translateX(4px);
}

/* ── Services Section ── */
.price-services-section {
    padding: 0px 48px 80px;
    background: #f9f9f9;
}
.price-services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 32px;
    text-align: center;
}
.price-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 24px;
}
.price-service-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.price-service-card:hover {
    border-color: #d5d5d5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.price-service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 14, 24, 0.06);
    border-radius: 10px;
    margin-bottom: 14px;
}
.price-service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
}
.price-service-card p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}
.price-services-note {
    font-size: 0.82rem;
    color: #999;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .price-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    .price-card.recommended {
        transform: none;
    }
    .price-card.recommended:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .price-hero {
        padding: 100px 24px 40px;
    }
    .price-hero-title {
        font-size: 2.2rem;
    }
    .price-plan-section {
        padding: 0 20px 60px;
    }
    .price-card-wrapper {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 40px;
    }
    .price-card {
        padding: 40px 24px;
    }
    .price-cta-banner {
        padding: 40px 24px;
    }
    .price-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .price-services-section {
        padding: 40px 24px 60px;
    }
    .price-services-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .price-hero-title {
        font-size: 1.8rem;
    }
    .price-hero-subtitle {
        font-size: 1rem;
    }
    .price-amount {
        font-size: 2.8rem;
    }
}