/* ========================================
   GUIDE / PDF LANDING PAGE STYLES
   ======================================== */

/* Hero */
.guide-hero {
    padding: calc(100px + 3rem) 0 3rem;
    background: var(--bg-page);
}
.guide-hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.guide-badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light, #818cf8);
    margin-bottom: 1rem;
}
.guide-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.guide-subtitle {
    font-size: 1.15rem;
    color: var(--primary-light, #818cf8);
    margin-bottom: 1rem;
    font-weight: 500;
}
.guide-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Cover mockup */
.guide-hero-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.guide-cover {
    background: var(--bg-secondary, #ffffff);
    border: 1px solid var(--neutral-200, #e2e8f0);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.guide-cover-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}
.guide-cover-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.guide-cover-author {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form */
.guide-form {
    background: var(--bg-secondary, #ffffff);
    border: 1px solid var(--neutral-200, #e2e8f0);
    border-radius: 1rem;
    padding: 1.5rem;
}
.guide-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}
.guide-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary, #f1f5f9);
    border: 1px solid var(--neutral-200, #e2e8f0);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    outline: none;
    transition: border-color 0.2s;
}
.guide-input:focus { border-color: var(--primary-color); }
.guide-input::placeholder { color: var(--text-muted); }
.guide-submit-btn {
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.guide-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.guide-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Highlights */
.guide-highlights {
    padding: 4rem 0;
    background: var(--bg-page);
}
.guide-highlights h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--bg-secondary, #ffffff);
    border: 1px solid var(--neutral-200, #e2e8f0);
    border-radius: 0.75rem;
}
.highlight-number {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
    opacity: 0.8;
}
.highlight-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    padding-top: 0.3rem;
}

/* Other guides */
.guide-other {
    padding: 3rem 0 4rem;
    background: var(--bg-page);
    border-top: 1px solid var(--neutral-200, #e2e8f0);
}
.guide-other h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.other-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.other-guide-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary, #ffffff);
    border: 1px solid var(--neutral-200, #e2e8f0);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}
.other-guide-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}
.other-guide-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}
.other-guide-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}
.other-guide-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Catalog (index page) */
.guide-catalog {
    padding: 3rem 0 4rem;
    background: var(--bg-page);
}
.catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.catalog-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-secondary, #ffffff);
    border: 1px solid var(--neutral-200, #e2e8f0);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}
.catalog-card:hover {
    border-color: var(--guide-color, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.catalog-icon {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.catalog-info {
    flex: 1;
}
.catalog-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.catalog-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.catalog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.catalog-free {
    color: #10b981;
    font-weight: 600;
}
.catalog-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: transform 0.2s;
}
.catalog-card:hover .catalog-arrow {
    transform: translateX(4px);
    color: var(--guide-color, var(--primary-color));
}

/* Responsive */
@media (max-width: 768px) {
    .guide-hero-layout {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .other-guides-grid {
        grid-template-columns: 1fr;
    }
}
