/* Reset and Base Styles */
:root {
    --bg-darkest: #0f0f13;
    --bg-darker: #15151b;
    --bg-dark: #1b1b24;
    --accent-red: #e11d48;
    --accent-red-hover: #be123c;
    --accent-green: #10b981;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --glass-bg: rgba(30, 30, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darkest);
    color: var(--text-light);
}

body {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    padding: 20px;
    transition: opacity 0.4s ease;
}

.modal-content {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    border: 1px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(225, 29, 72, 0.3);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.modal-title span {
    color: var(--accent-red);
}

.modal-text {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-links {
    margin-top: 20px;
    font-size: 0.8rem;
}

.modal-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.modal-links a:hover {
    color: white;
}

/* Glassmorphism Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.bg-darker { background-color: var(--bg-darker); }
.bg-darkest { background-color: var(--bg-darkest); }
.text-center { text-align: center; }
.text-gray { color: var(--text-gray); }
.highlight-red { color: var(--accent-red); }
.w-full { width: 100%; display: block; }
.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 10px; }
.mb-4 { margin-bottom: 24px; }

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; }

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #9f1239);
    color: white;
    border: none;
    padding: 18px 25px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--glass-border);
    padding: 16px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.btn-sm {
    background: var(--accent-red);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.4);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(225, 29, 72, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.pulse-anim {
    animation: pulse 2.5s infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo span { color: var(--accent-red); }

/* Hero Section */
.hero {
    position: relative;
    padding: 300px 0 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Remove small lines */
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-darkest) 0%, rgba(15, 15, 19, 0.9) 15%, rgba(15, 15, 19, 0) 60%);
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(225, 29, 72, 0.4);
    filter: blur(120px);
    z-index: -1;
    border-radius: 50%;
}

.badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.headline {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-highlight {
    font-weight: 800;
    color: var(--accent-green);
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
}

.hero-actions {
    margin-top: 30px;
    padding: 0 20px;
}

/* Social Proof Toast */
.toast {
    position: fixed;
    bottom: 25px;
    left: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 500;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

.toast.hidden {
    transform: translateX(-150%);
    opacity: 0;
}

.toast-icon {
    font-size: 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 8px;
    border-radius: 50%;
    color: var(--accent-green);
}

.toast-body { flex: 1; }

.toast-body p { margin: 0; font-size: 0.85rem;}
.toast-name { font-weight: 600; color: white;}
.toast-action { color: var(--text-gray);}
.toast-time { font-size: 0.75rem; color: #64748b; font-weight: 600;}

/* Sections Typography */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.subtitle-small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
    display: block;
    margin-top: 8px;
}
.subtitle-margin {
    margin-bottom: 30px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
}

.icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.benefit-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Previews Section */
.preview-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.preview-card {
    border-radius: 16px;
    overflow: hidden;
}

.preview-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Aspect Ratio 4:3 for 1147x860 images */
    background: #000;
    transition: padding-top 0.3s ease;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

/* Subtle background patterns for missing images */
.bg-red-dark { background: radial-gradient(circle at center, #500e1f, #1b1b24); }
.bg-blue-dark { background: radial-gradient(circle at center, #0e1d50, #1b1b24); }
.bg-purple-dark { background: radial-gradient(circle at center, #3c0e50, #1b1b24); }



.tag-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.preview-info {
    padding: 20px;
    text-align: center;
}

.preview-info h4 { font-size: 1.1rem; margin-bottom: 5px;}
.preview-info p { font-size: 0.9rem; color: var(--text-gray);}

/* Pricing/Offer */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-dark);
    border: 2px solid var(--accent-red);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(225, 29, 72, 0.15);
    display: flex;
    flex-direction: column;
}

.pulse-glow {
    animation: glowBorder 4s infinite alternate;
}

@keyframes glowBorder {
    0% { box-shadow: 0 0 20px rgba(225, 29, 72, 0.2); }
    100% { box-shadow: 0 0 50px rgba(225, 29, 72, 0.6); }
}

.pricing-header {
    background: linear-gradient(to bottom, #2a0a13, var(--bg-dark));
    padding: 40px 20px 20px;
    text-align: center;
    position: relative;
}

.badge-best-seller {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 0 0 10px 10px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.currency { font-size: 1.8rem; font-weight: 700; margin-top: 10px;}
.value { font-size: 4rem; font-weight: 800; line-height: 1; margin: 0 5px;}
.period { font-size: 1rem; align-self: flex-end; margin-bottom: 8px; color: var(--text-gray);}

.price-sub { font-size: 0.9rem; color: #d1d5db; font-weight: 600;}

.pricing-body {
    padding: 0 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.check {
    color: var(--accent-green);
    margin-right: 10px;
    font-weight: 800;
}

.btn-checkout {
    background: var(--accent-green);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s;
}

.btn-checkout:active { transform: scale(0.97); }

.social-proof-small { font-size: 0.85rem; color: var(--text-gray);}
.stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px; display: block; margin-bottom: 5px;}

/* Guarantee section */
.guarantee-box {
    padding: 30px 20px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.shield-icon { font-size: 3rem; margin-bottom: 15px;}
.guarantee-box h3 { margin-bottom: 15px; font-size: 1.4rem;}
.guarantee-box p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6;}

/* FAQ Accordion */
.accordion { max-width: 700px; margin: 0 auto; }

.accordion-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
}

.accordion-header h4 { font-size: 1rem; padding-right: 15px; margin: 0;}

.acc-icon {
    font-size: 1.5rem;
    color: var(--accent-red);
    transition: transform 0.3s;
}

.accordion-item.active .acc-icon { transform: rotate(45deg); }

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-body {
    padding: 0 20px 20px;
    max-height: 300px; /* arbitrary height for animation */
}

.accordion-body p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover { color: white; }

.disclaimer { font-size: 0.75rem; opacity: 0.6; max-width: 600px; margin: 15px auto 0; line-height: 1.4; }


/* Responsive - Tablets and Small Desktops */
@media (min-width: 768px) {
    .headline { font-size: 4rem; }
    .hero { min-height: 90vh; padding-top: 380px; }
    .hero-bg { max-height: 800px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .preview-carousel { grid-template-columns: repeat(3, 1fr); }
    .glow-bg { width: 500px; height: 500px; }
    
    .pricing-grid { flex-direction: row; align-items: center; }
    .pricing-card { margin: 0; max-width: 400px; }
    .pricing-card.best-seller-card { transform: scale(1.08); z-index: 10; }
}
