:root {
    /* Cinematic Brand Palette */
    --color-bg-deep: #090518;
    --color-bg-darker: #0d0821;
    --color-bg-accent: #1a0b2e;

    --color-brand-pink: #FF4B91;
    --color-brand-purple: #8B5CF6;
    --color-brand-glow: rgba(139, 92, 246, 0.4);

    --color-text-white: #FFFFFF;
    --color-text-muted: #A1A1AA;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-deep);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 75, 145, 0.1) 0%, transparent 40%);
    color: var(--color-text-white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- BACKGROUND ORBS --- */
.bg-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.orb-1 {
    top: -100px;
    left: -100px;
    background: var(--color-brand-purple);
}

.orb-2 {
    bottom: -100px;
    right: -100px;
    background: var(--color-brand-pink);
}

/* --- HEADER --- */
header {
    text-align: center;
    padding: 30px 20px 10px;
}

.brand-logo img {
    height: 54px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    transition: all 0.4s ease;
}

.brand-logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

.hero-text {
    text-align: center;
    padding: 10px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(to bottom, #FFFFFF 30%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* --- CINEMATIC CARD --- */
.plans-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.plan-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 40px;
    padding: 48px 32px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    overflow: visible;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 50px 120px rgba(139, 92, 246, 0.15);
}

.badge-best-seller {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    white-space: nowrap;
    letter-spacing: 1px;
    overflow: hidden;
}

.badge-best-seller::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -60%;
    }

    20% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
}

.card-lifetime .plan-name {
    background: linear-gradient(135deg, #FFF 0%, var(--color-brand-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Pricing */
.plan-price-block {
    text-align: center;
    margin-bottom: 40px;
}

.price-anchor {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-final {
    font-size: 4rem;
    font-weight: 950;
    color: white;
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.billing-info {
    font-size: 1.1rem;
    color: var(--color-brand-pink);
    font-weight: 800;
    margin-top: 16px;
    display: block;
}

.savings-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-transform: uppercase;
}

/* Features List */
.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.icon-check {
    width: 24px;
    height: 24px;
    color: #10B981;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

/* Buttons */
.btn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    border-radius: 20px;
    font-weight: 900;
    text-decoration: none;
    font-size: 1.25rem;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-lifetime {
    background: linear-gradient(135deg, var(--color-brand-pink) 0%, var(--color-brand-purple) 100%);
    color: white;
    border: none;
}

.btn-lifetime::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-lifetime:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

.btn-lifetime:hover::after {
    opacity: 1;
}

/* --- TRUST FOOTER --- */
.trust-footer {
    padding: 30px 0;
    background: transparent;
    border-top: none;
    width: 100%;
}

.trust-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-white);
    text-align: center;
    margin-bottom: 24px;
    opacity: 0.8;
}

.trust-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.trust-item {
    flex: 1 1 140px;
    max-width: 180px;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 12px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--color-brand-purple);
    margin-bottom: 8px;
}

.trust-title {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.trust-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    line-height: 1.2;
}

/* --- RESPONSIVE --- */
@media (min-width: 992px) {
    .plans-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
    }

    .plan-card {
        flex: 0 0 440px;
    }

    .trust-footer {
        flex: 0 0 400px;
        padding: 0;
        margin-top: 40px;
    }

    .trust-section-title {
        text-align: left;
    }

    .trust-badges {
        justify-content: flex-start;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .previews-cta-container {
        justify-content: flex-start;
        margin-top: 32px;
    }
}

/* --- PREVIEWS CTA --- */
.previews-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
}

.btn-previews {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 14px;
    color: var(--color-brand-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-previews:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--color-brand-purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .plan-card {
        padding: 60px 24px;
    }

    .price-final {
        font-size: 3.5rem;
    }
}