/* ─── pitch-modal.css — Fordonsbok pitch & funktionsöversikt ─────────────────
   Inkludera i index.html:
     <link rel="stylesheet" href="pitch-modal.css">
   ──────────────────────────────────────────────────────────────────────────── */

.pitch-hero {
    background: #1a1a1a;
    border: 1px solid #ff6600;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pitch-badge {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.pitch-tagline {
    font-size: 15px;
    color: #ccc;
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto 1.5rem;
}

.pitch-cta-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Space Mono', monospace;
}

.pitch-cta-btn:hover {
    background: #e05500;
}

/* ─── Modal overlay ──────────────────────────────────────────────────────────── */

.pitch-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.pitch-modal-overlay.open {
    display: flex;
}

.pitch-modal {
    background: #111;
    border: 1px solid #ff6600;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
}

.pitch-modal-title {
    color: #ff6600;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 1.5rem;
    text-align: center;
    font-family: 'Space Mono', monospace;
}

/* ─── Feature grid ───────────────────────────────────────────────────────────── */

.pitch-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.pitch-feature-card {
    background: #1a1a1a;
    border: 0.5px solid #333;
    border-radius: 8px;
    padding: 14px 16px;
}

.pitch-feature-icon {
    font-size: 20px;
    color: #ff6600;
    margin-bottom: 8px;
}

.pitch-feature-name {
    font-size: 13px;
    font-weight: 600;
    color: #eee;
    margin: 0 0 4px;
}

.pitch-feature-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* ─── Close button ───────────────────────────────────────────────────────────── */

.pitch-close-btn {
    display: block;
    margin: 1.5rem auto 0;
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
    padding: 8px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-family: 'Space Mono', monospace;
    transition: border-color 0.2s, color 0.2s;
}

.pitch-close-btn:hover {
    border-color: #ff6600;
    color: #ff6600;
}
