/**
 * MiCalls Industry Landing Page Styles
 * Shared styles for all industry pages
 */

/* ========================================
   Industry Hero
======================================== */
.industry-hero {
    background: var(--gradient-hero);
    padding: var(--space-24) 0 var(--space-16);
    color: var(--white);
    overflow: hidden;
}

.industry-hero h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.industry-hero .lead {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.industry-badge i {
    font-size: 18px;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6);
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
}

.hero-benefits li i {
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-benefits li span {
    opacity: 0.95;
}

/* Hero Actions - Matches Product Page */
.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
}

.hero-actions .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-primary {
    background: #ffffff;
    color: #152972;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-primary:hover {
    background: #f0f4ff;
    color: #077cb1;
}

.hero-actions .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-actions .btn:active {
    transform: translateY(-1px);
}

.hero-actions .btn i {
    transition: transform 0.3s ease;
}

.hero-actions .btn:hover i {
    transform: translateX(3px);
}

/* Legacy hero-ctas support */
.hero-ctas {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
}

.hero-ctas .btn {
    padding: var(--space-3) var(--space-6);
}

/* Channel Switcher */
.channel-switcher {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.switcher-label {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.channel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.channel-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.channel-chip:hover {
    background: rgba(255, 255, 255, 0.2);
}

.channel-chip.active {
    background: var(--white);
    color: var(--primary);
}

/* Hero Visual - Dashboard Frame (Matches Product Page) */
.hero-visual {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-visual:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
}

/* Dashboard Header with Dots */
.hero-visual::before {
    content: '';
    display: block;
    background: var(--gray-100);
    padding: 14px 16px;
    background-image:
        radial-gradient(circle at 16px 50%, #ff5f57 6px, transparent 6px),
        radial-gradient(circle at 36px 50%, #ffbd2e 6px, transparent 6px),
        radial-gradient(circle at 56px 50%, #28c840 6px, transparent 6px);
    background-repeat: no-repeat;
}

.conversation-preview {
    display: none;
    background: var(--white);
    overflow: hidden;
}

.conversation-preview.active {
    display: block;
}

/* Card Float Animation */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(0.5deg); }
    75% { transform: translateY(-5px) rotate(-0.5deg); }
}

/* Preview Header - Default Voice Style (Primary Theme) */
.preview-header {
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-primary);
    color: var(--white);
}

.preview-header.whatsapp-header {
    background: #075e54;
}

.preview-header.instagram-header {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.preview-header.voice-header {
    background: var(--gradient-primary);
}

.preview-header.sms-header {
    background: #34b7f1;
}

.preview-header.web-header {
    background: var(--gradient-primary);
}

.caller-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.caller-info i {
    font-size: 24px;
}

.caller-info div {
    display: flex;
    flex-direction: column;
}

.caller-name {
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
}

.caller-number {
    font-size: var(--text-xs);
    opacity: 0.8;
}

/* Call Status */
.call-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Preview Transcript - Cleaner Look */
.preview-transcript {
    padding: var(--space-4);
    background: var(--gray-50);
    min-height: 280px;
    max-height: 320px;
    overflow-y: auto;
}

.preview-transcript.whatsapp-style {
    background: #e5ddd5;
}

.preview-transcript.sms-style,
.preview-transcript.web-style {
    background: var(--gray-50);
}

/* Transcript Lines (Voice Calls) */
.transcript-line {
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.5s ease-out;
}

.transcript-line:last-child {
    margin-bottom: 0;
}

.transcript-line .speaker {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-1);
    color: var(--gray-500);
}

.transcript-line.ai .speaker {
    color: var(--primary);
}

.transcript-line.patient .speaker {
    color: var(--gray-600);
}

.transcript-line .text {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-700);
    background: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.transcript-line .text:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* Typing Indicator */
.typing-indicator {
    display: inline-flex;
    gap: 4px;
    margin-left: var(--space-2);
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message {
    max-width: 85%;
    margin-bottom: var(--space-3);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    position: relative;
}

.message p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--gray-900);
    line-height: 1.4;
}

.message .time {
    display: block;
    font-size: 10px;
    color: var(--gray-500);
    text-align: right;
    margin-top: var(--space-1);
}

.message.incoming {
    background: var(--white);
    border-bottom-left-radius: 4px;
    margin-right: auto;
}

.message.outgoing {
    background: #dcf8c6;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}


/* ========================================
   Industry Sub-Nav
======================================== */
.industry-sub-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 70px;
    z-index: var(--z-sticky);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition);
}

.industry-sub-nav.visible {
    transform: translateY(0);
    opacity: 1;
}

.industry-sub-nav-inner {
    display: flex;
    gap: var(--space-1);
    overflow-x: auto;
    padding: var(--space-3) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.industry-sub-nav-inner::-webkit-scrollbar {
    display: none;
}

.industry-nav-link {
    padding: var(--space-2) var(--space-3);
    color: var(--gray-600);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    white-space: nowrap;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.industry-nav-link:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.industry-nav-link.active {
    color: var(--white);
    background: var(--primary);
}

/* ========================================
   Trust Strip
======================================== */
.trust-strip {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 50%, #f5f0ff 100%);
    padding: var(--space-8) 0;
    position: relative;
    overflow: hidden;
}

.trust-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.5) 50%,
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.trust-strip-content,
.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

.trust-strip-brand,
.trust-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: var(--font-medium);
}

.trust-strip-brand strong,
.trust-text span {
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
}

.trust-chips,
.proof-chips {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.trust-chip,
.proof-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--white);
    border: 1px solid rgba(7, 124, 177, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-700);
    box-shadow: 0 2px 8px rgba(7, 124, 177, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(10px);
    animation: chipFadeIn 0.5s ease-out forwards;
}

.proof-chip:nth-child(1) { animation-delay: 0.1s; }
.proof-chip:nth-child(2) { animation-delay: 0.2s; }
.proof-chip:nth-child(3) { animation-delay: 0.3s; }
.proof-chip:nth-child(4) { animation-delay: 0.4s; }

@keyframes chipFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-chip,
.proof-chip {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.trust-chip:hover,
.proof-chip:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(7, 124, 177, 0.25);
    border-color: rgba(7, 124, 177, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.trust-chip i,
.proof-chip i {
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual chip icon colors */
.proof-chip:nth-child(1) i { color: #10b981; } /* Shield - Green */
.proof-chip:nth-child(2) i { color: #077cb1; } /* Building - Primary Blue */
.proof-chip:nth-child(3) i { color: #8b5cf6; } /* Chat - Purple */
.proof-chip:nth-child(4) i { color: #f59e0b; } /* Star - Amber */

.trust-chip:hover i,
.proof-chip:hover i {
    transform: scale(1.2);
}

/* ========================================
   Pain Points Section
======================================== */
.pain-points-section {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.pain-points-section .section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.pain-points-section .section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
    white-space: nowrap;
}

.pain-points-section .section-header p {
    color: var(--gray-600);
    font-size: var(--text-lg);
    max-width: 800px;
    margin: 0 auto;
}

/* Toggle Buttons - Centered with Effects */
.pain-points-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-10);
}

.pain-toggle {
    display: flex;
    justify-content: center;
    margin: 0 auto var(--space-10);
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    width: fit-content;
}

.pain-toggle .toggle-btn {
    padding: var(--space-3) var(--space-6);
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pain-toggle .toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(7, 124, 177, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.pain-toggle .toggle-btn:hover:not(.active) {
    color: var(--primary);
}

.pain-toggle .toggle-btn:hover:not(.active)::before {
    width: 150%;
    height: 150%;
}

.pain-toggle .toggle-btn:active:not(.active) {
    transform: scale(0.95);
}

.pain-toggle .toggle-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(7, 124, 177, 0.4);
    transform: scale(1.02);
}

.pain-toggle .toggle-btn.active:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(7, 124, 177, 0.3);
}

/* Pain Cards Grid */
.pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.pain-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.5s ease-out forwards;
}

.pain-card:nth-child(1) { animation-delay: 0.1s; }
.pain-card:nth-child(2) { animation-delay: 0.15s; }
.pain-card:nth-child(3) { animation-delay: 0.2s; }
.pain-card:nth-child(4) { animation-delay: 0.25s; }
.pain-card:nth-child(5) { animation-delay: 0.3s; }
.pain-card:nth-child(6) { animation-delay: 0.35s; }

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pain-card:hover::before {
    transform: scaleX(1);
}

.pain-card-icon,
.pain-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ef4444;
    margin-bottom: var(--space-4);
    transition: all 0.3s ease;
}

.pain-card:hover .pain-card-icon,
.pain-card:hover .pain-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
}

.pain-card h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
    color: var(--gray-900);
}

.pain-card p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.pain-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-100);
}

