/* ------------------------------------------------
   1. SN DECADE TIMELINE
   ------------------------------------------------ */

/* ── WRAPPER ── */
.sn-decade-timeline {
    position: relative;
    padding: 80px 0 0;
    background: #000000;
    overflow: hidden;
    color: #fff;
    padding-bottom: 80px;
}

/* ── CONTAINER ── */
.sn-decade-timeline .sn-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── HEADER ── */
.sn-decade-timeline .sn-section-label {
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 20px;
    font-weight: var(--fw-semibold);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary);
    border: 1px solid #d5e3f5;
    padding: 10px 15px 6px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.sn-decade-timeline .sn-section-title {
    display: block;
    margin: 0 auto 16px;
    width: max-content;
}
.sn-decade-timeline .sn-section-desc {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
    color: rgba(255,255,255,0.7);
    margin: 0 auto 60px;
}

/* ── YEARLY SLIDER ── */
.sn-yearly-slider {
    position: relative;
}

/* ── CONTENT WRAP — 550px fixed ── */
.sn-year-content-wrap {
    position: relative;
    height: 550px;
    overflow: visible;
}

/* ── YEAR PANELS ── */
.sn-year-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 550px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
    display: block !important;
}
.sn-year-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block !important;
    /* Remove old animation */
    animation: none;
    transform: none;
}
.sn-year-content.previous-active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ── YEAR INNER ── */
.sn-year-inner {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: visible;
    display: block;
    text-shadow: 0px 2px 10px #000;
}

/* ── FIGURE ── */
.sn-year-figure {
    position: static;
    display: block;
    width: 100%;
    height: 0 !important;
    margin: 0;
    padding: 0;
    overflow: visible;
    transform: none;
    border-radius: 0;
}

/* ── IMAGE
   FIX: left:50px (not right:0)
   FIX: bottom:-337px (Appinventiv exact)
   FIX: matrix transform (Appinventiv exact tilt) ── */
.sn-year-figure img {
    position: absolute !important;
    top: 0;
    left: 50px !important;
    bottom: -337px;
    right: auto;
    width: 420px;
    height: 337px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    z-index: 2;
    transform: matrix(0.984808, -0.173648, 0.173648, 0.984808, -12.1022, 173.233);
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0s;
}
.sn-year-content.active .sn-year-figure img {
    transition-delay: 0.2s;
}

/* ── DIGITS — background layer ── */
.sn-year-inner > .sn-year-title {
    position: absolute;
    top: 275px;
    left: 50%;
    width: 585px;
    height: 250px;
    transform: translate(-50%, -125px);
    z-index: 2;
    pointer-events: none;
    display: block;
    overflow: visible;
}
.sn-digits {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    height: 250px;
    overflow: visible;
}
.sn-digit-wrap {
    display: block;
    flex: 1;
    height: 250px;
    overflow: visible;
}

/* FIX: digit color — override Elementor post-604.css
   Must beat: .elementor-604 .elementor-element-fec49b4 .sn-year-title .sn-digit
   Use high specificity + !important                                              */
