/* ============================================================
   UOMOX — Industry Solution Pages — Common CSS
   Covers: Education, Marketing Agency, Finance & Insurance,
           Ecommerce, Healthcare, RealState, Events & Webinar
   Primary brand blue: #032e67  |  Light tint: #eef4fc
   ============================================================ */

/* ----------------------------------------------------------
   1. EYEBROW BADGE
   ---------------------------------------------------------- */
.industry-eyebrow {
    background: #032e67;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 999px;
    display: inline-block;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

/* ----------------------------------------------------------
   2. STATS BAND
   ---------------------------------------------------------- */
.industry-stats-band {
    background: #032e67;
    padding: 40px 0;
}

.industry-stat-item {
    color: #fff;
}

.industry-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
}

.industry-stat-label {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-top: 4px;
}

/* ----------------------------------------------------------
   3. SECTION WRAPPERS
   ---------------------------------------------------------- */
.industry-section {
    padding: 72px 0;
}

.industry-section-alt {
    padding: 72px 0;
    background: #f8f9fa;
}

.industry-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.industry-section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 48px;
}

/* ----------------------------------------------------------
   4. USE-CASE CARDS
   ---------------------------------------------------------- */
.industry-uc-card {
    height: 100%;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e0e9f8;
    background: #f0f4fb;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.industry-uc-card:hover {
    box-shadow: 0 6px 24px rgba(26, 58, 107, 0.10);
    transform: translateY(-2px);
}

.industry-uc-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #c8d8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.industry-uc-icon svg,
.industry-uc-icon i {
    color: #032e67;
    stroke: #032e67;
}