.pain-stat .stat-number {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-stat .stat-label {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.pain-content {
    display: none;
}

.pain-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ========================================
   Use Cases Tabs
======================================== */
.use-case-tabs-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.use-case-tabs {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2);
    box-shadow: var(--shadow-lg);
    gap: var(--space-2);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.use-case-tabs::-webkit-scrollbar {
    display: none;
}

.use-case-tab {
    flex: 1;
    min-width: 140px;
    padding: var(--space-3) var(--space-4);
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all var(--transition);
    border-radius: var(--radius-lg);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.use-case-tab i {
    font-size: 16px;
}

.use-case-tab:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.use-case-tab.active {
    color: var(--white);
    background: var(--gradient-primary);
}

.use-cases-section {
    padding: var(--space-16) 0;
    background: var(--gray-50);
}

.use-cases-section .section-header {
    margin-bottom: var(--space-8);
}

.use-cases-section .section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.use-cases-section .section-header p {
    color: var(--gray-600);
    font-size: var(--text-lg);
}

.use-cases-section .use-case-content {
    display: none;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-6);
}

.use-cases-section .use-case-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Alternative selectors for better specificity */
.use-case-content[data-usecase-content] {
    display: none;
}

.use-case-content[data-usecase-content].active {
    display: block;
}

.use-case-content h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--gray-900);
}

.use-case-content > p {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
}

.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6);
}

.use-case-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-base);
    color: var(--gray-700);
}

.use-case-features li i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 3px;
}

.use-case-result {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--gradient-primary);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.result-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.result-content {
    display: flex;
    flex-direction: column;
}

.result-metric {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
}

.result-label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* Demo Flow */
.use-case-demo {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.demo-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    background: var(--white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.step-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-1);
    color: var(--gray-900);
}

.step-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

.flow-arrow {
    display: flex;
    justify-content: center;
    color: var(--gray-400);
    font-size: 20px;
    padding: 0;
    margin: -4px 0;
}

/* ========================================
   Reminder Sequence Timeline
======================================== */
.reminder-sequence {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    position: relative;
    padding-left: var(--space-4);
}

.reminder-sequence::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, #077cb1 0%, #27b8e5 50%, #4ade80 100%);
    border-radius: 2px;
}

.reminder-item {
    display: flex;
    gap: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInReminder 0.5s ease-out forwards;
}

.reminder-item:nth-child(1) { animation-delay: 0.1s; }
.reminder-item:nth-child(2) { animation-delay: 0.2s; }
.reminder-item:nth-child(3) { animation-delay: 0.3s; }
.reminder-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInReminder {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reminder-item::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 3px solid #077cb1;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.reminder-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #077cb1;
}

.reminder-item:hover::before {
    background: #077cb1;
    transform: translateY(-50%) scale(1.2);
}

.reminder-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    min-width: 90px;
    padding-right: var(--space-3);
    border-right: 1px solid var(--gray-100);
}

.reminder-time i {
    font-size: 20px;
    color: #077cb1;
}

.reminder-time span {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--gray-600);
    text-align: center;
    white-space: nowrap;
}

.reminder-message {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    flex: 1;
}

.reminder-message .channel-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.reminder-item:hover .channel-icon {
    transform: scale(1.1);
}

/* Channel-specific icon colors */
.reminder-message .channel-icon:has(.bi-envelope) {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.reminder-message .channel-icon:has(.bi-chat-dots) {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.reminder-message .channel-icon:has(.bi-telephone) {
    background: rgba(7, 124, 177, 0.1);
    color: #077cb1;
}

.reminder-message .channel-icon:has(.bi-whatsapp) {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.reminder-message p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: var(--leading-relaxed);
}

/* ========================================
   Triage Flow / Routing Levels
======================================== */
.triage-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.triage-level {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: triageFadeIn 0.5s ease-out forwards;
}

.triage-level:nth-child(1) { animation-delay: 0.1s; }
.triage-level:nth-child(2) { animation-delay: 0.2s; }
.triage-level:nth-child(3) { animation-delay: 0.3s; }

@keyframes triageFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.triage-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.triage-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.triage-level:hover::before {
    height: 6px;
}

/* Routine - Green */
.triage-level.routine {
    border-color: rgba(34, 197, 94, 0.2);
}

.triage-level.routine::before {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.triage-level.routine:hover {
    border-color: rgba(34, 197, 94, 0.4);
}

.triage-level.routine .level-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.triage-level.routine .level-action {
    color: #16a34a;
}

/* Elevated - Amber */
.triage-level.elevated {
    border-color: rgba(245, 158, 11, 0.2);
}

.triage-level.elevated::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.triage-level.elevated:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.triage-level.elevated .level-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.triage-level.elevated .level-action {
    color: #d97706;
}

/* Urgent - Red */
.triage-level.urgent {
    border-color: rgba(239, 68, 68, 0.2);
}

.triage-level.urgent::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.triage-level.urgent:hover {
    border-color: rgba(239, 68, 68, 0.4);
}

.triage-level.urgent .level-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.triage-level.urgent .level-action {
    color: #dc2626;
}

.level-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--gray-100);
}

.level-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.level-action {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

.triage-level ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.triage-level ul li {
    font-size: var(--text-sm);
    color: var(--gray-600);
    padding-left: var(--space-5);
    position: relative;
    transition: all 0.2s ease;
}

.triage-level ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.2s ease;
}

.triage-level.routine ul li::before { background: #22c55e; }
.triage-level.elevated ul li::before { background: #f59e0b; }
.triage-level.urgent ul li::before { background: #ef4444; }

.triage-level:hover ul li {
    padding-left: var(--space-6);
}

.triage-level:hover ul li::before {
    transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .triage-flow {
        grid-template-columns: 1fr;
    }

    .reminder-sequence {
        padding-left: var(--space-6);
    }
}

.use-case-panel {
    display: none;
}

.use-case-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    animation: fadeIn 0.3s ease;
}

.use-case-info h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.automates-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6);
}

.automates-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.automates-list li i {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.example-requests-box {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.example-requests-box h4 {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: var(--space-3);
}

.example-request {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2);
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.example-request:last-child {
    margin-bottom: 0;
}

.example-request i {
    color: var(--primary);
}

.use-case-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-demo {
    width: 100%;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.use-case-demo i {
    font-size: 48px;
    margin-bottom: var(--space-2);
}

/* ========================================
   Workflow Module
======================================== */
.workflow-module {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--space-16) 0;
    overflow-x: hidden;
}

.workflow-module .section-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.workflow-module .section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.workflow-module .section-header p {
    color: var(--gray-600);
    font-size: var(--text-lg);
}

/* Workflow Controls */
.workflow-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.workflow-toggle {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    margin-bottom: 0;
}

.workflow-toggle .toggle-btn {
    padding: var(--space-3) var(--space-6);
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.workflow-toggle .toggle-btn:hover:not(.active) {
    color: var(--primary);
    background: rgba(7, 124, 177, 0.05);
}

.workflow-toggle .toggle-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(7, 124, 177, 0.3);
}

/* Scenario Selector */
.scenario-selector {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.scenario-selector label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--gray-700);
}

.scenario-selector select,
.scenario-dropdown {
    padding: var(--space-2) var(--space-4);
    padding-right: var(--space-8);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-700);
    background: var(--white);
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.scenario-selector select:hover,
.scenario-dropdown:hover {
    border-color: var(--primary);
}

.scenario-selector select:focus,
.scenario-dropdown:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 124, 177, 0.1);
}

/* Workflow Display */
.workflow-display {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    overflow-x: hidden !important;
}

.workflow-scenario {
    display: none;
    overflow-x: hidden;
}

.workflow-scenario.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
    overflow-x: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Workflow Steps - Grid Layout */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: var(--space-4);
    position: relative;
    overflow-x: hidden;
}