.sn-year-title .sn-digit,
.sn-digit-wrap .sn-digit,
.sn-year-inner .sn-digit,
.sn-decade-timeline .sn-digit,
span.sn-digit {
    display: inline !important;
    font-size: 250px !important;
    font-weight: var(--fw-extrabold) !important;
    line-height: 250px !important;
    color: rgb(17, 99, 251) !important;
    letter-spacing: -8px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── TEXT INFO — FIX: absolute not static ──
   FIX: top:384px, left:780px, z-index:3        ── */
.sn-year-inner > .sn-year-info {
    position: absolute !important;
    top: 384px !important;
    left: 780px;
    bottom: auto;
    right: 0;
    width: 420px;
    height: auto;
    z-index: 3 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── MILESTONE — FIX: static not absolute ── */
.sn-year-milestone {
    position: static !important;
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
    display: block;
    width: auto !important;
    left: auto !important;
    top: auto !important;
}

/* ── PARAGRAPH — FIX: static not absolute ── */
.sn-year-para {
    position: static !important;
    font-size: 14px;
    font-weight: var(--fw-medium);
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin: 0;
    max-width: 100%;
    text-align: left;
    display: block;
    width: auto !important;
    left: auto !important;
    top: auto !important;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0s;
}
.sn-year-content.active .sn-year-para {
    transition-delay: 0.5s;
}
.sn-year-para p {
    position: static !important;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* ── TIMELINE SCROLLER ── */
.sn-timeline-scroller {
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: #000000;
    padding: 24px 0;
    margin-top: 20px;
}
.sn-timeline-scroller::-webkit-scrollbar { display: none; }

/* ── TIMELINE TABS ── */
.sn-timeline-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 46px;
    padding-left: 20px;
    box-sizing: border-box;
}

/* FIX: timeline line color must be rgb(17,99,251) not #010ed0 */
.sn-timeline-line {
    position: absolute;
    top: 7px;
    left: 20px; 
    right: 12px;
    height: 1px;
    background: #010ed0 !important;
    transform: translateY(-50%);
    z-index: 0;
    display: block;
    width: calc(100% - 20px);
}

/* ── TAB ITEMS ── */
.sn-year-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    position: relative;
    width: 30px;
    height: auto;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.2s;
    flex: unset;
    overflow: visible;
}
.sn-year-tab:not(.active):not(.previous-active) {
    opacity: 0.9;
}
.sn-year-tab:hover { opacity: 1; }

/* ── TAB DOT — exact Appinventiv pill 30×20px ── */
.sn-tab-dot {
    display: block;
    width: 30px;
    height: 20px;
    border-radius: 10px;
    border: 1px solid rgb(17, 99, 251);
    background: rgb(0, 0, 0);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.2s;
}
.sn-year-tab.active .sn-tab-dot {
    background: rgb(17, 99, 251);
    border-color: rgb(17, 99, 251);
    transform: scale(1.1);
}
.sn-year-tab.previous-active .sn-tab-dot {
    border-color: rgb(17, 99, 251);
    transform: scale(1);
}

/* FIX: tab year top:20px not auto */
.sn-tab-year {
    font-size: 16px;
    font-weight: var(--fw-normal);
    color: rgb(255, 255, 255);
    display: block;
    position: static !important;
    top: auto !important;
    margin-left: 0;
    margin-top: 4px;
    white-space: nowrap;
}
.sn-year-tab.active .sn-tab-year {
    color: rgb(255, 255, 255);
    font-weight: var(--fw-semibold);
}
.sn-year-tab.previous-active .sn-tab-year {
    color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   TABLET — 1024px
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sn-year-figure img {
        width: 320px;
        height: 260px;
    }
    .sn-year-inner > .sn-year-title {
        top: 310px;
        left: 45%;
        width: 440px;
        height: 160px;
        transform: translate(-50%, -80px);
    }
    .sn-year-title .sn-digit,
    .sn-digit-wrap .sn-digit,
    .sn-year-inner .sn-digit,
    .sn-decade-timeline .sn-digit,
    span.sn-digit {
        font-size: 160px !important;
        line-height: 160px !important;
        letter-spacing: -4px;
    }
    .sn-year-inner > .sn-year-info {
        top: 380px !important;
        left: 50% !important;
        width: 320px;
    }
}

/* ══════════════════════════════════════════════
   MOBILE — 768px
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

    .sn-decade-timeline {
        padding: 60px 0 0;
    }

    /* ── Header — left aligned on mobile ── */
    .sn-decade-timeline .sn-section-label,
    .sn-decade-timeline .sn-section-title,
    .sn-decade-timeline .sn-section-desc {
        text-align: left;
        max-width: 100%;
    }

    /* ── Wrap — auto height, no fixed 680px ── */
    .sn-year-content-wrap {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    /* ── Panels — show/hide with display ── */
    .sn-year-content {
        position: relative !important;
        height: auto !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: none !important;
        top: auto !important;
        left: auto !important;
        min-height: 0 !important;
    }
    .sn-year-content.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: none !important;
        transform: none !important;
    }

    /* ── Year inner — flex column flow ── */
    .sn-year-inner {
        position: relative !important;
        height: auto !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
    }

    /* ── Figure — auto height, flow ── */
    .sn-year-figure {
        height: auto !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        margin-bottom: 0 !important;
        order: 1;
    }

    /* ── Image — full width, no transform ── */
    .sn-year-figure img {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        height: 240px !important;
        border-radius: 12px !important;
        transform: none !important;
        transition: none !important;
        display: block !important;
        object-fit: cover !important;
    }

    /* ── Digits — below image, overlapping ── */
    .sn-year-inner > .sn-year-title {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        overflow: hidden !important;
        margin: -10px 0 0 !important;
        order: 2;
    }
    .sn-digits {
        width: 100% !important;
        height: auto !important;
        justify-content: flex-start !important;
    }
    .sn-digit-wrap {
        flex: unset !important;
        height: auto !important;
    }
    .sn-year-title .sn-digit,
    .sn-digit-wrap .sn-digit,
    .sn-year-inner .sn-digit,
    .sn-decade-timeline .sn-digit,
    span.sn-digit {
        font-size: clamp(60px, 22vw, 100px) !important;
        line-height: 0.9 !important;
        letter-spacing: -2px !important;
    }

    /* ── Info block — below digits, natural flow ── */
    .sn-year-inner > .sn-year-info {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        height: auto !important;
        z-index: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 16px 0 20px !important;
        margin-top: 0 !important;
        order: 3;
    }

    /* ── Milestone ── */
    .sn-year-milestone {
        position: static !important;
        font-size: 20px !important;
        font-weight: var(--fw-bold) !important;
        color: #fff !important;
        margin: 0 !important;
        width: auto !important;
        left: auto !important;
        top: auto !important;
    }

    /* ── Paragraph ── */
    .sn-year-para,
    .sn-year-para p {
        position: static !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: rgba(255,255,255,0.75) !important;
        margin: 0 !important;
        width: auto !important;
        max-width: 100% !important;
        left: auto !important;
        top: auto !important;
    }

    /* ── Timeline scroller ── */
    .sn-timeline-scroller {
        margin-top: 16px !important;
        padding: 16px 0 !important;
    }

    /* ── Timeline tabs — fix tab label cutoff ── */
    .sn-timeline-tabs {
        justify-content: flex-start !important;
        gap: 0 !important;
    }
    .sn-year-tab {
        flex: 1 1 auto !important;
        min-width: 44px !important;
        width: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .sn-tab-dot {
        width: 20px !important;
        height: 14px !important;
        border-radius: 7px !important;
        flex-shrink: 0 !important;
    }

    /* ── Tab year — FIX cutoff: centered, smaller ── */
    .sn-tab-year {
        font-size: 11px !important;
        position: static !important;
        top: auto !important;
        margin-left: 0 !important;
        display: block !important;
        text-align: center !important;
        margin-top: 6px !important;
        white-space: nowrap !important;
        color: rgba(255,255,255,0.5) !important;
    }
    .sn-year-tab.active .sn-tab-year {
        color: #fff !important;
        font-weight: var(--fw-semibold) !important;
    }
}

/* ══════════════════════════════════════════════
   EXTRA SMALL — 480px
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .sn-year-figure img {
        height: 200px !important;
    }
    .sn-year-title .sn-digit,
    .sn-digit-wrap .sn-digit,
    .sn-year-inner .sn-digit,
    .sn-decade-timeline .sn-digit,
    span.sn-digit {
        font-size: clamp(50px, 20vw, 80px) !important;
    }
    .sn-tab-year {
        font-size: 10px !important;
    }
}

/* ------------------------------------------------
   2. SN TESTIMONIALS SLIDER
   ------------------------------------------------ */
.sn-testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.sn-testimonials-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sn-testimonials-arrows {
    display: flex;
    gap: 12px;
}

.sn-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #010ed0;
    background: #fff;
    color: #010ed0;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    outline: none;
    line-height: 1;
}

