/* ========================================================
   Pricing Page Styles
   ======================================================== */

/* ── SVG Scene ── */
.pr-svg-scene {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr-svg-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(195,0,157,0.3));
}

/* ── Intro Banner ── */
.pr-banner {
    background: var(--navy);
    padding: 40px 0;
}
.pr-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.pr-banner-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.pr-banner-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.pr-banner-text strong { color: var(--magenta); }
.pr-banner-btn { flex-shrink: 0; }

/* ── Pricing Section ── */
.pr-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* ── Cards Grid ── */
.pr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}

/* ── Card ── */
.pr-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pr-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ── Card Header ── */
.pr-card-header {
    padding: 28px 28px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.pr-accent-magenta {
    background: linear-gradient(135deg, var(--navy) 0%, #2a0060 100%);
}
.pr-accent-cyan {
    background: linear-gradient(135deg, #01015E 0%, #003366 100%);
}
.pr-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pr-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pr-card-icon i { color: #fff; font-size: 20px; }
.pr-card-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

/* ── Price Badge ── */
.pr-price-badge {
    text-align: right;
    flex-shrink: 0;
}
.pr-from {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.pr-price {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}
.pr-price sup {
    font-size: 18px;
    font-weight: 700;
    vertical-align: super;
    line-height: 0;
}
.pr-per {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

/* ── Price List ── */
.pr-list {
    list-style: none;
    padding: 20px 28px 0;
    margin: 0;
    flex: 1;
}
.pr-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}
.pr-list li:last-child { border-bottom: none; }
.pr-item-name {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}
.pr-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    background: var(--bg-light);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Card Button ── */
.pr-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 28px 28px;
    padding: 13px 24px;
    background: linear-gradient(135deg, var(--magenta), #9c007e);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.pr-card-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.pr-card-btn-cyan {
    background: linear-gradient(135deg, #0077aa, #005588);
}

/* ── Trust Strip ── */
.pr-trust {
    background: var(--navy);
    padding: 50px 0;
}
.pr-trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.pr-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    border-right: 1px solid rgba(255,255,255,0.1);
}
.pr-trust-item:last-child { border-right: none; }
.pr-trust-item i {
    color: var(--magenta);
    font-size: 20px;
    flex-shrink: 0;
}

/* ── Custom CTA ── */
.pr-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #2a0060 100%);
    position: relative;
    overflow: hidden;
}
.pr-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(195,0,157,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.pr-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.pr-cta-inner .section-tag { margin-bottom: 16px; }
.pr-cta-inner h2 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.pr-cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.pr-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.pr-btn-outline {
    padding: 13px 28px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.pr-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .pr-grid { grid-template-columns: 1fr; }
    .pr-banner-inner { flex-direction: column; text-align: center; }
    .pr-trust-item { border-right: none; padding: 12px 20px; }
    .pr-cta-inner h2 { font-size: 34px; }
}
@media (max-width: 600px) {
    .pr-cta-inner h2 { font-size: 26px; }
    .pr-price { font-size: 30px; }
    .pr-card-header { flex-direction: column; gap: 16px; }
    .pr-price-badge { text-align: left; }
    .pr-trust-grid { flex-direction: column; align-items: flex-start; padding: 0 20px; }
}
