/* Premium Conversion Sections */

:root {
    --color-gold: #fbbf24;
    --color-gold-dim: #b4850b;
    --color-dark-surface: #1a1b26;
    --color-darker-surface: #0f1016;
}

/* Common Section Styles */
.premium-section {
    padding: 80px 4vw;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
    .premium-section {
        padding: 100px 60px;
    }
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.premium-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-subtitle {
    color: var(--color-text-dim);
    font-size: 1.1rem;
}

/* 1. Why Us? */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle crisp border */
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Card Entrance Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    /* Initial state */
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}


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

/* Hover State - Cinematic Lift */
@media (min-width: 1024px) {
    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    }
}

.feature-icon {
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: url(#gold-gradient);
    /* Fallback */
    stroke: var(--color-gold-dim);
    stroke-width: 1.5;
    transition: stroke 0.3s, filter 0.3s;
    /* Create a gradient look if simple stroke doesn't support specific gradient defs without SVG defs */
    color: #cbd5e1;
    /* Use currentcolor */
    stroke: currentColor;
    opacity: 0.8;
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    stroke: #fff;
    opacity: 1;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.01em;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 300px;
    margin: 0 auto;
}

/* Value Section Polish */
.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.15rem;
    padding: 24px;
    /* More breathing room */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-radius: 12px;
    border-left: 2px solid var(--color-primary);
    /* Accent */
}

.check-icon {
    color: var(--color-primary);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* 3. Feedback */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(145deg, #1e1e24, #16171d);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.reviewer-role {
    font-size: 0.9rem;
    color: var(--color-text-dim);
}

.stars {
    color: var(--color-gold);
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
}

/* 4. Plans (Cinematic Update) */
.plans-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    /* Right card slightly larger */
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Card Variables specific to section if not in root */
.premium-section {
    --bg-card-cinematic: #121212;
    --accent-purple: #8b5cf6;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px -5px rgba(139, 92, 246, 0.3);
    --radius-lg: 20px;
}

/* Common Card Styles */
.plan-card {
    background: var(--bg-card-cinematic, #121212);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: none;
    /* Reset old shadow */
}

.plan-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.card-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0;
    /* Reset */
}

.price-suffix {
    font-size: 1rem;
    color: var(--color-text-dim);
    font-weight: 400;
}

.billing-info {
    font-size: 0.875rem;
    color: var(--color-text-dim);
    margin-top: 0.5rem;
}

/* Monthly Card */
.card-monthly {
    background: rgba(18, 18, 18, 0.6);
}

.btn-monthly {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-monthly:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

/* Lifetime Card */
.card-lifetime {
    background: linear-gradient(145deg, #1a1a1a, #151515);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    transform: scale(1.02);
    z-index: 10;
    padding: 3.5rem 2.5rem;
}

.card-lifetime:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.2);
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    white-space: nowrap;
}

.btn-lifetime {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    background: #fff;
    color: black;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.btn-lifetime:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: white;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    /* Ensure left align */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #e4e4e7;
}

.feature-item.highlight {
    color: var(--color-gold);
    font-weight: 600;
}

.icon-check {
    width: 20px;
    height: 20px;
    fill: currentColor;
    opacity: 0.7;
}

.card-lifetime .icon-check {
    color: var(--accent-purple);
    opacity: 1;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* Responsive Plans */
@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 0.5rem;
    }

    .card-lifetime {
        transform: none;
        order: -1;
    }

    .card-lifetime:hover {
        transform: none;
    }

    .best-seller-badge {
        top: -12px;
    }
}

/* 5. Feedback Carousel (Restored) */
.feedback-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 -4vw;
    /* Break container padding */
    padding: 0 4vw;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .feedback-carousel-container {
        margin: 0 -60px;
        padding: 0 60px;
    }
}

.feedback-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 40px;
    /* Space for scrollbar/shadow */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 20px;
    padding-right: 20px;
}

.feedback-carousel::-webkit-scrollbar {
    display: none;
}

.feedback-carousel .review-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
}

@media (max-width: 768px) {
    .feedback-carousel .review-card {
        flex: 0 0 280px;
    }
}

.carousel-fade-left,
.carousel-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--color-darker-surface, #0f1016), transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--color-darker-surface, #0f1016), transparent);
}

/* 6. CTA & Guarantees (Restored) */
.cta-wrapper {
    background: #0b0c10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('../images/807326532804788224.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-btn {
    font-size: 1.1rem;
    padding: 14px 32px;
}

.guarantees-section {
    background: #0b0c10;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantees-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #eee;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.guarantee-icon {
    width: 16px;
    height: 16px;
    fill: #4ade80;
}

@media (max-width: 768px) {
    .cta-wrapper .cta-section {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .guarantees-section {
        padding-top: 0;
        padding-bottom: 40px;
        background: transparent;
    }
}

/* 7. Sales Notification (Restored) */
.sales-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    max-width: 340px;
    background: rgba(22, 23, 29, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    font-size: 14px;
}

.sales-notification.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.notif-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding-right: 20px;
}

.notif-icon-wrapper {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon {
    width: 20px;
    height: 20px;
    color: #4ade80;
}

.notif-text {
    flex-grow: 1;
    line-height: 1.4;
}

.notif-title {
    font-weight: 600;
    color: var(--color-text, #fff);
    margin-bottom: 2px;
}

.notif-desc {
    color: var(--color-text-dim, #ccc);
    font-size: 0.85rem;
}

.close-notification {
    position: absolute;
    top: -5px;
    right: -10px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
}


/* Detail Page Premium Updates */
.detail-info-card {
    background: rgba(15, 16, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    padding: 32px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Top glow */
}

@media (min-width: 768px) {
    .detail-info-card {
        padding: 48px;
        background: rgba(15, 16, 22, 0.4);
        /* More transparent on desktop */
    }
}

/* Play icon removed as per premium design requirements */


/* Value Section Polish */
.value-section {
    background: radial-gradient(circle at center, rgba(30, 31, 40, 0.8) 0%, rgba(10, 11, 15, 1) 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Texture/Grain Overlay (Using vignette) */
.value-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.6) 90%);
    pointer-events: none;
    z-index: 1;
}

.value-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s, transform 0.3s;
    /* Animation */
    opacity: 0;
    animation: fadeSlideRight 0.8s ease-out forwards;
}

.value-item:nth-child(1) {
    animation-delay: 0.1s;
}

.value-item:nth-child(2) {
    animation-delay: 0.2s;
}

.value-item:nth-child(3) {
    animation-delay: 0.3s;
}

.value-item:nth-child(4) {
    animation-delay: 0.4s;
}

.value-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.value-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.value-text {
    flex: 1;
}

.value-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.value-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .value-item {
        padding: 16px;
        align-items: flex-start;
    }

    .value-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .check-icon {
        width: 18px;
        height: 18px;
    }

    .value-text h3 {
        font-size: 1.05rem;
    }
}