/* ================================================================
   DesIDEA Services — Storytelling & Premium Experience Layer
   ================================================================ */

/* Sticky story navigation */
.sv-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.sv-sticky-nav__inner {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px 0;
    -webkit-overflow-scrolling: touch;
}

.sv-sticky-nav__inner::-webkit-scrollbar { display: none; }

.sv-sticky-nav a {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--sv-muted);
    border-radius: 999px;
    transition: all 0.3s var(--sv-ease);
    white-space: nowrap;
}

.sv-sticky-nav a:hover {
    color: var(--sv-navy);
    background: var(--sv-lavender);
}

.sv-sticky-nav a.is-active {
    background: linear-gradient(135deg, var(--sv-green), var(--sv-green-dark));
    color: var(--sv-white);
    box-shadow: 0 4px 16px rgba(88, 168, 47, 0.35);
}

/* Story sections */
.sv-story {
    scroll-margin-top: 24px;
    padding: clamp(64px, 9vw, 100px) 0;
    position: relative;
    overflow-x: clip;
}

.sv-story--dark {
    background: linear-gradient(160deg, #0b1220 0%, var(--sv-green-deep) 100%);
    color: var(--sv-white);
}

.sv-story--cream { background: var(--sv-cream); }
.sv-story--white { background: var(--sv-white); }
.sv-story--lavender { background: var(--sv-lavender); }
.sv-story--gradient {
    background: linear-gradient(180deg, var(--sv-white) 0%, var(--sv-lavender) 50%, var(--sv-cream) 100%);
}

.sv-story__head {
    max-width: 680px;
    margin-bottom: clamp(36px, 5vw, 52px);
}

.sv-story__head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.sv-story__head h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.85rem, 3.8vw, 2.65rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    color: var(--sv-heading);
}

.sv-story--dark .sv-story__head h2 { color: var(--sv-white); }

.sv-story__head p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--sv-muted);
    margin: 0;
}

.sv-story--lavender .sv-story__head h2,
.sv-story--cream .sv-story__head h2,
.sv-story--white .sv-story__head h2 {
    color: var(--sv-heading);
}

.sv-story--lavender .sv-challenge-card,
.sv-story--cream .sv-challenge-card {
    background: var(--sv-white);
}

.sv-story--dark .sv-story__head p { color: rgba(255, 255, 255, 0.82); }

.sv-story__step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sv-green-dark);
    margin-bottom: 12px;
}

.sv-story--dark .sv-story__step { color: var(--sv-green-light); }

.sv-story__step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sv-green);
    color: var(--sv-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Challenge cards */
.sv-challenges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.sv-challenge-card {
    background: var(--sv-white);
    border-radius: var(--sv-r-md);
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--sv-shadow-sm);
    transition: transform 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease), border-color 0.3s ease;
    height: 100%;
}

.sv-challenge-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sv-shadow-md);
    border-color: rgba(114, 187, 68, 0.35);
}

.sv-challenge-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--sv-r-sm);
    background: linear-gradient(135deg, rgba(114, 187, 68, 0.15), rgba(114, 187, 68, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--sv-green-dark);
    font-size: 22px;
}

.sv-challenge-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--sv-navy);
    line-height: 1.35;
}

.sv-challenge-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--sv-muted);
    margin: 0;
}

/* Empathy / understanding panel */
.sv-empathy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.sv-empathy > * {
    min-width: 0;
    max-width: 100%;
}

.sv-empathy__panel {
    background: var(--sv-glass-light);
    backdrop-filter: var(--sv-glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--sv-r-xl);
    padding: clamp(32px, 4vw, 44px);
    box-shadow: var(--sv-shadow-md);
    position: relative;
}

.sv-empathy__panel::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: var(--sv-font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--sv-green);
    opacity: 0.25;
}

.sv-empathy__panel p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--sv-navy);
    margin: 0;
    position: relative;
    z-index: 1;
}

.sv-empathy__visual {
    width: 100%;
    max-width: 100%;
}