.sn-arrow-btn:hover,
.sn-arrow-btn:focus {
    background: #010ed0;
    color: #fff !important;
    outline: none;
}

.sn-arrow-btn.sn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.sn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.sn-dot.active {
    background: #010ed0;
    transform: scale(1.3);
}

.sn-testimonials .sn-container {
    max-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ── CARD CONTENT ── */
.sn-testimonial-quote-icon {
    font-size: 48px;
    line-height: 1;
    color: #010ed0;
    opacity: 0.4;
}
.sn-testimonial-rating {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}
.sn-testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin: 0;
    flex: 1;
}
.sn-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.sn-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.sn-testimonial-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #010ed0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: var(--fw-bold);
    flex-shrink: 0;
}
.sn-testimonial-name {
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: #222;
}
.sn-testimonial-role {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* ── MOBILE ── */
/* Tablet — 2 cards */
@media (max-width: 1024px) {
    .sn-testimonial-card {
        min-width: 0 !important;
        max-width: none !important;
    }
}

/* Mobile — 1 card */
@media (max-width: 768px) {
    .sn-testimonial-card {
        min-width: 0 !important;
        max-width: none !important;
        flex: 0 0 100% !important;
    }
    .sn-testimonials-track {
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: 0 !important;
    }
}

.sn-testimonials {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.sn-testimonials .sn-section-header {
    margin-bottom: 56px;
}
.sn-testimonials-wrapper {
    position: relative;
}
.sn-testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding-left: var(--site-padding) !important;
    padding-right: var(--site-padding) !important;
    box-sizing: border-box !important;
}
.sn-testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
    max-width: none;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ------------------------------------------------
   3. SN CULTURE GRID
   ------------------------------------------------ */
.sn-culture-grid .sn-container {
    max-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.sn-culture-grid {
    padding: 80px 0;
}
.sn-culture-grid .sn-section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
}
.sn-culture-grid .sn-section-header-left {
    flex: 1 1 420px;
}
.sn-culture-grid .sn-section-header-right {
    flex: 0 1 320px;
    display: flex;
    align-items: flex-end;
}
.sn-culture-grid .sn-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #010ed0;
    color: #010ed0;
    font-weight: var(--fw-semibold);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.sn-culture-grid .sn-view-all-btn:hover {
    background: #010ed0;
    color: #fff;
}
.sn-culture-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sn-culture-card {
    border-radius: 16px;
    padding: 40px 32px;
    background: #f5f7fe;
    border: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.sn-culture-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: #010ed0;
    transition: height 0.3s ease;
    border-radius: 4px 0 0 4px;
}
.sn-culture-card:hover {
    border-color: rgba(1,14,208,0.2);
    box-shadow: 0 12px 40px rgba(1,14,208,0.1);
    transform: translateY(-4px);
}
.sn-culture-card:hover::before {
    height: 100%;
}
.sn-culture-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 26px;
    box-shadow: 0 2px 12px rgba(1,14,208,0.15);
    transition: background 0.3s, transform 0.3s;
}
.sn-culture-card:hover .sn-culture-card-icon {
    background: #010ed0;
    transform: rotate(5deg) scale(1.05);
    color: #fff;
}
.sn-culture-card-title {
    font-size: 20px;
    font-weight: var(--fw-bold);
    margin: 0 0 12px;
}
.sn-culture-card-text {
    font-size: 14px;
    line-height: 1.75;
    opacity: 0.65;
    margin: 0;
}

