
.service-hero {
    padding: 180px 0 100px;
    /* Extra top padding for floating header */
    background-color: var(--bg-white);
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
    /* Subtle accounting grid effect */
    text-align: center;
}

.service-hero h1 {
    color: var(--mv-blue);
    margin-bottom: 1.5rem;
}

.service-hero .sub-text {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

/* 2. Deep Dive (Zig-Zag) */
.services {
    background: var(--text-dark);
    padding: 120px 0;
}

.zig-zag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    color: var(--text-light);

}

.zig-zag-row.reverse {
    direction: rtl;
}

.zig-zag-row.reverse .zig-zag-text {
    direction: ltr;
}

.zig-zag-text h2 {
    color: var(--bg-light);
    /* or use #ffffff / var(--text-light) */
}

.visual-box {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.pill {
    background: var(--mv-accent);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
}

/* 3. Compliance & Tax Grid */
.compliance-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.compliance-card {
    background: #0b1e2b;
    /* Deep Navy to match footer */
    padding: 48px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-10px);
}

.compliance-card h3 {
    color: var(--mv-gold, #C7F2A7);
    /* Gold/Accent highlight */
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.compliance-card p {
    color: #8899a6;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* 4. Software Compatibility */
.ecosystem {
    border-bottom: 1px solid var(--border-color);
}

.ecosystem h4 {
    text-align: center;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.logo-cloud {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.6;
}

.logo-cloud img {
    height: 40px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-cloud img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Utilities */
.spacer-60 {
    height: 60px;
}

.spacer-80 {
    height: 80px;
}

@media (max-width: 768px) {

    .zig-zag-row,
    .zig-zag-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }
}