.sv-empathy__visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--sv-r-lg);
    box-shadow: var(--sv-shadow-lg);
}

/* Solution spotlight */
.sv-solution {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 64px);
    align-items: center;
}

.sv-solution > * {
    min-width: 0;
    max-width: 100%;
}

.sv-solution__copy h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    margin: 0 0 20px;
    line-height: 1.2;
    color: var(--sv-heading);
}

.sv-story--dark .sv-solution__copy h2 {
    color: var(--sv-white);
}

.sv-solution__lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--sv-navy);
    margin: 0 0 16px;
}

.sv-solution__copy p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--sv-muted);
    margin: 0 0 12px;
}

.sv-solution__visual {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.sv-solution__visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--sv-r-xl);
    box-shadow: var(--sv-shadow-lg);
}

.sv-solution__badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--sv-green), var(--sv-green-dark));
    color: var(--sv-white);
    padding: 18px 24px;
    border-radius: var(--sv-r-md);
    box-shadow: var(--sv-shadow-md);
    font-size: 14px;
    font-weight: 600;
    max-width: none;
    line-height: 1.5;
}

/* Modern solution highlight panel (replaces floating badge) */
.sv-solution__panel {
    background: var(--sv-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--sv-r-xl);
    padding: clamp(24px, 3vw, 32px);
    box-shadow: var(--sv-shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sv-solution__panel img {
    width: 100%;
    border-radius: var(--sv-r-md);
    margin-bottom: 20px;
}

.sv-solution__highlights {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.sv-solution__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--sv-text);
    padding: 12px 14px;
    background: var(--sv-cream);
    border-radius: var(--sv-r-sm);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.sv-solution__highlights li i {
    color: var(--sv-green-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Uniform capability grid */
.sv-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sv-cap-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.sv-cap-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.sv-cap-grid .sv-cap-card {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Sequential ecosystem layout (Azure Data) */
.sv-ecosystem {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sv-ecosystem__hub {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 32px);
    padding: clamp(24px, 3vw, 32px);
    background: linear-gradient(135deg, var(--sv-navy) 0%, #1a3d5c 100%);
    border-radius: var(--sv-r-xl);
    color: var(--sv-white);
    box-shadow: var(--sv-shadow-lg);
}

.sv-ecosystem__hub img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--sv-r-md);
    padding: 10px;
    flex-shrink: 0;
}

.sv-ecosystem__hub h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    color: var(--sv-white);
}

.sv-ecosystem__hub p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.sv-ecosystem__flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sv-ecosystem__item {
    position: relative;
    background: var(--sv-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--sv-r-lg);
    padding: 24px 24px 24px 56px;
    box-shadow: var(--sv-shadow-sm);
    transition: transform 0.35s var(--sv-ease), box-shadow 0.35s var(--sv-ease);
}

.sv-ecosystem__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sv-shadow-md);
    border-color: rgba(114, 187, 68, 0.3);
}

.sv-ecosystem__num {
    position: absolute;
    left: 18px;
    top: 22px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sv-green);
    color: var(--sv-white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-ecosystem__item h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sv-heading);
}

.sv-ecosystem__item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--sv-muted);
}

/* Interactive capability bento */
.sv-cap-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.sv-cap-card {
    grid-column: span 4;
    background: var(--sv-white);
    border-radius: var(--sv-r-lg);
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--sv-shadow-sm);
    transition: all 0.45s var(--sv-ease);
    overflow: hidden;
    position: relative;
}

.sv-cap-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(114, 187, 68, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sv-cap-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--sv-shadow-md);
    border-color: rgba(114, 187, 68, 0.25);
}

.sv-cap-card:hover::after { opacity: 1; }

.sv-cap-card--lg { grid-column: span 6; }
.sv-cap-card--wide { grid-column: span 8; }
.sv-cap-card--sm { grid-column: span 3; }

.sv-cap-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.sv-cap-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--sv-navy);
    position: relative;
    z-index: 1;
}

.sv-cap-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--sv-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

