@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #D4AF37;
    --primary-light: #FFD700;
    --secondary: #1E3A8A;
    --bg-dark: #0A0A0B;
    --bg-card: #151518;
    --text-white: #FFFFFF;
    --text-gray: #A1A1AA;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255, 255, 255, 0.05);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

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

section {
    padding: 100px 0;
    position: relative;
}

/* Utility */
.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(90deg, var(--primary), #B8860B);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(90deg, #FFD700, var(--primary));
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(30, 58, 138, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05), transparent);
    padding-top: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    /* box-shadow: var(--shadow); */
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Features/Content */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.8rem;
}

/* Content List */
.content-section {
    background: #0D0D0F;
}

.content-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.list-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.list-item i {
    color: var(--primary);
}

/* Bonus styling */
.bonus-card {
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: #000;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.75rem;
}

/* Social Proof */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-item:hover img {
    transform: scale(1.02);
}

/* Pricing Section */
.cta-box {
    background: linear-gradient(180deg, #151518 0%, #000 100%);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    border: 2px solid var(--primary);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.price-tag {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-white);
    margin: 20px 0;
    font-family: 'Outfit', sans-serif;
}

.price-tag span {
    font-size: 2rem;
    color: var(--primary);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.5rem;
}

/* Urgency Elements */
.urgency-bar {
    background: var(--primary);
    color: #000;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2000;
}

/* Social Proof Popup */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    border: 1px solid var(--primary);
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sales-popup.show {
    transform: translateX(0);
}

.sales-popup-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-disclaimer {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Responsive */
/* Payment Icons specifically */
.fab.fa-cc-paypal, .fab.fa-cc-visa, .fab.fa-cc-mastercard {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    transition: var(--transition);
}

.fab:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .content-list {
        grid-template-columns: 1fr;
    }
    .hero-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .price-tag {
        font-size: 3.5rem;
    }
    section {
        padding: 60px 0;
    }
}
