﻿/* ===============================
   ETS | Quick Trust Bar (Advanced)
   Brand: #374A53 / #476673
   =============================== */

.ets-trust {
    position: relative;
    padding: 26px 16px;
    background: #ffffff;
    border-top: 1px solid rgba(55,74,83,0.12);
    border-bottom: 1px solid rgba(55,74,83,0.12);
    overflow: hidden;
}

    /* subtle tech texture (very light) */
    .ets-trust::before {
        content: "";
        position: absolute;
        inset: -40px;
        background: linear-gradient( 135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(71,102,115,0.06) 35%, rgba(71,102,115,0.06) 41%, rgba(0,0,0,0) 41%, rgba(0,0,0,0) 62%, rgba(55,74,83,0.05) 62%, rgba(55,74,83,0.05) 68%, rgba(0,0,0,0) 68%, rgba(0,0,0,0) 100% );
        transform: rotate(-4deg);
        opacity: .9;
        pointer-events: none;
    }

.ets-trust__wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}

/* Card */
.ets-trust__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    border-radius: 16px;
    background: rgba(71,102,115,0.05);
    border: 1px solid rgba(55,74,83,0.12);
    box-shadow: 0 14px 40px rgba(55,74,83,0.08);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .ets-trust__item:hover {
        transform: translateY(-2px);
        background: rgba(71,102,115,0.07);
        box-shadow: 0 22px 60px rgba(55,74,83,0.12);
    }

/* Icon (line) */
.ets-trust__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #476673;
    box-shadow: 0 16px 36px rgba(71,102,115,0.28);
    flex: 0 0 auto;
}

    .ets-trust__icon svg {
        width: 22px;
        height: 22px;
        display: block;
    }

