/* Enhanced Healthcare Page Styles */

/* Section BG Improvements */
.section-bg {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e5f 50%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle, rgba(103, 119, 209, 0.15) 0%, transparent 70%); */
    pointer-events: none;
}

.use-case {
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.use-case-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 20px auto 40px;
    text-align: center;
}

.info-content {
    position: relative;
    z-index: 1;
}

.this-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.this-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.item-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.item-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.item-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.item-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

.item-footnote {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    font-style: italic;
}

/* Main Content Wrapper Improvements */
.main-content-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.content-section {
    padding: 80px 20px;
}

.section-heading {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 400;
}

/* Feature Deep Dive Cards */
.feature-deep-dive {
    gap: 32px;
}

.feature-article {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.feature-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.feature-article:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-article h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.feature-article p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.feature-bullets li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
}

.feature-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Alt Background Section */
.alt-bg {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
}

.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
}

.note {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.95rem;
    color: #78350f;
    font-style: italic;
}

/* Use Case Grid */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.use-case-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.use-case-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.use-case-card h3 {
    font-size: 1.35rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.use-case-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

/* FAQ Section Enhancements */
.faq-section {
    padding: 80px 20px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

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

.accordion-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 24px 28px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header.active {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.accordion-title {
    text-align: left;
    flex: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

/* .accordion-header.active .accordion-icon {
    transform: rotate(45deg);
} */

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 28px;
}

.accordion-content p {
    padding: 0 0 24px 0;
    margin: 0;
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
}

/* TLT Section */
.tlt {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-container {
    background: white;
    padding: 60px 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.agents-help-guide h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
}

.agents-subtext {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    max-width: 700px;
    margin: 20px auto 0;
}

.benefits-parent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.benefits {
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefits:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.benefit-title {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    display: inline-block;
    margin-bottom: 16px !important;
}

.benefits p:not(.benefit-title) {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.saving-time-btn {
    margin-top: 48px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.saving-time-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}

.decorative-line {
    margin: 60px 0 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

/* White Label Section */
.white-label-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.white-label-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

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

.white-label-section .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.white-label-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.white-label-benefits {
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.benefit-item svg {
    width: 48px;
    height: 48px;
    color: #667eea;
    margin-bottom: 24px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.white-label-cta {
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.white-label-cta .get-started-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.white-label-cta .get-started-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .agents-help-guide h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .white-label-section .section-title {
        font-size: 2rem;
    }
    
    .faq-container {
        padding: 40px 24px;
    }
    
    .this-item {
        padding: 24px;
    }
    
    .feature-article {
        padding: 28px;
    }
    
    .info-content {
        flex-direction: column;
    }
    
    .this-item {
        border-right: none;
        padding-right: 32px;
        margin-bottom: 24px;
    }
}