/* Services pages - AR-TEC */

.services-page {
    --svc-navy: #0c2340;
    --svc-navy-dark: #071628;
    --svc-orange: #e8773d;
    --svc-orange-dark: #d4652f;
    --svc-teal: #1a7a7a;
    --svc-teal-dark: #0f5c5c;
    --svc-text: #4a5568;
}

/* ── Hero ── */

.services-hero {
    background: #fff;
    padding: 56px 0 64px;
}

.services-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.services-hero__label {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--svc-orange);
}

.services-hero h1 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--svc-navy);
}

.services-hero h1 span {
    color: var(--svc-orange);
}

.services-hero__desc {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--svc-text);
    max-width: 520px;
}

.services-hero__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
}

.services-hero__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--svc-navy);
}

.services-hero__features i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232, 119, 61, 0.12);
    color: var(--svc-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.services-hero__visual {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 35, 64, 0.15);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.services-hero__visual {
    position: relative;
}

.services-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.services-hero__badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--svc-orange);
    color: #fff;
    padding: 16px 22px;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(232, 119, 61, 0.35);
    max-width: 180px;
}

.services-hero__badge strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.services-hero__badge span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.95;
}

.services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.services-btn--outline {
    background: transparent;
    color: var(--svc-navy);
    border: 2px solid var(--svc-navy);
}

.services-btn--outline:hover {
    background: var(--svc-navy);
    color: #fff;
}

.services-btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.services-btn--ghost:hover {
    background: #fff;
    color: var(--svc-navy);
}

/* ── Trust strip ── */

.services-trust {
    background: #f4f6f9;
    padding: 28px 0;
    border-bottom: 1px solid #e8ecf1;
}

.services-trust__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.services-trust__inner > p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--svc-text);
    max-width: 360px;
}

.services-trust__logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.services-trust__logos img {
    height: 36px;
    width: auto;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: opacity 0.2s ease;
}

.services-trust__logos img:hover {
    opacity: 1;
    filter: none;
}

/* ── Section headings ── */

.services-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px;
}

.services-section-head__label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--svc-orange);
}

.services-section-head h2 {
    margin: 0 0 14px;
    font-size: 30px;
    font-weight: 800;
    color: var(--svc-navy);
    line-height: 1.25;
}

.services-section-head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--svc-text);
}

.services-section-head--light h2 {
    color: #fff;
}

.services-section-head--light p {
    color: rgba(255, 255, 255, 0.75);
}

.services-section-head--light .services-section-head__label {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Services grid ── */

.services-grid-section {
    padding: 64px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 35, 64, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.service-card__thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card:hover .service-card__thumb img {
    transform: scale(1.05);
}

.service-card__thumb .service-card__number {
    top: 14px;
    left: 14px;
    z-index: 2;
}

.service-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card__excerpt {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

.service-card:hover {
    box-shadow: 0 12px 36px rgba(12, 35, 64, 0.1);
    transform: translateY(-3px);
}

.service-card__number {
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.4;
}

.service-card--orange .service-card__number {
    color: var(--svc-orange);
    background: rgba(232, 119, 61, 0.1);
}

.service-card--teal .service-card__number {
    color: var(--svc-teal);
    background: rgba(26, 122, 122, 0.1);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-card--orange .service-card__icon {
    color: var(--svc-orange);
}

.service-card--teal .service-card__icon {
    color: var(--svc-teal);
}

.service-card__title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--svc-navy);
    min-height: 44px;
}

.service-card__list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    flex: 1;
}

.service-card__list li {
    position: relative;
    padding: 4px 0 4px 14px;
    font-size: 12px;
    line-height: 1.5;
    color: #6b7280;
}

.service-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d1d5db;
}

.service-card--orange .service-card__list li::before {
    background: var(--svc-orange);
    opacity: 0.6;
}

.service-card--teal .service-card__list li::before {
    background: var(--svc-teal);
    opacity: 0.6;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.service-card--orange .service-card__link {
    color: var(--svc-orange);
}

.service-card--teal .service-card__link {
    color: var(--svc-teal);
}

.service-card__link:hover {
    gap: 10px;
}

/* ── Process ── */

.services-process {
    background: var(--svc-navy);
    padding: 64px 0;
}

.services-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services-process__item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 28px 22px;
}

.services-process__step {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    color: var(--svc-orange);
    line-height: 1;
    margin-bottom: 14px;
}

.services-process__item h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.services-process__item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

/* ── Industries ── */

.services-industries {
    padding: 64px 0;
    background: #fff;
}

.services-industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-industries__item {
    padding: 28px 24px;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-industries__item:hover {
    border-color: rgba(232, 119, 61, 0.35);
    box-shadow: 0 8px 28px rgba(12, 35, 64, 0.08);
}

.services-industries__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(232, 119, 61, 0.1);
    color: var(--svc-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.services-industries__item h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--svc-navy);
}

.services-industries__item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--svc-text);
}

/* ── Tools ── */