.sv-cap-bento--equal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sv-cap-bento--equal .sv-cap-card {
    grid-column: span 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-cap-bento--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sv-cap-bento--2 .sv-cap-card {
    grid-column: span 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-cap-bento--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sv-cap-bento--4 .sv-cap-card {
    grid-column: span 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-cap-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 179, 58, 0.14);
    color: var(--sv-green-dark, #3f8f24);
    font-size: 18px;
    margin-bottom: 4px;
}

.sv-cap-card__step {
    display: inline-flex;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--sv-green-dark, #3f8f24);
    background: rgba(99, 179, 58, 0.12);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}

/* QA intent cards + single CTA */
.sv-intent-section {
    max-width: 100%;
}

.sv-intent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.sv-intent-card {
    background: var(--sv-white, #fff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    text-align: left;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sv-intent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.sv-intent-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 179, 58, 0.14);
    color: var(--sv-green-dark, #3f8f24);
    font-size: 16px;
}

.sv-intent-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--sv-navy, #0f172a);
    letter-spacing: -0.01em;
}

.sv-intent-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--sv-muted, #64748b);
    flex: 1;
}

.sv-intent-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

@media (max-width: 991px) {
    .sv-cap-bento--equal,
    .sv-cap-bento--4,
    .sv-cap-bento--2,
    .sv-intent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
    .sv-cap-bento--equal,
    .sv-cap-bento--4,
    .sv-cap-bento--2,
    .sv-intent-grid { grid-template-columns: 1fr; }
}

.sv-story--dark .sv-cap-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.sv-story--dark .sv-cap-card h3 { color: var(--sv-white); }
.sv-story--dark .sv-cap-card p { color: rgba(255, 255, 255, 0.75); }

/* Process track */
.sv-process-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 24px;
    padding-bottom: 8px;
}

.sv-process-track--4 {
    grid-template-columns: repeat(4, 1fr);
}

.sv-process-track--6 {
    grid-template-columns: repeat(6, 1fr);
}

.sv-process-track--4::before {
    left: 12%;
    right: 12%;
}

.sv-process-track::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--sv-green) 0%, rgba(114, 187, 68, 0.85) 70%, var(--sv-green-light) 100%);
    border-radius: 999px;
    z-index: 0;
}

.sv-story--dark .sv-process-track::before {
    background: linear-gradient(90deg, var(--sv-green-light) 0%, rgba(142, 207, 90, 0.5) 75%, rgba(142, 207, 90, 0.25) 100%);
}

.sv-process-track::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 6%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sv-green-light);
    box-shadow: 0 0 0 4px rgba(142, 207, 90, 0.25);
    z-index: 0;
}

.sv-process-track--4::after {
    right: 10%;
}

.sv-process-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
    cursor: default;
    transition: transform 0.35s var(--sv-ease);
}

.sv-process-step:hover { transform: translateY(-4px); }

.sv-process-step__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--sv-white);
    border: 3px solid var(--sv-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--sv-green-dark);
    box-shadow: var(--sv-shadow-sm);
    transition: all 0.35s var(--sv-ease);
}

.sv-process-step:hover .sv-process-step__icon {
    background: var(--sv-green);
    color: var(--sv-white);
    box-shadow: 0 8px 28px rgba(88, 168, 47, 0.4);
}

.sv-process-step h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--sv-navy);
}

.sv-process-step p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--sv-muted);
    margin: 0;
}

.sv-story--dark .sv-process-step h4 { color: var(--sv-white); }
.sv-story--dark .sv-process-step p { color: rgba(255, 255, 255, 0.7); }
.sv-story--dark .sv-process-step__icon { background: rgba(255, 255, 255, 0.1); border-color: var(--sv-green-light); color: var(--sv-green-light); }

/* Before / After */
.sv-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}

.sv-compare__col {
    border-radius: var(--sv-r-lg);
    padding: clamp(28px, 4vw, 36px);
}

.sv-compare__col--before {
    background: rgba(15, 23, 42, 0.04);
    border: 1px dashed rgba(15, 23, 42, 0.15);
}

