/* ================================================================
   DesIDEA Services — Unified Premium Design System
   ================================================================ */

:root {
    --sv-green: #72BB44;
    --sv-green-dark: #4d8f2a;
    --sv-green-light: #8ecf5a;
    --sv-green-deep: #1a3d28;
    --sv-gold: #c4a35a;
    --sv-navy: #0f172a;
    --sv-navy-soft: #1e293b;
    --sv-text: #1e293b;
    --sv-heading: #0f172a;
    --sv-muted: #475569;
    --sv-cream: #f8fafc;
    --sv-lavender: #eef2ff;
    --sv-white: #ffffff;
    --sv-glass-dark: rgba(15, 23, 42, 0.58);
    --sv-glass-mid: rgba(255, 255, 255, 0.14);
    --sv-glass-light: rgba(255, 255, 255, 0.94);
    --sv-glass-border: rgba(255, 255, 255, 0.25);
    --sv-glass-blur: blur(22px) saturate(190%);
    --sv-shadow-sm: 0 4px 24px rgba(15, 23, 42, 0.06);
    --sv-shadow-md: 0 16px 48px rgba(15, 23, 42, 0.09);
    --sv-shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.14);
    --sv-shadow-glow: 0 0 0 1px rgba(255,255,255,.08), 0 24px 60px rgba(15,23,42,.22);
    --sv-r-sm: 12px;
    --sv-r-md: 18px;
    --sv-r-lg: 24px;
    --sv-r-xl: 32px;
    --sv-wrap: 1240px;
    --sv-font-serif: 'Cormorant Garamond', Georgia, serif;
    --sv-font-sans: 'Poppins', system-ui, sans-serif;
    --sv-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Scope & base ---- */
.sv-page,
.sv-page *,
.sv-hero,
.sv-section,
.sv-cta {
    box-sizing: border-box;
}

.sv-page {
    font-family: var(--sv-font-sans);
    color: var(--sv-text);
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

/* Smooth document scroll — avoid nested scroll containers that feel "stuck" */
html.sv-page-active {
    overflow-x: clip !important;
    overflow-y: visible !important;
    height: auto !important;
    scroll-behavior: auto;
}

body.sv-page-active {
    overflow-x: clip !important;
    overflow-y: visible !important;
    height: auto !important;
    min-height: 100%;
    overscroll-behavior-y: auto;
}

body.sv-page-active .body-content,
body.sv-page-active .sv-page,
body.sv-page-active .tech-page,
body.sv-page-active .ss-page,
body.sv-page-active .cs-page {
    overflow-x: clip !important;
    overflow-y: visible !important;
    max-width: 100%;
    transform: none !important;
}

/* Keep AOS slide transforms from expanding page width */
body.sv-page-active .sv-section,
body.sv-page-active .sv-empathy,
body.sv-page-active .sv-solution,
body.sv-page-active [class*="sv-story"] {
    overflow-x: clip;
    max-width: 100%;
}

body.sv-page-active .sv-hero {
    overflow: hidden;
    max-width: 100%;
}

body.sv-page-active .sv-hero__bg {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
}

.sv-wrap {
    width: min(92%, var(--sv-wrap));
    margin: 0 auto;
}

.sv-brand {
    color: var(--sv-green-dark);
    font-weight: 700;
}

.sv-brand em {
    font-style: normal;
    color: var(--sv-green);
}

/* ---- Hero ---- */
.sv-hero {
    position: relative;
    min-height: clamp(420px, 58vh, 560px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -1px;
    width: 100%;
    max-width: 100%;
}

.sv-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: none;
    filter: saturate(0.85) brightness(0.72);
}

.sv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(26,61,40,.62) 48%, rgba(15,23,42,.85) 100%);
}

.sv-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.sv-hero__content {
    position: relative;
    z-index: 2;
    width: min(92%, var(--sv-wrap));
    margin: 0 auto;
    padding: 100px 0 72px;
}

.sv-glass {
    position: relative;
    isolation: isolate;
    backdrop-filter: var(--sv-glass-blur);
    -webkit-backdrop-filter: var(--sv-glass-blur);
    border-radius: var(--sv-r-lg);
    overflow: hidden;
}

.sv-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,.06) 42%, rgba(196,163,90,.28));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sv-glass--hero {
    background: var(--sv-glass-dark);
    border: 1px solid var(--sv-glass-border);
    box-shadow: var(--sv-shadow-glow);
    padding: clamp(28px, 4vw, 44px);
    color: var(--sv-white);
    max-width: 620px;
}

.sv-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sv-green-light);
    margin-bottom: 14px;
}

.sv-hero h1 {
    font-family: var(--sv-font-serif);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.sv-hero h1 em {
    font-style: italic;
    color: var(--sv-green-light);
}

.sv-hero__lead {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.75;
    color: rgba(255,255,255,.88);
    margin: 0 0 24px;
    max-width: 520px;
}

.sv-hero h2.sv-hero__lead {
    font-weight: 400;
    font-size: clamp(14px, 1.6vw, 16px);
}

.sv-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 767px) {
    .sv-hero__cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }

    .sv-hero__cta .sv-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ---- Hero layout variants (unique top section per page) ---- */
.sv-hero--split-visual .sv-hero__content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding-top: 110px;
    padding-bottom: 80px;
}

.sv-hero--split-visual .sv-hero__copy {
    max-width: none;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--sv-r-lg);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--sv-shadow-glow);
}

.sv-hero--split-visual .sv-hero__copy .sv-hero__lead {
    color: rgba(255, 255, 255, 0.92);
}

.sv-hero--split-visual .sv-hero__copy h1 {
    color: var(--sv-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.sv-hero--split-visual .sv-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-hero--split-visual .sv-hero__visual img {
    max-width: min(100%, 340px);
    filter: drop-shadow(0 32px 64px rgba(0,0,0,.45));
}

.sv-hero--split-visual .sv-hero__visual-ring {
    position: relative;
    padding: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,187,68,.18) 0%, transparent 70%);
}

/* Cinematic bottom-anchored */
.sv-hero--cinematic {
    min-height: clamp(520px, 72vh, 680px);
    align-items: flex-end;
}

.sv-hero--cinematic .sv-hero__overlay {
    background: linear-gradient(180deg, rgba(15,23,42,.25) 0%, rgba(15,23,42,.55) 45%, rgba(15,23,42,.92) 100%);
}

