/* Professional Phase 10 Overrides */
.service-hero {
    padding: 8rem 5% 6rem;
    background: var(--bg-light); /* Clean grey/white background */
    color: var(--gray-900);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}
.service-hero::before { display: none; } /* Remove legacy orbital animations */

.service-hero h1 { color: var(--gray-900); margin-bottom: 1rem; font-size: 3rem; }
.service-hero p { color: var(--gray-600); font-size: 1.2rem; }

.service-icon-large {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Detailed Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Accordion FAQ */
.faq-section { background: var(--gray-50); }
.accordion { max-width: 900px; margin: 0 auto; }
.accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.accordion-header:hover { background: var(--gray-50); color: var(--primary); }
.accordion-header.active { color: var(--primary); border-bottom: 1px solid var(--gray-100); }
.accordion-header i { transition: transform 0.3s ease; }
.accordion-header.active i { transform: rotate(180deg); }

/* In-page CTA */
.inline-cta {
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    margin: 5rem 0;
    box-shadow: 0 20px 40px rgba(30,58,138,0.2);
    position: relative;
    overflow: hidden;
}
.inline-cta h2 { color: var(--white); margin-bottom: 1rem; }
.inline-cta p { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-size: 1.1rem; }
.inline-cta .btn-outline {
    background: white;
    color: var(--primary);
    border-color: white;
}
.inline-cta::after {
    content: "\f3ed";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 10rem;
    color: rgba(255,255,255,0.05);
    transform: rotate(-15deg);
}

/* Tables for data-heavy sections */
.coverage-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}
.coverage-table th { background: var(--gray-50); padding: 1.2rem; text-align: left; font-weight: 700; color: var(--gray-900); }
.coverage-table td { padding: 1.2rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.coverage-table tr:last-child td { border-bottom: none; }

/* Link adjustments */
.service-card-link { display: block; height: 100%; color: inherit; text-decoration: none; }
