/* alertbot.css
   Page-specific additions for the Alert / Personal Call Bot marketing page.
   Reuses existing glass tokens (--glass-bg, --purple-*, --orange-*)
   from theme.css — no new colors introduced. Same base patterns as
   mailbot.css (pipeline-grid, breadcrumb, cta-banner-heading). */

.mailbot-hero-ctas {
    margin-top: 34px;
}

.mailbot-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple-200, #c4b5fd);
    -webkit-text-fill-color: var(--purple-200, #c4b5fd);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 26px;
    opacity: 0.8;
    transition: opacity .25s ease, transform .25s ease;
}

.mailbot-breadcrumb:hover {
    opacity: 1;
    transform: translateX(-3px);
}

/* ══════════════════════════════════════════
   CAPABILITIES — two feature-cards with a "+" divider
   (both run together, not an either/or choice)
══════════════════════════════════════════ */
.pipeline-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.pipeline-card {
    text-align: left;
    height: 100%;
}

.pipeline-card i {
    margin-bottom: 18px;
}

.pipeline-tagline {
    color: var(--orange-400, #ffb366);
    font-weight: 600;
    font-size: 15px;
    margin: -6px 0 18px;
}

.pipeline-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pipeline-divider span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    background: var(--glass-bg);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: var(--orange-400, #ffb366);
    -webkit-text-fill-color: var(--orange-400, #ffb366);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════════
   HOW IT WORKS — two labelled 4-step tracks
══════════════════════════════════════════ */
.flow-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    margin: 55px 0 10px;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.flow-subheading:first-of-type {
    margin-top: 60px;
}

.flow-subheading i {
    color: var(--orange-400, #ffb366);
    font-size: 20px;
}

.process-track-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cta-banner-heading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1000px) {
    .process-track-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .pipeline-grid {
        grid-template-columns: 1fr;
    }

    .pipeline-divider {
        margin: -10px 0;
    }

    .pipeline-divider span {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .cta-banner-heading {
        font-size: 28px;
    }

    .process-track-4 {
        grid-template-columns: 1fr;
    }

    .flow-subheading {
        font-size: 20px;
    }
}