.sv-hero--cinematic .sv-hero__content {
    padding-bottom: clamp(48px, 8vw, 88px);
    width: min(92%, var(--sv-wrap));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.sv-hero--cinematic .sv-hero__cinematic-inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sv-hero--cinematic h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    width: 100%;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--sv-white);
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}

.sv-hero--cinematic .sv-hero__lead {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
}

.sv-hero--cinematic .sv-eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.sv-hero--cinematic .sv-hero__cta {
    width: 100%;
    justify-content: center;
}

.sv-hero--cinematic .sv-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.sv-hero__chip {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.9);
}

/* Centered orbit */
.sv-hero--orbit {
    min-height: clamp(480px, 65vh, 620px);
    align-items: center;
    text-align: center;
}

.sv-hero--orbit .sv-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sv-hero--orbit h1 { max-width: 780px; margin-left: auto; margin-right: auto; }

.sv-hero--orbit .sv-hero__lead { max-width: 580px; margin-left: auto; margin-right: auto; }

.sv-hero--orbit .sv-hero__cta { justify-content: center; }

.sv-hero--orbit .sv-hero__orbit-ring {
    position: absolute;
    width: clamp(280px, 40vw, 480px);
    height: clamp(280px, 40vw, 480px);
    border-radius: 50%;
    border: 1px dashed rgba(114,187,68,.35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sv-hero--orbit .sv-hero__orbit-ring::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

/* Device showcase */
.sv-hero--device .sv-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: clamp(460px, 62vh, 600px);
}

.sv-hero--device .sv-hero__copy {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--sv-r-lg);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--sv-shadow-glow);
}

.sv-hero--device .sv-hero__copy h1 {
    color: var(--sv-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.sv-hero--device .sv-hero__copy .sv-hero__lead {
    color: rgba(255, 255, 255, 0.92);
}

.sv-hero--device .sv-hero__device {
    position: relative;
    text-align: center;
}

.sv-hero--device .sv-hero__device img {
    max-height: clamp(280px, 42vh, 420px);
    width: auto;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,.5));
}

.sv-hero--device .sv-hero__device-glow {
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(circle, rgba(114,187,68,.3), transparent 65%);
    z-index: -1;
}

/* Minimal wide editorial */
.sv-hero--minimal .sv-hero__content { padding-top: 120px; padding-bottom: 64px; }

.sv-hero--minimal h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    max-width: 900px;
    line-height: 1.08;
}

.sv-hero--minimal .sv-hero__rule {
    width: 64px;
    height: 3px;
    background: var(--sv-green);
    margin: 16px 0 24px;
}

.sv-hero--minimal .sv-hero__lead { max-width: 680px; font-size: 17px; }

/* Logo stack centered */
.sv-hero--logo-stack {
    text-align: center;
    align-items: center;
}

.sv-hero--logo-stack .sv-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sv-hero--logo-stack .sv-hero__logo {
    height: clamp(56px, 8vw, 88px);
    width: auto;
    margin-bottom: 28px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.3));
}

.sv-hero--logo-stack h1 { max-width: 720px; }

.sv-hero--logo-stack .sv-hero__lead { max-width: 600px; margin-left: auto; margin-right: auto; }

.sv-hero--logo-stack .sv-hero__cta { justify-content: center; }

/* Gradient mesh (no photo) */
.sv-hero--mesh {
    min-height: clamp(460px, 58vh, 560px);
}

.sv-hero--mesh .sv-hero__bg {
    filter: none;
    background-image: none !important;
    background: linear-gradient(135deg, #0f172a 0%, #1a1040 35%, #0a3463 70%, #1a3d28 100%);
}

.sv-hero--mesh .sv-hero__overlay {
    background:
        radial-gradient(circle at 20% 30%, rgba(116,39,116,.35), transparent 45%),
        radial-gradient(circle at 80% 60%, rgba(0,120,212,.3), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(114,187,68,.2), transparent 50%);
}

.sv-hero--mesh .sv-hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sv-hero--mesh h1 { max-width: 700px; }

.sv-hero--mesh .sv-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.sv-hero__pill {
    padding: 8px 18px;
    border-radius: var(--sv-r-sm);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

/* Editorial light hero */
.sv-hero--light {
    min-height: auto;
    background: var(--sv-cream);
}

.sv-hero--light .sv-hero__bg,
.sv-hero--light .sv-hero__overlay,
.sv-hero--light .sv-hero__grain { display: none; }

.sv-hero--light .sv-hero__content {
    padding: clamp(100px, 12vw, 140px) 0 clamp(56px, 8vw, 80px);
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.sv-hero--light .sv-eyebrow { color: var(--sv-green-dark); }

.sv-hero--light h1 {
    color: var(--sv-navy);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    max-width: 800px;
}

.sv-hero--light h1 em { color: var(--sv-green-dark); }

.sv-hero--light .sv-hero__lead { color: var(--sv-muted); max-width: 620px; }

.sv-hero--light .sv-hero__gold-line {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--sv-gold), var(--sv-green));
    margin: 18px 0 22px;
    border-radius: 2px;
}

.sv-hero--light .sv-btn--glass,
.sv-hero--brand-panel .sv-hero__panel .sv-btn--glass,
.sv-hero--qa-light .sv-btn--glass,
.sv-hero--diagonal .sv-btn--glass {
    background: transparent;
    color: var(--sv-navy) !important;
    border: 2px solid rgba(15,23,42,.2);
}

.sv-hero--light .sv-btn--glass:hover,
.sv-hero--brand-panel .sv-hero__panel .sv-btn--glass:hover,
.sv-hero--qa-light .sv-btn--glass:hover,
.sv-hero--diagonal .sv-btn--glass:hover {
    border-color: var(--sv-green);
    color: var(--sv-green-dark) !important;
    background: rgba(114,187,68,.08);
}

/* Diagonal split */
.sv-hero--diagonal {
    min-height: clamp(480px, 60vh, 580px);
}

.sv-hero--diagonal .sv-hero__bg {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 42% 100%);
    width: 58%;
    left: auto;
    right: 0;
}

.sv-hero--diagonal .sv-hero__overlay {
    display: none;
}

.sv-hero--diagonal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b1220 0%, #1a3d28 55%, #eef2ff 55%, #eef2ff 100%);
    z-index: 0;
}

.sv-hero--diagonal .sv-hero__content {
    position: relative;
    z-index: 2;
    max-width: 52%;
    padding-right: 5%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--sv-r-lg);
    padding: clamp(32px, 4vw, 48px);
    margin: 80px 0 64px;
    box-shadow: var(--sv-shadow-md);
}