@media (max-width:900px) { 
    .sn-culture-cards { grid-template-columns: repeat(2,1fr) !important; } 
}

@media (max-width:580px) { 
    .sn-culture-cards { grid-template-columns: 1fr !important; } 
    
}

/* ------------------------------------------------
   4. SN MEASURABLE IMPACT
   ------------------------------------------------ */
.sn-measurable-impact .sn-impact-header {
    text-align: left;
}
.sn-measurable-impact .sn-section-desc {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.sn-measurable-impact {
    padding: 80px 0;
}
.sn-impact-header {
    text-align: center;
    margin-bottom: 64px;
}
.sn-impact-header .sn-section-label {
    display: inline-block;
    width: fit-content;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: var(--fw-semibold);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary);
    border: 1px solid #d5e3f5;
    padding: 10px 15px 6px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.sn-impact-header .sn-section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: var(--fw-bold);
    line-height: 1.15;
    color: inherit;
    margin: 0 0 20px;
}
.sn-impact-header .sn-section-desc {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 auto;
    opacity: 0.7;
}
.sn-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(0,0,0,0.07);
    border-radius: 20px;
    overflow: hidden;
}
.sn-impact-item {
    background: inherit;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    transition: background 0.3s;
}
.sn-impact-item:hover {
    background: rgba(1,14,208,0.05);
}
.sn-impact-number {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: var(--fw-extrabold);
    line-height: 1;
    color: #010ed0;
    display: block;
}
.sn-impact-suffix {
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: var(--fw-extrabold);
    color: #010ed0;
}
.sn-impact-label {
    font-size: 15px;
    font-weight: var(--fw-medium);
    margin-top: 12px;
    display: block;
    opacity: 0.7;
}
.sn-impact-sublabel {
    font-size: 13px;
    opacity: 0.5;
    margin-top: 4px;
    display: block;
}