.services-tools {
    background: #f4f6f9;
    padding: 40px 0;
    border-top: 1px solid #e8ecf1;
    border-bottom: 1px solid #e8ecf1;
}

.services-tools__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.services-tools__copy h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--svc-navy);
}

.services-tools__copy p {
    margin: 0;
    font-size: 13px;
    color: var(--svc-text);
}

.services-tools__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-tools__tag {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #dde2e8;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--svc-navy);
}

/* ── Testimonial ── */

.services-testimonial {
    padding: 64px 0;
    background: #fff;
}

.services-testimonial__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.services-testimonial__quote i {
    font-size: 28px;
    color: var(--svc-orange);
    margin-bottom: 16px;
    display: block;
    opacity: 0.7;
}

.services-testimonial__quote blockquote {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: var(--svc-navy);
    border: none;
    padding: 0;
}

.services-testimonial__quote cite {
    display: block;
    font-style: normal;
}

.services-testimonial__quote cite strong {
    display: block;
    font-size: 15px;
    color: var(--svc-navy);
    margin-bottom: 2px;
}

.services-testimonial__quote cite span {
    font-size: 13px;
    color: var(--svc-text);
}

.services-testimonial__visual {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(12, 35, 64, 0.12);
}

.services-testimonial__visual img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* ── CTA ── */

.services-cta {
    position: relative;
    padding: 72px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 22, 40, 0.92) 0%, rgba(12, 35, 64, 0.85) 100%);
}

.services-cta .container {
    position: relative;
    z-index: 2;
}

.services-cta__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.services-cta__inner h2 {
    margin: 0 0 14px;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.services-cta__inner > p {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.services-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.services-cta--compact {
    padding: 56px 0;
}

/* ── Why Choose ── */

.services-why {
    background: var(--svc-teal-dark);
    padding: 64px 0;
}

.services-why__heading {
    text-align: center;
    margin: 0 0 44px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.services-why__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px 20px;
}

.services-why__item {
    text-align: center;
    padding: 0 8px;
}

.services-why__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.services-why__item h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.services-why__item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

/* ── Stats bar ── */

.services-stats {
    background: var(--svc-navy-dark);
    padding: 36px 0;
}

.services-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.services-stats__item:last-child {
    border-right: 0;
}

.services-stats__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    color: var(--svc-orange);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-stats__item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.services-stats__item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Buttons ── */

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 28px;
    height: 48px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.services-btn--primary {
    background: var(--svc-orange);
    color: #fff;
}

.services-btn--primary:hover {
    background: var(--svc-orange-dark);
    color: #fff;
}

.services-btn--block {
    width: 100%;
}

/* ── Service detail page ── */

.service-detail-hero {
    position: relative;
    padding: 48px 0 56px;
    overflow: hidden;
    color: #fff;
}

.service-detail-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.service-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(7, 22, 40, 0.92) 0%, rgba(12, 35, 64, 0.82) 100%);
}

.service-detail-hero--teal::before {
    background: linear-gradient(135deg, rgba(15, 92, 92, 0.92) 0%, rgba(26, 122, 122, 0.82) 100%);
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Highlights strip */

.service-detail-highlights {
    background: #fff;
    border-bottom: 1px solid #e8ecf1;
    padding: 0;
}

.service-detail-highlights__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-detail-highlights__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 24px;
    border-right: 1px solid #e8ecf1;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--svc-navy);
}

.service-detail-highlights__item:last-child {
    border-right: 0;
}

.service-detail-highlights__item i {
    color: var(--svc-orange);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Image split + deliverables */

.service-detail-image-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    margin: 32px 0;
    align-items: stretch;
}

.service-detail-image-split > img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-image-split__card {
    background: var(--svc-navy);
    color: #fff;
    border-radius: 8px;
    padding: 28px 24px;
}

.service-detail-image-split__card h3 {
    margin: 0 0 18px;
    font-size: 18px;
    color: #fff;
}

.service-detail-image-split__card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-detail-image-split__card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-image-split__card li:last-child {
    border-bottom: 0;
}

.service-detail-image-split__card i {
    color: var(--svc-orange);
    margin-top: 3px;
}

/* Benefits grid */

.service-detail-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-detail-benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fb;
    border-radius: 6px;
    border: 1px solid #e8ecf1;
}

.service-detail-benefits__item i {
    color: var(--svc-teal);
    font-size: 18px;
    margin-top: 2px;
}

.service-detail-benefits__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

/* Gallery */

.service-detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.service-detail-gallery__item {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
}

.service-detail-gallery__item img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-gallery__item:hover img {
    transform: scale(1.04);
}

/* Process timeline */

.service-detail-process {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-detail-process__item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e8ecf1;
}

.service-detail-process__item:last-child {
    border-bottom: 0;
}

.service-detail-process__step {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--svc-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-process__item h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: var(--svc-navy);
}

.service-detail-process__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ */

.service-detail-faq__item {
    border: 1px solid #e8ecf1;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.service-detail-faq__item summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--svc-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fb;
}

.service-detail-faq__item summary::-webkit-details-marker {
    display: none;
}