.sv-hero--diagonal .sv-hero__content .sv-eyebrow {
    color: var(--sv-green-dark);
}

.sv-hero--diagonal .sv-hero__content h1 {
    color: var(--sv-heading);
    text-shadow: none;
}

.sv-hero--diagonal .sv-hero__content h1 em {
    color: var(--sv-green-dark);
}

.sv-hero--diagonal .sv-hero__content .sv-hero__lead {
    color: var(--sv-muted);
}

/* Brand panel split */
.sv-hero--brand-panel {
    min-height: clamp(440px, 55vh, 540px);
    background: var(--sv-white);
}

.sv-hero--brand-panel .sv-hero__bg {
    left: 45%;
    width: 55%;
    filter: saturate(0.9) brightness(0.8);
}

.sv-hero--brand-panel .sv-hero__overlay {
    left: 45%;
    width: 55%;
    background: linear-gradient(90deg, transparent, rgba(15,23,42,.5));
}

.sv-hero--brand-panel .sv-hero__grain { left: 45%; width: 55%; }

.sv-hero--brand-panel .sv-hero__content {
    display: grid;
    grid-template-columns: 45% 55%;
    padding: 0;
    width: 100%;
    max-width: none;
    min-height: inherit;
}

.sv-hero--brand-panel .sv-hero__panel {
    background: var(--sv-white);
    padding: clamp(100px, 10vw, 120px) clamp(24px, 4vw, 48px) clamp(48px, 6vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.sv-hero--brand-panel .sv-hero__panel .sv-eyebrow { color: var(--sv-green-dark); }

.sv-hero--brand-panel .sv-hero__panel h1 { color: var(--sv-navy); }

.sv-hero--brand-panel .sv-hero__panel h1 em { color: var(--sv-green-dark); }

.sv-hero--brand-panel .sv-hero__panel .sv-hero__lead { color: var(--sv-muted); }

.sv-hero--brand-panel .sv-hero__brand-logo {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}

/* Enterprise SAP gold */
.sv-hero--enterprise {
    text-align: center;
    align-items: center;
}

.sv-hero--enterprise::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--sv-gold), #e8d5a3, var(--sv-gold));
    z-index: 5;
}

.sv-hero--enterprise .sv-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sv-hero--enterprise .sv-hero__logo {
    height: clamp(48px, 7vw, 72px);
    margin-bottom: 24px;
}

.sv-hero--enterprise h1 {
    max-width: 760px;
    color: var(--sv-white);
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}

.sv-hero--enterprise .sv-hero__lead {
    color: rgba(255, 255, 255, 0.92);
}

.sv-hero--enterprise .sv-eyebrow {
    color: var(--sv-green-light);
}

.sv-hero--sap .sv-hero__overlay {
    background: linear-gradient(135deg, rgba(15,23,42,.94) 0%, rgba(15,23,42,.88) 45%, rgba(15,23,42,.96) 100%);
}

.sv-hero--sap .sv-hero__bg {
    filter: saturate(0.45) brightness(0.5);
}

.sv-hero--mobile .sv-hero__overlay {
    background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.88) 50%, rgba(15,23,42,.94) 100%);
}

.sv-hero--mobile .sv-hero__bg {
    filter: saturate(0.55) brightness(0.55);
}

.sv-hero--enterprise .sv-hero__certs {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.sv-hero__cert {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-hero__cert i { color: var(--sv-gold); }

/* QA light with side image */
.sv-hero--qa-light {
    background: linear-gradient(180deg, #fff 0%, var(--sv-cream) 100%);
    min-height: auto;
}

.sv-hero--qa-light .sv-hero__bg {
    left: 50%;
    width: 50%;
    opacity: 0.15;
    filter: none;
}

.sv-hero--qa-light .sv-hero__overlay,
.sv-hero--qa-light .sv-hero__grain { display: none; }

.sv-hero--qa-light .sv-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: clamp(100px, 11vw, 130px) 0 clamp(56px, 7vw, 72px);
}

.sv-hero--qa-light .sv-hero__copy .sv-eyebrow { color: var(--sv-green-dark); }

.sv-hero--qa-light .sv-hero__copy h1 { color: var(--sv-navy); }

.sv-hero--qa-light .sv-hero__copy h1 em { color: var(--sv-green); }

.sv-hero--qa-light .sv-hero__copy .sv-hero__lead { color: var(--sv-muted); }

.sv-hero--qa-light .sv-hero__qa-visual img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--sv-r-lg);
    box-shadow: var(--sv-shadow-lg);
}

/* Magazine case study */
.sv-hero--magazine {
    min-height: auto;
    background: var(--sv-navy);
}

.sv-hero--magazine .sv-hero__bg { opacity: 0.35; }

.sv-hero--magazine .sv-hero__overlay {
    background: linear-gradient(180deg, rgba(15,23,42,.7) 0%, rgba(15,23,42,.95) 100%);
}

.sv-hero--magazine .sv-hero__content {
    padding: clamp(100px, 11vw, 128px) 0 clamp(56px, 7vw, 72px);
}

