:root {
    --primary-color: #F5B900;
    --primary-dark: #cc9a00;
    --secondary-color: #111111;
    --text-color: #333333;
    --light-bg: #FAFAFA;
    --dark-bg: #0a0a0a;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'Manrope', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
    font-weight: 800;
}

a {
    text-decoration: none;
}

/* Notification Bar */
.notification-bar {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 185, 0, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    background: rgba(245, 185, 0, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.subheadline {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.trust-badge {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badge i {
    color: var(--primary-color);
}

.hero-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 550px;
}

.video-wrapper.with-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    z-index: -1;
    border-radius: inherit;
    animation: spin 4s linear infinite;
    /* Optional subtle border animation */
}

/* Feature Grid (Bento Style) */
.features-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    height: 300px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Benefits (Dark) */
.benefits-section {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonials Marquee */
.testimonials-section {
    padding: 60px 0;
    background: #f4f4f4;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.marquee-content img {
    height: 300px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    /* Align cards vertically centered */
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #f4f4f4;
    /* Light grey for basic card */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.best-seller {
    background: #ffffff;
    /* Keep best seller white */
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    /* Make it slightly larger */
    z-index: 2;
    box-shadow: 0 20px 50px rgba(245, 185, 0, 0.2);
}

.pricing-card.best-seller:hover {
    transform: scale(1.05) translateY(-10px);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.pricing-header {
    background: var(--secondary-color);
    color: #ccc;
    /* Lighter grey for basic package text */
    padding: 30px 20px;
}

.pricing-card.best-seller .pricing-header {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    /* Ensure complete package stays bright white */
    padding-top: 40px;
    /* Extra space for ribbon */
}

.pricing-header span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h2 {
    margin: 0;
    font-size: 2rem;
}

.pricing-body {
    padding: 40px 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.price-box {
    margin: 20px 0;
}

.price-box .old-price {
    display: block;
    text-decoration: line-through;
    color: #ff0000;
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-box .current-price {
    font-size: 5.5rem;
    font-weight: 800;
    color: #444;
    /* Discrete color for basic package */
    line-height: 1;
}

.price-box .currency {
    font-size: 2rem;
    vertical-align: super;
    color: #444;
    /* Discrete color for basic package */
}

.price-box .cents {
    font-size: 2rem;
    font-weight: 700;
    vertical-align: super;
    color: #444;
    /* Discrete color for basic package */
}

/* Best Seller (Complete Package) highlight */
.pricing-card.best-seller .current-price,
.pricing-card.best-seller .currency,
.pricing-card.best-seller .cents {
    color: #00b300;
    /* Success green for complete package */
}

/* Urgency Text */
.last-units {
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: flash 1.5s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pricing-footer {
    padding: 0 30px 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(245, 185, 0, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 185, 0, 0.6);
}

.btn-block {
    display: block;
    width: 100%;
}

.secure-checkout {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 50px 0;
}

.footer-logo {
    width: 80px;
    margin-bottom: 20px;
}

.legal-links {
    margin-top: 20px;
}

.legal-links a {
    color: #999;
    margin: 0 10px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Animation Classes */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 185, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 185, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 185, 0, 0);
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .mobile-reverse {
        flex-direction: column-reverse;
    }

    .hero-section {
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 30px;
    }

    .hero-cta-group {
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }

    .pricing-grid {
        flex-direction: column;
        /* Force vertical stacking */
        gap: 30px;
    }

    .pricing-card {
        min-width: unset;
        width: 100%;
        /* Use full width available in the container */
        max-width: 350px;
        /* Cap width for aesthetics */
        margin: 0 auto;
    }

    .pricing-card.best-seller {
        transform: scale(1);
    }
}