.service-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
}

.service-breadcrumbs a {
    color: #ffffff;
    opacity: 0.88;
    text-decoration: none;
}

.service-breadcrumbs a:hover {
    opacity: 1;
}

.service-breadcrumbs span[aria-current="page"] {
    color: #ffb08a;
    font-weight: 600;
}

.service-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-hero-actions .reach-btn,
.service-hero-actions .reach-btn-outline {
    width: auto;
    min-width: 170px;
    padding: 0 1.65rem;
}

.page-hero::after {
    display: none;
}

.page-hero {
    min-height: 470px;
}

.page-hero-content {
    max-width: 1100px;
}

.page-hero-content h1 {
    margin-bottom: 0.85rem;
}

.page-hero-content p {
    max-width: 760px;
    margin: 0 auto;
}

.metric-grid,
.comparison-grid,
.process-grid,
.industry-grid,
.faq-grid,
.related-grid,
.gallery-grid-two,
.service-card-grid {
    display: grid;
    gap: 1.5rem;
}

.metric-grid,
.service-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.comparison-grid,
.faq-grid,
.gallery-grid-two {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.process-grid,
.industry-grid,
.related-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.service-panel,
.metric-card,
.compare-card,
.process-step,
.industry-card,
.faq-item,
.gallery-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.65rem;
    box-shadow: 0 14px 34px rgba(12, 47, 79, 0.08);
}

.metric-card {
    border-top: 4px solid var(--primary-orange);
}

.metric-card h3,
.service-panel h2,
.compare-card h3,
.process-step h3,
.industry-card h3,
.faq-item h3,
.gallery-card h3 {
    color: var(--primary-blue);
    margin: 0 0 0.85rem;
}

.metric-card p,
.service-panel p,
.compare-card p,
.process-step p,
.industry-card p,
.faq-item p,
.gallery-card p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.75;
}

.service-panel p + p,
.faq-item p + p {
    margin-top: 0.9rem;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.list-check li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.list-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    background: var(--primary-orange);
}

.step-index {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.12);
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-card {
    padding: 0;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gallery-card .gallery-copy {
    padding: 1.3rem 1.4rem 1.5rem;
}

.service-chip-row {
    display: none;
}

.service-chip {
    display: none;
}

.note-box {
    border-left: 4px solid var(--primary-orange);
    background: rgba(255, 107, 53, 0.08);
    padding: 1rem 1.1rem;
    border-radius: 0 16px 16px 0;
    color: var(--text-gray);
    line-height: 1.7;
    margin-top: 1rem;
}

.related-card {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: 0 14px 34px rgba(12, 47, 79, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(12, 47, 79, 0.12);
}

.related-card h3 {
    margin: 0 0 0.75rem;
    color: var(--primary-blue);
}

.related-card p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
}

.related-card .link-label {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.services-cta {
    background: linear-gradient(135deg, #004E89, #0077b5);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: #ffffff;
}

.services-cta p {
    max-width: 760px;
    margin: 0 auto 1.9rem;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.92);
}

.services-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 56px;
    padding: 0 1.9rem;
    border-radius: 999px;
    text-decoration: none;
    background: var(--primary-orange);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.services-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(255, 107, 53, 0.4);
    color: #ffffff;
    background: #ff7f50;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}

.service-card-link:hover,
.service-card-link:focus-visible {
    text-decoration: none;
    color: inherit;
}

.service-card-link:focus-visible,
.related-card:focus-visible {
    outline: 3px solid rgba(255, 107, 53, 0.35);
    outline-offset: 4px;
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .page-hero-content h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 640px) {
    .service-hero-actions .reach-btn,
    .service-hero-actions .reach-btn-outline {
        width: 100%;
    }

    .page-hero-content {
        padding-top: 96px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }
}