.sv-hero--magazine .sv-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.sv-hero--magazine .sv-hero__meta span {
    font-size: 12px;
    font-weight: 600;
    color: var(--sv-green-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sv-hero--magazine .sv-hero__meta span + span::before {
    content: "·";
    margin-right: 16px;
    opacity: 0.5;
}

.sv-hero--magazine h1 {
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    max-width: 880px;
    line-height: 1.12;
}

.sv-hero--magazine .sv-hero__lead {
    max-width: 640px;
    font-size: 16px;
    border-left: 3px solid var(--sv-green);
    padding-left: 20px;
    margin-top: 24px;
}

/* Default glass-left (legacy) */
.sv-hero--glass-left .sv-glass--hero { max-width: 620px; }

@media (max-width: 991px) {
    .sv-hero--split-visual .sv-hero__content,
    .sv-hero--device .sv-hero__content,
    .sv-hero--qa-light .sv-hero__content,
    .sv-hero--brand-panel .sv-hero__content {
        grid-template-columns: 1fr;
    }

    .sv-hero--diagonal .sv-hero__bg {
        clip-path: none;
        width: 100%;
        left: 0;
        opacity: 0.35;
    }

    .sv-hero--diagonal::before { opacity: 0.95; }

    .sv-hero--diagonal .sv-hero__content { max-width: none; margin: 72px auto 48px; }

    .sv-hero--diagonal::before {
        background: linear-gradient(180deg, #eef2ff 0%, #eef2ff 45%, #0b1220 45%, #1a3d28 100%);
    }

    .sv-cap-grid--2 { grid-template-columns: 1fr; }

    .sv-hero--brand-panel .sv-hero__bg,
    .sv-hero--brand-panel .sv-hero__overlay,
    .sv-hero--brand-panel .sv-hero__grain {
        left: 0;
        width: 100%;
        opacity: 0.2;
    }

    .sv-hero--brand-panel .sv-hero__panel { background: transparent; }

    .sv-hero--brand-panel .sv-hero__panel h1,
    .sv-hero--brand-panel .sv-hero__panel .sv-hero__lead { color: var(--sv-white); }

    .sv-hero--brand-panel .sv-hero__panel .sv-eyebrow { color: var(--sv-green-light); }

    .sv-hero--qa-light .sv-hero__bg { display: none; }

    .sv-hero--qa-light .sv-hero__qa-visual { order: -1; text-align: center; }
}

.sv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform 0.35s var(--sv-ease), box-shadow 0.35s var(--sv-ease), background 0.35s var(--sv-ease);
    border: none;
    cursor: pointer;
}

.sv-btn--solid {
    background: linear-gradient(135deg, var(--sv-green) 0%, var(--sv-green-dark) 100%);
    color: var(--sv-white) !important;
    box-shadow: 0 8px 28px rgba(88, 168, 47, 0.35);
}

.sv-btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(88, 168, 47, 0.45);
    color: var(--sv-white) !important;
}

.sv-btn--glass {
    background: rgba(255,255,255,.12);
    color: var(--sv-white) !important;
    border: 1px solid rgba(255,255,255,.28);
}

.sv-btn--glass:hover {
    background: rgba(255,255,255,.2);
    color: var(--sv-white) !important;
}

.sv-btn--offer {
    background: linear-gradient(135deg, var(--sv-green) 0%, var(--sv-green-dark) 100%);
    color: var(--sv-white) !important;
    border: none;
    box-shadow: 0 8px 28px rgba(88, 168, 47, 0.35);
}

.sv-btn--offer:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--sv-green-dark) 0%, #3f8f24 100%);
    box-shadow: 0 12px 36px rgba(88, 168, 47, 0.45);
    color: var(--sv-white) !important;
}

.sv-btn--outline {
    background: transparent;
    color: var(--sv-green-dark) !important;
    border: 2px solid var(--sv-green);
}

.sv-btn--outline:hover {
    background: var(--sv-green);
    color: var(--sv-white) !important;
}

/* ---- Sections ---- */
.sv-section {
    padding: clamp(56px, 8vw, 88px) 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.sv-section--cream { background: var(--sv-cream); }
.sv-section--white { background: var(--sv-white); }
.sv-section--lavender { background: var(--sv-lavender); }
.sv-section--dark {
    background: linear-gradient(160deg, var(--sv-navy) 0%, var(--sv-green-deep) 100%);
    color: var(--sv-white);
}

.sv-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(36px, 5vw, 52px);
}

.sv-section-head h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 14px;
    color: inherit;
}

.sv-section-head p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--sv-muted);
    margin: 0;
}

.sv-section--dark .sv-section-head p {
    color: rgba(255,255,255,.75);
}

.sv-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sv-green-dark);
    margin-bottom: 10px;
}

.sv-section--dark .sv-label {
    color: var(--sv-green-light);
}

/* ---- Split layout ---- */
.sv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.sv-split--reverse .sv-split__media { order: 2; }
.sv-split--reverse .sv-split__copy { order: 1; }

.sv-split__media img {
    width: 100%;
    height: auto;
    border-radius: var(--sv-r-md);
    box-shadow: var(--sv-shadow-md);
}

.sv-split__copy h2,
.sv-split__copy h3 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 16px;
}

.sv-split__copy p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--sv-muted);
    margin: 0 0 14px;
}

.sv-split__copy p:last-child { margin-bottom: 0; }

.sv-logo-center {
    text-align: center;
    margin-bottom: 32px;
}

.sv-logo-center img {
    max-height: 72px;
    width: auto;
}

/* ---- Feature grid ---- */
.sv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.sv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sv-grid--4 { grid-template-columns: repeat(4, 1fr); }

.sv-feature-card {
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    padding: 28px 24px;
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15,23,42,.06);
    transition: transform 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease);
    height: 100%;
    text-align: center;
}

.sv-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sv-shadow-md);
}

.sv-feature-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

.sv-feature-card h4,
.sv-feature-card p {
    margin: 0;
}

.sv-feature-card h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--sv-navy);
    margin-bottom: 8px;
}

.sv-feature-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--sv-muted);
}

/* ---- Icon row cards ---- */
.sv-icon-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15,23,42,.05);
    margin-bottom: 20px;
    transition: box-shadow 0.35s var(--sv-ease);
}

.sv-icon-card:hover {
    box-shadow: var(--sv-shadow-md);
}

.sv-icon-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-icon-card__icon img {
    max-width: 100%;
    max-height: 100%;
}

.sv-icon-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--sv-navy);
}

.sv-icon-card p,
.sv-icon-card li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sv-muted);
    margin: 0 0 8px;
}

.sv-icon-card ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

/* ---- Lists ---- */
.sv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    font-size: 15px;
    line-height: 1.65;
    border-bottom: 1px solid rgba(15,23,42,.06);
}

.sv-list li:last-child { border-bottom: none; }

.sv-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sv-green);
}

.sv-list--dark li {
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.12);
}

.sv-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-checklist li {
    position: relative;
    padding: 10px 0 10px 32px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--sv-text);
}

.sv-checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--sv-green);
    font-size: 13px;
}

/* ---- Why DesIDEA grid ---- */
.sv-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.sv-trust-card {
    background: var(--sv-white);
    border-radius: var(--sv-r-sm);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15,23,42,.05);
    transition: transform 0.35s var(--sv-ease);
}

.sv-trust-card:hover { transform: translateY(-3px); }

.sv-trust-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 12px;
}

.sv-trust-card p {
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    color: var(--sv-muted);
}

.sv-trust-card b { color: var(--sv-navy); }