.sv-compare__col--after {
    background: linear-gradient(145deg, rgba(114, 187, 68, 0.12), rgba(114, 187, 68, 0.04));
    border: 1px solid rgba(114, 187, 68, 0.25);
    box-shadow: var(--sv-shadow-sm);
}

.sv-compare__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.sv-compare__col--before .sv-compare__label { color: #94a3b8; }
.sv-compare__col--after .sv-compare__label { color: var(--sv-green-dark); }

.sv-compare__col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sv-compare__col li {
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--sv-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sv-compare__col li:last-child { border-bottom: none; }

.sv-compare__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sv-green);
    font-size: 28px;
}

/* Outcome metrics */
.sv-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sv-metric {
    text-align: center;
    padding: 32px 20px;
    background: var(--sv-white);
    border-radius: var(--sv-r-lg);
    box-shadow: var(--sv-shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.35s var(--sv-ease);
}

.sv-metric:hover { transform: translateY(-4px); box-shadow: var(--sv-shadow-md); }

.sv-metric__value {
    font-family: var(--sv-font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--sv-green-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.sv-metric__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sv-navy);
    margin-bottom: 4px;
}

.sv-metric__desc {
    font-size: 12px;
    color: var(--sv-muted);
    line-height: 1.5;
}

.sv-story--dark .sv-metric {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.sv-story--dark .sv-metric__value { color: var(--sv-green-light); }
.sv-story--dark .sv-metric__label { color: var(--sv-white); }
.sv-story--dark .sv-metric__desc { color: rgba(255, 255, 255, 0.65); }

/* Trust wall */
.sv-trust-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sv-trust-block {
    padding: 32px;
    border-radius: var(--sv-r-lg);
    background: var(--sv-white);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--sv-shadow-sm);
}

.sv-trust-block h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sv-green-dark);
    margin: 0 0 16px;
}

.sv-trust-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sv-trust-block li {
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 0;
    color: var(--sv-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-trust-block li i { color: var(--sv-green); font-size: 14px; }

.sv-trust-block--services li {
    display: grid;
    grid-template-columns: 14px minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 10px;
}

.sv-trust-block--services li i {
    margin-top: 4px;
}

.sv-trust-block--services li a,
.sv-trust-block--services li span {
    min-width: 0;
}

.sv-trust-block--services li a {
    line-height: 1.45;
}

.sv-trust-block--services li span {
    line-height: 1.45;
}

/* Tech showcase strip */
.sv-tech-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.sv-tech-chip {
    padding: 12px 22px;
    background: var(--sv-white);
    border-radius: var(--sv-r-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--sv-navy);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--sv-shadow-sm);
    transition: all 0.3s var(--sv-ease);
}

.sv-tech-chip:hover {
    border-color: var(--sv-green);
    color: var(--sv-green-dark);
    transform: translateY(-2px);
}

/* Premium CTA finale */
.sv-story-cta {
    padding: clamp(72px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #0b1220 0%, #1a3d28 55%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sv-story-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(114, 187, 68, 0.18), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(196, 163, 90, 0.12), transparent 40%);
    pointer-events: none;
}

.sv-story-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.sv-story-cta__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sv-green-light);
    background: rgba(114, 187, 68, 0.15);
    border: 1px solid rgba(142, 207, 90, 0.35);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.sv-story-cta h2 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--sv-white);
    margin: 0 0 16px;
    line-height: 1.2;
}

.sv-story-cta p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 28px;
}

.sv-story-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* Animated stat counter */
.sv-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: var(--sv-r-xl);
    overflow: hidden;
    box-shadow: var(--sv-shadow-md);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.sv-hero-stat {
    background: var(--sv-white);
    padding: 28px 16px;
    text-align: center;
}

.sv-hero-stat img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-bottom: 8px;
}

.sv-hero-stat strong {
    display: block;
    font-size: 15px;
    color: var(--sv-navy);
}