.sn-measurable-impact .sn-container {
    max-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .sn-impact-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    .sn-impact-grid { grid-template-columns: 1fr !important; }
}

/* ------------------------------------------------
   5. SN TEAM GRID
   ------------------------------------------------ */
.sn-team-grid {
    padding: 80px 0;
}
.sn-team-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}
.sn-team-header-left { flex: 1 1 420px; }
.sn-team-header-right {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sn-team-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sn-team-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f5f7fe;
    transition: box-shadow 0.3s, transform 0.3s;
}
.sn-team-card:hover {
    box-shadow: 0 20px 50px rgba(1,14,208,0.15);
    transform: translateY(-6px);
}
.sn-team-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #e0e6f8;
}
.sn-team-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.sn-team-card:hover .sn-team-card-img-wrap img {
    transform: scale(1.06);
}
.sn-team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,28,68,0.9) 30%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}
.sn-team-card:hover .sn-team-card-overlay {
    opacity: 1;
}
.sn-team-overlay-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 16px;
    transform: translateY(12px);
    transition: transform 0.3s ease 0.05s;
}
.sn-team-card:hover .sn-team-overlay-desc {
    transform: translateY(0);
}
.sn-team-social-links {
    display: flex;
    gap: 10px;
    transform: translateY(12px);
    transition: transform 0.3s ease 0.1s;
}
.sn-team-card:hover .sn-team-social-links {
    transform: translateY(0);
}
.sn-team-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}
.sn-team-social-link:hover {
    background: #010ed0;
    color: #fff;
}
.sn-team-card-body {
    padding: 20px;
}
.sn-team-card-name {
    font-size: 17px;
    font-weight: var(--fw-bold);
    margin: 0 0 4px;
    color: inherit;
}
.sn-team-card-role {
    font-size: 13px;
    color: #010ed0;
    font-weight: var(--fw-medium);
}
/* Team placeholder image */
.sn-team-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c8d5f8 0%, #a8bbf0 100%);
    font-size: 52px;
    color: #010ed0;
}
@media (max-width: 1100px) {
    .sn-team-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .sn-team-cards { grid-template-columns: repeat(2, 1fr); }
    .sn-team-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .sn-team-cards { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   Shared helpers
   ------------------------------------------------ */
.sn-section-label {
    display: inline-block;
    width: fit-content;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 20px;
    font-weight: var(--fw-semibold);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--bg-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary);
    border: 1px solid #d5e3f5;
    padding: 10px 15px 6px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.sn-section-title {
    line-height: 1.2;
}
.sn-section-desc {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.7;
}

/* Counter animation */
.sn-counter {
    display: inline-block;
}

/* Swiper overflow clip on sliders */
.sn-testimonials-overflow {
    overflow: hidden !important;
    width: calc(100% + 80px) !important;
    max-width: calc(100% + 80px) !important;
    margin-left: -40px !important;
    margin-right: -40px !important;
    box-sizing: border-box !important;
}

.split-text-line {
    overflow: hidden;
    display: block;
}

/* Dark background variant */
.sn-bg-dark .sn-testimonial-card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: #fff;
}
.sn-bg-dark .sn-testimonial-name { color: #fff; }
.sn-bg-dark .sn-testimonial-text { color: rgba(255,255,255,0.8); }
.sn-bg-dark .sn-impact-item { background: rgba(255,255,255,0.04); }
.sn-bg-dark .sn-culture-card { background: rgba(255,255,255,0.06); }
.sn-bg-dark .sn-team-card { background: rgba(255,255,255,0.05); }

/* Animations */
@keyframes sn-fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sn-animated {
    animation: sn-fade-in-up 0.55s ease forwards;
}
.sn-anim-delay-1 { animation-delay: 0.1s; }
.sn-anim-delay-2 { animation-delay: 0.2s; }
.sn-anim-delay-3 { animation-delay: 0.3s; }
.sn-anim-delay-4 { animation-delay: 0.4s; }

/* ------------------------------------------------
   6. SN CASE STUDY CARDS
   ------------------------------------------------ */
.sn-case-studies-wrapper {
    padding: 60px 0;
}
.sn-case-studies-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
}
.sn-case-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.sn-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.sn-case-logo {
    height: 48px;
    margin-bottom: 24px;
}
.sn-case-logo img {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
.sn-case-title {
    font-size: 20px;
    font-weight: var(--fw-bold);
    margin: 0 0 12px;
    line-height: 1.4;
}
.sn-case-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 24px;
    flex: 1;
}
.sn-case-metrics {
    display: flex;
    gap: 28px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.sn-case-metric {
    flex: 1 1 40%;
}
.sn-case-metric-number {
    font-size: 32px;
    font-weight: var(--fw-extrabold);
    line-height: 1;
    color: #010ed0;
    margin-bottom: 6px;
}
.sn-case-metric-label {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}
.sn-case-link {
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.sn-case-link:hover {
    color: #010ed0;
}
.sn-case-link .sn-arrow {
    transition: transform 0.2s;
}
.sn-case-link:hover .sn-arrow {
    transform: translateX(4px);
}
@media (max-width: 992px) {
    .sn-case-studies-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .sn-case-studies-grid { grid-template-columns: 1fr; }
    .sn-case-metrics { gap: 16px; }
    .sn-case-metric { flex: 1 1 100%; }
}

/* ------------------------------------------------
   7. SN STATS COUNTER
   ------------------------------------------------ */
.sn-stats-counter-wrapper {
    padding: 60px 0;
}
.sn-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}
.sn-stat-item {
    text-align: center;
}
.sn-stat-number {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: var(--fw-extrabold);
    line-height: 1;
    color: #010ed0;
    margin-bottom: 12px;
    display: block;
}
.sn-stat-suffix {
    font-size: clamp(28px, 3.5vw, 48px);
}
.sn-stat-label {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .sn-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}
@media (max-width: 480px) {
    .sn-stats-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   8. SN LOGO CAROUSEL
   ------------------------------------------------ */
.sn-logo-carousel-wrapper {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}
.sn-logo-track {
    display: flex;
    gap: 80px;
    align-items: center;
    width: max-content;
}
.sn-logo-carousel-wrapper[data-autoplay="1"] .sn-logo-track {
    animation: sn-logo-scroll linear infinite;
}
.sn-logo-item {
    flex-shrink: 0;
}
.sn-logo-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s, filter 0.3s;
    filter: grayscale(100%);
}
.sn-logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}
@keyframes sn-logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}
@media (max-width: 768px) {
    .sn-logo-track { gap: 60px; }
    .sn-logo-item img { height: 48px; }
}