/* ---- Tabs (SAP) ---- */
.sv-tabs .nav-tabs {
    border: none;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.sv-tabs .nav-link {
    border: 1px solid rgba(15,23,42,.1) !important;
    border-radius: var(--sv-r-sm) !important;
    padding: 14px 20px !important;
    font-size: 13px;
    font-weight: 600;
    color: var(--sv-muted) !important;
    background: var(--sv-white);
    transition: all 0.3s var(--sv-ease);
    text-align: center;
    min-width: 140px;
}

.sv-tabs .nav-link span {
    color: var(--sv-green-dark);
    font-weight: 700;
}

.sv-tabs .nav-link.active,
.sv-tabs .nav-link:hover {
    background: var(--sv-green) !important;
    color: var(--sv-white) !important;
    border-color: var(--sv-green) !important;
}

.sv-tabs .nav-link.active span,
.sv-tabs .nav-link:hover span {
    color: var(--sv-white);
}

.sv-tab-panel {
    background: var(--sv-white);
    border-radius: var(--sv-r-lg);
    padding: clamp(24px, 4vw, 40px);
    box-shadow: var(--sv-shadow-sm);
}

.sv-tab-panel ul {
    padding-left: 18px;
}

.sv-tab-panel li {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 6px;
    color: var(--sv-muted);
}

/* ---- Flow steps (QA) ---- */
.sv-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
}

.sv-flow__step {
    flex: 1 1 140px;
    max-width: 180px;
    text-align: center;
    position: relative;
}

.sv-flow__card {
    border-radius: var(--sv-r-sm);
    padding: 20px 12px;
    color: var(--sv-white);
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sv-shadow-sm);
}

.sv-flow__card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.sv-flow__card p {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

.sv-flow__arrow {
    display: none;
}

/* ---- Service index cards ---- */
.sv-index-hero {
    position: relative;
    padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 6vw, 72px);
    background: linear-gradient(135deg, var(--sv-navy) 0%, var(--sv-green-deep) 100%);
    overflow: hidden;
}

.sv-index-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(114,187,68,.25) 0%, transparent 50%);
}

.sv-index-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: min(92%, var(--sv-wrap));
    margin: 0 auto;
}

.sv-index-hero h1 {
    font-family: var(--sv-font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--sv-white);
    margin: 0 0 16px;
    line-height: 1.1;
}

.sv-index-hero h1 .sv-accent { color: var(--sv-green-light); }

.sv-index-hero p,
.sv-index-hero h2.sv-hero__lead {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.85);
    margin: 0;
    font-weight: 400;
}

.sv-index-hero img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,.3));
}

.sv-service-card {
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15,23,42,.06);
    transition: transform 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease);
}

.sv-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sv-shadow-md);
}

.sv-service-card__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.sv-service-card__head img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.sv-service-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    color: var(--sv-navy);
}

.sv-service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sv-muted);
    flex: 1;
    margin: 0 0 16px;
}

.sv-service-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--sv-green-dark) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s var(--sv-ease);
}

.sv-service-card__link:hover {
    gap: 10px;
    color: var(--sv-green) !important;
}

/* ---- Services hub cards — glassmorphism ( /Services index ) ---- */
#story-capabilities.sv-services-glass {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 85% 65% at 8% 18%, rgba(114, 187, 68, 0.28), transparent 58%),
        radial-gradient(ellipse 75% 55% at 92% 78%, rgba(99, 102, 241, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 45% at 48% 42%, rgba(56, 189, 248, 0.14), transparent 50%),
        linear-gradient(165deg, #e8eeff 0%, #edf8f0 42%, #f4fbf6 100%);
}

#story-capabilities.sv-services-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 20%, transparent 78%);
    pointer-events: none;
    opacity: 0.45;
}

#story-capabilities.sv-services-glass::after {
    content: "";
    position: absolute;
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    right: -12%;
    bottom: -28%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 187, 68, 0.22) 0%, transparent 68%);
    filter: blur(8px);
    pointer-events: none;
}

#story-capabilities.sv-services-glass .sv-wrap {
    position: relative;
    z-index: 1;
}

#story-capabilities.sv-services-glass .sv-story__head h2 {
    color: var(--sv-navy);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

#story-capabilities.sv-services-glass .sv-story__head p {
    color: var(--sv-muted);
}

.sv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
    position: relative;
}

.sv-service-card-v3 {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(22px, 2.5vw, 28px);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(22px) saturate(175%);
    -webkit-backdrop-filter: blur(22px) saturate(175%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18);
    text-decoration: none !important;
    color: inherit;
    isolation: isolate;
    transition:
        background 0.35s var(--sv-ease),
        border-color 0.35s var(--sv-ease),
        box-shadow 0.35s var(--sv-ease),
        transform 0.35s var(--sv-ease);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .sv-service-card-v3 {
        background: rgba(255, 255, 255, 0.92);
    }
}

.sv-service-card-v3::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.04) 42%, transparent 100%);
    pointer-events: none;
}

.sv-service-card-v3::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(22px - 1px);
    background: linear-gradient(135deg, rgba(114, 187, 68, 0.12) 0%, transparent 52%);
    opacity: 0;
    transition: opacity 0.35s var(--sv-ease);
    pointer-events: none;
    z-index: -1;
}

.sv-service-card-v3:hover {
    background: rgba(255, 255, 255, 0.56);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 18px 48px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(114, 187, 68, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
    color: inherit;
}

.sv-service-card-v3:hover::after {
    opacity: 1;
}

.sv-service-card-v3__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.sv-service-card-v3__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow:
        0 4px 16px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: var(--sv-green-dark);
    font-size: 21px;
    line-height: 1;
    flex-shrink: 0;
    transition:
        transform 0.35s var(--sv-ease),
        background 0.35s var(--sv-ease),
        color 0.35s var(--sv-ease),
        border-color 0.35s var(--sv-ease),
        box-shadow 0.35s var(--sv-ease);
}

.sv-service-card-v3:hover .sv-service-card-v3__icon {
    background: linear-gradient(135deg, rgba(114, 187, 68, 0.92) 0%, rgba(77, 143, 42, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--sv-white);
    box-shadow:
        0 8px 24px rgba(114, 187, 68, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.sv-service-card-v3__tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sv-navy-soft);
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sv-service-card-v3 h3 {
    position: relative;
    z-index: 1;
    font-family: var(--sv-font-serif);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--sv-navy);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.sv-service-card-v3 p {
    position: relative;
    z-index: 1;
    flex: 1;
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sv-muted);
}

.sv-service-card-v3__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.sv-service-card-v3__cta-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--sv-navy);
    transition: color 0.3s var(--sv-ease);
}

.sv-service-card-v3:hover .sv-service-card-v3__cta-text {
    color: var(--sv-green-dark);
}

