/* Lead Magnet Shared Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3D4A7A;
    --primary-light: #4F5D8E;
    --accent: #7B8FD4;
    --bg-white: #FAF8FC;
    --bg-light: #E8E4F0;
    --text-primary: #1a1a2e;
    --text-secondary: #5C6898;
    --text-muted: #8B93B8;
    --border-color: #D4D0E4;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.hero-section {
    padding: 7rem 5% 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e8ebf4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge.green {
    background: var(--success);
    color: white;
}

.badge.blue {
    background: var(--primary);
    color: white;
}

.badge.orange {
    background: var(--warning);
    color: white;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.book-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.book-cover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

.book-cover h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.book-cover p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.book-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.book-stats .stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary);
}

.book-stats .stat span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(61, 74, 122, 0.15);
}

.form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    text-align: center;
}

/* Content Section */
.content-section {
    display: none;
    padding: 6rem 5% 4rem;
    background: var(--bg-light);
}

.content-container {
    max-width: 850px;
    margin: 0 auto;
}

.success-header {
    text-align: center;
    margin-bottom: 2rem;
}

.success-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.success-header p {
    color: var(--text-secondary);
}

.playbook {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pb-cover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.pb-cover h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pb-section {
    padding: 2rem;
    border-bottom: 1px solid var(--bg-light);
}

.pb-section:last-child {
    border-bottom: none;
}

.pb-section h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.pb-section p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.pb-section ul,
.pb-section ol {
    padding-left: 1.25rem;
    color: var(--text-secondary);
}

.pb-section li {
    margin-bottom: 0.5rem;
}

.archetype,
.phase,
.template-box {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cta-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-box h3 {
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--primary-light);
}

.print-btn {
    background: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-left: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

footer {
    padding: 1.5rem 5%;
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.85rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media print {

    .navbar,
    footer,
    .cta-box,
    .form-card,
    .hero-section {
        display: none !important;
    }

    .content-section {
        display: block !important;
        padding: 0;
    }

    .playbook {
        box-shadow: none;
    }
}