.sv-hero-stat span {
    font-size: 11px;
    color: var(--sv-muted);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .sv-empathy, .sv-solution, .sv-compare { grid-template-columns: 1fr; }
    .sv-empathy__visual,
    .sv-solution__visual,
    .sv-solution__panel,
    .sv-empathy__panel,
    .sv-solution__copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .sv-compare__arrow { transform: rotate(90deg); padding: 8px 0; }
    .sv-cap-bento { grid-template-columns: repeat(2, 1fr); }
    .sv-cap-card, .sv-cap-card--lg, .sv-cap-card--wide, .sv-cap-card--sm { grid-column: span 1; }
    .sv-cap-grid, .sv-cap-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .sv-ecosystem__flow { grid-template-columns: repeat(2, 1fr); }
    .sv-process-track, .sv-process-track--4, .sv-process-track--6 { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
    .sv-process-track::before, .sv-process-track::after { display: none; }
    .sv-metrics, .sv-trust-wall, .sv-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .sv-ecosystem__hub { flex-direction: column; text-align: center; }
}

.sv-cap-grid .sv-cap-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

/* SAP practice strip */
.sv-sap-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.sv-sap-strip__item {
    background: var(--sv-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--sv-r-md);
    padding: 22px 20px;
    text-align: center;
    box-shadow: var(--sv-shadow-sm);
    transition: transform 0.3s var(--sv-ease);
}

.sv-sap-strip__item:hover {
    transform: translateY(-4px);
    border-color: rgba(114, 187, 68, 0.35);
}

.sv-sap-strip__item strong {
    display: block;
    font-size: 14px;
    color: var(--sv-heading);
    margin-bottom: 6px;
}

.sv-sap-strip__item span {
    font-size: 12px;
    color: var(--sv-muted);
    line-height: 1.5;
}

/* Mobile platform row */
.sv-platform-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sv-platform-card {
    background: var(--sv-white);
    border-radius: var(--sv-r-lg);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--sv-shadow-sm);
    transition: transform 0.35s var(--sv-ease);
}

.sv-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sv-shadow-md);
}

.sv-platform-card__img {
    background: var(--sv-cream);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.sv-platform-card__img img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.sv-platform-card__body {
    padding: 20px;
}

.sv-platform-card__body h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: var(--sv-heading);
}

.sv-platform-card__body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--sv-muted);
}

@media (max-width: 991px) {
    .sv-sap-strip, .sv-platform-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .sv-cap-bento,
    .sv-cap-grid,
    .sv-cap-grid--4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .sv-sap-strip, .sv-platform-row { grid-template-columns: 1fr; }
    .sv-cap-bento, .sv-cap-grid, .sv-cap-grid--4, .sv-ecosystem__flow { grid-template-columns: 1fr; }
    .sv-metrics, .sv-hero-stats { grid-template-columns: 1fr; }
    .sv-trust-wall { grid-template-columns: 1fr; }
    .sv-process-track, .sv-process-track--4, .sv-process-track--6 { grid-template-columns: 1fr; }
    .sv-challenges { grid-template-columns: 1fr; }
    .sv-story { padding: clamp(48px, 8vw, 72px) 0; }
    .sv-value-band { grid-template-columns: 1fr; }
    .sv-advantages { grid-template-columns: 1fr; }
    .sv-highlight-row { grid-template-columns: 1fr; }
    .sv-security-grid { grid-template-columns: 1fr; }
    .sv-mid-cta__inner { flex-direction: column; text-align: center; }
}

/* ================================================================
   Dynamic engagement components
   ================================================================ */

.sv-value-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.sv-value-band__item {
    background: var(--sv-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--sv-r-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--sv-shadow-sm);
    transition: transform 0.35s var(--sv-ease), box-shadow 0.35s var(--sv-ease), border-color 0.3s ease;
}

.sv-value-band__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sv-shadow-md);
    border-color: rgba(114, 187, 68, 0.35);
}

.sv-value-band__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(114, 187, 68, 0.18), rgba(114, 187, 68, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sv-green-dark);
    font-size: 22px;
}