/* Timeline connector line - top bar */
.workflow-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 8.33%;
    right: 8.33%;
    height: 3px;
    background: linear-gradient(90deg, #077cb1, #27b8e5, #4ade80);
    border-radius: 2px;
    z-index: 0;
}

.workflow-step {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: stepReveal 0.5s ease-out forwards;
    overflow: hidden;
}

.workflow-step:nth-child(1) { animation-delay: 0.1s; }
.workflow-step:nth-child(2) { animation-delay: 0.2s; }
.workflow-step:nth-child(3) { animation-delay: 0.3s; }
.workflow-step:nth-child(4) { animation-delay: 0.4s; }
.workflow-step:nth-child(5) { animation-delay: 0.5s; }
.workflow-step:nth-child(6) { animation-delay: 0.6s; }

@keyframes stepReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workflow-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid #077cb1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--text-base);
    color: #077cb1;
    margin: 0 auto var(--space-3);
    box-shadow: 0 4px 12px rgba(7, 124, 177, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.workflow-step:hover .step-number {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(7, 124, 177, 0.4);
}

/* Step Card */
.step-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    height: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.workflow-step:hover .step-card {
    background: var(--white);
    border-color: rgba(7, 124, 177, 0.2);
    box-shadow: 0 8px 24px rgba(7, 124, 177, 0.1);
    transform: translateY(-5px);
}

.workflow-step .step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(7, 124, 177, 0.1) 0%, rgba(39, 184, 229, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #077cb1;
    margin: 0 auto var(--space-2);
    transition: all 0.3s ease;
}

.workflow-step:hover .step-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.workflow-step h5 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-1);
    color: var(--gray-900);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.workflow-step p {
    font-size: var(--text-xs);
    color: var(--gray-500);
    line-height: var(--leading-relaxed);
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
    margin: 0;
}

/* Urgent step styling */
.step-card.urgent {
    border-color: rgba(239, 68, 68, 0.2);
}

.step-card.urgent .step-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    color: #ef4444;
}

.workflow-step:hover .step-card.urgent {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.15);
}

