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

:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --accent-gold: #d4af37;
    --accent-gold-light: #f9d423;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f9d423 100%);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    --border-radius: 12px;
    --section-padding: 80px 20px;
    --max-width: 900px;
}

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

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

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
.highlight-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.cta-btn {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 40px auto;
    padding: 22px 30px;
    background: var(--gradient-gold);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Sections */
section {
    padding: var(--section-padding);
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 100px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero .subheadline {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ebook-mockup {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Lead Section (P.A.S) */
.lead-section {
    background: var(--card-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lead-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.lead-content .problem-tag {
    color: #ff4d4d;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

/* Mechanism Section */
.mechanism {
    text-align: center;
}

.mechanism h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Bullets */
.bullets-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.bullet-item {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.bullet-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
}

.bullet-item h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Offer Section */
.offer {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-color) 0%, #1a1505 100%);
}

.anchoring {
    text-decoration: line-through;
    color: #ff4d4d;
    font-size: 1.5rem;
}

.price-tag {
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    margin: 10px 0;
    display: block;
}

/* Bonuses */
.bonus-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: left;
}

.bonus-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* FAQ */
.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* Guarantee */
.guarantee {
    text-align: center;
    border: 2px dashed var(--accent-gold);
    padding: 40px;
    border-radius: var(--border-radius);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero .subheadline { font-size: 1.1rem; }
    .price-tag { font-size: 3.5rem; }
}
