:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --gold: #D4AF37;
    --gold-light: #F9E4B7;
    --gold-dark: #AA8C2C;
    --white: #ffffff;
    --black: #000000;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-highlight: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cinzel', serif;
    
    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TypographyUtils */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
}

.highlight {
    color: var(--gold);
    font-style: italic;
}

.highlight-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
    font-weight: bold;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--black);
}

.cta-button:hover::after {
    opacity: 1;
}

.big-cta {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Animation Utilities */
.pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 500px; /* Base height */
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.hero-img-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 40%);
    z-index: 2;
}

/* SOCIAL PROOF */
.social-proof {
    padding: 4rem 0;
    border-bottom: 1px solid var(--glass-highlight);
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary));
}

.proof-header {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.testimonial-author .name {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-author .age {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* PAIN POINTS */
.pain-points {
    padding: 6rem 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.pain-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pain-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 3px solid #ff4444;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease;
}

.pain-item:hover {
    transform: translateX(10px);
}

.pain-item .icon {
    font-size: 1.5rem;
}

.pain-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* METHOD */
.method {
    padding: 6rem 0;
    position: relative;
}

.method::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.method-card {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.glow-border {
    position: relative;
}

.method-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.method-desc {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.method-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.method-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-highlight);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.method-list .check {
    color: var(--gold);
    font-weight: bold;
}

.method-footer {
    font-weight: 300;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* DELIVERABLES */
.deliverables {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.check-item {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--glass-highlight);
    transition: transform 0.3s ease;
}

.check-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.check-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.check-text {
    font-weight: 600;
    color: var(--white);
}

/* OFFER */
.offer {
    padding: 6rem 0;
    position: relative;
}

.offer-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-color: var(--gold);
}

.glow-strong {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
}

.scarcity-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ff4444;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.5rem;
    text-transform: uppercase;
}

.offer h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.new-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    font-family: var(--font-heading);
}

.payment-info {
    font-size: 1rem;
    color: var(--text-color);
    margin-top: 0.5rem;
}

.anchor-text {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.payment-methods {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* GUARANTEE */
.guarantee {
    padding: 4rem 0;
}

.guarantee-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-highlight);
    border-radius: var(--radius-md);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* SCARCITY FOOTER */
.scarcity-footer {
    background: #2a2a2a;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #ff4444;
}

.alert-box h4 {
    color: #ff4444;
    margin-bottom: 0.5rem;
}

/* FOOTER */
footer {
    padding: 4rem 0;
    background: var(--black);
    border-top: 1px solid var(--glass-highlight);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding-top: 8rem;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 3rem;
    }
    
    .pain-item {
        flex-direction: column;
        text-align: center;
    }
}