/* ------------------------------------------------
   9. SN CTA BANNER
   ------------------------------------------------ */
.sn-cta-banner {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #010ed0 0%, #2a5dd4 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
.sn-cta-content {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.sn-cta-title {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: var(--fw-medium);
    color: var(--color-heading);
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0 0 25px;
}
.sn-cta-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px;
}
.sn-cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #010ed0;
    font-size: 16px;
    font-weight: var(--fw-semibold);
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sn-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .sn-cta-banner { padding: 60px 24px; }
    .sn-cta-title { font-size: 36px; }
    .sn-cta-subtitle { font-size: 16px; }
}

/* ------------------------------------------------
   10. SN SERVICE CARDS
   ------------------------------------------------ */
.sn-service-cards-wrapper {
    padding: 60px 0;
}
.sn-service-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
}
.sn-service-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
}
.sn-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: #010ed0;
}
.sn-service-icon {
    font-size: 48px;
    color: #010ed0;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}
.sn-service-icon i,
.sn-service-icon svg {
    width: 48px;
    height: 48px;
}
.sn-service-title {
    font-size: 20px;
    font-weight: var(--fw-bold);
    margin: 0 0 12px;
    line-height: 1.4;
}
.sn-service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}
@media (max-width: 992px) {
    .sn-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .sn-service-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   11. SN FILTER TABS
   ------------------------------------------------ */
.sn-filter-tabs-wrapper {
    padding: 60px 0;
}
.sn-filter-tabs-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}
.sn-filter-tab {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: #666;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    position: relative;
    margin-bottom: -2px;
}
.sn-filter-tab:hover {
    color: #333;
}
.sn-filter-tab.active {
    color: #010ed0;
    border-bottom-color: #010ed0;
}
.sn-filter-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.sn-filter-item {
    padding: 28px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: opacity 0.3s, transform 0.3s;
}
.sn-filter-item.hidden {
    display: none;
}
.sn-filter-item-title {
    font-size: 18px;
    font-weight: var(--fw-bold);
    margin: 0 0 12px;
}
.sn-filter-item-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) {
    .sn-filter-tabs-nav { justify-content: flex-start; overflow-x: auto; }
    .sn-filter-tab { white-space: nowrap; }
}

