﻿@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500&display=swap');

/* ── Base ── */
.pr-container {
    max-width: 1100px;   /* আগে বেশি ছিল */
    margin: 0 auto;
    padding: 0 20px;
}

/* ══ HERO ══ */
.pr-hero {

    background: #040711;
    padding: 100px 50px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/*.pr-hero-glow1 {
    position: absolute;
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(123,94,248,0.13) 0%, transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.pr-hero-glow2 {
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0,229,255,0.07) 0%, transparent 70%);
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}*/

.pr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123,94,248,0.6) 35%, rgba(0,229,255,0.6) 65%, transparent);
}

.pr-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.pr-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00e5ff;
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 100px;
    padding: 6px 18px;
    background: rgba(0,229,255,0.05);
    margin-bottom: 24px;
}

    .pr-tag::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #00e5ff;
        animation: pr-pulse 2s infinite;
    }

@keyframes pr-pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.6);
    }
}

.pr-hero-h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}

.pr-grad {
    background: linear-gradient(135deg, #00e5ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pr-hero-sub {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* ══ DURATION TOGGLE ══ */
.pr-toggle-wrap {
    background: #040711;
    padding: 0 32px 48px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.pr-toggle {
    display: flex;
    gap: 60px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.pr-dur-btn {
    position: relative;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

    .pr-dur-btn:hover {
        color: #c4c9d4;
        background: rgba(255,255,255,0.04);
    }

    .pr-dur-btn.active {
        background: linear-gradient(135deg, rgba(123,94,248,0.25), rgba(0,229,255,0.15));
        color: #e8eaf6;
        border: 1px solid rgba(0,229,255,0.2);
    }

.pr-dur-save {
    position: absolute;
    top: -10px;
    right: -6px;
    font-size: 0.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7b5ef8, #00e5ff);
    color: #fff;
    padding: 2px 7px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

/* ══ CARDS SECTION ══ */
.pr-cards-section {
    background: #060a14;
    padding: 0 0 80px;
}

.pr-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

/* ══ CARD ══ */
.pr-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

    .pr-card[data-color="cyan"] {
        --ac: #00e5ff;
        --acr: 0,229,255;
    }

    .pr-card[data-color="purple"] {
        --ac: #a78bfa;
        --acr: 167,139,250;
    }

    .pr-card[data-color="pink"] {
        --ac: #f472b6;
        --acr: 244,114,182;
    }

    .pr-card[data-color="green"] {
        --ac: #34d399;
        --acr: 52,211,153;
    }

    .pr-card[data-color="amber"] {
        --ac: #f59e0b;
        --acr: 245,158,11;
    }

    .pr-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--ac), transparent);
        opacity: 0.5;
    }

    .pr-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: radial-gradient(ellipse at 50% -10%, rgba(var(--acr), 0.07) 0%, transparent 60%);
        pointer-events: none;
    }

    .pr-card:hover {
        transform: translateY(-8px);
        border-color: rgba(var(--acr), 0.3);
        box-shadow: 0 24px 60px rgba(var(--acr), 0.1);
    }

/* Featured card */
.pr-card--featured {
    background: rgba(167,139,250,0.05);
    border-color: rgba(167,139,250,0.25);
    transform: scale(1.03);
}

    .pr-card--featured:hover {
        transform: scale(1.03) translateY(-8px);
    }

/* ── Badge ── */
.pr-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.68rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.pr-badge--purple {
    background: rgba(167,139,250,0.15);
    color: #a78bfa;
    border: 1px solid rgba(167,139,250,0.3);
}

.pr-badge--green {
    background: rgba(52,211,153,0.12);
    color: #34d399;
    border: 1px solid rgba(52,211,153,0.25);
}

.pr-badge--cyan {
    background: rgba(0,229,255,0.1);
    color: #00e5ff;
    border: 1px solid rgba(0,229,255,0.25);
}

/* ── Card Header ── */
.pr-card-header {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pr-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--acr), 0.1);
    border: 1px solid rgba(var(--acr), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .pr-card-icon i {
        font-size: 1.25rem;
        color: var(--ac);
    }

.pr-card-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #e8eaf6;
    margin: 0 0 8px;
    line-height: 1.3;
}

.pr-card-sub {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── Price Block ── */
.pr-price-wrap {
    margin-bottom: 28px;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pr-price-block {
    display: none;
    flex-direction: column;
    gap: 4px;
}

    .pr-price-block.active {
        display: flex;
    }

.pr-original {
    font-size: 0.85rem;
    color: #4b5563;
    text-decoration: line-through;
}

.pr-price-row {
    display: flex;
    align-items: flex-start;
    line-height: 1;
    gap: 2px;
}

.pr-currency {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ac);
    margin-top: 6px;
}

.pr-amount {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pr-per {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 6px;
}

/* Custom / Software price */
.pr-price-custom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pr-price-custom-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f472b6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.pr-price-custom-sub {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Fixed price */
.pr-price-fixed {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}

.pr-price-note {
    display: block;
    font-size: 0.78rem;
    color: #6b7280;
    margin-top: 6px;
}

/* ── Features ── */
.pr-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex: 1;
}

    .pr-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.85rem;
        color: #9ca3af;
    }

        .pr-features li i.fa-check-circle {
            color: var(--ac);
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .pr-features li i.fa-times-circle {
            color: #374151;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

.pr-feat--no {
    opacity: 0.45;
    text-decoration: line-through;
}

/* ── CTA Button ── */
.pr-card-cta {
    position: relative;
    z-index: 1;
}

.pr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.pr-btn--primary {
    background: linear-gradient(135deg, #7b5ef8, #00e5ff);
    color: #fff;
}

    .pr-btn--primary:hover {
        opacity: 0.88;
        transform: translateY(-2px);
        color: #fff;
        box-shadow: 0 10px 30px rgba(123,94,248,0.3);
    }

.pr-btn--outline {
    background: rgba(var(--acr), 0.08);
    color: var(--ac);
    border: 1px solid rgba(var(--acr), 0.25);
}

    .pr-btn--outline:hover {
        background: rgba(var(--acr), 0.16);
        color: var(--ac);
        transform: translateY(-2px);
    }

.pr-btn--whatsapp {
    background: rgba(37,211,102,0.1);
    color: #25d366;
    border: 1px solid rgba(37,211,102,0.25);
    width: auto;
}

    .pr-btn--whatsapp:hover {
        background: rgba(37,211,102,0.2);
        color: #25d366;
    }

/* ══ NOTE BAR ══ */
.pr-note-bar {
    background: rgba(0,229,255,0.04);
    border-top: 1px solid rgba(0,229,255,0.1);
    border-bottom: 1px solid rgba(0,229,255,0.1);
    padding: 18px 0;
    margin-top: 40px;
}

.pr-note-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
    flex-wrap: wrap;
    text-align: center;
}

    .pr-note-inner i {
        color: #00e5ff;
    }

    .pr-note-inner strong {
        color: #9ca3af;
    }

    .pr-note-inner a {
        color: #00e5ff;
        text-decoration: none;
        margin-left: 8px;
    }

        .pr-note-inner a:hover {
            text-decoration: underline;
        }

/* ══ CTA ══ */
.pr-cta {
    background: #040711;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .pr-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(123,94,248,0.5), rgba(0,229,255,0.5), transparent);
    }

.pr-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(123,94,248,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.pr-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.pr-cta-h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}

.pr-cta-sub {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 36px;
}

.pr-cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
    .pr-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr-card--featured {
        transform: none;
    }

        .pr-card--featured:hover {
            transform: translateY(-8px);
        }
}

@media (max-width: 640px) {
    .pr-cards-grid {
        grid-template-columns: 1fr;
    }

    .pr-toggle {
        gap: 4px;
    }

    .pr-dur-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .pr-cta-h2 {
        font-size: 1.7rem;
    }

    .pr-hero-h1 {
        font-size: 1rem;
    }
}
