/* ==================== VARIABLES ==================== */
:root {
    --primary: #2d7b5e;
    --primary-dark: #1f5a45;
    --secondary: #d97757;
    --accent: #f4a460;
    --dark: #1a1a1a;
    --light: #f9f9f9;
    --gray: #6b6b6b;
    --text: #2c2c2c;
    --border: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

/* ==================== TYPOGRAPHY ==================== */
h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark);
}

p {
    color: var(--gray);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==================== BUTTONS ==================== */
.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(45, 123, 94, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(45, 123, 94, 0.4);
}

.btn-cta:active {
    transform: translateY(-1px);
}

.btn-hero {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.15rem;
    width: 100%;
    max-width: 500px;
}

.btn-cta-final {
    background: linear-gradient(135deg, #e8885f 0%, #d97757 50%, #c85d42 100%) !important;
    box-shadow: 0 15px 40px rgba(217, 119, 87, 0.35),
                0 5px 15px rgba(217, 119, 87, 0.25) inset !important;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-final:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 50px rgba(217, 119, 87, 0.45),
                0 8px 20px rgba(217, 119, 87, 0.3) inset !important;
    background: linear-gradient(135deg, #f09970 0%, #e88a5f 50%, #d97757 100%) !important;
}

.btn-cta-final:hover::before {
    left: 100%;
}

.btn-cta-final:active {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(217, 119, 87, 0.4) !important;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, #f5f9f7 0%, #fff 100%);
    padding: 2rem 1rem 4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ebook-mockup {
    text-align: center;
}

.ebook-frame {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

.ebook-frame img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.ebook-label {
    position: absolute;
    top: 15px;
    right: -20px;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(15deg);
}

.ebook-desc {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 1.5rem;
    background: #f5f5f5;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary);
}

.pretitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text);
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
}

.cta-box {
    margin: 2rem 0;
}

.cta-microcopy {
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 1rem;
    line-height: 1.6;
}

.cta-microcopy strong {
    color: var(--primary);
    font-weight: 600;
}

.legal-warning {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-top: 1.5rem;
}

/* ==================== EBOOK DETAILS SECTION ==================== */
.ebook-details {
    background: #f5f9f7;
    padding: 4rem 1rem;
    border-top: 1px solid #e0e0e0;
}

.ebook-content {
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.9;
}

.ebook-content p {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.ebook-content p:first-child {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* ==================== PERSONA AGITATION SECTION ==================== */
.persona-agitation {
    background: #fff;
    padding: 4rem 1rem;
    border-top: 1px solid #e0e0e0;
}

.agitation-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.8;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.problem-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    text-align: center;
}

.problem-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.problem-item p {
    color: var(--text);
    margin: 0;
}

.problem-item strong {
    color: var(--secondary);
}

.agitation-closing {
    text-align: center;
    font-size: 1rem;
    color: var(--text);
    margin-top: 2rem;
    font-weight: 500;
}

/* ==================== WHAT YOU GET SECTION ==================== */
.what-you-get {
    background: linear-gradient(135deg, #e8f5f1 0%, #f0f9f7 100%);
    padding: 4rem 1rem;
}

.deliverables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.deliverable-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border);
    position: relative;
}

.deliverable-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.deliverable-card h3 {
    margin-top: 1rem;
    text-align: center;
    color: var(--dark);
}

.deliverable-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.deliverable-card li {
    padding: 0.5rem 0;
    color: var(--text);
    padding-left: 1.5rem;
    position: relative;
}

.deliverable-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: #fff;
    padding: 4rem 1rem;
    border-top: 1px solid #e0e0e0;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 3rem auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 0 1rem;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.step-arrow {
    flex: 0 0 auto;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 0.5rem;
}

/* ==================== FAQ ==================== */
.faq {
    background: linear-gradient(135deg, #e8f5f1 0%, #f0f9f7 100%);
    padding: 4rem 1rem;
}

.faq-list {
    max-width: 700px;
    margin: 2rem auto;
}

.faq-item {
    margin-bottom: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    user-select: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary:hover {
    background: #f0f0f0;
    color: var(--primary);
}

.faq-item[open] summary {
    background: var(--primary);
    color: white;
}

.faq-item p {
    padding: 1.25rem;
    color: var(--text);
    border-top: 2px solid var(--border);
    background: white;
    margin: 0;
}

/* ==================== CTA FINAL ==================== */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.cta-final h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 1rem;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ebook-frame img {
        max-width: 280px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .deliverables {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .btn-large {
        max-width: 100%;
    }

    .problem-list {
        grid-template-columns: 1fr;
    }

    .ebook-content p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .ebook-frame img {
        max-width: 250px;
    }

    .subheadline {
        font-size: 1rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    .deliverable-card {
        padding: 1.5rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .cta-final p {
        font-size: 1rem;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
