:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #060609;
    --bg-darkest: #030305;
    --accent-red: #e63946;
    --accent-red-dark: #c72935;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.sticky {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.logo span {
    color: var(--accent-red);
}

/* Buttons */
.btn-sm,
.btn-primary,
.btn-secondary,
.btn-checkout {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-sm {
    background: var(--accent-red);
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    background: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-checkout {
    background: var(--accent-red);
    color: white;
    width: 100%;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.btn-checkout:hover {
    background: var(--accent-red-dark);
    transform: translateY(-2px);
}

/* Animations */
.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-glow {
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(230, 57, 70, 0.6);
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    max-width: 500px;
    padding: 40px;
    text-align: center;
    margin: 20px;
}

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

.modal-title span {
    color: var(--accent-red);
}

.modal-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.modal-links {
    margin-top: 20px;
}

.modal-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
}

.modal-links a:hover {
    color: var(--text-white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}

.glow-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.badge {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-red {
    color: var(--accent-red);
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.price-highlight {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.4rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease;
}

.toast.hidden {
    display: none;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-body {
    font-size: 0.9rem;
}

.toast-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.toast-action {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.toast-time {
    color: var(--text-gray);
    font-size: 0.75rem;
}

/* Section Padding */
.section-padding {
    padding: 80px 20px;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.bg-darkest {
    background-color: var(--bg-darkest);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.subtitle-small {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 10px;
}

.subtitle-margin {
    margin-bottom: 40px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.icon-wrap {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Preview Section */
.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.mt-4 {
    margin-top: 40px;
}

.mb-2 {
    margin-bottom: 20px;
}

.preview-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.preview-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
}

.preview-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.cursor-pointer {
    cursor: pointer;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.3s ease;
}

.poster-overlay::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(230, 57, 70, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}

.hidden-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.preview-info {
    padding: 20px;
}

.preview-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.preview-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.best-seller-card {
    border: 2px solid var(--accent-red);
    position: relative;
}

.badge-best-seller {
    background: var(--accent-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
}

.price .value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
}

.price-sub {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing-body {
    padding: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.check {
    color: var(--accent-red);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 20px;
}

.mt-2 {
    margin-top: 10px;
}

.text-center {
    text-align: center;
}

.text-gray {
    color: var(--text-gray);
}

.social-proof-small {
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

/* Guarantee Section */
.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
}

.shield-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.guarantee-box p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.acc-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .acc-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.accordion-body p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
}

.footer-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-white);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 15px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .preview-carousel {
        grid-template-columns: 1fr;
    }

    .toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .price .value {
        font-size: 3rem;
    }
}
