/*
 * Nevertheless Landing Page - Stylesheet
 * Author: Traci Lee
 * Version: 1.0
 * Description: Standalone CSS for Nevertheless Ebook Landing Page
 */

/* ==========================================
   RESET AND BASE STYLES
   ========================================== */

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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #d4af37;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --success-color: #38a169;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

/* ==========================================
   PRICE TAG STYLING
   ========================================== */

.price-tag {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-label {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin: 10px 0;
}

.price-note {
    display: block;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 10px;
}

.price-tag-large {
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.price-tag-large .price-label {
    color: var(--accent-color);
    font-size: 16px;
}

.price-large {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: white;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin: 15px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.price-tag-large .price-note {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.guarantee-note {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.8;
}

/* ==========================================
   CTA BUTTONS
   ========================================== */

.cta-button {
    display: inline-block;
    padding: 18px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    background: #f0c14b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-button-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 20px 60px;
    font-size: 22px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

.cta-button-large:hover {
    background: #f0c14b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.privacy-note {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 12px;
    opacity: 0.8;
}

/* ==========================================
   BOOK MOCKUP
   ========================================== */

.book-mockup {
    perspective: 1000px;
}

.book-cover {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.book-cover:hover {
    transform: rotateY(-10deg) rotateX(3deg);
}

.book-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.book-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.book-accent {
    height: 4px;
    width: 80px;
    background: var(--accent-color);
    margin: 24px auto 0;
    border-radius: 2px;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */

.problem-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */

.solution-section {
    padding: 100px 0;
    background: white;
}

.highlight-gold {
    color: var(--accent-color);
    font-weight: 900;
}

.solution-intro {
    text-align: center;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
    line-height: 1.8;
}

.story-box {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-left: 4px solid var(--accent-color);
    padding: 48px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.story-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-style: italic;
}

.story-box p {
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.nevertheless-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-color);
    text-align: center;
    margin: 32px 0;
    font-weight: 700;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

.benefits-section .section-title {
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.benefit-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.benefit-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* ==========================================
   INSIDE SECTION
   ========================================== */

.inside-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.inside-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.inside-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.inside-item:hover {
    transform: translateX(5px);
}

.checkmark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.inside-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ==========================================
   TESTIMONIAL SECTION
   ========================================== */

.testimonial-section {
    padding: 100px 0;
    background: white;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
}

.final-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.final-cta-text {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.7;
}

.urgency-text {
    font-size: 1.125rem;
    padding: 24px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    margin-top: 30px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 8px;
}

.footer-contact {
    font-size: 0.9rem;
    margin-top: 16px;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #f0c14b;
    text-decoration: underline;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .headline {
        font-size: 2.5rem;
    }

    .problem-grid,
    .benefits-grid,
    .inside-grid {
        grid-template-columns: 1fr;
    }

    .book-cover {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .headline {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .problem-section,
    .solution-section,
    .benefits-section,
    .inside-section,
    .testimonial-section,
    .final-cta-section {
        padding: 60px 0;
    }

    .story-box,
    .testimonial-box {
        padding: 24px;
    }

    .price {
        font-size: 48px;
    }

    .price-large {
        font-size: 56px;
    }

    .cta-button-large {
        padding: 16px 40px;
        font-size: 18px;
    }
    
    .final-cta-box h2 {
        font-size: 1.875rem;
    }
    
    .nevertheless-quote {
        font-size: 1.5rem;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