.sv-value-band__item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--sv-heading);
    margin: 0 0 8px;
}

.sv-value-band__item p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--sv-muted);
    margin: 0;
}

.sv-story--dark .sv-value-band__item {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.sv-story--dark .sv-value-band__item h3 { color: var(--sv-white); }
.sv-story--dark .sv-value-band__item p { color: rgba(255, 255, 255, 0.72); }

.sv-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sv-advantage {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--sv-white);
    border-radius: var(--sv-r-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--sv-shadow-sm);
    transition: transform 0.35s var(--sv-ease);
}

.sv-advantage:hover { transform: translateY(-4px); box-shadow: var(--sv-shadow-md); }

.sv-advantage__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--sv-r-sm);
    background: linear-gradient(135deg, var(--sv-green), var(--sv-green-dark));
    color: var(--sv-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sv-advantage h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--sv-heading);
    margin: 0 0 6px;
}

.sv-advantage p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--sv-muted);
    margin: 0;
}

.sv-highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 48px);
    align-items: center;
    margin-top: 40px;
}

.sv-highlight-row__visual img {
    width: 100%;
    border-radius: var(--sv-r-xl);
    box-shadow: var(--sv-shadow-lg);
}

.sv-highlight-row__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.sv-highlight-row__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--sv-white);
    border-radius: var(--sv-r-sm);
    border: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 14px;
    line-height: 1.55;
    color: var(--sv-text);
}

.sv-highlight-row__list li i {
    color: var(--sv-green-dark);
    margin-top: 3px;
}

.sv-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sv-security-card {
    padding: 28px;
    border-radius: var(--sv-r-lg);
    background: var(--sv-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--sv-shadow-sm);
    transition: transform 0.35s var(--sv-ease);
}

.sv-security-card:hover { transform: translateY(-4px); box-shadow: var(--sv-shadow-md); }

.sv-security-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--sv-r-sm);
    background: rgba(114, 187, 68, 0.12);
    color: var(--sv-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.sv-security-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--sv-heading);
    margin: 0 0 8px;
}

.sv-security-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--sv-muted);
    margin: 0;
}

.sv-mid-cta {
    padding: clamp(48px, 6vw, 64px) 0;
    background: linear-gradient(135deg, rgba(114, 187, 68, 0.12) 0%, rgba(238, 242, 255, 0.8) 50%, rgba(114, 187, 68, 0.08) 100%);
    border-top: 1px solid rgba(114, 187, 68, 0.2);
    border-bottom: 1px solid rgba(114, 187, 68, 0.2);
}

.sv-mid-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.sv-mid-cta__copy h3 {
    font-family: var(--sv-font-serif);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--sv-heading);
    margin: 0 0 8px;
}

.sv-mid-cta__copy p {
    font-size: 15px;
    color: var(--sv-muted);
    margin: 0;
    max-width: 560px;
    line-height: 1.65;
}

/* Conversion offer (lead magnet) — unique formats: guide | assessment | demo | whitepaper */
.sv-offer {
    padding: clamp(40px, 5vw, 72px) 0;
    background:
        radial-gradient(ellipse 70% 80% at 10% 20%, rgba(114, 187, 68, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 80%, rgba(15, 31, 77, 0.06), transparent 50%),
        #f7f9f5;
    border-top: 1px solid rgba(114, 187, 68, 0.18);
    border-bottom: 1px solid rgba(114, 187, 68, 0.18);
}

.sv-offer--demo {
    background:
        radial-gradient(ellipse 60% 70% at 85% 15%, rgba(15, 31, 77, 0.12), transparent 55%),
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(114, 187, 68, 0.12), transparent 50%),
        #eef2f8;
}

.sv-offer--assessment {
    background:
        radial-gradient(ellipse 55% 60% at 0% 50%, rgba(114, 187, 68, 0.16), transparent 55%),
        #f5f8f2;
}