.workflow-step:hover .step-card.urgent .step-icon {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

/* Workflow Connector (hide - using ::before on parent) */
.workflow-connector {
    display: none;
}

/* Responsive */
@media (max-width: 1199px) {
    .workflow-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .workflow-steps::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-display {
        overflow-x: hidden;
    }

    .workflow-scenario {
        overflow-x: hidden;
    }
}

@media (max-width: 767px) {
    .workflow-steps {
        grid-template-columns: 1fr;
        gap: var(--space-3);
        overflow-x: hidden;
    }

    .workflow-display {
        padding: var(--space-4);
        overflow-x: hidden;
    }

    .scenario-selector {
        flex-direction: column;
        gap: var(--space-2);
    }

    .scenario-selector select {
        min-width: 180px;
    }
}

.crm-panel {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.crm-panel h4 {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.crm-panel h4 i {
    color: var(--primary);
}

.crm-items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.crm-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.crm-item i {
    color: var(--primary);
}

/* ========================================
   Channels Section
======================================== */
.channels-section {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.channels-section .section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.channels-section .section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.channels-section .section-header p {
    color: var(--gray-600);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.channels-interactive {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-8);
    align-items: start;
}

/* Channel Selector Buttons */
.channels-selector {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
}

.channel-select-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    width: 100%;
}

.channel-select-btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.channel-select-btn.active {
    background: linear-gradient(135deg, rgba(7, 124, 177, 0.08) 0%, rgba(39, 184, 229, 0.08) 100%);
    border-color: #077cb1;
    box-shadow: 0 4px 12px rgba(7, 124, 177, 0.15);
}

.channel-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Default icon wrap styling */
.channel-select-btn .channel-icon-wrap {
    background: var(--gray-100);
    color: var(--gray-500);
}

.channel-select-btn:hover .channel-icon-wrap {
    transform: scale(1.05);
}

/* Channel-specific colors */
.channel-select-btn[data-channel-detail="voice"] .channel-icon-wrap {
    background: rgba(7, 124, 177, 0.1);
    color: #077cb1;
}

.channel-select-btn[data-channel-detail="voice"].active .channel-icon-wrap {
    background: linear-gradient(135deg, #077cb1, #27b8e5);
    color: var(--white);
}

.channel-select-btn[data-channel-detail="sms"] .channel-icon-wrap {
    background: rgba(52, 183, 241, 0.1);
    color: #34b7f1;
}

.channel-select-btn[data-channel-detail="sms"].active .channel-icon-wrap {
    background: linear-gradient(135deg, #34b7f1, #5bc0de);
    color: var(--white);
}

.channel-select-btn[data-channel-detail="whatsapp"] .channel-icon-wrap {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.channel-select-btn[data-channel-detail="whatsapp"].active .channel-icon-wrap {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
}

.channel-select-btn[data-channel-detail="webchat"] .channel-icon-wrap {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.channel-select-btn[data-channel-detail="webchat"].active .channel-icon-wrap {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: var(--white);
}

.channel-select-btn[data-channel-detail="email"] .channel-icon-wrap {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.channel-select-btn[data-channel-detail="email"].active .channel-icon-wrap {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: var(--white);
}

.channel-select-btn span {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.channel-select-btn.active span {
    color: var(--gray-900);
}

/* Channel Details Panel */
.channel-details {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    min-height: 400px;
}

.channel-detail {
    display: none;
}

.channel-detail.active {
    display: block;
    animation: channelFadeIn 0.4s ease-out;
}

@keyframes channelFadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.channel-detail h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-3);
    color: var(--gray-900);
}

.channel-detail > .row > .col-lg-6:first-child > p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
}

/* Channel Features List */
.channel-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-5);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
}

.channel-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-700);
    padding: var(--space-2);
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.channel-features li:hover {
    background: rgba(7, 124, 177, 0.05);
    transform: translateX(3px);
}

.channel-features li i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

/* Channel Stat */
.channel-stat {
    display: inline-flex;
    align-items: baseline;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(7, 124, 177, 0.08) 0%, rgba(39, 184, 229, 0.08) 100%);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    border: 1px solid rgba(7, 124, 177, 0.15);
}

.channel-stat .stat-value {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.channel-stat .stat-desc {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* Channel Previews */
.channel-preview {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Voice Preview */
.voice-preview {
    background: linear-gradient(135deg, #077cb1, #27b8e5);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.voice-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.voice-wave {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.voice-wave span {
    width: 4px;
    height: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: voiceWave 1.2s ease-in-out infinite;
}

.voice-wave span:nth-child(1) { animation-delay: 0s; height: 16px; }
.voice-wave span:nth-child(2) { animation-delay: 0.1s; height: 28px; }
.voice-wave span:nth-child(3) { animation-delay: 0.2s; height: 36px; }
.voice-wave span:nth-child(4) { animation-delay: 0.3s; height: 28px; }
.voice-wave span:nth-child(5) { animation-delay: 0.4s; height: 16px; }

@keyframes voiceWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.preview-text {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    font-style: italic;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: var(--font-medium);
}

/* SMS Preview */
.sms-preview {
    background: #f5f5f5;
    gap: var(--space-2);
}

.sms-bubble {
    max-width: 85%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    animation: bubbleSlide 0.4s ease-out;
}

.sms-bubble.outgoing {
    background: #34b7f1;
    color: var(--white);
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.sms-bubble.incoming {
    background: var(--white);
    color: var(--gray-900);
    margin-right: auto;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@keyframes bubbleSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Preview */
.whatsapp-preview {
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='150' cy='150' r='100'/%3E%3C/g%3E%3C/svg%3E");
    gap: var(--space-2);
}

.wa-message {
    max-width: 85%;
    padding: var(--space-2) var(--space-3);
    border-radius: 8px;
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    position: relative;
}

.wa-message.outgoing {
    background: #dcf8c6;
    color: var(--gray-900);
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

.wa-message.incoming {
    background: var(--white);
    color: var(--gray-900);
    margin-right: auto;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Web Chat Preview */
.webchat-preview {
    background: transparent;
    padding: 0;
}

.chat-widget {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
}

.chat-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: var(--font-semibold);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-body {
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    background: var(--gray-50);
}

.chat-msg {
    max-width: 85%;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.chat-msg.bot {
    background: var(--white);
    color: var(--gray-900);
    margin-right: auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chat-msg.user {
    background: var(--gradient-primary);
    color: var(--white);
    margin-left: auto;
}

/* Email Preview */
.email-preview {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.email-header {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.email-header .email-from,
.email-header .email-subject {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.email-header .email-subject strong {
    color: var(--gray-900);
}

.email-body {
    padding: var(--space-4);
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: var(--leading-relaxed);
}

/* Legacy channel card support */
.channel-select-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
}

.channel-select-card:hover {
    border-color: var(--primary);
}

.channel-select-card.active {
    border-color: var(--primary);
    background: rgba(7, 124, 177, 0.05);
}

.channel-select-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.channel-select-icon.voice { background: var(--primary); }
.channel-select-icon.whatsapp { background: #25d366; }
.channel-select-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.channel-select-icon.sms { background: var(--secondary); }
.channel-select-icon.email { background: var(--primary-dark); }

.channel-select-info h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.channel-select-info p {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.channel-detail-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}

.channel-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.channel-detail-header h3 {
    font-size: var(--text-xl);
}

.channel-detail-section {
    margin-bottom: var(--space-5);
}

.channel-detail-section:last-child {
    margin-bottom: 0;
}

.channel-detail-section h4 {
    font-size: var(--text-sm);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.channel-detail-section p {
    font-size: var(--text-base);
    color: var(--gray-700);
}

.conversation-example {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: var(--space-3);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.conversation-example:last-child {
    margin-bottom: 0;
}

.conversation-example .label {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--gray-500);
    margin-bottom: var(--space-1);
}

.conversation-example.customer {
    background: rgba(7, 124, 177, 0.1);
}

.conversation-example.ai {
    background: var(--gray-50);
}

/* ========================================
   CRM Integration Section
======================================== */
.crm-section {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--white) 0%, #f0f7ff 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.crm-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(7, 124, 177, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.crm-section .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 1;
}

.crm-section .section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.crm-section .section-header p {
    color: var(--gray-600);
    font-size: var(--text-lg);
    max-width: 650px;
    margin: 0 auto;
}

/* CRM 3-Column Layout */
.crm-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-6);
    align-items: stretch;
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 1;
}

/* Read/Write Columns */
.crm-column {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.crm-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.crm-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.crm-column:hover::before {
    height: 6px;
}

/* Read Column - Blue Theme */
.read-column::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.read-column .column-header i {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    color: #3b82f6;
}

/* Write Column - Green Theme */
.write-column::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.write-column .column-header i {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    color: #10b981;
}

/* Column Header */
.column-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--gray-100);
}

.column-header i {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.crm-column:hover .column-header i {
    transform: scale(1.1);
}

.column-header h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin: 0;
}

/* CRM List Items */
.crm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.crm-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
    animation: crmListFadeIn 0.5s ease-out forwards;
}

.read-column .crm-list li:nth-child(1) { animation-delay: 0.1s; }
.read-column .crm-list li:nth-child(2) { animation-delay: 0.15s; }
.read-column .crm-list li:nth-child(3) { animation-delay: 0.2s; }
.read-column .crm-list li:nth-child(4) { animation-delay: 0.25s; }
.read-column .crm-list li:nth-child(5) { animation-delay: 0.3s; }
.read-column .crm-list li:nth-child(6) { animation-delay: 0.35s; }

.write-column .crm-list li:nth-child(1) { animation-delay: 0.15s; }
.write-column .crm-list li:nth-child(2) { animation-delay: 0.2s; }
.write-column .crm-list li:nth-child(3) { animation-delay: 0.25s; }
.write-column .crm-list li:nth-child(4) { animation-delay: 0.3s; }
.write-column .crm-list li:nth-child(5) { animation-delay: 0.35s; }
.write-column .crm-list li:nth-child(6) { animation-delay: 0.4s; }

@keyframes crmListFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.crm-list li:hover {
    background: var(--gray-50);
    transform: translateX(5px);
}

.crm-list li i {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.read-column .crm-list li i {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.write-column .crm-list li i {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.crm-list li:hover i {
    transform: scale(1.15);
}

.crm-list li span {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gray-700);
}

/* Center Sync Visual */
.crm-sync-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-4);
}

.sync-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.sync-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(7, 124, 177, 0.3);
    position: relative;
    animation: syncPulse 2s ease-in-out infinite;
}

.sync-circle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed rgba(7, 124, 177, 0.3);
    border-radius: 50%;
    animation: syncRotate 10s linear infinite;
}

.sync-circle::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    border: 1px dashed rgba(7, 124, 177, 0.15);
    border-radius: 50%;
    animation: syncRotate 15s linear infinite reverse;
}

@keyframes syncPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(7, 124, 177, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(7, 124, 177, 0.4);
    }
}

@keyframes syncRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sync-circle i {
    font-size: 32px;
    color: var(--white);
    animation: syncIconSpin 3s ease-in-out infinite;
}

@keyframes syncIconSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(180deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(360deg); }
}

.sync-animation span {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sync-animation .sync-subtext {
    font-size: var(--text-xs);
    color: var(--gray-500);
    text-transform: none;
    letter-spacing: 0;
    margin-top: var(--space-2);
    text-align: center;
    line-height: var(--leading-relaxed);
}

.crm-micro-line {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-top: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--gray-200);
    font-style: italic;
}

/* Integration Logos */
.integration-logos {
    text-align: center;
    position: relative;
    z-index: 1;
}

.integration-logos h5 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-6);
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.integration-logo {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-6);
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(10px);
    animation: logoFadeIn 0.5s ease-out forwards;
}

.integration-logo:nth-child(1) { animation-delay: 0.1s; }
.integration-logo:nth-child(2) { animation-delay: 0.15s; }
.integration-logo:nth-child(3) { animation-delay: 0.2s; }
.integration-logo:nth-child(4) { animation-delay: 0.25s; }
.integration-logo:nth-child(5) { animation-delay: 0.3s; }
.integration-logo:nth-child(6) { animation-delay: 0.35s; }

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.integration-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.integration-logo img {
    max-height: 28px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.integration-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.integration-logo span {
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.integration-logo:hover span {
    color: var(--primary);
}

/* Legacy CRM Personalization Grid - kept for backwards compatibility */
.crm-personalization-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.crm-column-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--gray-200);
}

.crm-column-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.crm-column-icon.read {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.crm-column-icon.write {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.crm-column-header h3 {
    font-size: var(--text-lg);
}

.crm-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crm-items-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
}

.crm-items-list li:last-child {
    border-bottom: none;
}

.crm-items-list li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.crm-items-list li strong {
    display: block;
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.crm-items-list li span {
    font-size: var(--text-xs);
    color: var(--gray-600);
}

.handoff-note {
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin-top: var(--space-6);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.handoff-note i {
    color: var(--warning);
    font-size: 20px;
    flex-shrink: 0;
}

.handoff-note strong {
    display: block;
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
}

.handoff-note p {
    font-size: var(--text-sm);
    color: var(--gray-700);
}

/* ========================================
   Proof Section
======================================== */
.proof-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.proof-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.proof-content h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.proof-content > p {
    color: var(--gray-600);
    margin-bottom: var(--space-4);
}

.proof-results {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.proof-result {
    text-align: center;
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius);
}

.proof-result .value {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--primary);
}

.proof-result .label {
    font-size: var(--text-xs);
    color: var(--gray-600);
}

/* ========================================
   Proof / Case Study Section
======================================== */
.proof-section {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.proof-section .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.proof-section .section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.proof-section .section-header p {
    color: var(--gray-600);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* Case Study Featured Card */
.case-study-featured {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.case-study-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.case-study-featured > .row {
    margin: 0;
}

.case-study-featured > .row > .col-lg-6 {
    padding: 0;
}

/* Case Study Content - Left Side */
.case-study-content {
    padding: var(--space-10);
}

.case-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-4);
    background: linear-gradient(135deg, rgba(7, 124, 177, 0.1) 0%, rgba(39, 184, 229, 0.1) 100%);
    color: #077cb1;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    border: 1px solid rgba(7, 124, 177, 0.2);
}

.case-study-content h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.case-subtitle {
    font-size: var(--text-base);
    color: var(--gray-500);
    margin-bottom: var(--space-6);
}

/* Challenge & Solution Boxes */
.case-challenge,
.case-solution {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    position: relative;
    overflow: hidden;
}

.case-challenge {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-left: 4px solid #ef4444;
}

.case-solution {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(52, 211, 153, 0.05) 100%);
    border-left: 4px solid #10b981;
}

.case-challenge h5,
.case-solution h5 {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
}

.case-challenge h5 {
    color: #dc2626;
}

.case-solution h5 {
    color: #059669;
}

.case-challenge p,
.case-solution p {
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Results Grid */
.case-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    margin-top: var(--space-6);
}

.case-result {
    text-align: center;
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.case-result:hover {
    background: var(--white);
    border-color: rgba(7, 124, 177, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(7, 124, 177, 0.1);
}

.case-result .result-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-1);
}

.case-result .result-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--gray-600);
    font-weight: var(--font-medium);
}

.case-study-content .btn {
    margin-top: var(--space-2);
}

/* Case Study Section - Tablet (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
    .case-study-featured > .row {
        flex-direction: column;
    }

    .case-study-featured > .row > .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }

    .case-study-content {
        padding: var(--space-8);
    }

    .case-results-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-3);
    }

    .case-result {
        padding: var(--space-3);
    }

    .case-result .result-number {
        font-size: var(--text-xl);
    }

    .case-result .result-label {
        font-size: var(--text-xs);
    }

    .testimonial-card {
        padding: var(--space-8);
    }
}

/* Testimonial Card - Right Side */
.testimonial-card {
    background: linear-gradient(135deg, #077cb1 0%, #0a5a80 100%);
    padding: var(--space-10);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.testimonial-card .testimonial-quote {
    background: transparent;
    border: none;
    border-left: none;
    padding: 0;
    margin-bottom: var(--space-6);
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.testimonial-card .testimonial-quote i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 48px;
    margin-bottom: var(--space-4);
}

.testimonial-card .testimonial-quote p {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--white);
    line-height: var(--leading-relaxed);
    margin: 0;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 32px;
    color: var(--white);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.author-info strong {
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: var(--white);
}

.author-info span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* Legacy testimonial quote - for other uses */
.testimonial-quote:not(.testimonial-card .testimonial-quote) {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.testimonial-quote:not(.testimonial-card .testimonial-quote) i {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.testimonial-quote:not(.testimonial-card .testimonial-quote) p {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.testimonial-quote .author {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.proof-visual {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.proof-visual i {
    font-size: 64px;
}

/* ========================================
   ROI Section / ROI Band
======================================== */
.roi-section {
    background: var(--gradient-primary);
    padding: var(--space-16) 0;
    color: var(--white);
}

.roi-header {
    margin-bottom: var(--space-10);
}

.roi-header h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-3);
}

.roi-header p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.roi-band {
    background: var(--gradient-primary);
    padding: var(--space-12) 0;
    color: var(--white);
}

.roi-band .section-header {
    margin-bottom: var(--space-8);
}

.roi-band .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.roi-band .section-title {
    color: var(--white);
}

.roi-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.roi-tile {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: roiTileFadeIn 0.6s ease-out forwards;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-tile:nth-child(1) { animation-delay: 0.1s; }
.roi-tile:nth-child(2) { animation-delay: 0.2s; }
.roi-tile:nth-child(3) { animation-delay: 0.3s; }
.roi-tile:nth-child(4) { animation-delay: 0.4s; }

@keyframes roiTileFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.roi-tile:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.roi-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.roi-icon i {
    font-size: 24px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roi-tile:hover .roi-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.roi-tile:hover .roi-icon i {
    transform: scale(1.1);
}

.roi-stat {
    margin-bottom: var(--space-3);
}

.roi-stat .stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--white);
    line-height: 1.1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roi-tile:hover .roi-stat .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.roi-stat .stat-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: var(--space-1);
}

.roi-tile > p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: var(--leading-relaxed);
}

.roi-tile .value {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-1);
}

.roi-tile .label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.roi-disclaimer {
    text-align: center;
    font-size: var(--text-sm);
    opacity: 0.8;
}

.roi-cta {
    margin-top: var(--space-8);
}

.roi-micro-text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-3);
}

/* ========================================
   Implementation Section
======================================== */
.implementation-section {
    padding: var(--space-16) 0;
    background: var(--gray-50);
}

.implementation-accordion {
    max-width: 900px;
    margin: 0 auto var(--space-8);
}

#implementationAccordion,
#implementationAccordion .accordion-item,
#implementationAccordion .accordion-header,
#implementationAccordion .accordion-button,
#implementationAccordion .accordion-collapse {
    border: none !important;
}

#implementationAccordion *:hover,
#implementationAccordion .accordion-item:hover,
#implementationAccordion .accordion-button:hover,
#implementationAccordion .accordion-button:not(.collapsed),
#implementationAccordion .accordion-button:focus {
    background: transparent !important;
    background-color: transparent !important;
}

#implementationAccordion .accordion-collapse {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#implementationAccordion .accordion-body {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#implementationAccordion .accordion-collapse.collapsing {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#implementationAccordion .accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

#implementationAccordion .accordion-button::after {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FAQ Accordion - Clean styling with smooth animations */
.faq-section {
    padding: var(--space-16) 0;
    background: var(--gray-50);
}

.faq-section .section-header {
    margin-bottom: var(--space-10);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .accordion,
#faqAccordion {
    border: none !important;
    background: none !important;
}

#faqAccordion .accordion-item {
    margin-bottom: var(--space-4);
    background: var(--white) !important;
    border-radius: var(--radius-xl) !important;
    border: none !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#faqAccordion .accordion-header {
    margin: 0;
}

#faqAccordion .accordion-button {
    background: var(--white) !important;
    color: var(--gray-900) !important;
    font-weight: var(--font-semibold);
    font-size: var(--text-lg);
    padding: var(--space-5) var(--space-6);
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

#faqAccordion .accordion-button:hover {
    color: var(--primary) !important;
}

#faqAccordion .accordion-button:focus {
    box-shadow: none !important;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background: var(--white) !important;
    color: var(--primary) !important;
}