.sv-service-card-v3__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    color: var(--sv-green-dark);
    font-size: 13px;
    flex-shrink: 0;
    transition:
        background 0.3s var(--sv-ease),
        color 0.3s var(--sv-ease),
        transform 0.3s var(--sv-ease),
        border-color 0.3s var(--sv-ease),
        box-shadow 0.3s var(--sv-ease);
}

.sv-service-card-v3:hover .sv-service-card-v3__arrow {
    background: linear-gradient(135deg, var(--sv-green) 0%, var(--sv-green-dark) 100%);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--sv-white);
    box-shadow: 0 8px 22px rgba(114, 187, 68, 0.32);
    transform: translateX(3px);
}

/* ---- CTA ---- */
.sv-cta {
    padding: clamp(56px, 8vw, 80px) 0;
    background: linear-gradient(135deg, var(--sv-navy) 0%, var(--sv-green-deep) 100%);
}

.sv-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.sv-cta__visual img {
    width: 100%;
    border-radius: var(--sv-r-lg);
    box-shadow: var(--sv-shadow-lg);
}

.sv-cta__copy h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--sv-white);
    margin: 0 0 14px;
    line-height: 1.2;
}

.sv-cta__copy p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.78);
    margin: 0 0 24px;
}

.sv-btn--cta {
    background: var(--sv-white);
    color: var(--sv-navy) !important;
    padding: 15px 28px;
    font-size: 15px;
}

.sv-btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0,0,0,.25);
    color: var(--sv-navy) !important;
}

/* ---- Contact cards ---- */
.sv-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.sv-contact-card {
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15,23,42,.06);
}

.sv-contact-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: var(--sv-muted);
}

/* ---- Case study ---- */
.sv-breadcrumb {
    padding: 20px 0;
    font-size: 13px;
    color: var(--sv-muted);
}

.sv-breadcrumb a {
    color: var(--sv-green-dark);
    text-decoration: none;
}

.sv-breadcrumb span { color: var(--sv-navy); font-weight: 500; }

.sv-case-sidebar {
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    padding: 28px;
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15,23,42,.06);
    position: sticky;
    top: 100px;
}

.sv-case-sidebar h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sv-green-dark);
    margin: 0 0 12px;
}

.sv-case-sidebar p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sv-muted);
}

.sv-case-content h3 {
    font-family: var(--sv-font-serif);
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--sv-navy);
}

.sv-case-content p,
.sv-case-content li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--sv-muted);
}

.sv-quote {
    border-left: 4px solid var(--sv-green);
    padding: 20px 24px;
    background: var(--sv-lavender);
    border-radius: 0 var(--sv-r-sm) var(--sv-r-sm) 0;
    margin: 24px 0;
}

.sv-quote p {
    font-style: italic;
    font-size: 16px;
    margin: 0;
    color: var(--sv-navy);
}

/* ================================================================
   Premium layout variants — unique per service page
   ================================================================ */

/* Hero theme overlays */
.sv-hero--dotnet .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(82,45,128,.5) 50%, rgba(15,23,42,.9) 100%); }
.sv-hero--cloud .sv-hero__overlay { background: linear-gradient(180deg, rgba(15,23,42,.6) 0%, rgba(15,23,42,.85) 50%, rgba(15,23,42,.96) 100%); }
.sv-hero--cloud .sv-hero__bg { filter: saturate(0.5) brightness(0.55); background-position: center top; }
.sv-hero--data .sv-hero__overlay { background: linear-gradient(145deg, rgba(0,48,87,.9) 0%, rgba(15,23,42,.88) 100%); }
.sv-hero--mobile .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.88) 50%, rgba(15,23,42,.94) 100%); }
.sv-hero--mobile .sv-hero__bg { filter: saturate(0.55) brightness(0.55); }
.sv-hero--jira .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(0,82,204,.45) 100%); }
.sv-hero--sharepoint.sv-hero--mesh .sv-hero__bg {
    background: linear-gradient(135deg, #0f2a33 0%, #163a44 40%, #1a4a3a 75%, #12281f 100%) !important;
}
.sv-hero--sharepoint.sv-hero--mesh .sv-hero__overlay {
    background:
        radial-gradient(circle at 30% 25%, rgba(0, 120, 212, 0.18), transparent 48%),
        radial-gradient(circle at 70% 70%, rgba(114, 187, 68, 0.08), transparent 46%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.28) 0%, rgba(15, 23, 42, 0.45) 100%);
}
.sv-hero--sharepoint h1,
.sv-hero--sharepoint h1 em {
    text-shadow: none !important;
    filter: none !important;
}
.sv-hero--sharepoint h1 em {
    color: #c6ef8f;
    -webkit-text-stroke: 0;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15) !important;
}
.sv-hero--power .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(116,39,116,.42) 48%, rgba(0,120,212,.35) 100%); }
.sv-hero--ai .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.9) 0%, rgba(88,28,135,.45) 42%, rgba(22,101,52,.38) 100%); }
.sv-hero--sitecore .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.88) 0%, rgba(180,30,50,.25) 45%, rgba(15,23,42,.82) 100%); }
.sv-hero--consult .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.9) 0%, rgba(196,163,90,.22) 50%, rgba(15,23,42,.85) 100%); }
.sv-hero--appdev .sv-hero__overlay { background: linear-gradient(135deg, rgba(26,61,40,.75) 0%, rgba(15,23,42,.88) 100%); }
.sv-hero--sap .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.94) 0%, rgba(15,23,42,.88) 45%, rgba(15,23,42,.96) 100%); }
.sv-hero--sap .sv-hero__bg { filter: saturate(0.45) brightness(0.5); }
.sv-hero--qa .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.82) 0%, rgba(114,187,68,.25) 50%, rgba(15,23,42,.85) 100%); }
.sv-hero--insights .sv-hero__overlay { background: linear-gradient(135deg, rgba(15,23,42,.9) 0%, rgba(30,41,59,.85) 100%); }

/* Stats bar */
.sv-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(15,23,42,.08);
    border-radius: var(--sv-r-lg);
    overflow: hidden;
    box-shadow: var(--sv-shadow-md);
}

.sv-stats-bar__item {
    background: var(--sv-white);
    padding: 28px 20px;
    text-align: center;
}

.sv-stats-bar__item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.sv-stats-bar__item strong {
    display: block;
    font-size: 15px;
    color: var(--sv-navy);
    margin-bottom: 4px;
}

.sv-stats-bar__item span {
    font-size: 12px;
    color: var(--sv-muted);
    line-height: 1.5;
}

/* Bento grid */
.sv-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.sv-bento__cell {
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    padding: 24px;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: var(--sv-shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease);
}