/* Text */
.ets-trust__meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ets-trust__value {
    font-size: 14.5px;
    font-weight: 900;
    color: #374A53;
    letter-spacing: -0.02em;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ets-trust__label {
    margin-top: 3px;
    font-size: 12.5px;
    color: rgba(55,74,83,0.72);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tablet */
@media (max-width: 980px) {
    .ets-trust__wrap {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

/* Mobile */
@media (max-width: 560px) {
    .ets-trust {
        padding: 20px 12px;
    }

    .ets-trust__wrap {
        grid-template-columns: 1fr;
    }

    .ets-trust__item {
        padding: 14px 14px;
    }

    .ets-trust__icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .ets-trust__value {
        white-space: normal;
    }

    .ets-trust__label {
        white-space: normal;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ets-trust__item {
        transition: none !important;
    }
}
/* ===============================
   ETS | Our Story (Advanced)
   =============================== */

.ets-story {
    position: relative;
    padding: 78px 18px;
    background: #ffffff;
    overflow: hidden;
}

/* subtle tech texture */
.ets-story__bg {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 18% 20%, rgba(71,102,115,0.10), rgba(71,102,115,0) 58%), radial-gradient(circle at 85% 10%, rgba(55,74,83,0.08), rgba(55,74,83,0) 60%), linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 32%, rgba(71,102,115,0.06) 32%, rgba(71,102,115,0.06) 38%, rgba(0,0,0,0) 38%, rgba(0,0,0,0) 62%, rgba(55,74,83,0.05) 62%, rgba(55,74,83,0.05) 68%, rgba(0,0,0,0) 68%, rgba(0,0,0,0) 100%);
    transform: rotate(-4deg);
    opacity: .95;
    pointer-events: none;
}

.ets-story__wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.ets-story__head {
    text-align: center;
    margin-bottom: 34px;
}

.ets-story__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(55,74,83,0.72);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-story__title {
    margin: 0;
    color: #374A53;
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-size: clamp(26px, 3.3vw, 44px);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-story__sub {
    margin: 12px auto 0;
    max-width: 72ch;
    color: rgba(55,74,83,0.72);
    font-size: 15px;
    line-height: 1.7;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-story__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: start;
}

.ets-story__left {
    min-width: 0;
}

.ets-story__copy {
    background: rgba(71,102,115,0.05);
    border: 1px solid rgba(55,74,83,0.12);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 18px 55px rgba(55,74,83,0.10);
}

    .ets-story__copy p {
        margin: 0;
        color: rgba(55,74,83,0.74);
        font-size: 14.5px;
        line-height: 1.85;
        font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    }

        .ets-story__copy p + p {
            margin-top: 12px;
        }

.ets-story__timeline {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.ets-story__step {
    position: relative;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(55,74,83,0.12);
    box-shadow: 0 12px 34px rgba(55,74,83,0.08);
}

.ets-story__pin {
    position: relative;
    width: 22px;
    display: flex;
    justify-content: center;
}

    .ets-story__pin::before {
        content: "";
        position: absolute;
        top: 12px;
        bottom: 12px;
        width: 2px;
        background: rgba(71,102,115,0.28);
        border-radius: 99px;
    }

.ets-story__pinDot {
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background: #476673;
    box-shadow: 0 0 0 5px rgba(71,102,115,0.16);
    margin-top: 4px;
}

.ets-story__stepTitle {
    margin: 0;
    font-weight: 900;
    color: #374A53;
    letter-spacing: -0.02em;
    font-size: 14px;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-story__stepText {
    margin: 6px 0 0;
    color: rgba(55,74,83,0.72);
    font-size: 13.5px;
    line-height: 1.75;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-story__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ets-story__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    text-decoration: none;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    border: 1px solid rgba(55,74,83,0.14);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ets-story__btn--solid {
    background: #476673;
    color: #ffffff;
    border-color: rgba(71,102,115,0.55);
    box-shadow: 0 16px 40px rgba(55,74,83,0.14);
}

    .ets-story__btn--solid:hover {
        transform: translateY(-1px);
        box-shadow: 0 22px 55px rgba(55,74,83,0.18);
    }

.ets-story__btn--ghost {
    background: #ffffff;
    color: #374A53;
}

    .ets-story__btn--ghost:hover {
        background: rgba(71,102,115,0.08);
        transform: translateY(-1px);
    }

/* Right collage */
.ets-story__right {
    min-width: 0;
}

.ets-story__collage {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    padding: 18px;
    background: rgba(71,102,115,0.05);
    border: 1px solid rgba(55,74,83,0.12);
    box-shadow: 0 18px 55px rgba(55,74,83,0.10);
    min-height: 520px;
}

/* image blocks */
.ets-story__img {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.18);
}

.ets-story__img--a {
    top: 18px;
    left: 18px;
    width: 62%;
    height: 42%;
    background-image: url("https://plus.unsplash.com/premium_photo-1682141019253-80f6e778d497?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}

.ets-story__img--b {
    top: 38%;
    right: 18px;
    width: 56%;
    height: 38%;
    background-image: url("https://plus.unsplash.com/premium_photo-1674582744373-c0805c281744?q=80&w=2081&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}

.ets-story__img--c {
    bottom: 18px;
    left: 18px;
    width: 48%;
    height: 30%;
    background-image: url("https://images.unsplash.com/photo-1631203928521-bde1e727e8b7?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}

/* floating card */
.ets-story__floatCard {
    position: absolute;
    top: 52%;
    left: 22px;
    width: min(300px, 70%);
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(55,74,83,0.12);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.ets-story__floatTitle {
    margin: 0;
    font-weight: 950;
    color: #374A53;
    letter-spacing: -0.02em;
    font-size: 13px;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-story__floatText {
    margin: 8px 0 0;
    color: rgba(55,74,83,0.72);
    font-size: 13px;
    line-height: 1.65;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-story__note {
    margin: 12px 0 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(55,74,83,0.62);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* Responsive */
@media (max-width: 980px) {
    .ets-story {
        padding: 60px 16px;
    }

    .ets-story__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ets-story__collage {
        min-height: 420px;
    }

    .ets-story__img--a {
        width: 66%;
        height: 40%;
    }

    .ets-story__img--b {
        width: 60%;
        height: 38%;
    }

    .ets-story__img--c {
        width: 52%;
        height: 30%;
    }

    .ets-story__floatCard {
        top: 56%;
    }
}

@media (max-width: 560px) {
    .ets-story__copy {
        padding: 16px 14px 14px;
    }

    .ets-story__step {
        padding: 12px 12px;
    }

    .ets-story__collage {
        padding: 14px;
        min-height: 380px;
    }

    .ets-story__img--a {
        top: 14px;
        left: 14px;
        width: 70%;
        height: 38%;
    }

    .ets-story__img--b {
        right: 14px;
        width: 64%;
        height: 36%;
    }

    .ets-story__img--c {
        bottom: 14px;
        left: 14px;
        width: 58%;
        height: 28%;
    }

    .ets-story__floatCard {
        left: 14px;
        width: min(320px, 86%);
    }

    .ets-story__actions .ets-story__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ets-story__btn {
        transition: none !important;
    }
}

/* ===============================
   ETS | Mission · Vision · Values
   =============================== */

.ets-mvv {
    position: relative;
    padding: 78px 18px;
    background: #ffffff;
    overflow: hidden;
}

/* Subtle background texture */
.ets-mvv__bg {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 15% 20%, rgba(71,102,115,0.10), rgba(71,102,115,0) 60%), radial-gradient(circle at 90% 10%, rgba(55,74,83,0.08), rgba(55,74,83,0) 62%);
    opacity: .9;
    pointer-events: none;
}

.ets-mvv__wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.ets-mvv__head {
    text-align: center;
    margin-bottom: 36px;
}

.ets-mvv__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(55,74,83,0.7);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-mvv__title {
    margin: 0;
    color: #374A53;
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-size: clamp(26px, 3.2vw, 44px);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-mvv__sub {
    margin: 12px auto 0;
    max-width: 70ch;
    color: rgba(55,74,83,0.72);
    font-size: 15px;
    line-height: 1.7;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* Grid */
.ets-mvv__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}

/* Card */
.ets-mvv__card {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: 20px;
    background: rgba(71,102,115,0.05);
    border: 1px solid rgba(55,74,83,0.12);
    box-shadow: 0 18px 55px rgba(55,74,83,0.10);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .ets-mvv__card:hover {
        transform: translateY(-3px);
        box-shadow: 0 26px 75px rgba(55,74,83,0.16);
    }

/* Icon */
.ets-mvv__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #476673;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(71,102,115,0.35);
    margin-bottom: 14px;
}

    .ets-mvv__icon svg {
        width: 26px;
        height: 26px;
    }

/* Text */
.ets-mvv__cardTitle {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #374A53;
    letter-spacing: -0.02em;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-mvv__text {
    margin: 10px 0 0;
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(55,74,83,0.75);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* Values list */
.ets-mvv__list {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
    font-size: 14px;
    color: rgba(55,74,83,0.78);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

    .ets-mvv__list li {
        line-height: 1.6;
    }

/* Responsive */
@media (max-width: 980px) {
    .ets-mvv {
        padding: 60px 16px;
    }

    .ets-mvv__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ets-mvv__card {
        padding: 20px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ets-mvv__card {
        transition: none !important;
    }
}


/* ===============================
   ETS | What We Do (RESPONSIVE FIX)
   =============================== */

.ets-services {
    position: relative;
    padding: 78px 18px;
    background: #ffffff;
    overflow-x: clip; /* prevents weird horizontal scrolling on mobile */
}

.ets-services__bg {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at 10% 10%, rgba(71,102,115,0.08), rgba(71,102,115,0) 60%), radial-gradient(circle at 90% 15%, rgba(55,74,83,0.06), rgba(55,74,83,0) 60%);
    pointer-events: none;
}

/* Wrap */
.ets-services__wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

/* Head */
.ets-services__head {
    text-align: center;
    margin-bottom: 36px;
}

.ets-services__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(55,74,83,0.72);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-services__title {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #374A53;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-services__sub {
    margin: 12px auto 0;
    max-width: 70ch;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(55,74,83,0.72);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* Grid */
.ets-services__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

/* Card */
.ets-services__card {
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(71,102,115,0.05);
    border: 1px solid rgba(55,74,83,0.12);
    box-shadow: 0 14px 40px rgba(55,74,83,0.10);
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

    .ets-services__card:hover {
        transform: translateY(-3px);
        box-shadow: 0 22px 60px rgba(55,74,83,0.14);
    }

/* Icon */
.ets-services__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #476673;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(71,102,115,0.35);
    margin-bottom: 14px;
}

    .ets-services__icon svg {
        width: 26px;
        height: 26px;
    }

/* Text */
.ets-services__name {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: #374A53;
    letter-spacing: -0.02em;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-services__desc {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(55,74,83,0.75);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* ===============================
   Better Breakpoints (Real devices)
   =============================== */

/* 5 -> 4 columns earlier (prevents cramped cards) */
@media (max-width: 1280px) {
    .ets-services__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* 4 -> 3 */
@media (max-width: 1100px) {
    .ets-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

/* 3 -> 2 (common tablet/large phone range) */
@media (max-width: 820px) {
    .ets-services {
        padding: 64px 16px;
    }

    .ets-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ets-services__card {
        padding: 20px 18px;
    }
}

/* 2 -> 1 (phones) */
@media (max-width: 520px) {
    .ets-services {
        padding: 56px 14px;
    }

    .ets-services__bg {
        inset: -18px; /* avoids overflow on small screens */
    }

    .ets-services__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ets-services__card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .ets-services__icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

        .ets-services__icon svg {
            width: 24px;
            height: 24px;
        }

    .ets-services__sub {
        font-size: 14px;
    }
}

/* Extra small phones (360px etc.) */
@media (max-width: 380px) {
    .ets-services {
        padding: 52px 12px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ets-services__card {
        transition: none !important;
    }
}


/* ===============================
   ETS | Why Choose Us
   Mobile Friendly Upgrade (same classnames)
   =============================== */

.ets-why {
    position: relative;
    padding: 78px 18px;
    background: #fff;
    overflow-x: clip; /* prevents mobile horizontal scroll */
}

.ets-why__bg {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at 10% 15%, rgba(71,102,115,0.08), rgba(71,102,115,0) 60%), radial-gradient(circle at 90% 10%, rgba(55,74,83,0.06), rgba(55,74,83,0) 60%);
    pointer-events: none;
}

.ets-why__wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.ets-why__head {
    text-align: center;
    margin-bottom: 36px;
}

.ets-why__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(55,74,83,0.72);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-why__title {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #374A53;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-why__sub {
    margin: 12px auto 0;
    max-width: 70ch;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(55,74,83,0.72);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* Grid */
.ets-why__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 18px;
    align-items: stretch;
}

/* Card */
.ets-why__card {
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(71,102,115,0.05);
    border: 1px solid rgba(55,74,83,0.12);
    box-shadow: 0 14px 40px rgba(55,74,83,0.10);
    transition: transform .25s ease, box-shadow .25s ease;
    min-width: 0;
    height: 100%;
}

    .ets-why__card:hover {
        transform: translateY(-3px);
        box-shadow: 0 22px 60px rgba(55,74,83,0.14);
    }

/* Icon */
.ets-why__icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #476673;
    color: #fff;
    box-shadow: 0 18px 40px rgba(71,102,115,0.35);
    margin-bottom: 14px;
    flex: 0 0 auto;
}

    .ets-why__icon svg {
        width: 24px;
        height: 24px;
    }

/* Text */
.ets-why__name {
    margin: 0;
    font-size: 15.5px;
    font-weight: 900;
    color: #374A53;
    letter-spacing: -0.02em;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-why__desc {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(55,74,83,0.75);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* =========================================
   Responsive (real device breakpoints)
   ========================================= */

/* 5 -> 4 (large tablets / small laptops) */
@media (max-width: 1280px) {
    .ets-why__grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }
}

/* 4 -> 3 (common laptop/tablet landscape range) */
@media (max-width: 1100px) {
    .ets-why__grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 16px;
    }
}

/* 3 -> 2 (tablets + big phones) */
@media (max-width: 820px) {
    .ets-why {
        padding: 64px 16px;
    }

    .ets-why__grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 14px;
    }

    .ets-why__card {
        padding: 20px 18px;
    }
}

/* 2 -> 1 (phones) */
@media (max-width: 560px) {
    .ets-why {
        padding: 56px 14px;
    }

    .ets-why__bg {
        inset: -18px; /* avoids overflow/scroll on small screens */
    }

    .ets-why__head {
        margin-bottom: 22px;
    }

    .ets-why__sub {
        font-size: 14.5px;
        line-height: 1.75;
    }

    .ets-why__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ets-why__card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .ets-why__icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .ets-why__name {
        font-size: 15px;
        line-height: 1.25;
    }

    .ets-why__desc {
        font-size: 13.8px;
        line-height: 1.75;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .ets-why {
        padding: 52px 12px;
    }

    .ets-why__card {
        padding: 16px 14px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ets-why__card {
        transition: none !important;
    }
}



/* ===============================
   ETS | Meet the Team (Pro + Advanced)
   Brand: #374A53 / #476673
   =============================== */

/* ===========================
   ETS | Profile Card (Ref style)
   Colors: #374A53 / #476673
   =========================== */

.ets-pcard {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    width: 100%;
}

.ets-pcard__card {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    background: #f4f7f8;
    padding: 12px;
    box-shadow: 0 26px 70px rgba(55,74,83,0.18);
    border: 1px solid rgba(55,74,83,0.10);
}

.ets-pcard__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #dfe6ea;
    aspect-ratio: 3 / 4;
}

.ets-pcard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform .6s ease;
}

/* bottom soft fade like the reference */
.ets-pcard__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(223,230,234,0) 0%, rgba(223,230,234,0.55) 35%, rgba(223,230,234,0.92) 100%);
    pointer-events: none;
}

/* social always visible on mobile */
.ets-pcard__social {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    opacity: 1;
    transform: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ets-pcard__sbtn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.5);
    color: #374A53;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
    font-size: 20px;
    line-height: 1;
}

    .ets-pcard__sbtn svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    .ets-pcard__sbtn:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,0.5);
    }

    .ets-pcard__sbtn:focus-visible {
        outline: 3px solid rgba(71,102,115,0.35);
        outline-offset: 3px;
    }

.ets-pcard__content {
    margin-top: 12px;
    border-radius: 18px;
    padding: 16px 14px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(55,74,83,0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ets-pcard__nameRow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ets-pcard__name {
    margin: 0;
    font-size: 20px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.3;
    word-break: break-word;
}

.ets-pcard__verified {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #2fbf5f;
    background: rgba(47,191,95,0.14);
    border: 1px solid rgba(47,191,95,0.25);
    flex-shrink: 0;
}

    .ets-pcard__verified svg {
        width: 18px;
        height: 18px;
        display: block;
    }

.ets-pcard__title {
    margin: 8px 0 0;
    font-weight: 850;
    color: #476673;
    font-size: 14px;
    letter-spacing: 0.3px;
    word-break: break-word;
}

.ets-pcard__bio {
    margin: 10px 0 0;
    color: rgba(55,74,83,0.85);
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
}

.ets-pcard__meta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.ets-pcard__stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(55,74,83,0.9);
    font-weight: 900;
    font-size: 14px;
    width: 100%;
    word-break: break-word;
}

.ets-pcard__statIco {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(71,102,115,0.10);
    border: 1px solid rgba(55,74,83,0.10);
    flex-shrink: 0;
    font-size: 16px;
}

.ets-pcard__btn {
    margin-left: 0;
    height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(71,102,115,0.14);
    border: 1px solid rgba(71,102,115,0.22);
    color: #374A53;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    white-space: nowrap;
    width: 100%;
    justify-content: center;
}

    .ets-pcard__btn:hover {
        transform: translateY(-1px);
        background: rgba(71,102,115,0.18);
        box-shadow: 0 16px 40px rgba(55,74,83,0.14);
    }

    .ets-pcard__btn:focus-visible {
        outline: 3px solid rgba(71,102,115,0.30);
        outline-offset: 3px;
    }

.ets-pcard__plus {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #476673;
    color: #fff;
    font-size: 18px;
    line-height: 0;
    flex-shrink: 0;
}

/* Hover interactions - only on non-touch devices */
@media (hover: hover) {
    .ets-pcard__card:hover .ets-pcard__social {
        opacity: 1;
        transform: none;
    }

    .ets-pcard__card:hover .ets-pcard__img {
        transform: scale(1.06);
    }

    .ets-pcard__social {
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity .25s ease, transform .25s ease;
    }
}

/* Tablet and up adjustments */
@media (min-width: 768px) {
    .ets-pcard {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 24px;
        padding: 24px;
    }

    .ets-pcard__card {
        width: calc(50% - 12px);
        max-width: 380px;
        margin: 0;
    }

    .ets-pcard__meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ets-pcard__stat {
        width: auto;
    }

    .ets-pcard__btn {
        width: auto;
        margin-left: auto;
    }
}

@media (min-width: 1024px) {
    .ets-pcard__card {
        width: calc(33.333% - 16px);
    }
}

/* Small phones extra care */
@media (max-width: 380px) {
    .ets-pcard {
        padding: 12px 8px;
    }

    .ets-pcard__card {
        padding: 10px;
    }

    .ets-pcard__name {
        font-size: 18px;
    }

    .ets-pcard__sbtn {
        width: 40px;
        height: 40px;
    }

    .ets-pcard__statIco {
        width: 28px;
        height: 28px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ets-pcard__img,
    .ets-pcard__social,
    .ets-pcard__sbtn,
    .ets-pcard__btn {
        transition: none !important;
    }
}

/* ===============================
   ETS | Advanced Logo Strip
   Brand: #374A53 / #476673
   =============================== */
/* ===============================
   Encode Tech - Partners Slider
   Smooth loop (no pop)
   =============================== */

.ets-partners {
    position: relative;
    padding: 88px 18px;
    background: #3B484F;
    overflow: hidden;
    color: #fff;
}

    .ets-partners::before {
        content: "";
        position: absolute;
        inset: -60px;
        background: radial-gradient(circle at 12% 22%, rgba(71,102,115,0.35), transparent 60%), radial-gradient(circle at 88% 18%, rgba(255,255,255,0.08), transparent 55%);
        pointer-events: none;
    }

.ets-partners__wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.ets-partners__head {
    margin-bottom: 42px;
}

.ets-partners__kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    font-weight: 700;
}

.ets-partners__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.ets-partners__title {
    margin-top: 14px;
    font-size: clamp(28px,3vw,42px);
    font-weight: 900;
    letter-spacing: -.03em;
}

/* Slider */
.ets-partners__slider {
    position: relative;
    overflow: hidden;
}

/* Track moves smoothly */
.ets-partners__track {
    display: flex;
    gap: 26px;
    will-change: transform;
    transform: translate3d(0,0,0);
    transition: transform 600ms ease; /* moves one step */
}

/* Logo bubble */
.ets-partners__logo {
    flex: 0 0 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.15);
    display: grid;
    place-items: center;
}

    .ets-partners__logo img {
        max-width: 72%;
        max-height: 72%;
        filter: brightness(0) invert(1);
        opacity: .92;
    }

/* Responsive */
@media (max-width:640px) {
    .ets-partners {
        padding: 64px 16px;
    }

    .ets-partners__logo {
        flex-basis: 120px;
        height: 120px;
    }
}


/* ===============================
   ETS | FAQ Accordion
   =============================== */

.ets-faq {
    position: relative;
    padding: 78px 18px;
    background: #ffffff;
    overflow: hidden;
}

.ets-faq__bg {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 12% 18%, rgba(71,102,115,0.10), rgba(71,102,115,0) 60%), radial-gradient(circle at 88% 10%, rgba(55,74,83,0.08), rgba(55,74,83,0) 62%), linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 38%, rgba(71,102,115,0.06) 38%, rgba(71,102,115,0.06) 44%, rgba(0,0,0,0) 44%, rgba(0,0,0,0) 66%, rgba(55,74,83,0.05) 66%, rgba(55,74,83,0.05) 72%, rgba(0,0,0,0) 72%, rgba(0,0,0,0) 100%);
    transform: rotate(-4deg);
    opacity: .95;
    pointer-events: none;
}

.ets-faq__wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.ets-faq__head {
    text-align: center;
    margin-bottom: 28px;
}

.ets-faq__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(55,74,83,0.72);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-faq__title {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #374A53;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-faq__sub {
    margin: 12px auto 0;
    max-width: 74ch;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(55,74,83,0.72);
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* Grid */
.ets-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

/* Item */
.ets-faq__item {
    border-radius: 18px;
    background: rgba(71,102,115,0.05);
    border: 1px solid rgba(55,74,83,0.12);
    box-shadow: 0 16px 48px rgba(55,74,83,0.10);
    overflow: hidden;
}

.ets-faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    color: #374A53;
    font-weight: 950;
    font-size: 14px;
    letter-spacing: -0.01em;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

    .ets-faq__q::-webkit-details-marker {
        display: none;
    }

.ets-faq__chev {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(55,74,83,0.12);
    color: #476673;
    flex: 0 0 auto;
    transition: transform .2s ease;
}

    .ets-faq__chev svg {
        width: 18px;
        height: 18px;
        display: block;
    }

.ets-faq__a {
    padding: 0 16px 16px;
    color: rgba(55,74,83,0.78);
    font-size: 14px;
    line-height: 1.75;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-faq__item[open] .ets-faq__chev {
    transform: rotate(180deg);
}

/* Focus */
.ets-faq__q:focus-visible {
    outline: 3px solid rgba(71,102,115,0.25);
    outline-offset: 3px;
    border-radius: 14px;
}

/* CTA */
.ets-faq__cta {
    margin-top: 22px;
    border-radius: 20px;
    background: #476673;
    color: #ffffff;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 22px 60px rgba(55,74,83,0.18);
}

.ets-faq__ctaTitle {
    display: block;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -0.01em;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-faq__ctaSub {
    display: block;
    margin-top: 4px;
    font-size: 13.5px;
    opacity: 0.92;
    line-height: 1.55;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-faq__ctaBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #374A53;
    text-decoration: none;
    font-weight: 950;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.24);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

    .ets-faq__ctaBtn:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 50px rgba(0,0,0,0.18);
    }

/* Responsive */
@media (max-width: 980px) {
    .ets-faq {
        padding: 60px 16px;
    }

    .ets-faq__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ets-faq {
        padding: 56px 14px;
    }

    .ets-faq__cta {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .ets-faq__ctaBtn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ets-faq__chev,
    .ets-faq__ctaBtn {
        transition: none !important;
    }
}
/* ==========================================================
   ETS | FAQ (tap-friendly + no squeeze)
   ========================================================== */
@media (max-width: 560px) {
    .ets-faq__q {
        padding: 14px 14px;
        font-size: 13.5px;
        line-height: 1.35;
    }

    .ets-faq__chev {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    .ets-faq__a {
        padding: 0 14px 14px;
        font-size: 13.8px;
    }
}

/* ===============================
   ETS | Strong CTA Footer
   Brand: #374A53 / #476673
   =============================== */

.ets-cta-footer {
    position: relative;
    padding: 86px 18px;
    background: #3B484F;
    color: #ffffff;
    overflow: hidden;
}

.ets-cta-footer__bg {
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at 10% 10%, rgba(255,255,255,0.10), rgba(255,255,255,0) 55%), radial-gradient(circle at 90% 30%, rgba(0,0,0,0.25), rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.ets-cta-footer__wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
}

/* Left side */
.ets-cta-footer__kicker {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    opacity: 0.9;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-cta-footer__title {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-cta-footer__sub {
    margin: 14px 0 0;
    max-width: 54ch;
    font-size: 16px;
    line-height: 1.65;
    opacity: 0.92;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-cta-footer__actions {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.ets-cta-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}

.ets-cta-footer__btn--primary {
    background: #ffffff;
    color: #374A53;
    box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

    .ets-cta-footer__btn--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 28px 70px rgba(0,0,0,0.35);
    }

.ets-cta-footer__btn--ghost {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-color: rgba(255,255,255,0.32);
}

    .ets-cta-footer__btn--ghost:hover {
        background: rgba(255,255,255,0.22);
    }

/* Right info */
.ets-cta-footer__info {
    display: grid;
    gap: 16px;
}

.ets-cta-footer__card {
    border-radius: 18px;
    padding: 18px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
}

.ets-cta-footer__cardTitle {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: 0.85;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.ets-cta-footer__line {
    margin: 6px 0;
    font-size: 14px;
    opacity: 0.92;
}

    .ets-cta-footer__line a {
        color: #ffffff;
        text-decoration: none;
        border-bottom: 1px dashed rgba(255,255,255,0.4);
    }

        .ets-cta-footer__line a:hover {
            border-bottom-style: solid;
        }

/* Map */
.ets-cta-footer__map {
    margin-top: 10px;
    border-radius: 14px;
    overflow: hidden;
    height: 160px;
    border: 1px solid rgba(255,255,255,0.28);
}

    .ets-cta-footer__map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Responsive */
@media (max-width: 980px) {
    .ets-cta-footer {
        padding: 64px 16px;
    }

    .ets-cta-footer__wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ets-cta-footer__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ets-cta-footer__btn {
        transition: none !important;
    }
}