.service-detail-faq__item summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: var(--svc-orange);
}

.service-detail-faq__item[open] summary::after {
    content: "−";
}

.service-detail-faq__item p {
    margin: 0;
    padding: 0 20px 16px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--svc-text);
}

.service-detail-sidebar__card + .service-detail-sidebar__card {
    margin-top: 20px;
}

.service-detail-sidebar__card--tools h3 {
    margin-bottom: 14px;
}

.service-detail-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-detail-tools span {
    display: inline-block;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #dde2e8;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--svc-navy);
}

.service-detail-sidebar__card--cta {
    text-align: center;
    background: var(--svc-navy);
    border-color: var(--svc-navy);
    color: #fff;
}

.service-detail-sidebar__card--cta i {
    font-size: 28px;
    color: var(--svc-orange);
    margin-bottom: 12px;
    display: block;
}

.service-detail-sidebar__card--cta h3 {
    color: #fff;
    margin-bottom: 8px;
}

.service-detail-sidebar__card--cta p {
    font-size: 13px;
    line-height: 1.6;
    color: #0f5c5c;
    margin-bottom: 18px;
}

.service-detail-sidebar__card--cta .services-btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    background: #e8773d;
    color: #fff;
}

.service-detail-sidebar__card--cta .services-btn--outline:hover {
    background: #fff;
    border-color: #fff;
    background: #d4652f;

}

.service-detail-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 24px;
}

.service-detail-breadcrumb a:hover {
    color: #fff;
}

.service-detail-hero__inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.service-detail-hero__number {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.service-detail-hero__icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.service-detail-hero__copy h1 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.25;
    color: #fff;
}

.service-detail-hero__copy p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
}

.service-detail-body {
    padding: 56px 0;
    background: #fff;
}

.service-detail-block {
    margin-bottom: 40px;
}

.service-detail-block h2 {
    margin: 0 0 16px;
    font-size: 22px;
    color: var(--svc-navy);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--svc-orange);
    display: inline-block;
}

.service-detail-block p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--svc-text);
    margin-bottom: 16px;
}

.service-detail-sidebar__card {
    background: #f8f9fb;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    padding: 24px 22px;
}

.service-detail-sidebar__card h3 {
    margin: 0 0 18px;
    font-size: 17px;
    color: var(--svc-navy);
}

.service-detail-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--svc-text);
    border-bottom: 1px solid #eef0f3;
}

.service-detail-list li:last-child {
    border-bottom: 0;
}

.service-detail-list i {
    color: var(--svc-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.services-related {
    padding: 48px 0 64px;
    background: #f4f6f9;
}

.services-related__heading {
    text-align: center;
    margin: 0 0 32px;
    font-size: 24px;
    color: var(--svc-navy);
}

.services-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.services-related__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(12, 35, 64, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    padding: 0;
}

.services-related__thumb {
    height: 140px;
    overflow: hidden;
}

.services-related__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-related__card:hover .services-related__thumb img {
    transform: scale(1.05);
}

.services-related__body {
    padding: 20px 18px 22px;
    position: relative;
}

.services-related__body .service-card__number {
    top: -36px;
    left: 18px;
}

.services-related__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(12, 35, 64, 0.1);
}

.services-related__card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--svc-navy);
    line-height: 1.35;
    min-height: auto;
}

.services-related__body > p {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.55;
    color: #6b7280;
}

.services-related__link {
    font-size: 13px;
    font-weight: 700;
}

.service-card--orange .services-related__link {
    color: var(--svc-orange);
}

.service-card--teal .services-related__link {
    color: var(--svc-teal);
}

/* ── Responsive ── */

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

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

    .services-why__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-detail-highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-highlights__item:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 991px) {
    .services-hero__grid {
        grid-template-columns: 1fr;
    }

    .services-hero__visual {
        clip-path: none;
        order: -1;
    }

    .services-hero__visual img {
        min-height: 260px;
    }

    .services-hero__badge {
        left: 16px;
        bottom: 16px;
    }

    .services-testimonial__inner {
        grid-template-columns: 1fr;
    }

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

    .service-detail-image-split {
        grid-template-columns: 1fr;
    }

    .service-detail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .services-stats__item:nth-child(2) {
        border-right: 0;
    }

    .services-related__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .services-hero h1 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-process__grid {
        grid-template-columns: 1fr;
    }

    .services-industries__grid {
        grid-template-columns: 1fr;
    }

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

    .service-detail-highlights__grid {
        grid-template-columns: 1fr;
    }

    .service-detail-highlights__item {
        border-right: 0;
        border-bottom: 1px solid #e8ecf1;
    }

    .service-detail-highlights__item:last-child {
        border-bottom: 0;
    }

    .service-detail-benefits {
        grid-template-columns: 1fr;
    }

    .services-stats__item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .services-stats__item:last-child {
        border-bottom: 0;
    }

    .services-cta__inner h2 {
        font-size: 26px;
    }
}

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

    .services-stats__grid {
        grid-template-columns: 1fr;
    }
}