.sv-bento__cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--sv-shadow-md);
}

.sv-bento__cell img { width: 48px; height: 48px; object-fit: contain; }
.sv-bento__cell p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--sv-muted); }
.sv-bento__cell--lg { grid-column: span 6; min-height: 160px; }
.sv-bento__cell--md { grid-column: span 4; }
.sv-bento__cell--sm { grid-column: span 3; }
.sv-bento__cell--wide { grid-column: span 8; }
.sv-bento__cell--tall { grid-row: span 2; justify-content: center; }

/* Pipeline steps */
.sv-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sv-pipeline__step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.sv-pipeline__step::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sv-green), rgba(114,187,68,.2));
    z-index: 0;
}

.sv-pipeline__step:last-child::after { display: none; }

.sv-pipeline__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sv-green), var(--sv-green-dark));
    color: var(--sv-white);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(88,168,47,.35);
}

.sv-pipeline__step h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--sv-navy);
}

.sv-pipeline__step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--sv-muted);
    margin: 0;
}

/* Vertical timeline */
.sv-vtimeline {
    position: relative;
    padding-left: 40px;
}

.sv-vtimeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--sv-green), rgba(114,187,68,.15));
}

.sv-vtimeline__item {
    position: relative;
    padding-bottom: 36px;
}

.sv-vtimeline__item:last-child { padding-bottom: 0; }

.sv-vtimeline__dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sv-white);
    border: 3px solid var(--sv-green);
    box-shadow: var(--sv-shadow-sm);
}

.sv-vtimeline__item h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--sv-navy);
}

.sv-vtimeline__item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--sv-muted);
    margin: 0;
}

/* Mosaic grid */
.sv-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.sv-mosaic__item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--sv-r-sm);
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-mosaic__item::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--sv-green-light);
    flex-shrink: 0;
}

.sv-mosaic__item--wide { grid-column: span 2; }

/* Quote / brand band */
.sv-band {
    padding: clamp(48px, 6vw, 72px) 0;
    background: linear-gradient(135deg, var(--sv-navy) 0%, var(--sv-green-deep) 100%);
    text-align: center;
    color: var(--sv-white);
}

.sv-band h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 12px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sv-band p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.78);
    max-width: 600px;
    margin: 0 auto;
}

/* Pillars */
.sv-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sv-pillar {
    background: var(--sv-white);
    border-radius: var(--sv-r-lg);
    padding: 36px 28px;
    box-shadow: var(--sv-shadow-md);
    border: 1px solid rgba(15,23,42,.05);
    position: relative;
    overflow: hidden;
}

.sv-pillar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sv-green), var(--sv-gold));
}

.sv-pillar img {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.sv-pillar h3 {
    font-family: var(--sv-font-serif);
    font-size: 1.35rem;
    margin: 0 0 12px;
    color: var(--sv-navy);
}

.sv-pillar p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--sv-muted);
    margin: 0;
}

/* Challenge cards */
.sv-challenges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.sv-challenge {
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    padding: 28px;
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15,23,42,.06);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sv-challenge__num {
    font-family: var(--sv-font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sv-green);
    line-height: 1;
    opacity: 0.7;
}

.sv-challenge img { width: 36px; height: 36px; flex-shrink: 0; }

.sv-challenge p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--sv-muted);
    margin: 0;
}

/* Hub layout (Azure Data) */
.sv-hub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.sv-hub__center {
    grid-column: 2;
    grid-row: 1 / 3;
    background: linear-gradient(145deg, var(--sv-navy), #004578);
    border-radius: var(--sv-r-xl);
    padding: 40px 28px;
    text-align: center;
    color: var(--sv-white);
    box-shadow: var(--sv-shadow-lg);
}

.sv-hub__center img { max-width: 120px; margin-bottom: 16px; }
.sv-hub__center h3 { font-size: 1.25rem; margin: 0 0 8px; }
.sv-hub__center p { font-size: 13px; opacity: .85; margin: 0; }

.sv-hub__node {
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    padding: 20px;
    box-shadow: var(--sv-shadow-sm);
    border-left: 4px solid var(--sv-green);
    font-size: 14px;
    font-weight: 500;
    color: var(--sv-navy);
}

/* Showcase panel */
.sv-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    background: var(--sv-white);
    border-radius: var(--sv-r-xl);
    padding: clamp(32px, 5vw, 48px);
    box-shadow: var(--sv-shadow-md);
    border: 1px solid rgba(15,23,42,.06);
}

.sv-showcase img {
    width: 100%;
    border-radius: var(--sv-r-md);
}

/* Stagger list */
.sv-stagger { display: flex; flex-direction: column; gap: 16px; }

.sv-stagger__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 24px 28px;
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15,23,42,.05);
    align-items: start;
}

.sv-stagger__item:nth-child(even) { margin-left: clamp(0px, 3vw, 32px); }

.sv-stagger__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sv-lavender);
    border-radius: var(--sv-r-sm);
}

.sv-stagger__icon img { max-width: 40px; max-height: 40px; }

/* Lifecycle steps */
.sv-lifecycle {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.sv-lifecycle__step {
    flex: 1;
    min-width: 120px;
    text-align: center;
    position: relative;
}

.sv-lifecycle__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    background: var(--sv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sv-shadow-sm);
    border: 2px solid var(--sv-green);
}

.sv-lifecycle__icon img { width: 36px; height: 36px; }

.sv-lifecycle__step p {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: var(--sv-navy);
}

.sv-lifecycle__step span {
    display: block;
    font-size: 11px;
    color: var(--sv-muted);
    margin-top: 4px;
}

/* Full bleed image section */
.sv-bleed {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sv-bleed__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
}

.sv-bleed__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.4) 100%);
}

.sv-bleed__content {
    position: relative;
    z-index: 2;
    width: min(92%, var(--sv-wrap));
    margin: 0 auto;
    color: var(--sv-white);
    max-width: 560px;
}

.sv-bleed__content h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 12px;
}

/* Glass panel */
.sv-glass-panel {
    background: var(--sv-glass-light);
    backdrop-filter: var(--sv-glass-blur);
    border-radius: var(--sv-r-lg);
    padding: 36px;
    box-shadow: var(--sv-shadow-md);
    border: 1px solid rgba(255,255,255,.8);
}

/* Outcome cards */
.sv-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sv-outcome {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(160deg, var(--sv-navy) 0%, var(--sv-navy-soft) 100%);
    border-radius: var(--sv-r-md);
    color: var(--sv-white);
}