#faqAccordion .accordion-button::after {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: var(--space-4);
}

#faqAccordion .accordion-collapse {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#faqAccordion .accordion-collapse.collapsing {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#faqAccordion .accordion-body {
    padding: 0 var(--space-6) var(--space-6) var(--space-6);
    color: var(--gray-600);
    font-size: var(--text-base);
    line-height: 1.8;
    background: var(--white) !important;
    animation: faqFadeIn 0.4s ease-out;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#faqAccordion .accordion-body p {
    margin-bottom: var(--space-4);
    color: var(--gray-700);
}

#faqAccordion .accordion-body p:last-child {
    margin-bottom: 0;
}

#faqAccordion .accordion-body strong {
    color: var(--gray-900);
    font-weight: var(--font-semibold);
    display: block;
    margin-top: var(--space-4);
    margin-bottom: var(--space-3);
}

#faqAccordion .accordion-body ul {
    margin: var(--space-3) 0;
    padding: 0;
    list-style: none;
}

#faqAccordion .accordion-body li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--gray-600);
}

#faqAccordion .accordion-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

#faqAccordion .accordion-body li:last-child {
    margin-bottom: 0;
}

.implementation-accordion .accordion-item {
    background: var(--white);
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: var(--radius-xl) !important;
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.implementation-accordion .accordion-item:first-of-type,
.implementation-accordion .accordion-item:last-of-type {
    border: none !important;
}

.implementation-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.implementation-accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: var(--white);
    border: none;
    box-shadow: none;
}

.implementation-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    color: var(--gray-900);
}

.implementation-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.implementation-accordion .accordion-button::after {
    margin-left: auto;
    flex-shrink: 0;
}

.implementation-accordion .step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: var(--white);
    font-size: var(--text-lg);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(7, 124, 177, 0.3);
}

.implementation-accordion .accordion-button:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(7, 124, 177, 0.4);
}

.implementation-accordion .step-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    flex: 1;
}

.implementation-accordion .step-info strong {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--gray-900);
}

.implementation-accordion .step-duration {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: var(--font-medium);
    background: rgba(7, 124, 177, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    display: inline-block;
    width: fit-content;
}

.implementation-accordion .accordion-body {
    padding: 0 var(--space-6) var(--space-6);
    padding-left: calc(48px + var(--space-6) + var(--space-4));
}

.implementation-accordion .accordion-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.implementation-accordion .accordion-body li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--gray-600);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.implementation-accordion .accordion-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.implementation-accordion .accordion-body li:last-child {
    margin-bottom: 0;
}

