/* socialbot.css
   Page-specific additions for the Social Media Bot marketing page.
   Reuses existing glass tokens and components (--glass-bg, --purple-*,
   --orange-*, .industry-chip, .process-track) from theme.css and
   extra-sections.css — minimal new CSS needed. */

.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);
}

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

/* Platform chips slightly larger than the industries row, since there
   are only 5 and they're the visual centerpiece of this section */
#platforms .industry-chip {
    font-size: 16px;
    padding: 12px 22px;
}

#platforms .industry-chip i {
    font-size: 17px;
}

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