.industry-uc-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-uc-card p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Accent color variants for card icon backgrounds (optional per page) */
.industry-uc-card.accent-blue   { background: #f0f4fb; border-color: #d0e0f5; }
.industry-uc-card.accent-purple { background: #f5f0fb; border-color: #ddd0f5; }
.industry-uc-card.accent-teal   { background: #f0faf7; border-color: #c0e8d8; }
.industry-uc-card.accent-amber  { background: #fdf8f0; border-color: #f0ddb0; }
.industry-uc-card.accent-pink   { background: #fdf0f5; border-color: #f0c8d8; }
.industry-uc-card.accent-red    { background: #fdf0f0; border-color: #f0c8c8; }

/* ----------------------------------------------------------
   5. HOW IT WORKS — STEPS
   ---------------------------------------------------------- */
.industry-step-card {
    text-align: center;
    height: 100%;
    padding: 28px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5eaf2;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.industry-step-card:hover {
    box-shadow: 0 4px 20px rgba(26, 58, 107, 0.08);
}

.industry-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #032e67;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    flex-shrink: 0;
}

.industry-step-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-step-card p {
    font-size: 0.83rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Arrow connector between steps (visible md+) */
.industry-step-arrow {
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%);
    z-index: 2;
    display: none;
    color: #032e67;
}

@media (min-width: 768px) {
    .industry-step-arrow {
        display: block;
    }
}

/* ----------------------------------------------------------
   6. FEATURE ROWS (alternating image + text)
   ---------------------------------------------------------- */
.industry-feature-visual {
    border-radius: 14px;
    padding: 28px;
    background: #eef4fc;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mock chat bubble widget inside feature visual */
.industry-mock-chat {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.industry-bubble-sent {
    background: #dce8f8;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.83rem;
    max-width: 85%;
    margin-left: auto;
    margin-bottom: 8px;
    line-height: 1.5;
}

.industry-bubble-received {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.83rem;
    max-width: 85%;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Mock stats card inside feature visual */
.industry-mock-stats {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.industry-mock-stats .stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.industry-mock-stats .stat-row span:last-child {
    font-weight: 500;
    color: #032e67;
}

.industry-progress-bar {
    height: 6px;
    border-radius: 99px;
    background: #e0e9f8;
    overflow: hidden;
    margin-top: 12px;
}

.industry-progress-fill {
    height: 100%;
    border-radius: 99px;
    background: #032e67;
}

/* Feature checklist */
.industry-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.5;
}

.industry-feature-list li::before {
    content: "✓";
    color: #032e67;
    font-weight: 700;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ----------------------------------------------------------
   7. TESTIMONIALS
   ---------------------------------------------------------- */
.industry-testimonial-card {
    height: 100%;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5eaf2;
    transition: box-shadow 0.2s ease;
}

.industry-testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(26, 58, 107, 0.08);
}

.industry-testimonial-stars {
    color: #f4b400;
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.industry-testimonial-card p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.industry-testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #032e67;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-testimonial-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.industry-testimonial-role {
    font-size: 0.78rem;
    color: #6c757d;
}

/* ----------------------------------------------------------
   8. FAQ ACCORDION
   ---------------------------------------------------------- */
.industry-faq .accordion-button {
    font-weight: 500;
    font-size: 0.97rem;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    color: #1a1a2e;
    box-shadow: none;
}

.industry-faq .accordion-button:not(.collapsed) {
    color: #032e67;
    background: transparent;
    box-shadow: none;
}

.industry-faq .accordion-button::after {
    filter: none;
}

.industry-faq .accordion-button:not(.collapsed)::after {
    filter: invert(20%) sepia(80%) saturate(800%) hue-rotate(200deg);
}

.industry-faq .accordion-item {
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0 !important;
    background: transparent;
}

.industry-faq .accordion-body {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.7;
}

/* ----------------------------------------------------------
   9. FINAL CTA BANNER
   ---------------------------------------------------------- */
.industry-cta-banner {
    background: #032e67;
    padding: 72px 0;
    text-align: center;
    color: #fff;
}

.industry-cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.industry-cta-banner p {
    opacity: 0.75;
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.industry-cta-banner .btn-cta-primary {
    background: #fff;
    color: #032e67;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 8px;
    border: none;
    font-size: 0.97rem;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}

.industry-cta-banner .btn-cta-primary:hover {
    opacity: 0.92;
}

.industry-cta-banner .btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    font-size: 0.97rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s;
}

.industry-cta-banner .btn-cta-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

.industry-cta-meta {
    font-size: 0.75rem;
    opacity: 0.55;
    margin-top: 16px;
}

/* ----------------------------------------------------------
   10. RESPONSIVE TWEAKS
   ---------------------------------------------------------- */
@media (max-width: 767px) {
    .industry-section,
    .industry-section-alt,
    .industry-cta-banner {
        padding: 48px 0;
    }

    .industry-section-title {
        font-size: 1.4rem;
    }

    .industry-stat-number {
        font-size: 1.8rem;
    }

    .industry-cta-banner h2 {
        font-size: 1.5rem;
    }

    .industry-feature-visual {
        min-height: 200px;
        margin-bottom: 24px;
    }
}
/* ============================================================
   UOMOX Premium FAQ Layout Component
   ============================================================ */

.uomox-faq-wrapper {
    font-family: 'Inter', sans-serif;
}

.uc-faq-card-row {
    background: #ffffff !important; 
    border: 1px solid #e2e8f0 !important; 
    border-radius: 12px !important; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    overflow: hidden; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.uc-faq-card-row:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05) !important;
    border-color: #cbd5e1 !important;
}

.faq-trigger-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 24px 28px; 
    cursor: pointer; 
    user-select: none; 
    background: #ffffff !important;
}

.faq-trigger-header:hover {
    background: #f8fafc !important;
}

.faq-arrow-vector {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    color: #64748b; 
    background: #f1f5f9;
    padding: 6px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-collapse-body-panel {
    padding: 0 28px 24px 28px; 
    background: #ffffff !important;
}

.wysiwyg-faq-render {
    color: #475569 !important; 
    font-size: 15px; 
    line-height: 1.7; 
    word-wrap: break-word;
}

.wysiwyg-faq-render p { 
    margin-bottom: 0px !important; 
    padding-bottom: 0px !important; 
}

/* Custom Eye-Brow Badge Updated to brand color #032e67 */
.industry-eyebrow-badge {
    background: #032e67;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 999px;
    display: inline-block;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    text-transform: uppercase;
}