/* ============================================================
   SERVICE DETAIL PAGES — RSA / POSP-MISP / Claims
   Scoped stylesheet, loaded only on /services/*.php
   Reuses brand variables from style.css (:root)
   ============================================================ */

/* ---------- 1b. Header override (sticky instead of fixed) ---------- */
.site-top-fixed { position: sticky; }

/* ---------- 2. Hero — light, RSA-photo led ---------- */
.svc-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background-color: var(--brand-primary-pale);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}
.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-repeat: repeat, repeat;
    background-position: 0% 0%, 0% 0%;
    background-size: auto, auto;
    background-image:
        radial-gradient(900px 460px at 12% 0%, rgba(240,98,60,0.08), transparent 60%),
        radial-gradient(900px 460px at 92% 100%, rgba(138,95,196,0.10), transparent 60%);
}
/* Full-bleed banner treatment (mobile/desktop swap) — RSA page */
.svc-hero-rsa {
    background-color: var(--brand-primary-pale);
    background-image: url('../images/hero-banners/rsa-hero-mobile-banner.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 56px 0 64px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: flex-start;
}
.svc-hero-rsa::before { display: none; }
@media (min-width: 992px) {
    .svc-hero-rsa {
        background-image: url('../images/hero-banners/rsa-hero-desktop-banner.png');
        background-position: center;
        padding: 88px 0 96px;
        min-height: 0;
        display: block;
    }
}
@media (max-width: 767px) {
    .svc-hero-rsa { padding: 40px 0 44px; }
    .svc-hero-rsa .svc-assoc-label,
    .svc-hero-rsa .svc-assoc-logos { display: none; }
}

/* Full-bleed banner treatment (mobile/desktop swap) — Claims page */
.svc-hero-claims {
    background-color: var(--brand-primary-pale);
    background-image: url('../images/hero-banners/claims-hero-mobile-banner.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 56px 0 64px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: flex-start;
}
.svc-hero-claims::before { display: none; }
@media (min-width: 992px) {
    .svc-hero-claims {
        background-image: url('../images/hero-banners/claims-hero-desktop-banner.png');
        background-position: center;
        padding: 88px 0 96px;
        min-height: 0;
        display: block;
    }
}
@media (max-width: 767px) {
    .svc-hero-claims { padding: 40px 0 44px; }
}

/* Full-bleed banner treatment (mobile/desktop swap) — POSP/MISP page */
.svc-hero-posp {
    background-color: var(--brand-primary-pale);
    background-image: url('../images/hero-banners/posp-misp-hero-mobile-banner.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 56px 0 64px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: flex-start;
}
.svc-hero-posp::before { display: none; }
@media (min-width: 992px) {
    .svc-hero-posp {
        background-image: url('../images/hero-banners/posp-misp-hero-desktop-banner.png');
        background-position: center;
        padding: 88px 0 96px;
        min-height: 0;
        display: block;
    }
}
@media (max-width: 767px) {
    .svc-hero-posp { padding: 40px 0 44px; }
}

.svc-hero-row { display: flex; align-items: stretch; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; }
.svc-hero-text { flex: 1 1 620px; min-width: 0; }
.svc-hero-media { flex: 1 1 380px; position: relative; min-height: 360px; }
.svc-eyebrow { color: var(--brand-accent); font-size: 20px; font-weight: 600; display: block; margin-bottom: 4px; }
.svc-hero-title {
    color: var(--text-dark);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.svc-hero-subtitle { color: var(--text-body); font-size: 16px; line-height: 1.8; max-width: 540px; margin-bottom: 28px; }
.svc-hero-cta { margin-bottom: 32px; }
.svc-assoc-label { color: var(--text-muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.svc-assoc-logos {
    display: flex; flex-wrap: nowrap; align-items: center; gap: 22px;
    overflow-x: auto; max-width: 100%; padding-bottom: 4px;
    scrollbar-width: thin;
}
.svc-assoc-logos span { color: var(--text-body); font-weight: 700; font-size: 15px; letter-spacing: 0.02em; opacity: 0.85; flex-shrink: 0; }
.svc-assoc-logos img { height: 22px; width: auto; object-fit: contain; opacity: 0.50; flex-shrink: 0; }

.svc-hero-photo-frame {
    width: 100%;
    max-width: 460px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3.4;
}
.svc-hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero-photo-cutout {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.svc-hero-photo-cutout img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.svc-float-badge {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--bg-light-alt);
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-accent); font-size: 20px;
}
.svc-float-badge.fb-1 { top: 4%; right: 18%; }
.svc-float-badge.fb-2 { top: 22%; right: -2%; }
.svc-float-badge.fb-3 { bottom: 26%; left: -4%; }
.svc-float-badge.fb-4 { bottom: 2%; right: 4%; }
.svc-hero-card-float {
    position: absolute;
    top: 8%; left: -6%;
    background: #fff;
    border-radius: var(--r-md);
    padding: 14px 16px;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
    max-width: 210px;
}
.svc-hero-card-float .svc-badge-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand-accent-light); color: var(--brand-accent);
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
    overflow: hidden;
}
.svc-hero-card-float .svc-badge-icon img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-card-float strong { display: block; font-size: 12px; color: var(--text-dark); }
.svc-hero-card-float span { font-size: 10px; color: var(--text-muted); }

/* ---------- 3. Trusted-by strip ---------- */
.svc-trusted { background: #fff; padding: 28px 0; border-bottom: 1px solid var(--bg-light-alt); }
.svc-trusted-row { display: flex; align-items: center; gap: 28px; width: 100%; }
.svc-trusted-label { font-size: 12px; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; font-weight: 700; flex-shrink: 0; }
.svc-trusted-marquee {
    flex: 1 1 auto; min-width: 0; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.svc-trusted-track {
    display: flex; align-items: center; gap: 48px;
    width: max-content;
    animation: svcTrustedMarquee 26s linear infinite;
}
.svc-trusted-marquee:hover .svc-trusted-track { animation-play-state: paused; }
.svc-trusted-track img { height: 48px; width: auto; object-fit: contain; flex-shrink: 0; }
@keyframes svcTrustedMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .svc-trusted-track { animation: none; }
}

/* ---------- 4. Stats — light variant (RSA) ---------- */
.svc-stats-intro { text-align: center; max-width: 940px; margin: 0 auto 50px; }
.svc-stats-intro h2 { font-size: clamp(20px,2.6vw,32px); margin-bottom: 12px; white-space: normal; }
.svc-stats-grid { display: grid; grid-template-columns: repeat(4, max-content); justify-content: space-between; row-gap: 36px; column-gap: 24px; }
.svc-stat-item .svc-stat-num { display: block; font-family: var(--font-heading); font-size: clamp(24px,2.6vw,32px); font-weight: 800; color: var(--brand-primary); white-space: nowrap; }
.svc-stat-item .svc-stat-label { font-size: 14px; color: var(--text-muted); white-space: nowrap; }

.svc-stats-map-bg {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: min(1320px, 92%) auto;
    padding-bottom: 340px;
}
@media (max-width: 767px) {
    .svc-stats-map-bg { padding-bottom: 180px; }
}

/* ---------- 4b. Stats — orange band variant (POSP) ---------- */
.svc-stats-band { background: linear-gradient(120deg, var(--brand-accent) 0%, #ff7a3d 100%); padding: 44px 0; }
.svc-stats-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.svc-stats-band-grid .svc-stat-num { display: block; font-family: var(--font-heading); font-size: clamp(26px,3vw,36px); font-weight: 800; color: #fff; }
.svc-stats-band-grid .svc-stat-label { font-size: 14px; color: rgba(255,255,255,0.85); }

/* ---------- 5. Map / channels section (RSA) ---------- */
.svc-map-section {
    position: relative;
    background-color: #f5f6fa;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.svc-map-section::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(245,246,250,0) 0%, rgba(245,246,250,0.85) 65%, #fff 100%);
    pointer-events: none;
}
.svc-map-section > .container { position: relative; z-index: 2; }
.svc-channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc-channel-card {
    background: #fff; border: 1px solid var(--bg-light-alt); border-radius: var(--r-md);
    padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
    box-shadow: var(--shadow-sm); transition: var(--tr);
}
.svc-channel-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.svc-channel-card.full { grid-column: 1 / -1; }
.svc-channel-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: var(--brand-accent-light); color: var(--brand-accent);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.svc-channel-card h4 { font-size: 15px; margin-bottom: 2px; }
.svc-channel-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

.svc-lang-photo-wrap {
    position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 420px;
}
.svc-lang-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- 6. Benefit split w/ centered mockup (RSA) ---------- */
.svc-benefit-row { position: relative; display: grid; grid-template-columns: 1fr minmax(240px,320px) 1fr; gap: 30px; align-items: center; }
.svc-benefit-row::before {
    content: '';
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 620px; height: 620px; max-width: 100%;
    background:
        radial-gradient(circle 180px at 35% 65%, rgba(255,173,143,0.4), transparent 100%),
        radial-gradient(circle 180px at 65% 35%, rgba(156,148,255,0.4), transparent 100%);
    pointer-events: none; z-index: 0;
}
.svc-benefit-col { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 34px; text-align: right; }
.svc-benefit-col.align-right { text-align: left; }
.svc-benefit-col:not(.align-right) .svc-benefit-item { flex-direction: row-reverse; justify-content: flex-end; }
.svc-benefit-col.align-right .svc-benefit-item { flex-direction: row; justify-content: flex-end; }
.svc-benefit-item { display: flex; gap: 14px; }
.svc-benefit-icon {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: var(--brand-primary-pale); color: var(--brand-primary);
    display: flex; align-items: center; justify-content: center; font-size: 17px;
}
@media (min-width: 901px) {
    .svc-zigzag .svc-benefit-icon { opacity: 0; }
}
.svc-benefit-item h5 { font-size: 15px; margin-bottom: 4px; }
.svc-benefit-item p { font-size: 13.5px; color: var(--text-muted); margin: 0; }
.svc-mockup-placeholder {
    border-radius: var(--r-lg);
    border: 1px dashed rgba(27,20,99,0.2);
    background: linear-gradient(180deg,#fbfbff,#f2f2fb);
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-muted); font-size: 12.5px; padding: 24px;
    min-height: 320px;
}
.svc-mockup-placeholder.tall { min-height: 420px; }
.svc-mockup-placeholder i { display:block; font-size: 26px; margin-bottom: 10px; color: var(--brand-accent); }
.svc-mockup-img { overflow: hidden; border-radius: var(--r-lg); margin-bottom: 0; }
.svc-mockup-img img { width: 100%; height: auto; display: block; transform: scale(1.1); transform-origin: top center; margin-bottom:-60px; }
.svc-phone-mockup-wrap { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.svc-phone-mockup-wrap img { max-width: 100%; max-height: 460px; width: auto; display: block; }

/* ---------- 7. Coverage icon grid ---------- */
.svc-coverage-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px 16px; text-align: center; }
.svc-coverage-item i { font-size: 26px; color: var(--brand-accent); margin-bottom: 10px; display: block; }
.svc-coverage-item span { font-size: 13.5px; color: var(--text-dark); font-weight: 600; }

/* ---------- 8. Numbered step timeline ---------- */
.svc-timeline-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.svc-timeline-step { flex: 1 1 160px; text-align: center; position: relative; }
.svc-timeline-num {
    width: 56px; height: 56px; border-radius: 12px;
    background: var(--brand-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 800; font-size: 20px;
    box-shadow: var(--shadow-sm);
    margin: 0 auto 22px;
}
.svc-timeline-step h5 { font-size: 15px; margin-bottom: 6px; }
.svc-timeline-step p { font-size: 13px; color: var(--text-muted); margin: 0; }
.svc-timeline-section { position: relative; background: var(--bg-light); overflow: hidden; }
.svc-timeline-section::before {
    content: ''; position: absolute; z-index: 0;
    width: 640px; height: 640px; border-radius: 50%;
    left: 4%; bottom: -18%;
    background: rgba(255,173,143,0.4); filter: blur(90px);
}
.svc-timeline-section::after {
    content: ''; position: absolute; z-index: 0;
    width: 420px; height: 420px; border-radius: 50%;
    right: 8%; top: -10%;
    background: rgba(156,148,255,0.4); filter: blur(90px);
}
.svc-timeline-section > .container { position: relative; z-index: 1; }

/* ---------- 8b. Testimonial carousel scroll progress ---------- */
.svc-carousel-progress { height: 4px; background: var(--bg-light-alt); border-radius: 2px; margin-top: 26px; overflow: hidden; }
.svc-carousel-progress-fill { height: 100%; width: 33%; background: var(--brand-accent); border-radius: 2px; transition: width 0.35s ease; }

/* ---------- 9. Partner / white-label section ---------- */
.svc-partner-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; margin: 30px 0; }
.svc-partner-feature { text-align: center; font-size: 13px; color: var(--text-dark); font-weight: 600; max-width: 110px; }
.svc-partner-feature i { display: block; font-size: 22px; color: var(--brand-accent); margin-bottom: 10px; }

/* ---------- 10. Testimonials — felicitation + carousel (RSA) ---------- */
.svc-testi-wrap { display: flex; gap: 24px; align-items: stretch; flex-wrap: wrap; }
.svc-felicitation-card {
    flex: 0 0 240px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 30px 26px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 260px;
}
.svc-felicitation-card h4 { color: #fff; font-size: 22px; line-height: 1.35; }
.svc-felicitation-card i { font-size: 46px; opacity: 0.35; align-self: flex-end; }
.svc-testi-carousel-wrap { flex: 1 1 420px; min-width: 0; }

/* ---------- 10b. Testimonial static grid (POSP) ---------- */
.svc-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- 11. FAQ split (help card variant) ---------- */
.svc-faq-help-card {
    background: var(--bg-light);
    border-radius: var(--r-lg);
    padding: 30px;
    margin-top: 30px;
}
.svc-faq-help-card h4 { font-size: 17px; margin-bottom: 8px; }
.svc-faq-help-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }

/* ---------- 12. CTA band + demo form ---------- */
.svc-cta-band {
    position: relative;
    background: linear-gradient(120deg, var(--brand-accent) 0%, #ff7a3d 100%);
    padding: 80px 0;
    overflow: hidden;
}
.svc-cta-row { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.svc-cta-text { flex: 1 1 380px; color: #fff; }
.svc-cta-text h2 { color: #fff; font-size: clamp(26px,3.2vw,36px); margin-bottom: 16px; }
.svc-cta-text p { color: rgba(255,255,255,0.9); font-size: 15.5px; margin-bottom: 22px; max-width: 480px; }
.svc-cta-flags { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; color: rgba(255,255,255,0.92); }
.svc-cta-flags span::before { content: '\2022'; margin-right: 8px; color: rgba(255,255,255,0.6); }
.svc-cta-form-card {
    flex: 1 1 420px;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 34px 32px;
    box-shadow: var(--shadow-lg);
}
.svc-cta-form-card h3 { font-size: 22px; margin-bottom: 20px; }
.svc-cta-form-card .demo-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.svc-cta-form-card .demo-input { border: 1.5px solid var(--bg-light-alt); border-radius: var(--r-sm); padding: 11px 14px; font-size: 14px; }
.svc-cta-form-card .demo-input:focus { border-color: var(--brand-accent); box-shadow: 0 0 0 3px rgba(240,90,35,0.12); outline: none; }

/* ---------- 13. Training cards (POSP vs MISP) ---------- */
.svc-training-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: stretch; }
.svc-training-card {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    min-height: 500px;
    display: flex; flex-direction: column;
    background: linear-gradient(180deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    padding-top: 28px;
}
.svc-training-text { position: relative; z-index: 2; text-align: center; padding: 0 30px 22px; }
.svc-training-text h4 { color: #fff; font-size: 17px; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 12px; }
.svc-training-text p { color: rgba(255,255,255,0.85); font-size: 13.5px; line-height: 1.7; margin: 0; }
.svc-training-photo {
    position: relative; flex: 1; min-height: 260px;
    background: radial-gradient(circle 220px at 50% 15%, rgba(255,255,255,0.1), transparent 100%);
    display: flex; align-items: flex-end; justify-content: center;
}
.svc-training-photo img { width: auto; max-width: 60%; height: 94%; object-fit: contain; object-position: bottom center; display: block; }
@media (max-width: 991px) {
    .svc-training-photo img { max-width: 70%; }
}
@media (max-width: 767px) {
    .svc-training-photo img { max-width: 80%; }
}
.svc-training-badge-float {
    position: absolute; z-index: 3;
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff; border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center; color: #6b7280; font-size: 18px;
}
.svc-training-badge-float.bf-top { position: relative; margin: 0 auto 14px; }
.svc-training-badge-float.bf-photo-l { top: 6%; left: 14%; }
.svc-training-badge-float.bf-photo-r { top: 4%; right: 16%; }

/* ---------- 14. Feature icon grid (POSP "everything for task at hand") ---------- */
.svc-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-feature-card {
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #ffffff 0%, var(--brand-primary-pale) 145%);
    border: 1px solid rgba(27,20,99,0.1); border-radius: var(--r-md);
    padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.svc-feature-card .svc-feature-icon {
    position: relative;
    height: 74px;
    display: flex; align-items: center; justify-content: flex-start; margin-bottom: 16px;
}
.svc-feature-card .svc-feature-icon.is-fa {
    width: 52px; border-radius: 14px;
    background: var(--brand-accent-light); color: var(--brand-accent);
    justify-content: center; font-size: 22px;
}
.svc-feature-card::before {
    content: ''; position: absolute; z-index: 0;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle 120px at 30% 68%, rgba(255,173,143,0.30), transparent 100%),
        radial-gradient(circle 120px at 68% 30%, rgba(156,148,255,0.30), transparent 100%);
    pointer-events: none;
}
.svc-feature-card .svc-feature-icon img { position: relative; z-index: 1; max-height: 100%; width: auto; display: block; }
.svc-feature-card .svc-feature-icon { z-index: 1; }
.svc-feature-card h4 { position: relative; z-index: 1; font-size: 15.5px; margin-bottom: 8px; }
.svc-feature-card p { position: relative; z-index: 1; font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* ---------- 15. Dashboard section points ---------- */
.svc-dash-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin: 26px 0 34px; }
.svc-dash-point { text-align: center; font-size: 13.5px; color: var(--text-dark); font-weight: 600; max-width: 150px; }
.svc-dash-point i { display: block; font-size: 22px; color: var(--brand-accent); margin-bottom: 10px; }

/* ---------- 16. Coming soon (Claims) ---------- */
.svc-coming-soon {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: var(--r-lg);
}
.svc-coming-soon .svc-coming-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-accent-light); color: var(--brand-accent);
    font-weight: 700; font-size: 13px; padding: 8px 18px; border-radius: var(--r-pill);
    margin-bottom: 20px;
}

/* ---------- 17. Dark feature card w/ bleeding media (Claims) ---------- */
.svc-dark-feature-card {
    position: relative;
    background: var(--brand-primary);
    border-radius: var(--r-xl);
    padding: clamp(28px, 4vw, 60px);
    padding-bottom: 0;
    display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
    overflow: visible;
    isolation: isolate;
}
.svc-dark-feature-card::before {
    content: ''; position: absolute; z-index: 0; inset: 0;
    border-radius: inherit; overflow: hidden;
    background:
        radial-gradient(circle 220px at 78% 15%, rgba(255,173,143,0.55), transparent 100%),
        radial-gradient(circle 220px at 68% 75%, rgba(205,199,255,0.4), transparent 100%);
}
.svc-dark-feature-card .svc-dfc-text { position: relative; z-index: 1; flex: 1 1 380px; color: #fff; padding-bottom: clamp(28px, 4vw, 60px); }
.svc-dark-feature-card .svc-dfc-text h3 { color: #fff; font-size: clamp(24px,3vw,32px); margin-bottom: 16px; line-height: 1.3; }
.svc-dark-feature-card .svc-dfc-text p { color: rgba(255,255,255,0.8); font-size: 15.5px; line-height: 1.8; margin: 0; }
.svc-dark-feature-card .svc-dfc-media { position: relative; z-index: 1; flex: 0 1 280px; text-align: center; align-self: flex-end; overflow: hidden; }
.svc-dark-feature-card .svc-dfc-media img { max-width: 100%; width: 280px; display: inline-block; margin-bottom: -60px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35)); }
@media (max-width: 767px) {
    .svc-dark-feature-card .svc-dfc-media img { margin-bottom: 0; }
}

/* ---------- 18. Photo/graphic banner rows (Claims) ---------- */
.svc-graphic-banner img, .svc-graphic-banner video { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }

/* ---------- 19. Six-step alternating zigzag timeline (Claims) ---------- */
.svc-zigzag { position: relative; max-width: 1180px; margin: 0 auto; min-height: 700px; }
.svc-zigzag-track {
    position: absolute; left: 50%; top: 0; transform: translateX(-50%);
    height: 100%; z-index: 0; pointer-events: none;
}
.svc-zigzag-track img { height: 100%; width: auto; display: block; }
.svc-zigzag-step {
    position: absolute; width: 40%; z-index: 1;
}
.svc-zigzag-step.is-right { right: 0; text-align: left; }
.svc-zigzag-step.is-left { left: 0; text-align: right; }
.svc-zigzag-step h5 { font-size: 16px; margin-bottom: 8px; }
.svc-zigzag-step p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.7; }
@media (max-width: 900px) {
    .svc-zigzag { min-height: 0; }
    .svc-zigzag-track { display: none; }
    .svc-zigzag-step {
        position: static; width: 100%; text-align: left !important;
        margin-bottom: 28px; padding-left: 20px; border-left: 3px solid var(--brand-accent);
    }
    .svc-zigzag-step .svc-benefit-item { flex-direction: row; justify-content: flex-start; }
    .svc-zigzag-step.is-left .svc-benefit-item { flex-direction: row-reverse; justify-content: flex-end; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .svc-stats-grid, .svc-stats-band-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-stat-item .svc-stat-num, .svc-stat-item .svc-stat-label { white-space: normal; }
    .svc-coverage-grid { grid-template-columns: repeat(3, 1fr); }
    .svc-channel-grid { grid-template-columns: 1fr; }
    .svc-benefit-row { grid-template-columns: 1fr; }
    .svc-benefit-col { text-align: left; }
    .svc-benefit-item { flex-direction: row; justify-content: flex-start; }
    .svc-training-grid, .svc-feature-grid, .svc-testi-grid { grid-template-columns: 1fr; }
    .svc-timeline-row { flex-direction: column; }
}
@media (max-width: 575px) {
    .svc-stats-grid, .svc-stats-band-grid, .svc-coverage-grid { grid-template-columns: repeat(2, 1fr); }
}