.implementation-step {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    overflow: hidden;
}

.implementation-step-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    cursor: pointer;
    transition: background var(--transition);
}

.implementation-step-header:hover {
    background: var(--gray-50);
}

.step-number-badge {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: var(--white);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.implementation-step-header h4 {
    flex: 1;
    font-size: var(--text-base);
}

.implementation-step-header i {
    color: var(--gray-400);
    transition: transform var(--transition);
}

.implementation-step.active .implementation-step-header i {
    transform: rotate(180deg);
}

.implementation-step-content {
    display: none;
    padding: 0 var(--space-4) var(--space-4);
    padding-left: calc(32px + var(--space-8));
}

.implementation-step.active .implementation-step-content {
    display: block;
}

.implementation-step-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.what-you-need {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

.what-you-need h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    text-align: center;
}

.needs-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.need-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.need-item i {
    color: var(--success);
}

/* ========================================
   FAQ Section
======================================== */
.industry-faq {
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 1200px) {
    .roi-tiles {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .industry-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .industry-hero-title {
        font-size: var(--text-4xl);
    }

    .pain-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case-panel.active {
        grid-template-columns: 1fr;
    }

    .channels-interactive {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .channels-selector {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .channel-select-btn {
        flex: 0 0 auto;
        padding: var(--space-2) var(--space-3);
    }

    .channel-icon-wrap {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .channel-details {
        padding: var(--space-6);
    }

    .channel-features {
        grid-template-columns: 1fr;
    }

    .crm-personalization-grid {
        grid-template-columns: 1fr;
    }

    /* CRM Section Responsive */
    .crm-columns {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .crm-sync-visual {
        order: -1;
        padding: var(--space-6) 0;
    }

    .sync-circle {
        width: 70px;
        height: 70px;
    }

    .sync-circle i {
        font-size: 28px;
    }

    .logos-row {
        gap: var(--space-3);
    }

    .integration-logo {
        padding: var(--space-3) var(--space-4);
        min-width: 100px;
    }

    .proof-card {
        grid-template-columns: 1fr;
    }

    /* Case Study Responsive */
    .case-study-content {
        padding: var(--space-8);
    }

    .case-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        padding: var(--space-8);
    }

    .roi-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .industry-hero .row {
        flex-direction: column;
    }

    .industry-hero .col-lg-6 {
        width: 100%;
    }

    .hero-visual {
        margin-top: var(--space-8);
    }

    .use-case-content .row {
        flex-direction: column;
    }

    .use-case-content .col-lg-5,
    .use-case-content .col-lg-7 {
        width: 100%;
    }

    .use-case-demo {
        margin-top: var(--space-6);
    }
}

@media (max-width: 768px) {
    .industry-hero {
        padding: var(--space-16) 0 var(--space-8);
    }

    .industry-hero h1 {
        font-size: var(--text-2xl);
    }

    .industry-hero .lead {
        font-size: var(--text-base);
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }

    .channel-switcher {
        flex-direction: column;
        align-items: flex-start;
    }

    .use-case-tabs {
        flex-wrap: nowrap;
        padding: var(--space-1);
        gap: var(--space-1);
    }

    .use-case-tab {
        flex: 0 0 auto;
        min-width: auto;
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }

    .use-case-tab i {
        font-size: 14px;
    }

    .use-case-content {
        padding: var(--space-5);
    }

    .use-case-result {
        flex-direction: column;
        text-align: center;
    }

    .trust-strip-content {
        flex-direction: column;
        text-align: center;
    }

    .pain-cards-grid {
        grid-template-columns: 1fr;
    }

    /* Channels responsive */
    .channels-selector {
        padding: var(--space-2);
    }

    .channel-select-btn {
        flex: 1 1 45%;
        min-width: 0;
        justify-content: center;
    }

    .channel-select-btn span {
        font-size: var(--text-sm);
    }

    .channel-details {
        padding: var(--space-4);
        min-height: auto;
    }

    .channel-detail h3 {
        font-size: var(--text-xl);
    }

    .channel-preview {
        margin-top: var(--space-4);
    }

    .channel-stat {
        padding: var(--space-2) var(--space-4);
    }

    .channel-stat .stat-value {
        font-size: var(--text-xl);
    }

    /* CRM Section Mobile */
    .crm-section {
        padding: var(--space-12) 0;
    }

    .crm-column {
        padding: var(--space-5);
    }

    .column-header {
        gap: var(--space-2);
    }

    .column-header i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .column-header h4 {
        font-size: var(--text-base);
    }

    .crm-list li {
        padding: var(--space-2);
    }

    .crm-list li i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .crm-list li span {
        font-size: var(--text-xs);
    }

    .sync-circle {
        width: 60px;
        height: 60px;
    }

    .sync-circle i {
        font-size: 24px;
    }

    .integration-logo {
        flex: 1 1 calc(50% - var(--space-3));
        min-width: 0;
        padding: var(--space-3);
    }

    .integration-logo span {
        font-size: var(--text-sm);
    }

    /* Case Study Mobile */
    .proof-section {
        padding: var(--space-12) 0;
    }

    .case-study-content {
        padding: var(--space-6);
    }

    .case-study-content h3 {
        font-size: var(--text-xl);
    }

    .case-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }

    .case-result {
        padding: var(--space-3);
    }

    .case-result .result-number {
        font-size: var(--text-xl);
    }

    .testimonial-card {
        padding: var(--space-6);
    }

    .testimonial-card .testimonial-quote i {
        font-size: 36px;
    }

    .testimonial-card .testimonial-quote p {
        font-size: var(--text-base);
    }

    .author-avatar {
        width: 48px;
        height: 48px;
    }

    .author-avatar i {
        font-size: 26px;
    }

    .workflow-flow {
        flex-direction: column;
        align-items: center;
    }

    .workflow-connector {
        width: 2px;
        height: 20px;
        margin: 0;
    }

    .roi-tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .roi-section {
        padding: var(--space-12) 0;
    }

    .roi-header h2 {
        font-size: var(--text-2xl);
    }

    .roi-stat .stat-number {
        font-size: var(--text-3xl);
    }

    .roi-tile {
        padding: var(--space-4);
    }

    .roi-icon {
        width: 48px;
        height: 48px;
    }

    .roi-icon i {
        font-size: 20px;
    }

    .needs-checklist {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Final CTA Section
======================================== */
.final-cta-section {
    background: linear-gradient(135deg, #0a5a80 0%, #077cb1 50%, #27b8e5 100%);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(39, 184, 229, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: ctaFloatOrb 15s ease-in-out infinite;
}

@keyframes ctaFloatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 30px) scale(1.1); }
}

.final-cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-section .cta-content h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.final-cta-section .cta-content > p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.final-cta-section .cta-buttons .btn-light {
    background: var(--white);
    color: #077cb1;
    font-weight: var(--font-bold);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-section .cta-buttons .btn-light:hover {
    background: var(--white);
    color: #0a5a80;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 255, 255, 0.2);
}

.final-cta-section .cta-buttons .btn-outline-light {
    background: transparent;
    color: var(--white);
    font-weight: var(--font-bold);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.final-cta-section .cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.final-cta-section .cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
    opacity: 0;
    animation: ctaTrustFadeIn 0.8s ease-out 0.3s forwards;
}

@keyframes ctaTrustFadeIn {
    to {
        opacity: 1;
    }
}

.final-cta-section .cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.final-cta-section .cta-trust span:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.final-cta-section .cta-trust span i {
    font-size: 16px;
    color: #4ade80;
}

/* Final CTA Responsive */
@media (max-width: 768px) {
    .final-cta-section {
        padding: var(--space-12) 0;
    }

    .final-cta-section .cta-content h2 {
        font-size: var(--text-2xl);
    }

    .final-cta-section .cta-content > p {
        font-size: var(--text-base);
    }

    .final-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-section .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .final-cta-section .cta-trust {
        gap: var(--space-3);
    }

    .final-cta-section .cta-trust span {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }
}

@media (max-width: 480px) {
    .roi-tiles {
        grid-template-columns: 1fr;
    }

    .roi-stat .stat-number {
        font-size: var(--text-2xl);
    }
    .industry-hero h1 {
        font-size: var(--text-xl);
    }

    .preview-transcript {
        min-height: 200px;
    }

    /* Channels mobile */
    .channels-selector {
        flex-direction: column;
    }

    .channel-select-btn {
        flex: 1 1 100%;
        justify-content: flex-start;
    }

    .channel-icon-wrap {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .channel-stat {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-1);
    }

    .voice-wave span {
        width: 3px;
        height: 16px;
    }

    .sms-bubble,
    .wa-message,
    .chat-msg {
        font-size: var(--text-xs);
        padding: var(--space-2);
    }

    /* CRM Section smallest screens */
    .crm-columns {
        gap: var(--space-6);
    }

    .crm-column {
        padding: var(--space-4);
    }

    .integration-logo {
        flex: 1 1 100%;
    }

    .logos-row {
        flex-direction: column;
    }

    /* Case Study smallest screens */
    .case-study-content {
        padding: var(--space-5);
    }

    .case-badge {
        font-size: 10px;
        padding: var(--space-1) var(--space-3);
    }

    .case-study-content h3 {
        font-size: var(--text-lg);
    }

    .case-results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-result .result-number {
        font-size: var(--text-lg);
    }

    .case-result .result-label {
        font-size: 10px;
    }

    .testimonial-card {
        padding: var(--space-5);
    }

    .testimonial-card .testimonial-quote p {
        font-size: var(--text-sm);
    }

    .author-info strong {
        font-size: var(--text-sm);
    }

    .author-info span {
        font-size: var(--text-xs);
    }
}

/* ========================================
   Enhanced Responsive Styles
   Tablet (768px-992px), Mobile (< 768px)
======================================== */

/* Tablet Breakpoint (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    /* Hero Section Tablet */
    .industry-hero {
        padding: var(--space-12) 0;
    }

    .industry-hero h1 {
        font-size: var(--text-3xl);
    }

    .hero-benefits li {
        font-size: var(--text-sm);
    }

    .conversation-preview {
        max-width: 100%;
    }

    .preview-transcript {
        min-height: 280px;
    }

    /* Trust Strip Tablet */
    .trust-strip {
        padding: var(--space-6) 0;
    }

    .trust-content {
        gap: var(--space-4);
    }

    .proof-chips {
        flex-wrap: wrap;
        gap: var(--space-3);
    }

    .proof-chip {
        font-size: var(--text-sm);
        padding: var(--space-2) var(--space-4);
    }

    /* Pain Points Tablet */
    .pain-points-section {
        padding: var(--space-12) 0;
    }

    .pain-toggle {
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    .pain-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    /* Use Cases Tablet */
    .use-case-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: var(--space-2);
    }

    .use-case-tabs::-webkit-scrollbar {
        display: none;
    }

    .use-case-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .use-case-features li {
        font-size: var(--text-sm);
    }

    /* Workflow Module Tablet */
    .workflow-controls {
        flex-wrap: wrap;
        gap: var(--space-4);
    }

    .scenario-selector {
        width: 100%;
        justify-content: center;
    }

    .workflow-steps {
        gap: var(--space-4);
    }

    /* Implementation & FAQ Tablet */
    .implementation-accordion,
    .faq-grid {
        max-width: 100%;
    }

    .implementation-accordion .accordion-button,
    #faqAccordion .accordion-button {
        padding: var(--space-4) var(--space-5);
    }

    .implementation-accordion .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }
}

/* Mobile Breakpoint (< 768px) - Additional Styles */
@media (max-width: 767px) {
    /* Hero Section Mobile */
    .industry-hero {
        padding: var(--space-10) 0 var(--space-8);
    }

    .industry-badge {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-3);
    }

    .industry-badge i {
        font-size: 14px;
    }

    .hero-benefits {
        gap: var(--space-3);
    }

    .hero-benefits li {
        font-size: var(--text-sm);
        gap: var(--space-2);
    }

    .hero-benefits li i {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-3);
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .conversation-preview {
        border-radius: var(--radius-lg);
    }

    .preview-header {
        padding: var(--space-3);
    }

    .caller-info i {
        font-size: 28px;
    }

    .caller-name {
        font-size: var(--text-sm);
    }

    .caller-number {
        font-size: var(--text-xs);
    }

    .preview-transcript {
        padding: var(--space-3);
        min-height: 220px;
    }

    .transcript-line {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-sm);
    }

    .channel-switcher {
        margin-top: var(--space-4);
        flex-direction: column;
        gap: var(--space-2);
    }

    .channel-chips {
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    .channel-chip {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-2);
    }

    .channel-chip i {
        font-size: 14px;
    }

    /* Trust Strip Mobile */
    .trust-strip {
        padding: var(--space-5) 0;
    }

    .trust-text {
        font-size: var(--text-sm);
        text-align: center;
    }

    .proof-chips {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
    }

    .proof-chip {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: var(--text-sm);
    }

    /* Pain Points Mobile */
    .pain-points-section {
        padding: var(--space-10) 0;
    }

    .pain-points-section .section-header h2 {
        font-size: var(--text-2xl);
        white-space: normal;
    }

    .pain-points-section .section-header p {
        font-size: var(--text-base);
    }

    .pain-toggle {
        width: 100%;
        flex-direction: column;
        gap: var(--space-2);
    }

    .pain-toggle .toggle-btn {
        width: 100%;
        justify-content: center;
    }

    .pain-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .pain-card {
        padding: var(--space-5);
    }

    .pain-card h4 {
        font-size: var(--text-lg);
    }

    .pain-card p {
        font-size: var(--text-sm);
    }

    /* Use Cases Mobile */
    .use-cases-section {
        padding: var(--space-10) 0;
    }

    .use-cases-section .section-header h2 {
        font-size: var(--text-2xl);
    }

    .use-case-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 calc(-1 * var(--space-4));
        padding: 0 var(--space-4) var(--space-2);
    }

    .use-case-tabs::-webkit-scrollbar {
        display: none;
    }

    .use-case-tab {
        flex-shrink: 0;
        white-space: nowrap;
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }

    .use-case-content {
        padding: var(--space-4);
    }

    .use-case-content h3 {
        font-size: var(--text-xl);
    }

    .use-case-content p {
        font-size: var(--text-sm);
    }

    .use-case-features {
        gap: var(--space-2);
    }

    .use-case-features li {
        font-size: var(--text-sm);
        gap: var(--space-2);
    }

    .use-case-result {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }

    .demo-flow {
        gap: var(--space-1);
    }

    .flow-step {
        padding: var(--space-2);
    }

    .step-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-content h5 {
        font-size: var(--text-sm);
    }

    .step-content p {
        font-size: var(--text-xs);
    }

    /* Triage Flow Mobile */
    .triage-flow {
        gap: var(--space-3);
    }

    .triage-level {
        padding: var(--space-4);
    }

    .level-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }

    .level-badge {
        font-size: var(--text-xs);
    }

    .triage-level ul li {
        font-size: var(--text-sm);
    }

    /* Workflow Module Mobile */
    .workflow-module {
        padding: var(--space-10) 0;
    }

    .workflow-module .section-header h2 {
        font-size: var(--text-2xl);
    }

    .workflow-controls {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
    }

    .workflow-toggle {
        width: 100%;
    }

    .workflow-toggle .toggle-btn {
        flex: 1;
    }

    .scenario-selector {
        width: 100%;
    }

    .scenario-selector select {
        width: 100%;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .step-card {
        flex: 1;
    }

    .workflow-connector {
        display: none;
    }

    /* Channels Section Mobile */
    .channels-section {
        padding: var(--space-10) 0;
    }

    .channels-section .section-header h2 {
        font-size: var(--text-xl);
    }

    .channels-interactive {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .channels-selector {
        flex-direction: row;
        flex-wrap: wrap;
        padding: var(--space-2);
        gap: var(--space-1);
    }

    .channel-select-btn {
        flex: 1 1 calc(50% - var(--space-1));
        min-width: 0;
        padding: var(--space-2);
        justify-content: center;
    }

    .channel-select-btn span {
        display: none;
    }

    .channel-icon-wrap {
        width: 36px;
        height: 36px;
    }

    .channel-details {
        padding: var(--space-4);
        min-height: auto;
    }

    .channel-detail h3 {
        font-size: var(--text-lg);
    }

    .channel-detail > .row > .col-lg-6:first-child > p {
        font-size: var(--text-sm);
    }

    .channel-features {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .channel-features li {
        font-size: var(--text-xs);
        padding: var(--space-2);
    }

    .channel-stat {
        margin-bottom: var(--space-3);
    }

    .channel-stat .stat-value {
        font-size: var(--text-xl);
    }

    .channel-preview {
        padding: var(--space-3);
        min-height: 160px;
    }

    .voice-preview {
        min-height: 200px;
    }

    .preview-text {
        font-size: var(--text-sm);
    }

    /* CRM Section Mobile */
    .crm-section {
        padding: var(--space-10) 0;
    }

    .crm-section .section-header h2 {
        font-size: var(--text-xl);
    }

    .crm-columns {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .crm-sync-visual {
        order: -1;
        padding: var(--space-4) 0;
    }

    .sync-circle {
        width: 60px;
        height: 60px;
    }

    .sync-circle i {
        font-size: 24px;
    }

    .sync-animation span {
        font-size: var(--text-xs);
    }

    .crm-column {
        padding: var(--space-4);
    }

    .column-header i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .column-header h4 {
        font-size: var(--text-base);
    }

    .crm-list li {
        padding: var(--space-2);
        gap: var(--space-2);
    }

    .crm-list li i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .crm-list li span {
        font-size: var(--text-xs);
    }

    .crm-micro-line {
        font-size: var(--text-xs);
    }

    /* Proof Section Mobile */
    .proof-section {
        padding: var(--space-10) 0;
    }

    .proof-section .section-header h2 {
        font-size: var(--text-2xl);
    }

    .case-study-featured {
        border-radius: var(--radius-lg);
    }

    .case-study-content {
        padding: var(--space-5);
    }

    .case-badge {
        font-size: 10px;
    }

    .case-study-content h3 {
        font-size: var(--text-xl);
    }

    .case-subtitle {
        font-size: var(--text-sm);
    }

    .case-challenge,
    .case-solution {
        padding: var(--space-3);
    }

    .case-challenge h5,
    .case-solution h5 {
        font-size: var(--text-xs);
    }

    .case-challenge p,
    .case-solution p {
        font-size: var(--text-xs);
    }

    .case-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2);
    }

    .case-result {
        padding: var(--space-2);
    }

    .case-result .result-number {
        font-size: var(--text-lg);
    }

    .case-result .result-label {
        font-size: 10px;
    }

    .case-study-content .btn {
        width: 100%;
        text-align: center;
    }

    .testimonial-card {
        padding: var(--space-5);
    }

    .testimonial-card .testimonial-quote i {
        font-size: 32px;
    }

    .testimonial-card .testimonial-quote p {
        font-size: var(--text-sm);
    }

    .testimonial-author {
        gap: var(--space-3);
    }

    .author-avatar {
        width: 44px;
        height: 44px;
    }

    .author-avatar i {
        font-size: 24px;
    }

    /* ROI Section Mobile */
    .roi-section {
        padding: var(--space-10) 0;
    }

    .roi-header h2 {
        font-size: var(--text-xl);
    }

    .roi-header p {
        font-size: var(--text-sm);
    }

    .roi-tiles {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .roi-tile {
        padding: var(--space-4);
    }

    .roi-icon {
        width: 48px;
        height: 48px;
    }

    .roi-icon i {
        font-size: 20px;
    }

    .roi-stat .stat-number {
        font-size: var(--text-3xl);
    }

    .roi-stat .stat-label {
        font-size: var(--text-xs);
    }

    .roi-tile > p {
        font-size: var(--text-xs);
    }

    .roi-cta .btn {
        width: 100%;
    }

    .roi-micro-text {
        font-size: var(--text-xs);
    }

    /* Implementation Section Mobile */
    .implementation-section {
        padding: var(--space-10) 0;
    }

    .implementation-section .section-header h2 {
        font-size: var(--text-2xl);
    }

    .implementation-accordion .accordion-item {
        margin-bottom: var(--space-3);
    }

    .implementation-accordion .accordion-button {
        padding: var(--space-3) var(--space-4);
        gap: var(--space-3);
    }

    .implementation-accordion .step-number {
        width: 36px;
        height: 36px;
        font-size: var(--text-sm);
    }

    .implementation-accordion .step-info strong {
        font-size: var(--text-base);
    }

    .implementation-accordion .step-duration {
        font-size: var(--text-xs);
    }

    .implementation-accordion .accordion-body {
        padding: 0 var(--space-4) var(--space-4);
        padding-left: calc(36px + var(--space-4) + var(--space-3));
    }

    .implementation-accordion .accordion-body li {
        font-size: var(--text-sm);
        padding-left: var(--space-5);
    }

    .implementation-accordion .accordion-body li::before {
        width: 6px;
        height: 6px;
        top: 7px;
    }

    /* FAQ Section Mobile */
    .faq-section {
        padding: var(--space-10) 0;
    }

    .faq-section .section-header h2 {
        font-size: var(--text-2xl);
    }

    #faqAccordion .accordion-item {
        margin-bottom: var(--space-3);
    }

    #faqAccordion .accordion-button {
        font-size: var(--text-base);
        padding: var(--space-4);
    }

    #faqAccordion .accordion-body {
        padding: 0 var(--space-4) var(--space-4);
        font-size: var(--text-sm);
    }

    #faqAccordion .accordion-body p {
        font-size: var(--text-sm);
    }

    #faqAccordion .accordion-body li {
        font-size: var(--text-sm);
        padding-left: var(--space-5);
    }

    #faqAccordion .accordion-body li::before {
        width: 6px;
        height: 6px;
        top: 8px;
    }

    /* Section Separator Mobile */
    .section-separator hr {
        width: 80% !important;
    }

    /* Email Preview Mobile */
    .email-preview {
        border-radius: var(--radius);
    }

    .email-header {
        padding: var(--space-2) var(--space-3);
    }

    .email-header strong {
        font-size: var(--text-xs);
    }

    .email-body {
        padding: var(--space-3);
    }

    .email-body p {
        font-size: var(--text-xs);
    }

    .email-btn {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }
}