.sv-outcome i {
    font-size: 28px;
    color: var(--sv-green-light);
    margin-bottom: 14px;
}

.sv-outcome p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: .9;
}

/* CTA variants */
.sv-cta--band {
    background: linear-gradient(135deg, var(--sv-green-deep) 0%, var(--sv-navy) 100%);
    padding: clamp(56px, 7vw, 80px) 0;
    text-align: center;
}

.sv-cta--band h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--sv-white);
    margin: 0 0 12px;
}

.sv-cta--band p {
    color: rgba(255,255,255,.8);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.sv-cta--minimal {
    padding: clamp(48px, 6vw, 64px) 0;
    background: var(--sv-cream);
    text-align: center;
    border-top: 1px solid rgba(15,23,42,.06);
}

.sv-cta--minimal h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    margin: 0 0 10px;
    color: var(--sv-navy);
}

.sv-cta--minimal p {
    font-size: 15px;
    color: var(--sv-muted);
    max-width: 520px;
    margin: 0 auto 20px;
}

.sv-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(32px, 4vw, 44px);
    background: linear-gradient(135deg, var(--sv-white) 0%, var(--sv-lavender) 100%);
    border-radius: var(--sv-r-xl);
    box-shadow: var(--sv-shadow-md);
    border: 1px solid rgba(15,23,42,.06);
}

.sv-cta-card h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    margin: 0 0 8px;
    color: var(--sv-navy);
}

.sv-cta-card p {
    font-size: 14px;
    color: var(--sv-muted);
    margin: 0;
    line-height: 1.65;
}

/* SAP benefit strip */
.sv-sap-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sv-sap-strip__item {
    background: var(--sv-white);
    border-radius: var(--sv-r-sm);
    padding: 24px 16px;
    text-align: center;
    border-top: 3px solid var(--sv-gold);
    box-shadow: var(--sv-shadow-sm);
}

.sv-sap-strip__item strong {
    display: block;
    font-size: 14px;
    color: var(--sv-navy);
    margin-bottom: 6px;
}

.sv-sap-strip__item span {
    font-size: 12px;
    color: var(--sv-muted);
}

/* Platform cards (mobile) */
.sv-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sv-platform {
    border-radius: var(--sv-r-lg);
    overflow: hidden;
    box-shadow: var(--sv-shadow-md);
    background: var(--sv-white);
}

.sv-platform__img {
    height: 180px;
    background: var(--sv-lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.sv-platform__img img { max-height: 100%; max-width: 100%; object-fit: contain; }

.sv-platform__body {
    padding: 24px;
}

.sv-platform__body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--sv-muted);
    margin: 0;
}

/* ---- Rich content blocks ---- */
.sv-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.sv-prose h3 {
    font-family: var(--sv-font-serif);
    font-size: 1.35rem;
    margin: 0 0 14px;
    color: var(--sv-navy);
}

.sv-prose p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--sv-muted);
    margin: 0 0 14px;
}

.sv-prose ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.sv-prose li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sv-muted);
    margin-bottom: 8px;
}

.sv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.sv-tag {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    background: var(--sv-white);
    border: 1px solid rgba(15,23,42,.1);
    color: var(--sv-navy);
}

.sv-section--dark .sv-tag {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
}

.sv-value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sv-value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sv-value-item i {
    color: var(--sv-green);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.sv-value-item strong {
    display: block;
    font-size: 14px;
    color: var(--sv-navy);
    margin-bottom: 4px;
}

.sv-value-item span {
    font-size: 13px;
    line-height: 1.6;
    color: var(--sv-muted);
}

.sv-section--dark .sv-value-item strong { color: var(--sv-white); }
.sv-section--dark .sv-value-item span { color: rgba(255,255,255,.75); }
.sv-section--dark .sv-value-item i { color: var(--sv-green-light); }

.sv-related {
    padding: 32px 0 0;
    border-top: 1px solid rgba(15,23,42,.08);
    margin-top: 8px;
}

.sv-related p {
    font-size: 14px;
    color: var(--sv-muted);
    margin: 0 0 12px;
}

.sv-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sv-related-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--sv-green-dark);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--sv-r-sm);
    background: var(--sv-lavender);
    transition: background 0.25s ease;
}

.sv-related-links a:hover {
    background: var(--sv-green);
    color: var(--sv-white);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .sv-split,
    .sv-index-hero__inner,
    .sv-cta__grid {
        grid-template-columns: 1fr;
    }

    .sv-split--reverse .sv-split__media,
    .sv-split--reverse .sv-split__copy {
        order: unset;
    }

    .sv-grid--3,
    .sv-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-pipeline,
    .sv-sap-strip,
    .sv-outcomes,
    .sv-platforms,
    .sv-pillars,
    .sv-mosaic,
    .sv-hub {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-lifecycle {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .sv-bento__cell--lg,
    .sv-bento__cell--md,
    .sv-bento__cell--sm,
    .sv-bento__cell--wide {
        grid-column: span 12;
    }

    .sv-cta__visual { display: none; }
}

@media (max-width: 767px) {
    .sv-grid,
    .sv-grid--3,
    .sv-grid--4 {
        grid-template-columns: 1fr;
    }

    .sv-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sv-service-card-v3:hover {
        transform: none;
    }

    .sv-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-stats-bar {
        grid-template-columns: 1fr;
    }

    .sv-pipeline,
    .sv-sap-strip,
    .sv-outcomes,
    .sv-platforms,
    .sv-pillars,
    .sv-mosaic,
    .sv-hub {
        grid-template-columns: 1fr;
    }

    .sv-flow__step {
        flex: 1 1 100%;
        max-width: none;
    }

    .sv-tabs .nav-link {
        min-width: 100%;
    }

    .sv-bento__cell--lg, .sv-bento__cell--md, .sv-bento__cell--sm, .sv-bento__cell--wide { grid-column: span 12; }
    .sv-pipeline { gap: 24px; }
    .sv-pipeline__step::after { display: none; }
    .sv-hub__center { grid-column: 1; grid-row: auto; }
    .sv-showcase { grid-template-columns: 1fr; }
    .sv-stagger__item:nth-child(even) { margin-left: 0; }
    .sv-mosaic__item--wide { grid-column: span 1; }
    .sv-cta-card { flex-direction: column; text-align: center; }
    .sv-detail-grid, .sv-value-list { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .sv-trust-grid {
        grid-template-columns: 1fr;
    }

    .sv-stats-bar {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sv-feature-card,
    .sv-service-card,
    .sv-trust-card,
    .sv-btn {
        transition: none;
    }
}
