/* CSS Variables */
:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --dark-green: #1a472a;
    --darker-green: #0f2d1a;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray-dark: #1f2937;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.cta-button-small {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    background: var(--gold);
    color: var(--black);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1593453917438-14f60d0d2357');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(26, 71, 42, 0.8), var(--black));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.price-display {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-display .currency {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: -10px;
}

.price-display .amount {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

/* Product Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--white);
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.feature-list li:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.check-icon {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(to bottom, var(--black), var(--darker-green));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--black);
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Slogan Section */
.slogan-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1593453917438-14f60d0d2357');
    background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slogan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 71, 42, 0.95), rgba(26, 71, 42, 0.8));
}

.slogan-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 24px;
}

.slogan-content blockquote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--white);
}

/* Final CTA */
.final-cta {
    background: var(--black);
}

.price-tag-large {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 30px 0;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--darker-green);
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; transition-delay: 1.0s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero h2 { font-size: 1.2rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .slogan-content blockquote { font-size: 1.8rem; }
    .price-display .amount { font-size: 3rem; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero h2 {
        font-size: 1rem;
    }
    .cta-button {
        padding: 12px 32px;
        font-size: 1rem;
    }
    .price-display .amount {
        font-size: 2.5rem;
    }
}