/* V5 Book-First Landing Page Styles */
/* Philosophy: Simple, clear, focused on the book */

/* Reset and base */
.v5-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

.v5-page * {
    box-sizing: border-box;
}

/* Container */
.v5-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
.v5-section {
    padding: 60px 0;
}

.v5-section-alt {
    background: #f8f9fa;
}

.v5-section-cta {
    background: #007140;
    color: white;
    text-align: center;
}

.v5-section-final {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 80px 0;
}

/* Hero */
.v5-hero {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f0f7f4 0%, white 100%);
}

.v5-title {
    font-size: 3rem;
    font-weight: 700;
    color: #007140;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.v5-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin: 0 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.v5-book-image {
    margin: 0 auto 40px;
    max-width: 400px;
}

.v5-book-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Section titles */
.v5-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 32px;
    text-align: center;
}

.v5-section-cta .v5-section-title {
    color: white;
}

/* Lists */
.v5-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v5-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.v5-list li:last-child {
    border-bottom: none;
}

.v5-list li strong {
    display: block;
    font-size: 1.1rem;
    color: #007140;
    margin-bottom: 4px;
}

.v5-list li span {
    color: #666;
}

/* Two column layout */
.v5-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .v5-two-column {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.v5-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 16px;
}

.v5-column-title.v5-green {
    color: #007140;
}

.v5-column-title.v5-gray {
    color: #666;
}

/* Check and X lists */
.v5-check-list,
.v5-x-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v5-check-list li,
.v5-x-list li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.v5-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007140;
    font-weight: bold;
}

.v5-x-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #999;
    font-weight: bold;
}

/* Author section */
.v5-author {
    max-width: 650px;
    margin: 0 auto;
}

.v5-author p {
    margin: 0 0 20px;
    font-size: 1.1rem;
}

.v5-author p:last-child {
    margin-bottom: 0;
}

/* Price box */
.v5-price-box {
    margin-bottom: 32px;
}

.v5-price {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
}

.v5-price-note {
    font-size: 1rem;
    opacity: 0.9;
    margin: 8px 0 0;
}

/* CTA Button */
.v5-cta-button {
    display: inline-block;
    background: #007140;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.v5-cta-button:hover {
    background: #005a33;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.v5-section-cta .v5-cta-button {
    background: white;
    color: #007140;
}

.v5-section-cta .v5-cta-button:hover {
    background: #f0f0f0;
    color: #007140;
}

.v5-section-final .v5-cta-button {
    background: #007140;
}

.v5-cta-large {
    padding: 20px 48px;
    font-size: 1.25rem;
}

/* Bonuses */
.v5-bonuses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .v5-bonuses {
        grid-template-columns: 1fr;
    }
}

.v5-bonus {
    text-align: center;
    padding: 24px;
}

.v5-bonus h3 {
    font-size: 1.25rem;
    color: #007140;
    margin: 0 0 12px;
}

.v5-bonus p {
    margin: 0;
    color: #666;
}

/* Guarantee */
.v5-guarantee {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.v5-guarantee h3 {
    font-size: 1.5rem;
    color: #007140;
    margin: 0 0 12px;
}

.v5-guarantee p {
    margin: 0;
    color: #666;
}

/* Final headline */
.v5-final-headline {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .v5-title {
        font-size: 2.25rem;
    }

    .v5-subtitle {
        font-size: 1.1rem;
    }

    .v5-section-title {
        font-size: 1.5rem;
    }

    .v5-hero {
        padding: 60px 0 40px;
    }

    .v5-section {
        padding: 48px 0;
    }

    .v5-price {
        font-size: 3rem;
    }

    .v5-cta-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .v5-final-headline {
        font-size: 1.5rem;
    }
}