/* ------------------------------------------------
   12. SN PROCESS STEPS
   ------------------------------------------------ */
.sn-process-steps-wrapper {
    padding: 60px 0;
}
.sn-layout-vertical .sn-process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.sn-layout-horizontal .sn-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}
.sn-step-item {
    display: flex;
    gap: 24px;
}
.sn-layout-horizontal .sn-step-item {
    flex-direction: column;
    text-align: center;
}
.sn-step-marker {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sn-layout-horizontal .sn-step-marker {
    flex-direction: row;
    justify-content: center;
}
.sn-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f0f4ff;
    color: #010ed0;
    font-size: 24px;
    font-weight: var(--fw-extrabold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sn-step-line {
    width: 2px;
    flex: 1;
    background: #e0e0e0;
    margin-top: 8px;
}
.sn-layout-horizontal .sn-step-line {
    width: 80px;
    height: 2px;
    margin-top: 0;
    margin-left: 8px;
}
.sn-step-content {
    flex: 1;
    padding-top: 8px;
}
.sn-layout-horizontal .sn-step-content {
    padding-top: 0;
}
.sn-step-title {
    font-size: 20px;
    font-weight: var(--fw-bold);
    margin: 0 0 8px;
}
.sn-step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) {
    .sn-layout-horizontal .sn-process-steps { grid-template-columns: 1fr; }
    .sn-layout-horizontal .sn-step-item { flex-direction: row; text-align: left; }
    .sn-layout-horizontal .sn-step-marker { flex-direction: column; }
    .sn-layout-horizontal .sn-step-line { width: 2px; height: 40px; margin-left: 0; margin-top: 8px; }
}

/* ------------------------------------------------
   13. SN AWARD BADGES
   ------------------------------------------------ */
.sn-award-badges-wrapper {
    padding: 40px 0;
}
.sn-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
}
.sn-award-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: transform 0.3s;
}
.sn-award-badge:hover {
    transform: scale(1.05);
}
.sn-award-badge img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}
@media (max-width: 992px) {
    .sn-awards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .sn-awards-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ------------------------------------------------
   14. SN TECH STACK
   ------------------------------------------------ */
.sn-tech-stack-wrapper {
    padding: 40px 0;
}
.sn-tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px 32px;
    align-items: center;
}
.sn-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: transform 0.3s;
}
.sn-tech-item:hover {
    transform: translateY(-4px);
}
.sn-tech-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.sn-tech-item:hover img {
    opacity: 1;
}
.sn-tech-name {
    font-size: 13px;
    color: #666;
    font-weight: var(--fw-medium);
}
@media (max-width: 992px) {
    .sn-tech-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
    .sn-tech-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
}

/* ------------------------------------------------
   15. SN FAQ ACCORDION
   ------------------------------------------------ */
.sn-faq-accordion-wrapper {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}
.sn-faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s;
}
.sn-faq-item.active {
    border-left: 4px solid #010ed0;
}
.sn-faq-question {
    padding: 20px 24px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
    transition: background 0.2s;
}
.sn-faq-question:hover {
    background: #f0f2f5;
}
.sn-faq-text {
    font-size: 17px;
    font-weight: var(--fw-semibold);
    flex: 1;
}
.sn-faq-icon {
    flex-shrink: 0;
    color: #010ed0;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}
.sn-faq-item.active .sn-faq-icon {
    transform: rotate(180deg);
}
.sn-faq-answer {
    padding: 24px;
    background: #fff;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    display: none;
}
.sn-faq-answer p {
    margin: 0 0 12px;
}
.sn-faq-answer p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .sn-faq-question { padding: 16px 20px; }
    .sn-faq-text { font-size: 16px; }
    .sn-faq-answer { padding: 20px; }
}

/* ================================================================
   HEADING STANDARDISATION — sn-cta-title responsive
   Patch v2.0.0 (2026-05-22)
   ================================================================ */

.sn-cta-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sn-cta-title { font-size: 48px; }
}

@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .sn-cta-title { font-size: 42px; }
}

@media only screen and (max-width: 767px) {
  .sn-cta-title { font-size: 36px; }
}