.sv-offer--whitepaper {
    background:
        linear-gradient(180deg, #f4f6fa 0%, #eef1f6 100%);
}

.sv-offer__card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: stretch;
    padding: clamp(28px, 3.5vw, 40px);
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 31, 77, 0.08);
    box-shadow: 0 18px 48px rgba(15, 31, 77, 0.08);
}

.sv-offer--demo .sv-offer__card {
    border-color: rgba(15, 31, 77, 0.12);
}

.sv-offer__badge-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.sv-offer__icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    color: #3d7a1f;
    background: rgba(114, 187, 68, 0.14);
}

.sv-offer--demo .sv-offer__icon {
    color: #0f1f4d;
    background: rgba(15, 31, 77, 0.1);
}

.sv-offer--whitepaper .sv-offer__icon {
    color: #1a2a4a;
    background: rgba(15, 31, 77, 0.08);
}

.sv-offer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.sv-offer__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(114, 187, 68, 0.12);
    color: #3d7a1f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sv-offer__format {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 31, 77, 0.05);
    color: #3d4660;
    font-size: 12px;
    font-weight: 600;
}

.sv-offer__value {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 31, 77, 0.06);
    color: #0f1f4d;
    font-size: 12px;
    font-weight: 600;
}

.sv-offer__title {
    font-family: var(--sv-font-serif, Georgia, serif);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    line-height: 1.2;
    color: var(--sv-heading, #0f1f4d);
    margin: 0 0 12px;
    font-weight: 600;
}

.sv-offer__text {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--sv-muted, #5a6478);
    max-width: 58ch;
}

.sv-offer__bullets {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.sv-offer__bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    line-height: 1.5;
    color: #2d3648;
}

.sv-offer__bullets i {
    color: #72bb44;
    margin-top: 3px;
    flex: 0 0 auto;
}

.sv-offer__audience {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 31, 77, 0.08);
}

.sv-offer__audience-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a6478;
}

.sv-offer__audience-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sv-offer__audience-list li {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(114, 187, 68, 0.12);
    color: #1f2a1a;
    font-size: 13px;
    font-weight: 500;
}

.sv-offer__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(18px, 2.2vw, 24px);
    border-radius: 16px;
    background:
        linear-gradient(160deg, rgba(247, 249, 245, 0.95), rgba(238, 242, 236, 0.9));
    border: 1px solid rgba(15, 31, 77, 0.06);
}

.sv-offer--demo .sv-offer__panel {
    background: linear-gradient(160deg, #f4f6fb, #e8ecf4);
}

.sv-offer-form {
    display: grid;
    gap: 12px;
}

.sv-offer-form__heading {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #0f1f4d;
}

.sv-offer-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sv-offer-form__field {
    display: grid;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #3d4660;
}

.sv-offer-form__field input,
.sv-offer-form__field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border: 1px solid rgba(15, 31, 77, 0.14);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #0f1f4d;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.sv-offer-form__field textarea {
    resize: vertical;
    min-height: 84px;
    line-height: 1.45;
}

.sv-offer-form__field input:focus,
.sv-offer-form__field textarea:focus {
    border-color: rgba(114, 187, 68, 0.65);
    box-shadow: 0 0 0 3px rgba(114, 187, 68, 0.18);
}

.sv-offer__btn {
    justify-content: center;
    width: 100%;
    margin-top: 4px;
}

.sv-offer__note {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--sv-muted, #5a6478);
    text-align: center;
}

.sv-offer-form__status {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.45;
    font-weight: 600;
    text-align: center;
}

.sv-offer-form__status.is-ok {
    color: #2f6b14;
}

.sv-offer-form__status.is-err {
    color: #a11f2c;
}

@media (max-width: 900px) {
    .sv-offer__card {
        grid-template-columns: 1fr;
    }

    .sv-offer-form__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .sv-value-band { grid-template-columns: repeat(2, 1fr); }
    .sv-advantages { grid-template-columns: 1fr; }
    .sv-highlight-row { grid-template-columns: 1fr; }
    .sv-security-grid { grid-template-columns: 1fr; }
}
