:root {
    /* Colors - Green & Beige Palette */
    --bg-dark: #08140d;
    --bg-green: #0a1f16;
    --card-bg: rgba(20, 58, 42, 0.4);
    --card-border: rgba(211, 194, 158, 0.2);
    
    --text-main: #F5F5DC;
    --text-muted: #c2c2b3;
    
    --accent-gold: #D3C29E;
    --accent-glow: rgba(211, 194, 158, 0.5);
    --primary-btn: #1B4D36;
    --primary-btn-hover: #236546;
    
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.4;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Elements (Futuristic) */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27,77,54,0.8) 0%, rgba(8,20,13,0) 70%);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(211,194,158,0.15) 0%, rgba(8,20,13,0) 70%);
}

/* Typography & Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 40px 0;
    position: relative;
}

/* Glassmorphism Classes */
.glass-card {
    background: linear-gradient(135deg, rgba(20, 58, 42, 0.4) 0%, rgba(10, 31, 22, 0.2) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4), 0 0 20px 0 rgba(211, 194, 158, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(211, 194, 158, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

.hero .subtitle {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: fadeInDown 1s ease-out;
}

.hero .headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(to right, #FFF, var(--text-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--accent-gold);
    background: linear-gradient(120deg, var(--accent-gold), #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(211, 194, 158, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-gold), #b39d78);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(211, 194, 158, 0.3);
    border: none;
}

.primary-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(211, 194, 158, 0.5);
}

.primary-btn:hover::after {
    left: 120%;
}

.btn-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
}

/* Problem Section */
.problem .glass-card {
    text-align: center;
}

.problem h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.problem p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.quote {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 24px;
    color: #FFF;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    text-align: left;
}

/* Solution Section */
.solution-header {
    text-align: center;
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(211, 194, 158, 0.1);
    color: var(--accent-gold);
    border-radius: 30px;
    border: 1px solid rgba(211, 194, 158, 0.3);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.solution h2 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.solution-subtitle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(211, 194, 158, 0.4));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.feature-card p {
    color: var(--text-muted);
}

/* Bonuses Section */
.bonuses {
    text-align: center;
}

.bonuses h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.bonus-intro {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.accent-border {
    border: 1px solid rgba(211, 194, 158, 0.5);
    position: relative;
    overflow: hidden;
}

.accent-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.bonus-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(211, 194, 158, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.bonus-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.bonus-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Target Audience */
.checklist {
    list-style: none;
    margin-top: 24px;
}

.checklist li {
    font-size: 1.2rem;
    margin-bottom: 12px;
    padding-left: 40px;
    position: relative;
    color: var(--text-muted);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Closing */
.closing {
    text-align: center;
}

.closing h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.closing p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 16px;
}

.highlight-text {
    font-size: 1.5rem !important;
    color: #FFF !important;
    font-weight: 600;
    margin-top: 24px !important;
}

/* Offer Section */
.offer {
    text-align: center;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 64px 48px;
}

.premium-border {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 40px rgba(211, 194, 158, 0.15);
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.price-strike {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 16px;
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.value {
    font-size: 5rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.price-cash {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 48px;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 194, 158, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(211, 194, 158, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(211, 194, 158, 0);
    }
}

/* Scroll Reveals */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .headline {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .glass-card {
        padding: 32px 24px;
    }
    
    .solution h2, .bonuses h2, .closing h2, .pricing-header h2 {
        font-size: 2rem;
    }
    
    .value {
        font-size: 3.5rem;
    }
    
    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* Author Section */
.author-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.author-image {
    flex: 0 0 350px;
}

.profile-img {
    width: 100%;
    border-radius: 24px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(211, 194, 158, 0.2);
}

.author-info {
    flex: 1;
}

.author-info h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.author-info p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.social-link {
    display: inline-block;
    margin-top: 16px;
    color: #FFF;
    background: rgba(211, 194, 158, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(211, 194, 158, 0.3);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(211, 194, 158, 0.3);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .author-container {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        flex: 0 0 auto;
        width: 80%;
        margin: 0 auto;
    }
}

/* FAQ Section */
.faq-title {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 32px;
    text-align: center;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.faq-item {
    background: rgba(211, 194, 158, 0.05);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-gold);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-muted);
}

/* Anchor Text */
.anchor-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 40px;
    background: rgba(211, 194, 158, 0.1);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(211, 194, 158, 0.2);
}

@media (max-width: 480px) {
    .hero .headline {
        font-size: 2rem;
    }
    .value {
        font-size: 3.2rem;
    }
    .faq-title {
        font-size: 2rem;
    }
    .faq-question {
        font-size: 1.1rem;
    }
}