/* Section Separator Base Styles */
.section-separator {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: #ffffff;
}

.section-separator hr {
    width: 60%;
    max-width: 800px;
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #d1d5db, #9ca3af, #d1d5db, transparent);
}

/* Prevent horizontal overflow on all devices */
.industry-hero,
.trust-strip,
.pain-points-section,
.use-cases-section,
.workflow-module,
.channels-section,
.crm-section,
.proof-section,
.roi-section,
.implementation-section,
.faq-section,
.final-cta-section {
    overflow-x: hidden;
}

/* Bootstrap Row/Column Responsive Overrides for Industry Pages */
@media (max-width: 991px) {
    .industry-hero .row,
    .use-case-content .row,
    .channel-detail .row,
    .case-study-featured .row {
        flex-direction: column;
    }

    .industry-hero .col-lg-6,
    .use-case-content .col-lg-5,
    .use-case-content .col-lg-7,
    .channel-detail .col-lg-6,
    .case-study-featured .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }

    .industry-hero .col-lg-6:last-child,
    .use-case-content .col-lg-7,
    .channel-detail .col-lg-6:last-child {
        margin-top: var(--space-6);
    }

    .case-study-featured .col-lg-6:last-child {
        margin-top: 0;
    }
}

/* Extra Small Mobile (< 380px) */
@media (max-width: 379px) {
    .industry-hero h1 {
        font-size: var(--text-lg);
    }

    .industry-hero .lead {
        font-size: var(--text-sm);
    }

    .hero-benefits li span {
        font-size: var(--text-xs);
    }

    .pain-card h4 {
        font-size: var(--text-base);
    }

    .use-case-content h3 {
        font-size: var(--text-lg);
    }

    .channels-section .section-header h2 {
        font-size: var(--text-lg);
    }

    .channel-select-btn {
        flex: 1 1 100%;
    }

    .crm-section .section-header h2 {
        font-size: var(--text-lg);
    }

    .roi-header h2 {
        font-size: var(--text-lg);
    }

    .roi-stat .stat-number {
        font-size: var(--text-2xl);
    }

    .final-cta-section .cta-content h2 {
        font-size: var(--text-xl);
    }

    .final-cta-section .cta-trust {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-section .cta-trust span {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}
