/* =========================================================
   STL DRUCKEN LASSEN
   PAGE-SPECIFIC STYLES

   Общие header, footer, cookie modal и базовые переменные
   берутся из /assets/css/styles.css
   ========================================================= */


/* =========================================================
   PAGE
   ========================================================= */

.stl-page {
    background: #fffefa;
}


/* =========================================================
   HEADER ADAPTATION
   ========================================================= */

.stl-page .site-header__inner {
    grid-template-columns:
        minmax(230px, 0.86fr)
        minmax(620px, 1.7fr)
        minmax(340px, 1.02fr);
}

.stl-page .site-header__navigation {
    gap: clamp(18px, 1.35vw, 29px);
}

.stl-page .site-header__navigation > a,
.stl-page .site-header__dropdown-toggle {
    font-size: clamp(12px, 0.74vw, 15px);
}

.stl-page .site-header__whatsapp {
    min-width: clamp(142px, 9.8vw, 176px);
}


/* =========================================================
   HEADER DROPDOWN
   ========================================================= */

.site-header__dropdown {
    position: relative;
}

.site-header__dropdown-toggle {
    position: relative;

    min-height: 42px;
    padding: 12px 0;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    border: 0;
    background: transparent;
    color: #292929;

    line-height: 1;
    font-weight: 600;
    white-space: nowrap;

    cursor: pointer;

    transition:
        color var(--transition);
}

.site-header__dropdown-toggle::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;

    height: 2px;

    border-radius: 999px;

    background: var(--yellow);

    transform: scaleX(0);
    transform-origin: right center;

    transition:
        transform var(--transition);
}

.site-header__dropdown-toggle:hover,
.site-header__dropdown-toggle:focus-visible,
.site-header__dropdown.is-open
.site-header__dropdown-toggle {
    color: #a87300;

    outline: none;
}

.site-header__dropdown-toggle:hover::after,
.site-header__dropdown-toggle:focus-visible::after,
.site-header__dropdown.is-open
.site-header__dropdown-toggle::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.site-header__dropdown-chevron {
    display: inline-flex;

    font-size: 15px;
    line-height: 1;

    transform: translateY(-2px);

    transition:
        transform var(--transition);
}

.site-header__dropdown.is-open
.site-header__dropdown-chevron {
    transform:
        translateY(1px)
        rotate(180deg);
}

.site-header__dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 1200;

    width: min(330px, 82vw);
    padding: 10px;

    border: 1px solid rgba(20, 20, 20, 0.075);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.99);

    box-shadow:
        0 24px 58px rgba(25, 23, 16, 0.15),
        0 5px 14px rgba(25, 23, 16, 0.04);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translate(-50%, -8px)
        scale(0.98);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.site-header__dropdown.is-open
.site-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translate(-50%, 0)
        scale(1);
}

.stl-page
.site-header__dropdown-menu a {
    padding: 15px 16px;

    display: block;

    border: 1px solid rgba(239, 170, 0, 0.08);
    border-radius: 13px;

    background: #fffaf0;
}

.stl-page
.site-header__dropdown-menu a::after {
    display: none;
}

.site-header__dropdown-menu strong,
.site-header__dropdown-menu span {
    display: block;
}

.site-header__dropdown-menu strong {
    color: #1d1d1d;

    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

.site-header__dropdown-menu span {
    margin-top: 5px;

    color: #707070;

    font-size: 12px;
    line-height: 1.35;
}


/* =========================================================
   SCREEN 1 — HERO
   ========================================================= */

.stl-page-hero {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    padding-top: var(--header-height);

    overflow: hidden;

    background:
        radial-gradient(
            circle at 79% 34%,
            rgba(255, 202, 62, 0.14) 0%,
            rgba(255, 219, 132, 0.045) 31%,
            transparent 58%
        ),
        linear-gradient(
            112deg,
            #ffffff 0%,
            #fffefa 51%,
            #fff8e9 100%
        );
}

.stl-page-hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}

.stl-page-hero__glow {
    position: absolute;
    top: 8%;
    right: -4%;

    width: clamp(620px, 55vw, 1120px);
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 195, 35, 0.15),
            rgba(255, 220, 132, 0.055) 44%,
            transparent 70%
        );
}

.stl-page-hero__line {
    position: absolute;
    top: 23%;
    right: 7%;

    width: clamp(300px, 25vw, 520px);
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 170, 0, 0.22)
        );

    transform: rotate(-27deg);
}

.stl-page-hero__inner {
    position: relative;
    z-index: 2;

    width: 100%;

    min-height:
        calc(100svh - var(--header-height));

    padding:
        clamp(48px, 4.1vw, 82px)
        var(--page-space)
        clamp(28px, 2.5vw, 50px);

    display: grid;

    grid-template-columns:
        minmax(500px, 43.5fr)
        minmax(0, 56.5fr);

    grid-template-rows:
        minmax(0, 1fr)
        auto;

    align-items: center;

    column-gap:
        clamp(8px, 1.2vw, 26px);
}


/* =========================================================
   HERO COPY
   ========================================================= */

.stl-page-hero__copy {
    position: relative;
    z-index: 5;

    grid-column: 1;
    grid-row: 1;

    width: 100%;

    max-width:
        clamp(620px, 42vw, 840px);

    padding-right:
        clamp(10px, 1vw, 22px);
}

.stl-page-hero__format-badge {
    width: fit-content;

    min-height:
        clamp(40px, 2.8vw, 52px);

    margin-bottom:
        clamp(28px, 2.1vw, 42px);

    padding:
        8px
        clamp(15px, 1.2vw, 24px);

    display: inline-flex;
    align-items: center;

    gap: 13px;

    border:
        1px solid rgba(239, 170, 0, 0.16);

    border-radius: 999px;

    background:
        rgba(255, 249, 232, 0.96);

    color: #252525;

    font-size:
        clamp(11px, 0.72vw, 14px);

    line-height: 1;
    font-weight: 720;
    letter-spacing: 0.085em;
}

.stl-page-hero__format-dot {
    width:
        clamp(16px, 1.2vw, 22px);

    height:
        clamp(16px, 1.2vw, 22px);

    flex: 0 0 auto;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffbf1f,
            #ef7800
        );

    box-shadow:
        0 4px 11px rgba(239, 120, 0, 0.2);
}

.stl-page-hero__title {
    margin: 0;

    color: #111214;

    font-size:
        clamp(52px, 4.05vw, 82px);

    line-height: 1.025;
    font-weight: 660;
    letter-spacing: -0.052em;
}

.stl-page-hero__title span {
    color: #efa900;
}

.stl-page-hero__description {
    width: min(100%, 700px);

    margin:
        clamp(26px, 2vw, 39px)
        0
        0;

    color: #595959;

    font-size:
        clamp(16px, 1.06vw, 21px);

    line-height: 1.58;
    letter-spacing: -0.012em;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.stl-page-hero__actions {
    margin-top:
        clamp(29px, 2.15vw, 43px);

    display: flex;
    align-items: center;

    gap:
        clamp(12px, 1vw, 18px);
}

.stl-page-hero__button {
    min-height:
        clamp(58px, 3.9vw, 76px);

    padding:
        0
        clamp(22px, 1.7vw, 34px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(14px, 1vw, 21px);

    border-radius: 14px;

    color: #171717;

    font-size:
        clamp(14px, 0.9vw, 18px);

    line-height: 1;
    font-weight: 680;
    white-space: nowrap;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.stl-page-hero__button img {
    width:
        clamp(21px, 1.35vw, 25px);

    height:
        clamp(21px, 1.35vw, 25px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-page-hero__button--primary {
    min-width:
        clamp(220px, 15.5vw, 310px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffb400
        );

    box-shadow:
        0 17px 35px rgba(238, 171, 0, 0.23),
        0 3px 9px rgba(238, 171, 0, 0.07);
}

.stl-page-hero__button--secondary {
    min-width:
        clamp(195px, 13.5vw, 270px);

    justify-content: space-between;

    border:
        1px solid rgba(20, 20, 20, 0.11);

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 10px 26px rgba(24, 24, 24, 0.045);
}

.stl-page-hero__button:hover,
.stl-page-hero__button:focus-visible {
    transform: translateY(-3px);

    outline: none;
}

.stl-page-hero__button--primary:hover,
.stl-page-hero__button--primary:focus-visible {
    box-shadow:
        0 22px 43px rgba(238, 171, 0, 0.32);
}

.stl-page-hero__button--secondary:hover,
.stl-page-hero__button--secondary:focus-visible {
    border-color:
        rgba(239, 170, 0, 0.42);

    background: #ffffff;

    box-shadow:
        0 17px 35px rgba(24, 24, 24, 0.075);
}


/* =========================================================
   HERO MICRO TRUST
   ========================================================= */

.stl-page-hero__micro-trust {
    margin-top:
        clamp(25px, 1.8vw, 36px);

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap:
        12px
        16px;

    color: #5f5f5f;

    font-size:
        clamp(12px, 0.77vw, 15px);

    line-height: 1.25;
    font-weight: 540;
}

.stl-page-hero__micro-trust span {
    display: inline-flex;
    align-items: center;

    gap: 9px;
}

.stl-page-hero__micro-trust img {
    width: 21px;
    height: 21px;

    object-fit: contain;
}

.stl-page-hero__micro-trust i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #8b8b8b;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.stl-page-hero__visual {
    position: relative;
    z-index: 3;

    grid-column: 2;
    grid-row: 1;

    min-width: 0;
    width: 100%;

    height:
        clamp(520px, 42vw, 820px);

    align-self: stretch;
}

.stl-page-hero__visual-glow {
    position: absolute;
    top: 7%;
    right: 2%;

    width: 88%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 198, 43, 0.16),
            rgba(255, 223, 143, 0.055) 48%,
            transparent 70%
        );
}

.stl-page-hero__main-image {
    position: absolute;
    top: 50%;
    left: -10%;
    z-index: 2;

    width: 116%;
    max-width: none;
    height: 100%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 29px 29px rgba(25, 22, 16, 0.12)
        );

    transform:
        translateY(-50%);
}


/* =========================================================
   HERO FEATURES
   ========================================================= */

.stl-page-hero__features {
    position: relative;
    z-index: 10;

    grid-column: 1 / -1;
    grid-row: 2;

    width: 100%;

    min-height:
        clamp(104px, 7.4vw, 142px);

    margin-top:
        clamp(-18px, -1vw, -8px);

    padding:
        clamp(18px, 1.3vw, 27px)
        clamp(20px, 1.8vw, 38px);

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border:
        1px solid rgba(20, 20, 20, 0.065);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.975);

    box-shadow:
        0 21px 50px rgba(24, 22, 15, 0.08),
        0 4px 12px rgba(24, 22, 15, 0.025);
}

.stl-page-hero-feature {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(15px, 1.35vw, 27px);

    display: flex;
    align-items: center;

    gap:
        clamp(13px, 1vw, 21px);
}

.stl-page-hero-feature:first-child {
    padding-left: 0;
}

.stl-page-hero-feature:last-child {
    padding-right: 0;
}

.stl-page-hero-feature:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 12%;
    right: 0;

    width: 1px;
    height: 76%;

    background:
        rgba(20, 20, 20, 0.085);
}

.stl-page-hero-feature__icon {
    width:
        clamp(52px, 3.6vw, 72px);

    aspect-ratio: 1;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(239, 170, 0, 0.13);

    border-radius: 50%;

    background: #fffaf0;
}

.stl-page-hero-feature__icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.stl-page-hero-feature strong,
.stl-page-hero-feature span {
    display: block;
}

.stl-page-hero-feature strong {
    color: #1f1f1f;

    font-size:
        clamp(12px, 0.82vw, 16px);

    line-height: 1.22;
    font-weight: 700;
}

.stl-page-hero-feature span {
    margin-top: 6px;

    color: #707070;

    font-size:
        clamp(10px, 0.66vw, 13px);

    line-height: 1.38;
}


/* =========================================================
   HERO REVEAL
   ========================================================= */

.stl-page-hero.stl-page-hero--js
[data-stl-hero-reveal] {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity 720ms ease,
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-page-hero.stl-page-hero--js
[data-stl-hero-reveal="visual"] {
    transform:
        translateX(40px);
}

.stl-page-hero.stl-page-hero--js.is-visible
[data-stl-hero-reveal] {
    opacity: 1;

    transform:
        translate(0, 0);
}

.stl-page-hero.is-visible
[data-stl-hero-reveal="title"] {
    transition-delay: 70ms;
}

.stl-page-hero.is-visible
[data-stl-hero-reveal="description"] {
    transition-delay: 135ms;
}

.stl-page-hero.is-visible
[data-stl-hero-reveal="actions"] {
    transition-delay: 200ms;
}

.stl-page-hero.is-visible
[data-stl-hero-reveal="trust"] {
    transition-delay: 260ms;
}

.stl-page-hero.is-visible
[data-stl-hero-reveal="visual"] {
    transition-delay: 100ms;
}

.stl-page-hero.is-visible
[data-stl-hero-reveal="features"] {
    transition-delay: 320ms;
}


/* =========================================================
   SCREEN 2 — SERVICE FIT
   ========================================================= */

.stl-service-fit {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 16% 48%,
            rgba(255, 199, 54, 0.055),
            transparent 38%
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(255, 220, 135, 0.065),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 58%,
            #ffffff 100%
        );
}

.stl-service-fit__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}

.stl-service-fit__glow {
    position: absolute;

    border-radius: 50%;
}

.stl-service-fit__glow--left {
    top: 22%;
    left: -23%;

    width:
        clamp(470px, 39vw, 900px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 197, 38, 0.065),
            transparent 69%
        );
}

.stl-service-fit__glow--right {
    top: -22%;
    right: -14%;

    width:
        clamp(580px, 47vw, 1080px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 219, 128, 0.075),
            transparent 70%
        );
}

.stl-service-fit__dots {
    position: absolute;
    right: 2%;
    bottom: 3%;

    width:
        clamp(125px, 9vw, 215px);

    height:
        clamp(85px, 7vw, 165px);

    opacity: 0.2;

    background-image:
        radial-gradient(
            circle,
            rgba(237, 171, 0, 0.25) 1.1px,
            transparent 1.4px
        );

    background-size: 13px 13px;
}


/* =========================================================
   SERVICE FIT INNER
   ========================================================= */

.stl-service-fit__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(34px, 2.8vw, 58px)
        var(--page-space)
        clamp(42px, 3.7vw, 76px);

    display: grid;

    grid-template-rows:
        minmax(0, 1fr)
        auto;

    gap:
        clamp(24px, 2.15vw, 43px);
}

.stl-service-fit__layout {
    width: 100%;

    min-height:
        clamp(560px, 63svh, 720px);

    display: grid;

    /*
     * Используются fr, а не проценты.
     * Gap не увеличивает общую ширину композиции.
     */
    grid-template-columns:
        minmax(0, 37fr)
        minmax(0, 63fr);

    align-items: stretch;

    gap:
        clamp(28px, 2.6vw, 52px);
}


/* =========================================================
   SERVICE FIT INTRO
   ========================================================= */

.stl-service-fit__intro {
    position: relative;

    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stl-service-fit__kicker {
    width: fit-content;

    min-height:
        clamp(34px, 2.4vw, 48px);

    margin-bottom:
        clamp(21px, 1.65vw, 33px);

    padding:
        7px
        clamp(13px, 1vw, 21px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(239, 170, 0, 0.15);

    border-radius: 999px;

    background:
        rgba(255, 252, 244, 0.97);

    color: #e89f00;

    font-size:
        clamp(9px, 0.67vw, 13px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.stl-service-fit__kicker > span {
    width:
        clamp(9px, 0.72vw, 13px);

    height:
        clamp(9px, 0.72vw, 13px);

    flex: 0 0 auto;

    border-radius: 50%;

    background: #ffad00;

    box-shadow:
        0 0 0 5px rgba(255, 173, 0, 0.08);
}

.stl-service-fit__intro h2 {
    width: 100%;

    max-width:
        clamp(440px, 34vw, 690px);

    margin: 0;

    color: #111214;

    font-size:
        clamp(34px, 2.65vw, 54px);

    line-height: 1.055;
    font-weight: 650;
    letter-spacing: -0.05em;
}

.stl-service-fit__intro h2 span {
    color: #efa900;
}

.stl-service-fit__lead,
.stl-service-fit__text {
    width: min(100%, 630px);
    margin: 0;

    color: #5f5f5f;

    font-size:
        clamp(13px, 0.92vw, 18px);

    line-height: 1.55;
    font-weight: 400;
    letter-spacing: -0.006em;
}

.stl-service-fit__lead {
    margin-top:
        clamp(18px, 1.4vw, 28px);
}

.stl-service-fit__text {
    margin-top:
        clamp(11px, 0.88vw, 18px);
}


/* =========================================================
   SERVICE FIT LEFT VISUAL
   ========================================================= */

.stl-service-fit__visual {
    position: relative;
    isolation: isolate;

    width: 100%;

    flex:
        1
        1
        auto;

    min-height:
        clamp(185px, 18svh, 280px);

    margin-top:
        clamp(17px, 1.25vw, 25px);
}

.stl-service-fit__visual-glow {
    position: absolute;
    top: 2%;
    right: 1%;
    z-index: -1;

    width: 85%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 194, 34, 0.105),
            transparent 69%
        );
}

.stl-service-fit__visual img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 20px 19px rgba(34, 29, 20, 0.115)
        );
}


/* =========================================================
   SERVICE FIT CTA
   ========================================================= */

.stl-service-fit__button {
    width: fit-content;

    min-width:
        clamp(285px, 21.8vw, 435px);

    min-height:
        clamp(52px, 3.7vw, 72px);

    margin-top:
        clamp(9px, 0.75vw, 15px);

    padding:
        0
        clamp(20px, 1.55vw, 31px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(11px, 0.9vw, 18px);

    border-radius:
        clamp(11px, 0.8vw, 15px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffb400
        );

    color: #171717;

    font-size:
        clamp(13px, 0.88vw, 17px);

    line-height: 1;
    font-weight: 690;
    white-space: nowrap;

    box-shadow:
        0 16px 33px rgba(238, 171, 0, 0.22);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stl-service-fit__button img {
    width:
        clamp(20px, 1.4vw, 26px);

    height:
        clamp(20px, 1.4vw, 26px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-service-fit__button:hover,
.stl-service-fit__button:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 21px 41px rgba(238, 171, 0, 0.3);

    outline: none;
}

.stl-service-fit__micro-trust {
    margin-top:
        clamp(11px, 0.85vw, 17px);

    display: flex;
    align-items: center;

    gap: 8px;

    color: #626262;

    font-size:
        clamp(10px, 0.67vw, 13px);

    line-height: 1.3;
    font-weight: 540;
}

.stl-service-fit__micro-trust img {
    width:
        clamp(18px, 1.3vw, 23px);

    height:
        clamp(18px, 1.3vw, 23px);

    flex: 0 0 auto;

    object-fit: contain;
}


/* =========================================================
   SERVICE FIT CARDS GRID
   ========================================================= */

.stl-service-fit__cards-shell {
    min-width: 0;
    height: 100%;
}

.stl-service-fit__cards {
    width: 100%;
    height: 100%;

    display: grid;

    /*
     * 01: колонки 1–2
     * 02: колонка 3
     * 03: колонка 1
     * 04: колонки 2–3
     */
    grid-template-columns:
        minmax(0, 36fr)
        minmax(0, 22fr)
        minmax(0, 42fr);

    grid-template-rows:
        minmax(0, 56fr)
        minmax(0, 44fr);

    gap:
        clamp(12px, 0.95vw, 19px);
}

.stl-service-fit-card {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border:
        1px solid rgba(20, 20, 20, 0.05);

    border-radius:
        clamp(17px, 1.2vw, 25px);

    background:
        radial-gradient(
            circle at 82% 55%,
            rgba(255, 211, 99, 0.075),
            transparent 49%
        ),
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 17px 42px rgba(34, 31, 23, 0.06);

    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.32s ease,
        box-shadow 0.32s ease;
}

.stl-service-fit-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(238, 171, 0, 0.16);

    box-shadow:
        0 23px 49px rgba(34, 31, 23, 0.09);
}

.stl-service-fit-card--ready {
    grid-column: 1 / 3;
    grid-row: 1;
}

.stl-service-fit-card--nearly {
    grid-column: 3;
    grid-row: 1;
}

.stl-service-fit-card--single {
    grid-column: 1;
    grid-row: 2;
}

.stl-service-fit-card--series {
    grid-column: 2 / 4;
    grid-row: 2;
}


/* =========================================================
   SERVICE FIT CARD CONTENT
   ========================================================= */

.stl-service-fit-card__number {
    position: absolute;

    top:
        clamp(17px, 1.35vw, 27px);

    left:
        clamp(18px, 1.45vw, 29px);

    z-index: 5;

    color: #f0a800;

    font-size:
        clamp(18px, 1.35vw, 27px);

    line-height: 1;
    font-weight: 720;
}

.stl-service-fit-card__number::after {
    content: "";

    display: block;

    width:
        clamp(22px, 1.65vw, 33px);

    height: 2px;

    margin-top:
        clamp(7px, 0.65vw, 12px);

    border-radius: 999px;

    background: #f0a800;
}

.stl-service-fit-card__content {
    position: relative;
    z-index: 5;

    padding:
        clamp(67px, 5.25vw, 105px)
        clamp(18px, 1.45vw, 29px)
        clamp(18px, 1.35vw, 27px);
}

.stl-service-fit-card__icon {
    width:
        clamp(40px, 2.8vw, 56px);

    height:
        clamp(40px, 2.8vw, 56px);
}

.stl-service-fit-card__icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.stl-service-fit-card h3 {
    margin:
        clamp(12px, 0.95vw, 19px)
        0
        0;

    color: #1d1d1d;

    font-size:
        clamp(14px, 1.02vw, 20px);

    line-height: 1.23;
    font-weight: 680;
    letter-spacing: -0.024em;
}

.stl-service-fit-card p {
    max-width: 230px;

    margin:
        clamp(8px, 0.7vw, 14px)
        0
        0;

    color: #666666;

    font-size:
        clamp(10px, 0.72vw, 14px);

    line-height: 1.48;
}

.stl-service-fit-card__visual {
    position: absolute;
    z-index: 2;

    pointer-events: none;
}

.stl-service-fit-card__visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 18px 17px rgba(31, 27, 19, 0.12)
        );

    transition:
        transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-service-fit-card:hover
.stl-service-fit-card__visual img {
    transform:
        translateY(-3px)
        scale(1.016);
}


/* =========================================================
   CARD 01
   ========================================================= */

.stl-service-fit-card--ready
.stl-service-fit-card__content {
    width: 43%;
}

.stl-service-fit-card--ready
.stl-service-fit-card__visual {
    right: -5%;
    bottom: -2%;

    width: 78%;
    height: 94%;
}

.stl-service-fit-card--ready
.stl-service-fit-card__visual img {
    object-position: right bottom;
}


/* =========================================================
   CARD 02
   ========================================================= */

.stl-service-fit-card--nearly
.stl-service-fit-card__content {
    width: 49%;
}

.stl-service-fit-card--nearly
.stl-service-fit-card__visual {
    right: 2%;
    bottom: 1%;

    width: 55%;
    height: 82%;
}


/* =========================================================
   CARD 03
   ========================================================= */

.stl-service-fit-card--single
.stl-service-fit-card__content {
    width: 61%;
}

.stl-service-fit-card--single
.stl-service-fit-card__visual {
    right: 1%;
    bottom: 1%;

    width: 48%;
    height: 81%;
}


/* =========================================================
   CARD 04
   ========================================================= */

.stl-service-fit-card--series
.stl-service-fit-card__content {
    width: 36%;
}

.stl-service-fit-card--series
.stl-service-fit-card__visual {
    right: 1%;
    bottom: 1%;

    width: 68%;
    height: 88%;
}

.stl-service-fit__slider-tools {
    display: none;
}


/* =========================================================
   SERVICE FIT BENEFITS
   ========================================================= */

.stl-service-fit__benefits {
    position: relative;
    z-index: 3;

    width: 100%;

    min-height:
        clamp(105px, 8vw, 155px);

    padding:
        clamp(17px, 1.35vw, 27px)
        clamp(20px, 1.65vw, 33px);

    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        repeat(3, minmax(0, 1fr));

    align-items: center;

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(17px, 1.2vw, 25px);

    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 17px 42px rgba(34, 31, 23, 0.06);
}

.stl-service-fit-benefit {
    position: relative;

    min-width: 0;
    min-height: 70px;

    padding-inline:
        clamp(13px, 1.1vw, 22px);

    display: flex;
    align-items: center;

    gap:
        clamp(11px, 0.9vw, 18px);
}

.stl-service-fit-benefit:first-child {
    padding-left: 0;
}

.stl-service-fit-benefit:last-child {
    padding-right: 0;
}

.stl-service-fit-benefit:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 5%;
    right: 0;

    width: 1px;
    height: 90%;

    background:
        rgba(20, 20, 20, 0.08);
}

.stl-service-fit-benefit__icon {
    width:
        clamp(43px, 3vw, 60px);

    aspect-ratio: 1;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.stl-service-fit-benefit--question
.stl-service-fit-benefit__icon {
    width:
        clamp(55px, 4.15vw, 82px);
}

.stl-service-fit-benefit__icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.stl-service-fit-benefit strong,
.stl-service-fit-benefit span {
    display: block;
}

.stl-service-fit-benefit strong {
    color: #222222;

    font-size:
        clamp(11px, 0.86vw, 17px);

    line-height: 1.22;
    font-weight: 690;
}

.stl-service-fit-benefit span {
    margin-top: 5px;

    color: #707070;

    font-size:
        clamp(9px, 0.62vw, 12px);

    line-height: 1.4;
}

.stl-service-fit-benefit--question strong {
    font-size:
        clamp(13px, 0.98vw, 19px);
}

.stl-service-fit-benefit--question span {
    max-width: 430px;

    font-size:
        clamp(10px, 0.7vw, 14px);
}


/* =========================================================
   SERVICE FIT REVEAL
   ========================================================= */

.stl-service-fit.stl-service-fit--js
[data-stl-service-fit-reveal] {
    opacity: 0;

    transform:
        translateY(28px);

    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-service-fit.stl-service-fit--js
[data-stl-service-fit-reveal="intro"] {
    transform:
        translateX(-32px);
}

.stl-service-fit.stl-service-fit--js
[data-stl-service-fit-reveal="cards"] {
    transform:
        translateX(35px);
}

.stl-service-fit.stl-service-fit--js.is-visible
[data-stl-service-fit-reveal] {
    opacity: 1;

    transform:
        translate(0, 0);
}

.stl-service-fit.is-visible
[data-stl-service-fit-reveal="cards"] {
    transition-delay: 0.1s;
}

.stl-service-fit.is-visible
[data-stl-service-fit-reveal="benefits"] {
    transition-delay: 0.2s;
}


/* =========================================================
   DESKTOP — 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-page .site-header__inner {
        grid-template-columns:
            minmax(220px, 0.82fr)
            minmax(575px, 1.72fr)
            minmax(320px, 1fr);
    }

    .stl-page .site-header__brand {
        width: 235px;
    }

    .stl-page .site-header__navigation {
        gap: 18px;
    }

    .stl-page .site-header__project {
        min-width: 200px;

        padding-inline: 19px;
    }

    .stl-page .site-header__whatsapp {
        min-width: 146px;
        padding-inline: 16px;
    }

    .stl-page-hero__inner {
        grid-template-columns:
            minmax(480px, 43fr)
            minmax(0, 57fr);
    }

    .stl-page-hero__title {
        font-size:
            clamp(53px, 4.05vw, 64px);
    }

    .stl-page-hero__description {
        font-size: 17px;
    }

    .stl-page-hero__visual {
        height:
            clamp(540px, 43vw, 650px);
    }

    .stl-page-hero__main-image {
        left: -12%;

        width: 121%;
    }

    .stl-service-fit__inner {
        padding:
            34px
            42px
            46px;
    }

    .stl-service-fit__layout {
        min-height:
            clamp(560px, 63svh, 650px);

        grid-template-columns:
            minmax(0, 37fr)
            minmax(0, 63fr);

        gap: 32px;
    }

    .stl-service-fit__intro h2 {
        max-width: 560px;

        font-size:
            clamp(34px, 2.65vw, 42px);
    }

    .stl-service-fit__lead,
    .stl-service-fit__text {
        max-width: 560px;

        font-size: 13px;
    }

    .stl-service-fit__visual {
        min-height: 185px;
    }

    .stl-service-fit__button {
        min-width: 300px;
        min-height: 55px;

        font-size: 13px;
    }

    .stl-service-fit-card__content {
        padding:
            67px
            18px
            19px;
    }

    .stl-service-fit-card__icon {
        width: 43px;
        height: 43px;
    }

    .stl-service-fit-card h3 {
        font-size: 14px;
    }

    .stl-service-fit-card p {
        font-size: 10.5px;
    }

    .stl-service-fit__benefits {
        min-height: 102px;
    }

    .stl-service-fit-benefit strong {
        font-size: 12px;
    }

    .stl-service-fit-benefit span {
        font-size: 9.5px;
    }

    .stl-service-fit-benefit--question strong {
        font-size: 14px;
    }

    .stl-service-fit-benefit--question span {
        font-size: 10.5px;
    }
}


/* =========================================================
   TABLET — 1180
   ========================================================= */

@media (max-width: 1180px) {

    .stl-page .site-header__inner {
        grid-template-columns:
            1fr
            auto;
    }

    .stl-page .site-header__navigation {
        gap: 0;
    }

    .site-header__dropdown {
        width: 100%;
    }

    .site-header__dropdown-toggle {
        width: 100%;
        min-height: 0;

        padding:
            16px
            14px;

        justify-content: space-between;

        border-bottom:
            1px solid rgba(20, 20, 20, 0.07);

        font-size: 16px;
        text-align: left;
    }

    .site-header__dropdown-toggle::after {
        display: none;
    }

    .site-header__dropdown-menu {
        position: static;

        width: 100%;
        max-height: 0;

        padding:
            0
            9px;

        overflow: hidden;

        border: 0;
        border-radius: 0;

        background: transparent;

        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: none;

        transform: none;

        transition:
            max-height var(--transition),
            padding var(--transition);
    }

    .site-header__dropdown.is-open
    .site-header__dropdown-menu {
        max-height: 240px;

        padding:
            8px
            9px
            10px;

        transform: none;

        pointer-events: auto;
    }

    .stl-page
    .site-header__dropdown-menu a {
        padding:
            13px
            14px;
    }

    .stl-page-hero {
        min-height: 0;
    }

    .stl-page-hero__inner {
        min-height: 0;

        padding:
            54px
            var(--page-space)
            48px;

        grid-template-columns: 1fr;

        grid-template-rows:
            auto
            auto
            auto;

        gap: 12px;
    }

    .stl-page-hero__copy {
        grid-column: 1;
        grid-row: 1;

        max-width: 860px;

        padding-right: 0;
    }

    .stl-page-hero__title {
        font-size:
            clamp(56px, 6.3vw, 74px);
    }

    .stl-page-hero__description {
        max-width: 760px;

        font-size: 18px;
    }

    .stl-page-hero__visual {
        grid-column: 1;
        grid-row: 2;

        height:
            clamp(560px, 65vw, 720px);
    }

    .stl-page-hero__main-image {
        left: 0;

        width: 100%;
    }

    .stl-page-hero__features {
        grid-column: 1;
        grid-row: 3;

        margin-top: -22px;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            20px
            0;
    }

    .stl-page-hero-feature:nth-child(2)::after {
        display: none;
    }

    .stl-page-hero-feature:nth-child(3) {
        padding-left: 0;
    }

    .stl-service-fit {
        min-height: 0;
    }

    .stl-service-fit__inner {
        min-height: 0;

        padding:
            78px
            30px
            60px;

        display: flex;
        flex-direction: column;

        gap: 40px;
    }

    .stl-service-fit__layout {
        min-height: 0;

        grid-template-columns: 1fr;

        gap: 48px;
    }

    .stl-service-fit__intro {
        width: 100%;
        max-width: 850px;
        height: auto;
    }

    .stl-service-fit__intro h2 {
        max-width: 820px;

        font-size:
            clamp(49px, 5.9vw, 68px);
    }

    .stl-service-fit__lead,
    .stl-service-fit__text {
        max-width: 770px;

        font-size: 18px;
    }

    .stl-service-fit__visual {
        height:
            clamp(350px, 44vw, 500px);

        min-height: 0;

        flex: none;

        margin-top: 30px;
    }

    .stl-service-fit__cards-shell {
        height: auto;
    }

    .stl-service-fit__cards {
        height:
            clamp(660px, 66vw, 760px);
    }

    .stl-service-fit-card h3 {
        font-size: 20px;
    }

    .stl-service-fit-card p {
        font-size: 14px;
    }

    .stl-service-fit__benefits {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            22px
            0;
    }

    .stl-service-fit-benefit:nth-child(2)::after {
        display: none;
    }

    .stl-service-fit-benefit:nth-child(3) {
        padding-left: 0;
    }
}


/* =========================================================
   TABLET — 900
   ========================================================= */

@media (max-width: 900px) {

    .stl-page-header__upload {
        display: none;
    }

    .stl-page-hero__title {
        font-size:
            clamp(50px, 7.8vw, 66px);
    }

    .stl-page-hero__visual {
        height:
            clamp(500px, 68vw, 610px);
    }

    .stl-service-fit__inner {
        padding:
            72px
            24px
            54px;
    }

    .stl-service-fit__cards {
        height: auto;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            repeat(2, 390px);
    }

    .stl-service-fit-card--ready,
    .stl-service-fit-card--nearly,
    .stl-service-fit-card--single,
    .stl-service-fit-card--series {
        grid-column: auto;
        grid-row: auto;
    }

    .stl-service-fit-card--ready
    .stl-service-fit-card__content,
    .stl-service-fit-card--nearly
    .stl-service-fit-card__content,
    .stl-service-fit-card--single
    .stl-service-fit-card__content,
    .stl-service-fit-card--series
    .stl-service-fit-card__content {
        width: 58%;
    }

    .stl-service-fit-card--ready
    .stl-service-fit-card__visual,
    .stl-service-fit-card--nearly
    .stl-service-fit-card__visual,
    .stl-service-fit-card--single
    .stl-service-fit-card__visual {
        right: 1%;
        bottom: 1%;

        width: 56%;
        height: 70%;
    }

    .stl-service-fit-card--series
    .stl-service-fit-card__visual {
        right: 1%;
        bottom: 1%;

        width: 67%;
        height: 66%;
    }
}


/* =========================================================
   MOBILE — 620
   ========================================================= */

@media (max-width: 620px) {

    .site-header__whatsapp {
        width: 47px;
        height: 47px;

        border-radius: 13px;
    }

    .stl-page-hero__glow,
    .stl-page-hero__line,
    .stl-service-fit__dots {
        display: none;
    }

    .stl-page-hero__inner {
        padding:
            35px
            var(--page-space)
            38px;

        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .stl-page-hero__format-badge {
        min-height: 38px;

        margin-bottom: 22px;

        padding:
            7px
            13px;

        font-size: 10px;
        letter-spacing: 0.07em;
    }

    .stl-page-hero__format-dot {
        width: 18px;
        height: 18px;
    }

    .stl-page-hero__title {
        width: 100%;

        font-size:
            clamp(38px, 10.1vw, 45px);

        line-height: 1.045;
        letter-spacing: -0.046em;
    }

    .stl-page-hero__title br {
        display: none;
    }

    .stl-page-hero__description {
        width: 100%;

        margin-top: 23px;

        font-size: 16px;
        line-height: 1.53;
    }

    .stl-page-hero__actions {
        width: 100%;

        margin-top: 25px;

        flex-direction: column;
        align-items: stretch;

        gap: 12px;
    }

    .stl-page-hero__button,
    .stl-page-hero__button--primary,
    .stl-page-hero__button--secondary {
        width: 100%;
        min-width: 0;
        min-height: 59px;

        padding-inline: 20px;

        justify-content: space-between;
    }

    .stl-page-hero__micro-trust {
        margin-top: 23px;

        gap:
            10px
            12px;

        font-size: 12px;
    }

    .stl-page-hero__visual {
        width: 100%;
        height: auto;
        min-height: 0;

        margin-top: 24px;

        aspect-ratio: 1 / 0.82;
    }

    .stl-page-hero__main-image {
        position: relative;
        inset: auto;

        width: 112%;
        max-width: none;
        height: 100%;

        margin-left: -6%;

        object-fit: contain;
        object-position: center;

        transform: none;
    }

    .stl-page-hero__features {
        width:
            calc(100% + 18px);

        min-height: 0;

        margin-top: 22px;

        padding:
            4px
            54px
            24px
            0;

        display: flex;

        gap: 13px;

        overflow-x: auto;
        overflow-y: visible;

        border: 0;
        border-radius: 0;

        background: transparent;

        box-shadow: none;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-page-hero__features::-webkit-scrollbar {
        display: none;
    }

    .stl-page-hero-feature,
    .stl-page-hero-feature:first-child,
    .stl-page-hero-feature:last-child,
    .stl-page-hero-feature:nth-child(3) {
        width:
            calc(100vw - 70px);

        min-height: 98px;

        padding:
            16px
            17px;

        flex:
            0
            0
            calc(100vw - 70px);

        border:
            1px solid rgba(20, 20, 20, 0.065);

        border-radius: 16px;

        background:
            rgba(255, 255, 255, 0.98);

        box-shadow:
            0 11px 28px rgba(40, 37, 29, 0.06);

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-page-hero-feature::after {
        display: none;
    }

    .stl-page-hero-feature__icon {
        width: 56px;
    }

    .stl-page-hero-feature strong {
        font-size: 14px;
    }

    .stl-page-hero-feature span {
        font-size: 12px;
    }

    .stl-service-fit__inner {
        padding:
            60px
            18px
            48px;

        gap: 34px;
    }

    .stl-service-fit__layout {
        gap: 36px;
    }

    .stl-service-fit__kicker {
        margin-bottom: 20px;

        font-size: 9.5px;
    }

    .stl-service-fit__intro h2 {
        font-size:
            clamp(38px, 10.5vw, 46px);

        line-height: 1.045;
    }

    .stl-service-fit__intro h2 br {
        display: none;
    }

    .stl-service-fit__lead,
    .stl-service-fit__text {
        font-size: 16px;
        line-height: 1.52;
    }

    .stl-service-fit__visual {
        width: 100%;
        height: auto;
        min-height: 0;

        flex: none;

        margin-top: 25px;

        aspect-ratio: 1 / 0.72;
    }

    .stl-service-fit__visual img {
        position: relative;
        inset: auto;

        width: 110%;
        max-width: none;
        height: 100%;

        margin-left: -5%;

        object-fit: contain;
    }

    .stl-service-fit__button {
        width: 100%;
        min-width: 0;
        min-height: 59px;

        padding-inline: 18px;

        justify-content: center;

        font-size: 13px;
    }

    .stl-service-fit__micro-trust {
        align-items: flex-start;

        font-size: 12px;
    }


    /* Cards slider */

    .stl-service-fit__cards-shell {
        width:
            calc(100% + 18px);
    }

    .stl-service-fit__cards {
        width: 100%;
        height: auto;

        padding:
            4px
            54px
            26px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-service-fit__cards::-webkit-scrollbar {
        display: none;
    }

    .stl-service-fit-card,
    .stl-service-fit-card--ready,
    .stl-service-fit-card--nearly,
    .stl-service-fit-card--single,
    .stl-service-fit-card--series {
        width:
            calc(100vw - 70px);

        min-height: 430px;

        flex:
            0
            0
            calc(100vw - 70px);

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-service-fit-card:hover {
        transform: none;
    }

    .stl-service-fit-card__content,
    .stl-service-fit-card--ready
    .stl-service-fit-card__content,
    .stl-service-fit-card--nearly
    .stl-service-fit-card__content,
    .stl-service-fit-card--single
    .stl-service-fit-card__content,
    .stl-service-fit-card--series
    .stl-service-fit-card__content {
        width: 100%;

        padding:
            70px
            22px
            20px;
    }

    .stl-service-fit-card h3 {
        max-width: 240px;

        font-size: 21px;
    }

    .stl-service-fit-card p {
        max-width: 250px;

        font-size: 14px;
    }

    .stl-service-fit-card--ready
    .stl-service-fit-card__visual,
    .stl-service-fit-card--nearly
    .stl-service-fit-card__visual,
    .stl-service-fit-card--single
    .stl-service-fit-card__visual,
    .stl-service-fit-card--series
    .stl-service-fit-card__visual {
        right: 1%;
        bottom: 0;

        width: 64%;
        height: 53%;
    }

    .stl-service-fit-card--series
    .stl-service-fit-card__visual {
        width: 78%;
        height: 47%;
    }


    /* Slider controls */

    .stl-service-fit__slider-tools {
        padding-right: 54px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;
    }

    .stl-service-fit__slider-tools > span {
        display: flex;
        align-items: center;

        gap: 8px;

        color: #696969;

        font-size: 12px;
        line-height: 1;
        font-weight: 600;
    }

    .stl-service-fit__slider-tools b {
        color: #e8a500;

        font-size: 21px;
        line-height: 1;

        animation:
            stl-service-fit-swipe
            1.35s
            ease-in-out
            infinite;
    }

    .stl-service-fit__slider-dots {
        display: flex;
        align-items: center;

        gap: 6px;
    }

    .stl-service-fit__slider-dots button {
        width: 8px;
        height: 8px;
        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #ded8ca;

        cursor: pointer;

        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background 0.25s ease;
    }

    .stl-service-fit__slider-dots button.is-active {
        width: 23px;

        border-radius: 999px;

        background: #f1ae00;
    }


    /* Benefits slider */

    .stl-service-fit__benefits {
        width:
            calc(100% + 18px);

        min-height: 0;

        padding:
            4px
            54px
            25px
            0;

        display: flex;

        gap: 13px;

        overflow-x: auto;
        overflow-y: visible;

        border: 0;
        border-radius: 0;

        background: transparent;

        box-shadow: none;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-service-fit__benefits::-webkit-scrollbar {
        display: none;
    }

    .stl-service-fit-benefit,
    .stl-service-fit-benefit:first-child,
    .stl-service-fit-benefit:last-child,
    .stl-service-fit-benefit:nth-child(3) {
        width:
            calc(100vw - 70px);

        min-height: 114px;

        padding: 17px;

        flex:
            0
            0
            calc(100vw - 70px);

        border:
            1px solid rgba(20, 20, 20, 0.06);

        border-radius: 16px;

        background:
            rgba(255, 255, 255, 0.98);

        box-shadow:
            0 10px 27px rgba(34, 31, 23, 0.06);

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-service-fit-benefit::after {
        display: none;
    }

    .stl-service-fit-benefit strong,
    .stl-service-fit-benefit--question strong {
        font-size: 14px;
    }

    .stl-service-fit-benefit span,
    .stl-service-fit-benefit--question span {
        font-size: 12px;
    }

    @keyframes stl-service-fit-swipe {
        0%,
        100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(6px);
        }
    }
}


/* =========================================================
   MOBILE — 390
   ========================================================= */

@media (max-width: 390px) {

    .site-header__whatsapp,
    .site-header__toggle {
        width: 44px;
        height: 44px;
    }

    .stl-page-hero__inner,
    .stl-service-fit__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .stl-page-hero__title {
        font-size:
            clamp(36px, 9.8vw, 40px);
    }

    .stl-page-hero__features,
    .stl-service-fit__cards-shell,
    .stl-service-fit__benefits {
        width:
            calc(100% + 16px);
    }

    .stl-page-hero__features,
    .stl-service-fit__cards,
    .stl-service-fit__benefits {
        padding-right: 48px;
    }

    .stl-page-hero-feature,
    .stl-page-hero-feature:first-child,
    .stl-page-hero-feature:last-child,
    .stl-page-hero-feature:nth-child(3),
    .stl-service-fit-card,
    .stl-service-fit-card--ready,
    .stl-service-fit-card--nearly,
    .stl-service-fit-card--single,
    .stl-service-fit-card--series,
    .stl-service-fit-benefit,
    .stl-service-fit-benefit:first-child,
    .stl-service-fit-benefit:last-child,
    .stl-service-fit-benefit:nth-child(3) {
        width:
            calc(100vw - 64px);

        flex-basis:
            calc(100vw - 64px);
    }

    .stl-service-fit__slider-tools {
        padding-right: 48px;
    }

    .stl-service-fit__button {
        gap: 10px;

        font-size: 12px;
    }
}


/* =========================================================
   SCREEN 3 — FILE FORMATS
   ========================================================= */

.stl-file-formats {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 18% 12%,
            rgba(255, 204, 77, 0.055),
            transparent 35%
        ),
        radial-gradient(
            circle at 86% 44%,
            rgba(255, 218, 125, 0.07),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 58%,
            #ffffff 100%
        );
}

.stl-file-formats__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}

.stl-file-formats__glow {
    position: absolute;

    border-radius: 50%;
}

.stl-file-formats__glow--left {
    top: 8%;
    left: -18%;

    width:
        clamp(500px, 38vw, 880px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 195, 32, 0.07),
            transparent 69%
        );
}

.stl-file-formats__glow--right {
    top: 30%;
    right: -20%;

    width:
        clamp(580px, 45vw, 1040px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 221, 138, 0.09),
            transparent 70%
        );
}

.stl-file-formats__dots {
    position: absolute;
    bottom: 3%;
    left: 2%;

    width:
        clamp(120px, 9vw, 200px);

    height:
        clamp(75px, 6vw, 130px);

    opacity: 0.18;

    background-image:
        radial-gradient(
            circle,
            rgba(237, 171, 0, 0.28) 1px,
            transparent 1.4px
        );

    background-size: 13px 13px;
}


/* =========================================================
   FILE FORMATS INNER
   ========================================================= */

.stl-file-formats__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(48px, 3.4vw, 68px)
        var(--page-space)
        clamp(32px, 2.6vw, 52px);

    display: flex;
    flex-direction: column;
}


/* =========================================================
   FILE FORMATS HEADER
   ========================================================= */

.stl-file-formats__header {
    width: min(100%, 880px);

    margin: 0 auto;

    text-align: center;
}

.stl-file-formats__kicker {
    width: fit-content;

    min-height:
        clamp(34px, 2.35vw, 46px);

    margin:
        0
        auto
        clamp(15px, 1.2vw, 24px);

    padding:
        7px
        clamp(14px, 1.05vw, 21px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(239, 170, 0, 0.17);

    border-radius: 999px;

    background:
        rgba(255, 252, 244, 0.98);

    color: #e89f00;

    font-size:
        clamp(9px, 0.66vw, 13px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.stl-file-formats__kicker > span {
    width:
        clamp(9px, 0.72vw, 13px);

    height:
        clamp(9px, 0.72vw, 13px);

    flex: 0 0 auto;

    border-radius: 50%;

    background: #ffad00;

    box-shadow:
        0 0 0 5px rgba(255, 173, 0, 0.08);
}

.stl-file-formats__header h2 {
    margin: 0;

    color: #111214;

    font-size:
        clamp(39px, 3.15vw, 64px);

    line-height: 1.02;
    font-weight: 655;
    letter-spacing: -0.052em;
}

.stl-file-formats__header h2 span {
    color: #efa900;
}

.stl-file-formats__header p {
    width: min(100%, 780px);

    margin:
        clamp(15px, 1.2vw, 24px)
        auto
        0;

    color: #5e5e5e;

    font-size:
        clamp(13px, 0.88vw, 17px);

    line-height: 1.48;
}


/* =========================================================
   FILE FORMAT CARDS
   ========================================================= */

.stl-file-formats__cards-shell {
    width: 100%;

    margin-top:
        clamp(28px, 2vw, 40px);
}

.stl-file-formats__cards {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        clamp(12px, 0.95vw, 19px);
}

.stl-file-format-card {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height:
        clamp(250px, 17.1vw, 342px);

    overflow: hidden;

    border:
        1px solid rgba(239, 170, 0, 0.13);

    border-radius:
        clamp(14px, 1vw, 20px);

    background:
        radial-gradient(
            circle at 79% 64%,
            rgba(255, 210, 91, 0.085),
            transparent 53%
        ),
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 16px 40px rgba(38, 34, 24, 0.055);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stl-file-format-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(239, 170, 0, 0.27);

    box-shadow:
        0 22px 48px rgba(38, 34, 24, 0.085);
}

.stl-file-format-card__number {
    position: absolute;

    top:
        clamp(18px, 1.25vw, 25px);

    left:
        clamp(18px, 1.2vw, 24px);

    z-index: 5;

    color: #f0a800;

    font-size:
        clamp(16px, 1.06vw, 21px);

    line-height: 1;
    font-weight: 740;
}

.stl-file-format-card__number::after {
    content: "";

    display: block;

    width:
        clamp(20px, 1.35vw, 27px);

    height: 2px;

    margin-top:
        clamp(7px, 0.48vw, 10px);

    border-radius: 999px;

    background: #f0a800;
}

.stl-file-format-card__copy {
    position: relative;
    z-index: 5;

    width: 43%;

    padding:
        clamp(72px, 4.6vw, 92px)
        0
        clamp(58px, 3.7vw, 74px)
        clamp(18px, 1.2vw, 24px);
}

.stl-file-format-card__copy h3 {
    margin: 0;

    color: #171717;

    font-size:
        clamp(21px, 1.42vw, 29px);

    line-height: 1;
    font-weight: 740;
    letter-spacing: -0.035em;
}

.stl-file-format-card__copy p {
    margin:
        clamp(10px, 0.72vw, 14px)
        0
        0;

    color: #5f5f5f;

    font-size:
        clamp(10px, 0.7vw, 14px);

    line-height: 1.48;
}

.stl-file-format-card__visual {
    position: absolute;
    right: -2%;
    bottom: 1%;
    z-index: 2;

    width: 65%;
    height: 88%;

    pointer-events: none;
}

.stl-file-format-card__visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: right bottom;

    filter:
        drop-shadow(
            0 16px 16px rgba(36, 31, 23, 0.12)
        );

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-file-format-card:hover
.stl-file-format-card__visual img {
    transform:
        translateY(-3px)
        scale(1.018);
}

.stl-file-format-card--stl
.stl-file-format-card__visual {
    right: 1%;

    width: 61%;
    height: 83%;
}

.stl-file-format-card--step
.stl-file-format-card__visual {
    right: -5%;
    bottom: -1%;

    width: 73%;
    height: 91%;
}

.stl-file-format-card--obj
.stl-file-format-card__visual {
    right: -1%;

    width: 67%;
    height: 86%;
}

.stl-file-format-card--3mf
.stl-file-format-card__visual {
    right: -4%;
    bottom: -1%;

    width: 69%;
    height: 85%;
}

.stl-file-format-card__accepted {
    position: absolute;

    bottom:
        clamp(14px, 1vw, 20px);

    left:
        clamp(18px, 1.2vw, 24px);

    z-index: 6;

    min-height:
        clamp(28px, 1.9vw, 37px);

    padding:
        4px
        clamp(9px, 0.7vw, 14px);

    display: inline-flex;
    align-items: center;

    gap:
        clamp(6px, 0.46vw, 9px);

    border:
        1px solid rgba(239, 170, 0, 0.12);

    border-radius: 999px;

    background:
        rgba(255, 250, 238, 0.96);

    color: #9a6c00;

    font-size:
        clamp(8px, 0.56vw, 11px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.stl-file-format-card__accepted img {
    width:
        clamp(15px, 1vw, 20px);

    height:
        clamp(15px, 1vw, 20px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-file-formats__slider-controls {
    display: none;
}


/* =========================================================
   FILE FORMAT CONNECTORS
   ========================================================= */

.stl-file-formats__connectors {
    position: relative;

    width: 100%;
    height:
        clamp(27px, 2vw, 40px);
}

.stl-file-formats__connectors span {
    position: absolute;
    top: 0;

    width:
        clamp(76px, 6vw, 120px);

    height: 76%;

    border-bottom:
        1px dashed rgba(239, 170, 0, 0.75);
}

.stl-file-formats__connectors span::before,
.stl-file-formats__connectors span::after {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #f0aa00;
}

.stl-file-formats__connectors span::before {
    top: -3px;
}

.stl-file-formats__connectors span::after {
    bottom: -3px;
}

.stl-file-formats__connectors span:nth-child(1) {
    left: 13%;

    border-left:
        1px dashed rgba(239, 170, 0, 0.75);

    border-radius:
        0
        0
        0
        11px;
}

.stl-file-formats__connectors span:nth-child(1)::before {
    left: -3px;
}

.stl-file-formats__connectors span:nth-child(1)::after {
    right: -3px;
}

.stl-file-formats__connectors span:nth-child(2) {
    left: 36%;

    border-right:
        1px dashed rgba(239, 170, 0, 0.75);

    border-radius:
        0
        0
        11px
        0;

    transform: translateX(-100%);
}

.stl-file-formats__connectors span:nth-child(2)::before {
    right: -3px;
}

.stl-file-formats__connectors span:nth-child(2)::after {
    left: -3px;
}

.stl-file-formats__connectors span:nth-child(3) {
    left: 62%;

    border-left:
        1px dashed rgba(239, 170, 0, 0.75);

    border-radius:
        0
        0
        0
        11px;
}

.stl-file-formats__connectors span:nth-child(3)::before {
    left: -3px;
}

.stl-file-formats__connectors span:nth-child(3)::after {
    right: -3px;
}

.stl-file-formats__connectors span:nth-child(4) {
    right: 10%;

    border-right:
        1px dashed rgba(239, 170, 0, 0.75);

    border-radius:
        0
        0
        11px
        0;
}

.stl-file-formats__connectors span:nth-child(4)::before {
    right: -3px;
}

.stl-file-formats__connectors span:nth-child(4)::after {
    left: -3px;
}


/* =========================================================
   FILE CHECK PROCESS
   ========================================================= */

.stl-file-formats__process {
    width: calc(100% - clamp(36px, 4vw, 78px));

    min-height:
        clamp(128px, 9.7vw, 194px);

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.34fr)
        minmax(0, 0.92fr);

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(14px, 1vw, 20px);

    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 17px 42px rgba(34, 31, 23, 0.06);
}

.stl-file-formats-step {
    position: relative;

    min-width: 0;

    padding:
        clamp(18px, 1.4vw, 28px);

    display: grid;

    grid-template-columns:
        minmax(110px, 0.8fr)
        minmax(100px, 1fr);

    align-items: center;

    gap:
        clamp(10px, 0.9vw, 18px);
}

.stl-file-formats-step:not(:last-child)::before {
    content: "";

    position: absolute;
    top: 15%;
    right: 0;

    width: 1px;
    height: 70%;

    background:
        rgba(20, 20, 20, 0.075);
}

.stl-file-formats-step:not(:last-child)::after {
    content: "→";

    position: absolute;
    top: 50%;
    right: -17px;
    z-index: 5;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: #eea800;

    font-size: 24px;
    line-height: 1;

    transform: translateY(-50%);
}

.stl-file-formats-step__copy {
    position: relative;
    z-index: 3;

    min-width: 0;
}

.stl-file-formats-step__label {
    display: inline-flex;
    align-items: center;

    gap:
        clamp(7px, 0.55vw, 11px);

    color: #202020;

    font-size:
        clamp(10px, 0.66vw, 13px);

    line-height: 1;
    font-weight: 760;
    text-transform: uppercase;
}

.stl-file-formats-step__label b {
    width:
        clamp(20px, 1.35vw, 27px);

    height:
        clamp(20px, 1.35vw, 27px);

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffad00
        );

    color: #ffffff;

    font-size:
        clamp(9px, 0.58vw, 12px);
}

.stl-file-formats-step__copy p {
    margin:
        clamp(10px, 0.7vw, 14px)
        0
        0;

    color: #606060;

    font-size:
        clamp(10px, 0.7vw, 14px);

    line-height: 1.47;
}

.stl-file-formats-step__visual {
    width: 100%;
    height:
        clamp(90px, 6.8vw, 136px);
}

.stl-file-formats-step__visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 13px 13px rgba(37, 32, 23, 0.1)
        );
}

.stl-file-formats-step--check {
    grid-template-columns:
        minmax(120px, 0.7fr)
        minmax(190px, 1.3fr);
}

.stl-file-formats-step--check
.stl-file-formats-step__visual {
    height:
        clamp(100px, 7.8vw, 155px);
}

.stl-file-formats-step--part
.stl-file-formats-step__visual {
    height:
        clamp(100px, 7.4vw, 148px);
}


/* =========================================================
   FILE FORMAT HELP
   ========================================================= */

.stl-file-formats__help {
    width: 100%;

    min-height:
        clamp(104px, 7.8vw, 155px);

    margin-top:
        clamp(18px, 1.45vw, 29px);

    padding:
        clamp(15px, 1.2vw, 24px)
        clamp(18px, 1.35vw, 27px);

    display: grid;

    grid-template-columns:
        minmax(300px, 1.55fr)
        minmax(470px, 2fr)
        minmax(245px, 0.95fr);

    align-items: center;

    border:
        1px solid rgba(239, 170, 0, 0.17);

    border-radius:
        clamp(14px, 1vw, 20px);

    background:
        rgba(255, 253, 248, 0.985);

    box-shadow:
        0 14px 34px rgba(35, 31, 22, 0.045);
}

.stl-file-formats__question {
    min-width: 0;

    padding-right:
        clamp(17px, 1.4vw, 28px);

    display: flex;
    align-items: center;

    gap:
        clamp(13px, 1vw, 20px);

    border-right:
        1px solid rgba(20, 20, 20, 0.075);
}

.stl-file-formats__question-icon {
    width:
        clamp(52px, 3.9vw, 77px);

    aspect-ratio: 1;

    flex: 0 0 auto;
}

.stl-file-formats__question-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.stl-file-formats__question strong,
.stl-file-formats__question span {
    display: block;
}

.stl-file-formats__question strong {
    color: #1c1c1c;

    font-size:
        clamp(13px, 0.9vw, 18px);

    line-height: 1.23;
    font-weight: 710;
}

.stl-file-formats__question span {
    max-width: 470px;

    margin-top: 6px;

    color: #666666;

    font-size:
        clamp(9px, 0.63vw, 12px);

    line-height: 1.42;
}

.stl-file-formats__help-items {
    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.stl-file-formats-help-item {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(13px, 1vw, 20px);

    display: flex;
    align-items: center;

    gap:
        clamp(9px, 0.75vw, 15px);
}

.stl-file-formats-help-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 3%;
    right: 0;

    width: 1px;
    height: 94%;

    background:
        rgba(20, 20, 20, 0.075);
}

.stl-file-formats-help-item img {
    width:
        clamp(37px, 2.55vw, 51px);

    height:
        clamp(37px, 2.55vw, 51px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-file-formats-help-item strong,
.stl-file-formats-help-item span {
    display: block;
}

.stl-file-formats-help-item strong {
    color: #242424;

    font-size:
        clamp(9px, 0.66vw, 13px);

    line-height: 1.28;
    font-weight: 700;
}

.stl-file-formats-help-item span {
    margin-top: 5px;

    color: #707070;

    font-size:
        clamp(8px, 0.53vw, 10.5px);

    line-height: 1.38;
}

.stl-file-formats__cta {
    min-width: 0;

    padding-left:
        clamp(18px, 1.4vw, 28px);

    border-left:
        1px solid rgba(20, 20, 20, 0.075);

    text-align: center;
}

.stl-file-formats__cta a {
    width: 100%;

    min-height:
        clamp(48px, 3.25vw, 65px);

    padding:
        0
        clamp(16px, 1.25vw, 25px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(10px, 0.78vw, 15px);

    border-radius:
        clamp(10px, 0.75vw, 15px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffad00
        );

    color: #171717;

    font-size:
        clamp(11px, 0.75vw, 15px);

    line-height: 1;
    font-weight: 700;
    white-space: nowrap;

    box-shadow:
        0 13px 27px rgba(238, 171, 0, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stl-file-formats__cta a:hover,
.stl-file-formats__cta a:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 18px 34px rgba(238, 171, 0, 0.29);

    outline: none;
}

.stl-file-formats__cta a img {
    width:
        clamp(19px, 1.25vw, 24px);

    height:
        clamp(19px, 1.25vw, 24px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-file-formats__cta small {
    display: block;

    margin-top:
        clamp(7px, 0.55vw, 11px);

    color: #777777;

    font-size:
        clamp(8px, 0.56vw, 11px);

    line-height: 1.3;
}

.stl-file-formats__more {
    width: fit-content;

    min-height:
        clamp(28px, 1.9vw, 38px);

    margin:
        clamp(14px, 1.1vw, 22px)
        auto
        0;

    padding:
        4px
        clamp(12px, 0.9vw, 18px);

    display: inline-flex;
    align-items: center;

    gap:
        clamp(7px, 0.5vw, 10px);

    border:
        1px solid rgba(239, 170, 0, 0.13);

    border-radius: 999px;

    background:
        rgba(255, 252, 245, 0.98);

    color: #777168;

    font-size:
        clamp(9px, 0.62vw, 12px);

    line-height: 1;
}

.stl-file-formats__more img {
    width:
        clamp(16px, 1.05vw, 21px);

    height:
        clamp(16px, 1.05vw, 21px);

    object-fit: contain;
}


/* =========================================================
   FILE FORMATS — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-file-formats__inner {
        padding:
            42px
            42px
            38px;
    }

    .stl-file-formats__header h2 {
        font-size:
            clamp(42px, 3.1vw, 52px);
    }

    .stl-file-format-card {
        min-height: 270px;
    }

    .stl-file-format-card__copy {
        padding-top: 75px;
    }

    .stl-file-formats__process {
        min-height: 145px;
    }

    .stl-file-formats__help {
        grid-template-columns:
            minmax(280px, 1.45fr)
            minmax(440px, 2fr)
            minmax(225px, 0.92fr);
    }
}


/* =========================================================
   FILE FORMATS — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {

    .stl-file-formats {
        min-height: 0;
    }

    .stl-file-formats__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;
    }

    .stl-file-formats__header {
        max-width: 850px;
    }

    .stl-file-formats__header h2 {
        font-size:
            clamp(48px, 5.8vw, 66px);
    }

    .stl-file-formats__header p {
        font-size: 17px;
    }

    .stl-file-formats__cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .stl-file-format-card {
        min-height:
            clamp(330px, 37vw, 410px);
    }

    .stl-file-format-card__copy {
        width: 45%;

        padding:
            90px
            0
            75px
            27px;
    }

    .stl-file-format-card__copy h3 {
        font-size: 28px;
    }

    .stl-file-format-card__copy p {
        font-size: 14px;
    }

    .stl-file-format-card__visual {
        width: 68%;
    }

    .stl-file-formats__connectors {
        display: none;
    }

    .stl-file-formats__process {
        width: 100%;

        margin-top: 36px;

        grid-template-columns: 1fr;
    }

    .stl-file-formats-step {
        min-height: 190px;

        grid-template-columns:
            minmax(180px, 0.65fr)
            minmax(260px, 1.35fr);
    }

    .stl-file-formats-step:not(:last-child)::before {
        top: auto;
        right: 5%;
        bottom: 0;
        left: 5%;

        width: 90%;
        height: 1px;
    }

    .stl-file-formats-step:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -17px;

        transform:
            translateX(50%)
            rotate(90deg);
    }

    .stl-file-formats-step__label {
        font-size: 13px;
    }

    .stl-file-formats-step__copy p {
        max-width: 300px;

        font-size: 14px;
    }

    .stl-file-formats-step__visual,
    .stl-file-formats-step--check
    .stl-file-formats-step__visual,
    .stl-file-formats-step--part
    .stl-file-formats-step__visual {
        height: 150px;
    }

    .stl-file-formats__help {
        grid-template-columns:
            1fr
            1fr;

        gap: 24px;

        padding: 24px;
    }

    .stl-file-formats__question {
        padding-right: 24px;
    }

    .stl-file-formats__help-items {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .stl-file-formats__cta {
        grid-column: 2;
        grid-row: 1;
    }

    .stl-file-formats__question strong {
        font-size: 17px;
    }

    .stl-file-formats__question span {
        font-size: 12px;
    }

    .stl-file-formats-help-item strong {
        font-size: 13px;
    }

    .stl-file-formats-help-item span {
        font-size: 11px;
    }
}


/* =========================================================
   FILE FORMATS — TABLET 900
   ========================================================= */

@media (max-width: 900px) {

    .stl-file-formats__inner {
        padding:
            70px
            24px
            54px;
    }

    .stl-file-formats__header h2 {
        font-size:
            clamp(44px, 7vw, 58px);
    }

    .stl-file-formats__cards {
        gap: 16px;
    }

    .stl-file-format-card {
        min-height: 365px;
    }

    .stl-file-format-card__copy {
        width: 52%;

        padding:
            84px
            0
            72px
            22px;
    }

    .stl-file-format-card__visual {
        width: 64%;
        height: 80%;
    }

    .stl-file-formats__help {
        grid-template-columns: 1fr;
    }

    .stl-file-formats__question {
        padding:
            0
            0
            22px;

        border-right: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-file-formats__help-items {
        grid-column: 1;
        grid-row: auto;
    }

    .stl-file-formats__cta {
        grid-column: 1;
        grid-row: auto;

        padding:
            22px
            0
            0;

        border-left: 0;
        border-top:
            1px solid rgba(20, 20, 20, 0.075);
    }
}


/* =========================================================
   FILE FORMATS — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {

    .stl-file-formats__glow,
    .stl-file-formats__dots {
        display: none;
    }

    .stl-file-formats__inner {
        padding:
            60px
            18px
            48px;
    }

    .stl-file-formats__header {
        text-align: left;
    }

    .stl-file-formats__kicker {
        margin-left: 0;

        font-size: 9px;
    }

    .stl-file-formats__header h2 {
        font-size:
            clamp(38px, 10.2vw, 45px);

        line-height: 1.045;
    }

    .stl-file-formats__header h2 br {
        display: none;
    }

    .stl-file-formats__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .stl-file-formats__cards-shell {
        width:
            calc(100% + 18px);

        margin-top: 31px;
    }

    .stl-file-formats__cards {
        width: 100%;

        padding:
            4px
            54px
            24px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-file-formats__cards::-webkit-scrollbar {
        display: none;
    }

    .stl-file-format-card {
        width:
            calc(100vw - 70px);

        min-height: 430px;

        flex:
            0
            0
            calc(100vw - 70px);

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-file-format-card:hover {
        transform: none;
    }

    .stl-file-format-card__copy {
        width: 62%;

        padding:
            86px
            0
            74px
            22px;
    }

    .stl-file-format-card__copy h3 {
        font-size: 29px;
    }

    .stl-file-format-card__copy p {
        font-size: 14px;
    }

    .stl-file-format-card__visual,
    .stl-file-format-card--stl
    .stl-file-format-card__visual,
    .stl-file-format-card--step
    .stl-file-format-card__visual,
    .stl-file-format-card--obj
    .stl-file-format-card__visual,
    .stl-file-format-card--3mf
    .stl-file-format-card__visual {
        right: -2%;
        bottom: 0;

        width: 75%;
        height: 70%;
    }

    .stl-file-format-card--step
    .stl-file-format-card__visual {
        width: 82%;
    }

    .stl-file-format-card__accepted {
        bottom: 18px;
        left: 22px;

        min-height: 34px;

        font-size: 10px;
    }

    .stl-file-formats__slider-controls {
        padding-right: 54px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 14px;
    }

    .stl-file-formats__slider-controls > span {
        color: #696969;

        font-size: 11px;
        line-height: 1.2;
        font-weight: 600;
    }

    .stl-file-formats__slider-navigation {
        display: flex;
        align-items: center;

        gap: 9px;
    }

    .stl-file-formats__slider-navigation > button {
        width: 34px;
        height: 34px;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border:
            1px solid rgba(20, 20, 20, 0.08);

        border-radius: 50%;

        background: #ffffff;
        color: #202020;

        font-size: 18px;
        line-height: 1;

        cursor: pointer;
    }

    .stl-file-formats__slider-dots {
        display: flex;
        align-items: center;

        gap: 5px;
    }

    .stl-file-formats__slider-dots button {
        width: 7px;
        height: 7px;
        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #ded8ca;

        cursor: pointer;

        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background 0.25s ease;
    }

    .stl-file-formats__slider-dots button.is-active {
        width: 21px;

        border-radius: 999px;

        background: #f1ae00;
    }

    .stl-file-formats__process {
        margin-top: 35px;
    }

    .stl-file-formats-step,
    .stl-file-formats-step--check {
        min-height: 0;

        padding:
            24px
            20px;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .stl-file-formats-step__copy p {
        max-width: 100%;

        font-size: 14px;
    }

    .stl-file-formats-step__visual,
    .stl-file-formats-step--check
    .stl-file-formats-step__visual,
    .stl-file-formats-step--part
    .stl-file-formats-step__visual {
        height: 175px;
    }

    .stl-file-formats__help {
        margin-top: 28px;

        padding:
            22px
            18px;
    }

    .stl-file-formats__question {
        align-items: flex-start;
    }

    .stl-file-formats__question-icon {
        width: 57px;
    }

    .stl-file-formats__question strong {
        font-size: 16px;
    }

    .stl-file-formats__question span {
        font-size: 12px;
    }

    .stl-file-formats__help-items {
        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .stl-file-formats-help-item {
        min-height: 88px;

        padding:
            15px
            0;
    }

    .stl-file-formats-help-item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .stl-file-formats-help-item img {
        width: 48px;
        height: 48px;
    }

    .stl-file-formats-help-item strong {
        font-size: 14px;
    }

    .stl-file-formats-help-item span {
        font-size: 12px;
    }

    .stl-file-formats__cta a {
        min-height: 58px;

        font-size: 13px;
    }

    .stl-file-formats__cta small {
        font-size: 11px;
    }

    .stl-file-formats__more {
        margin-top: 20px;

        font-size: 11px;
    }
}


/* =========================================================
   FILE FORMATS — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {

    .stl-file-formats__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .stl-file-formats__cards-shell {
        width:
            calc(100% + 16px);
    }

    .stl-file-formats__cards {
        padding-right: 48px;
    }

    .stl-file-format-card {
        width:
            calc(100vw - 64px);

        flex-basis:
            calc(100vw - 64px);
    }

    .stl-file-formats__slider-controls {
        padding-right: 48px;
    }

    .stl-file-formats__slider-controls > span {
        max-width: 105px;
    }

    .stl-file-formats__slider-navigation {
        gap: 7px;
    }

    .stl-file-formats__slider-navigation > button {
        width: 32px;
        height: 32px;
    }
}


/* =========================================================
   FILE FORMATS — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stl-file-format-card,
    .stl-file-format-card__visual img,
    .stl-file-formats__cta a,
    .stl-file-formats__slider-dots button {
        transition: none !important;
    }

    .stl-file-format-card:hover,
    .stl-file-format-card:hover
    .stl-file-format-card__visual img,
    .stl-file-formats__cta a:hover {
        transform: none;
    }
}

/* =========================================================
   SCREEN 4 — ORDER PROCESS
   ========================================================= */

.stl-order-process {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 82% 11%,
            rgba(255, 207, 85, 0.07),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 56%,
            rgba(255, 223, 147, 0.05),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 58%,
            #ffffff 100%
        );
}

.stl-order-process__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}

.stl-order-process__glow {
    position: absolute;

    border-radius: 50%;
}

.stl-order-process__glow--left {
    top: 20%;
    left: -21%;

    width:
        clamp(500px, 39vw, 900px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 201, 55, 0.06),
            transparent 70%
        );
}

.stl-order-process__glow--right {
    top: -20%;
    right: -12%;

    width:
        clamp(620px, 48vw, 1100px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 220, 135, 0.08),
            transparent 70%
        );
}

.stl-order-process__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(43px, 3.1vw, 62px)
        var(--page-space)
        clamp(26px, 2vw, 40px);

    display: flex;
    flex-direction: column;
}


/* =========================================================
   ORDER PROCESS TOP
   ========================================================= */

.stl-order-process__top {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(380px, 34fr)
        minmax(0, 66fr);

    align-items: center;

    gap:
        clamp(26px, 2.4vw, 48px);
}

.stl-order-process__header {
    min-width: 0;
}

.stl-order-process__kicker {
    width: fit-content;

    min-height:
        clamp(34px, 2.3vw, 46px);

    margin-bottom:
        clamp(18px, 1.4vw, 28px);

    padding:
        7px
        clamp(14px, 1vw, 20px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(239, 170, 0, 0.16);

    border-radius: 999px;

    background:
        rgba(255, 252, 244, 0.98);

    color: #e89f00;

    font-size:
        clamp(9px, 0.66vw, 13px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.stl-order-process__kicker > span {
    width:
        clamp(9px, 0.72vw, 13px);

    height:
        clamp(9px, 0.72vw, 13px);

    flex: 0 0 auto;

    border-radius: 50%;

    background: #ffad00;

    box-shadow:
        0 0 0 5px rgba(255, 173, 0, 0.08);
}

.stl-order-process__header h2 {
    margin: 0;

    color: #111214;

    font-size:
        clamp(40px, 3.15vw, 64px);

    line-height: 1.02;
    font-weight: 655;
    letter-spacing: -0.052em;
}

.stl-order-process__header h2 span {
    color: #efa900;
}

.stl-order-process__header p {
    width: min(100%, 590px);

    margin:
        clamp(17px, 1.25vw, 25px)
        0
        0;

    color: #5d5d5d;

    font-size:
        clamp(14px, 0.94vw, 18px);

    line-height: 1.53;
}

.stl-order-process__flow {
    position: relative;

    width: 100%;
    height:
        clamp(160px, 13.3vw, 265px);
}

.stl-order-process__flow img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 17px 18px rgba(35, 30, 22, 0.08)
        );
}


/* =========================================================
   ORDER PROCESS STEPS
   ========================================================= */

.stl-order-process__steps-shell {
    width: 100%;

    margin-top:
        clamp(28px, 2vw, 40px);
}

.stl-order-process__steps {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap:
        clamp(12px, 0.85vw, 17px);
}

.stl-order-step {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height:
        clamp(315px, 22vw, 440px);

    padding:
        clamp(18px, 1.25vw, 25px);

    display: flex;
    flex-direction: column;

    overflow: visible;

    border:
        1px solid rgba(239, 170, 0, 0.12);

    border-radius:
        clamp(15px, 1vw, 20px);

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 216, 117, 0.065),
            transparent 50%
        ),
        rgba(255, 255, 255, 0.98);

    box-shadow:
        0 16px 38px rgba(36, 32, 23, 0.055);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stl-order-step:hover {
    transform: translateY(-4px);

    border-color:
        rgba(239, 170, 0, 0.25);

    box-shadow:
        0 22px 47px rgba(36, 32, 23, 0.085);
}

.stl-order-step:not(:last-child)::after {
    content: "→";

    position: absolute;
    top:
        clamp(25px, 1.75vw, 35px);

    right:
        clamp(-25px, -1.25vw, -17px);

    z-index: 10;

    width:
        clamp(28px, 1.75vw, 35px);

    height:
        clamp(28px, 1.75vw, 35px);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fffefa;
    color: #efa900;

    font-size:
        clamp(21px, 1.35vw, 27px);

    line-height: 1;
}

.stl-order-step__number {
    position: absolute;

    top:
        clamp(16px, 1.1vw, 22px);

    left:
        clamp(16px, 1.1vw, 22px);

    z-index: 6;

    width:
        clamp(39px, 2.6vw, 52px);

    height:
        clamp(39px, 2.6vw, 52px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(239, 170, 0, 0.18);

    border-radius: 50%;

    background:
        rgba(255, 253, 247, 0.98);

    color: #eda600;

    font-size:
        clamp(15px, 1vw, 20px);

    line-height: 1;
    font-weight: 720;
}

.stl-order-step__visual {
    position: relative;

    width: 100%;
    height:
        clamp(127px, 9.1vw, 182px);

    margin-top:
        clamp(11px, 0.75vw, 15px);
}

.stl-order-step__visual > img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 13px 13px rgba(37, 32, 23, 0.105)
        );

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-order-step:hover
.stl-order-step__visual > img {
    transform:
        translateY(-3px)
        scale(1.015);
}

.stl-order-step--upload
.stl-order-step__visual {
    width: 78%;

    margin-right: auto;
    margin-left: auto;
}

.stl-order-step--check
.stl-order-step__visual {
    width: 96%;
}

.stl-order-step--material
.stl-order-step__visual {
    height:
        clamp(135px, 9.6vw, 192px);
}

.stl-order-step--production
.stl-order-step__visual {
    width: calc(100% + 12px);

    margin-left: -6px;
}

.stl-order-step--production
.stl-order-step__visual > img {
    border-radius:
        clamp(8px, 0.65vw, 13px);
}

.stl-order-step--shipping
.stl-order-step__visual {
    width: calc(100% + 8px);

    margin-left: -4px;
}

.stl-order-step__contact-icon {
    position: absolute;

    bottom: 7%;
    left: 7%;
    z-index: 5;

    width:
        clamp(22px, 1.5vw, 30px) !important;

    height:
        clamp(22px, 1.5vw, 30px) !important;

    object-fit: contain;

    filter: none !important;
}

.stl-order-step:hover
.stl-order-step__contact-icon {
    transform: none !important;
}

.stl-order-step__copy {
    position: relative;
    z-index: 4;

    margin-top:
        clamp(15px, 1vw, 20px);
}

.stl-order-step__copy h3 {
    margin: 0;

    color: #202020;

    font-size:
        clamp(15px, 1vw, 19px);

    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.stl-order-step__copy p {
    margin:
        clamp(8px, 0.58vw, 12px)
        0
        0;

    color: #666666;

    font-size:
        clamp(10.5px, 0.72vw, 13.5px);

    line-height: 1.48;
}

.stl-order-step__status {
    width: fit-content;

    min-height:
        clamp(27px, 1.8vw, 36px);

    margin-top: auto;

    padding:
        4px
        clamp(9px, 0.65vw, 13px);

    display: inline-flex;
    align-items: center;

    gap:
        clamp(6px, 0.43vw, 9px);

    border-radius: 999px;

    font-size:
        clamp(8px, 0.56vw, 11px);

    line-height: 1;
    font-weight: 640;
    white-space: nowrap;
}

.stl-order-step__status img {
    width:
        clamp(14px, 0.9vw, 18px);

    height:
        clamp(14px, 0.9vw, 18px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-order-step__status--success {
    border:
        1px solid rgba(126, 158, 74, 0.1);

    background: #f4f8e9;
    color: #688449;
}

.stl-order-step__status--progress {
    border:
        1px solid rgba(239, 170, 0, 0.11);

    background: #fff8e8;
    color: #927019;
}

.stl-order-step__status--production {
    border:
        1px solid rgba(239, 170, 0, 0.11);

    background: #fff6df;
    color: #956b0a;
}

.stl-order-process__slider-controls {
    display: none;
}


/* =========================================================
   ORDER PROCESS TRUST
   ========================================================= */

.stl-order-process__trust {
    width: 100%;

    min-height:
        clamp(105px, 7.8vw, 155px);

    margin-top:
        clamp(23px, 1.7vw, 34px);

    padding:
        clamp(16px, 1.2vw, 24px)
        clamp(20px, 1.45vw, 29px);

    display: grid;

    grid-template-columns:
        minmax(320px, 1.55fr)
        minmax(510px, 2fr)
        minmax(250px, 1fr);

    align-items: center;

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(15px, 1vw, 20px);

    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 16px 40px rgba(35, 31, 22, 0.055);
}

.stl-order-process__trust-main {
    min-width: 0;

    padding-right:
        clamp(17px, 1.35vw, 27px);

    display: flex;
    align-items: center;

    gap:
        clamp(14px, 1vw, 20px);

    border-right:
        1px solid rgba(20, 20, 20, 0.075);
}

.stl-order-process__trust-main img {
    width:
        clamp(56px, 4vw, 80px);

    height:
        clamp(56px, 4vw, 80px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-order-process__trust-main strong,
.stl-order-process__trust-main span {
    display: block;
}

.stl-order-process__trust-main strong {
    color: #202020;

    font-size:
        clamp(12px, 0.85vw, 17px);

    line-height: 1.25;
    font-weight: 710;
}

.stl-order-process__trust-main span {
    margin-top: 6px;

    color: #686868;

    font-size:
        clamp(10px, 0.68vw, 13px);

    line-height: 1.43;
}

.stl-order-process__trust-items {
    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.stl-order-process-trust-item {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(12px, 0.95vw, 19px);

    display: flex;
    align-items: center;

    gap:
        clamp(9px, 0.7vw, 14px);
}

.stl-order-process-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 3%;
    right: 0;

    width: 1px;
    height: 94%;

    background:
        rgba(20, 20, 20, 0.075);
}

.stl-order-process-trust-item img {
    width:
        clamp(37px, 2.5vw, 50px);

    height:
        clamp(37px, 2.5vw, 50px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-order-process-trust-item strong,
.stl-order-process-trust-item span {
    display: block;
}

.stl-order-process-trust-item strong {
    color: #242424;

    font-size:
        clamp(10px, 0.68vw, 13px);

    line-height: 1.28;
    font-weight: 700;
}

.stl-order-process-trust-item span {
    margin-top: 5px;

    color: #717171;

    font-size:
        clamp(9px, 0.58vw, 11px);

    line-height: 1.38;
}

.stl-order-process__cta {
    min-width: 0;

    padding-left:
        clamp(18px, 1.4vw, 28px);

    border-left:
        1px solid rgba(20, 20, 20, 0.075);

    text-align: center;
}

.stl-order-process__cta a {
    width: 100%;

    min-height:
        clamp(49px, 3.25vw, 65px);

    padding:
        0
        clamp(15px, 1.15vw, 23px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(10px, 0.75vw, 15px);

    border-radius:
        clamp(10px, 0.75vw, 15px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffad00
        );

    color: #171717;

    font-size:
        clamp(11.5px, 0.8vw, 15px);

    line-height: 1;
    font-weight: 700;
    white-space: nowrap;

    box-shadow:
        0 13px 28px rgba(238, 171, 0, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stl-order-process__cta a:hover,
.stl-order-process__cta a:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(238, 171, 0, 0.29);

    outline: none;
}

.stl-order-process__cta a img {
    width:
        clamp(19px, 1.25vw, 24px);

    height:
        clamp(19px, 1.25vw, 24px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-order-process__cta small {
    display: block;

    margin-top:
        clamp(7px, 0.52vw, 10px);

    color: #777777;

    font-size:
        clamp(9px, 0.6vw, 11px);

    line-height: 1.3;
}


/* =========================================================
   ORDER PROCESS FACTS
   ========================================================= */

.stl-order-process__facts {
    width: 100%;

    margin-top:
        clamp(18px, 1.35vw, 27px);

    display: flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(22px, 2.1vw, 42px);

    color: #555555;

    font-size:
        clamp(10.5px, 0.7vw, 13.5px);

    line-height: 1;
    font-weight: 560;
}

.stl-order-process__facts span {
    display: inline-flex;
    align-items: center;

    gap:
        clamp(8px, 0.58vw, 11px);
}

.stl-order-process__facts img {
    width:
        clamp(19px, 1.25vw, 24px);

    height:
        clamp(19px, 1.25vw, 24px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-order-process__facts i {
    width: 4px;
    height: 4px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #eca900;
}


/* =========================================================
   ORDER PROCESS — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-order-process__inner {
        padding:
            38px
            42px
            32px;
    }

    .stl-order-process__top {
        grid-template-columns:
            minmax(340px, 34fr)
            minmax(0, 66fr);
    }

    .stl-order-process__header h2 {
        font-size:
            clamp(42px, 3.1vw, 51px);
    }

    .stl-order-process__flow {
        height: 190px;
    }

    .stl-order-step {
        min-height: 335px;

        padding: 18px;
    }

    .stl-order-step__visual {
        height: 135px;
    }

    .stl-order-step--material
    .stl-order-step__visual {
        height: 145px;
    }

    .stl-order-process__trust {
        grid-template-columns:
            minmax(280px, 1.45fr)
            minmax(450px, 2fr)
            minmax(225px, 0.95fr);
    }
}


/* =========================================================
   ORDER PROCESS — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {

    .stl-order-process {
        min-height: 0;
    }

    .stl-order-process__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;
    }

    .stl-order-process__top {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .stl-order-process__header {
        max-width: 840px;
    }

    .stl-order-process__header h2 {
        font-size:
            clamp(49px, 5.9vw, 68px);
    }

    .stl-order-process__header p {
        max-width: 720px;

        font-size: 17px;
    }

    .stl-order-process__flow {
        height:
            clamp(250px, 29vw, 340px);
    }

    .stl-order-process__steps {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .stl-order-step {
        min-height: 430px;
    }

    .stl-order-step:not(:last-child)::after {
        display: none;
    }

    .stl-order-step__visual,
    .stl-order-step--material
    .stl-order-step__visual {
        height: 200px;
    }

    .stl-order-step__copy h3 {
        font-size: 19px;
    }

    .stl-order-step__copy p {
        font-size: 13px;
    }

    .stl-order-step__status {
        font-size: 11px;
    }

    .stl-order-step--shipping {
        grid-column: 1 / -1;

        width: calc(50% - 8px);

        justify-self: center;
    }

    .stl-order-process__trust {
        grid-template-columns:
            1fr
            1fr;

        gap: 24px;

        padding: 24px;
    }

    .stl-order-process__trust-main {
        padding-right: 24px;
    }

    .stl-order-process__trust-items {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .stl-order-process__cta {
        grid-column: 2;
        grid-row: 1;
    }

    .stl-order-process__trust-main strong {
        font-size: 17px;
    }

    .stl-order-process__trust-main span {
        font-size: 12px;
    }

    .stl-order-process-trust-item strong {
        font-size: 13px;
    }

    .stl-order-process-trust-item span {
        font-size: 11px;
    }

    .stl-order-process__facts {
        flex-wrap: wrap;

        row-gap: 17px;
    }
}


/* =========================================================
   ORDER PROCESS — TABLET 900
   ========================================================= */

@media (max-width: 900px) {

    .stl-order-process__inner {
        padding:
            70px
            24px
            54px;
    }

    .stl-order-process__header h2 {
        font-size:
            clamp(44px, 7vw, 59px);
    }

    .stl-order-process__flow {
        height:
            clamp(220px, 35vw, 310px);
    }

    .stl-order-process__steps-shell {
        width:
            calc(100% + 24px);
    }

    .stl-order-process__steps {
        width: 100%;

        padding:
            4px
            72px
            25px
            0;

        display: flex;

        gap: 15px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-order-process__steps::-webkit-scrollbar {
        display: none;
    }

    .stl-order-step,
    .stl-order-step--shipping {
        width:
            calc(58vw - 24px);

        min-height: 445px;

        flex:
            0
            0
            calc(58vw - 24px);

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-order-step:hover {
        transform: none;
    }

    .stl-order-process__slider-controls {
        padding-right: 72px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;
    }

    .stl-order-process__slider-controls > span {
        color: #696969;

        font-size: 12px;
        line-height: 1.2;
        font-weight: 600;
    }

    .stl-order-process__slider-navigation {
        display: flex;
        align-items: center;

        gap: 9px;
    }

    .stl-order-process__slider-navigation > button {
        width: 36px;
        height: 36px;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border:
            1px solid rgba(20, 20, 20, 0.08);

        border-radius: 50%;

        background: #ffffff;
        color: #202020;

        font-size: 19px;
        line-height: 1;

        cursor: pointer;
    }

    .stl-order-process__slider-navigation > button:disabled {
        opacity: 0.35;

        cursor: default;
    }

    .stl-order-process__slider-dots {
        display: flex;
        align-items: center;

        gap: 5px;
    }

    .stl-order-process__slider-dots button {
        width: 7px;
        height: 7px;
        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #ded8ca;

        cursor: pointer;

        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background 0.25s ease;
    }

    .stl-order-process__slider-dots button.is-active {
        width: 21px;

        border-radius: 999px;

        background: #f1ae00;
    }

    .stl-order-process__trust {
        grid-template-columns: 1fr;
    }

    .stl-order-process__trust-main {
        padding:
            0
            0
            22px;

        border-right: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-order-process__trust-items {
        grid-column: 1;
        grid-row: auto;
    }

    .stl-order-process__cta {
        grid-column: 1;
        grid-row: auto;

        padding:
            22px
            0
            0;

        border-top:
            1px solid rgba(20, 20, 20, 0.075);

        border-left: 0;
    }
}


/* =========================================================
   ORDER PROCESS — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {

    .stl-order-process__glow {
        display: none;
    }

    .stl-order-process__inner {
        padding:
            60px
            18px
            48px;
    }

    .stl-order-process__kicker {
        margin-bottom: 20px;

        font-size: 9px;
    }

    .stl-order-process__header h2 {
        font-size:
            clamp(38px, 10.3vw, 46px);

        line-height: 1.045;
    }

    .stl-order-process__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .stl-order-process__flow {
        width: calc(100% + 16px);
        height: auto;

        margin-left: -8px;

        aspect-ratio: 1 / 0.38;
    }

    .stl-order-process__steps-shell {
        width:
            calc(100% + 18px);

        margin-top: 31px;
    }

    .stl-order-process__steps {
        padding-right: 54px;
    }

    .stl-order-step,
    .stl-order-step--shipping {
        width:
            calc(100vw - 70px);

        min-height: 455px;

        flex:
            0
            0
            calc(100vw - 70px);

        padding:
            21px
            20px;

        border-radius: 20px;
    }

    .stl-order-step__number {
        top: 18px;
        left: 18px;

        width: 47px;
        height: 47px;

        font-size: 18px;
    }

    .stl-order-step__visual,
    .stl-order-step--material
    .stl-order-step__visual {
        height: 205px;
    }

    .stl-order-step--upload
    .stl-order-step__visual {
        width: 80%;
    }

    .stl-order-step__copy {
        margin-top: 17px;
    }

    .stl-order-step__copy h3 {
        font-size: 20px;
    }

    .stl-order-step__copy p {
        font-size: 14px;
    }

    .stl-order-step__status {
        min-height: 34px;

        font-size: 10px;
    }

    .stl-order-process__slider-controls {
        padding-right: 54px;
    }

    .stl-order-process__slider-controls > span {
        max-width: 125px;

        font-size: 11px;
    }

    .stl-order-process__slider-navigation > button {
        width: 34px;
        height: 34px;
    }

    .stl-order-process__trust {
        margin-top: 30px;

        padding:
            22px
            18px;
    }

    .stl-order-process__trust-main {
        align-items: flex-start;
    }

    .stl-order-process__trust-main img {
        width: 60px;
        height: 60px;
    }

    .stl-order-process__trust-main strong {
        font-size: 16px;
    }

    .stl-order-process__trust-main span {
        font-size: 12px;
    }

    .stl-order-process__trust-items {
        display: flex;
        flex-direction: column;
    }

    .stl-order-process-trust-item {
        min-height: 90px;

        padding:
            15px
            0;
    }

    .stl-order-process-trust-item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .stl-order-process-trust-item img {
        width: 48px;
        height: 48px;
    }

    .stl-order-process-trust-item strong {
        font-size: 14px;
    }

    .stl-order-process-trust-item span {
        font-size: 12px;
    }

    .stl-order-process__cta a {
        min-height: 59px;

        font-size: 13px;
    }

    .stl-order-process__cta small {
        font-size: 10px;
    }

    .stl-order-process__facts {
        margin-top: 25px;

        display: grid;

        grid-template-columns: 1fr;

        justify-items: start;

        gap: 14px;
    }

    .stl-order-process__facts span {
        font-size: 12px;
    }

    .stl-order-process__facts i {
        display: none;
    }
}


/* =========================================================
   ORDER PROCESS — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {

    .stl-order-process__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .stl-order-process__steps-shell {
        width:
            calc(100% + 16px);
    }

    .stl-order-process__steps {
        padding-right: 48px;
    }

    .stl-order-step,
    .stl-order-step--shipping {
        width:
            calc(100vw - 64px);

        flex-basis:
            calc(100vw - 64px);
    }

    .stl-order-process__slider-controls {
        padding-right: 48px;
    }

    .stl-order-process__slider-navigation {
        gap: 7px;
    }

    .stl-order-process__slider-navigation > button {
        width: 32px;
        height: 32px;
    }

    .stl-order-process__slider-controls > span {
        max-width: 100px;
    }
}


/* =========================================================
   ORDER PROCESS — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stl-order-step,
    .stl-order-step__visual > img,
    .stl-order-process__cta a,
    .stl-order-process__slider-dots button {
        transition: none !important;
    }

    .stl-order-step:hover,
    .stl-order-step:hover
    .stl-order-step__visual > img,
    .stl-order-process__cta a:hover {
        transform: none;
    }
}

/* =========================================================
   SCREEN 5 — MATERIAL RECOMMENDATION
   ========================================================= */

.stl-material-recommendation {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height:
        calc(100svh - var(--header-height));

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 18% 34%,
            rgba(255, 203, 68, 0.065),
            transparent 38%
        ),
        radial-gradient(
            circle at 88% 14%,
            rgba(255, 223, 145, 0.075),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf8 62%,
            #ffffff 100%
        );
}

.stl-material-recommendation__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}

.stl-material-recommendation__glow {
    position: absolute;

    border-radius: 50%;
}

.stl-material-recommendation__glow--left {
    top: 10%;
    left: -24%;

    width:
        clamp(540px, 42vw, 940px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 194, 32, 0.07),
            transparent 69%
        );
}

.stl-material-recommendation__glow--right {
    top: -20%;
    right: -16%;

    width:
        clamp(600px, 48vw, 1080px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 220, 134, 0.085),
            transparent 70%
        );
}

.stl-material-recommendation__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    height:
        calc(100svh - var(--header-height));

    min-height: 760px;

    padding:
        clamp(26px, 1.85vw, 38px)
        clamp(34px, 2.55vw, 52px)
        clamp(30px, 2.5vw, 40px);

    display: grid;

    grid-template-rows:
        minmax(0, 1fr)
        auto;

    row-gap:
        clamp(22px, 1.7vw, 34px);
}

.stl-material-recommendation__layout {
    width: 100%;
    height: 100%;

    display: grid;

    grid-template-areas:
        "visual content";

    grid-template-columns:
        minmax(0, 51.8fr)
        minmax(0, 48.2fr);

    align-items: stretch;

    gap:
        clamp(32px, 2.6vw, 52px);
}


/* =========================================================
   MATERIAL CONTENT
   ========================================================= */

.stl-material-recommendation__content {
    grid-area: content;

    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-self: start;
}

.stl-material-recommendation__header {
    width: 100%;
}

.stl-material-recommendation__kicker {
    width: fit-content;

    min-height:
        clamp(32px, 2.15vw, 43px);

    margin-bottom:
        clamp(18px, 1.4vw, 28px);

    padding:
        7px
        clamp(13px, 0.95vw, 19px);

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(239, 170, 0, 0.16);

    border-radius: 999px;

    background:
        rgba(255, 252, 244, 0.98);

    color: #e89f00;

    font-size:
        clamp(9px, 0.64vw, 12.5px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.stl-material-recommendation__kicker > span {
    width:
        clamp(9px, 0.68vw, 13px);

    height:
        clamp(9px, 0.68vw, 13px);

    flex: 0 0 auto;

    border-radius: 50%;

    background: #ffad00;

    box-shadow:
        0 0 0 5px rgba(255, 173, 0, 0.08);
}

.stl-material-recommendation__header h2 {
    margin: 0;

    color: #111214;

    font-size:
        clamp(40px, 3.05vw, 62px);

    line-height: 1.015;
    font-weight: 655;
    letter-spacing: -0.052em;
}

.stl-material-recommendation__header h2 span {
    color: #efa900;
}

.stl-material-recommendation__header p {
    width: min(100%, 680px);

    margin:
        clamp(17px, 1.25vw, 25px)
        0
        0;

    color: #5e5e5e;

    font-size:
        clamp(14px, 0.92vw, 18px);

    line-height: 1.5;
}


/* =========================================================
   MATERIAL OPTIONS
   ========================================================= */

.stl-material-recommendation__materials-shell {
    width: 100%;

    margin-top:
        clamp(27px, 2vw, 40px);
}

.stl-material-recommendation__materials {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap:
        clamp(10px, 0.8vw, 16px);
}

.stl-material-option {
    position: relative;

    width: 100%;
    min-height:
        clamp(82px, 5.9vw, 118px);

    padding:
        clamp(10px, 0.75vw, 15px)
        clamp(13px, 1vw, 20px);

    display: grid;

    grid-template-columns:
        minmax(145px, 0.92fr)
        minmax(175px, 1.28fr)
        minmax(190px, 1.23fr);

    align-items: center;

    gap:
        clamp(13px, 1vw, 20px);

    border:
        1px solid rgba(20, 20, 20, 0.075);

    border-radius:
        clamp(10px, 0.72vw, 14px);

    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 11px 27px rgba(36, 32, 23, 0.045);

    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.stl-material-option:hover {
    transform: translateY(-2px);

    border-color:
        rgba(239, 170, 0, 0.22);

    box-shadow:
        0 16px 34px rgba(36, 32, 23, 0.07);
}

.stl-material-option--recommended {
    border-color: #f0a800;

    box-shadow:
        0 13px 31px rgba(239, 170, 0, 0.085);
}

.stl-material-option__selected {
    position: absolute;

    top: 50%;
    left:
        clamp(-20px, -1vw, -14px);

    z-index: 5;

    width:
        clamp(22px, 1.45vw, 29px);

    height:
        clamp(22px, 1.45vw, 29px);

    object-fit: contain;

    transform: translateY(-50%);
}

.stl-material-option__identity {
    min-width: 0;

    display: flex;
    align-items: center;

    gap:
        clamp(12px, 0.9vw, 18px);
}

.stl-material-option__identity::after,
.stl-material-option__description::after {
    content: "";

    position: absolute;

    top: 15%;
    right: 0;

    width: 1px;
    height: 70%;

    background:
        rgba(20, 20, 20, 0.07);
}

.stl-material-option__identity,
.stl-material-option__description {
    position: relative;

    padding-right:
        clamp(13px, 1vw, 20px);
}

.stl-material-option__swatch {
    width:
        clamp(53px, 3.65vw, 73px);

    height:
        clamp(53px, 3.65vw, 73px);

    flex: 0 0 auto;

    border-radius:
        clamp(7px, 0.55vw, 11px);

    object-fit: cover;

    box-shadow:
        inset 0 0 0 1px rgba(20, 20, 20, 0.04);
}

.stl-material-option__number {
    display: block;

    color: #efa900;

    font-size:
        clamp(11px, 0.78vw, 15.5px);

    line-height: 1;
    font-weight: 730;
}

.stl-material-option h3 {
    margin:
        clamp(4px, 0.3vw, 6px)
        0
        0;

    color: #1d1d1d;

    font-size:
        clamp(21px, 1.42vw, 28px);

    line-height: 1;
    font-weight: 730;
    letter-spacing: -0.035em;
}

.stl-material-option__description {
    margin: 0;

    color: #555555;

    font-size:
        clamp(10.5px, 0.72vw, 13.5px);

    line-height: 1.42;
}

.stl-material-option__properties {
    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    align-items: start;

    gap:
        clamp(6px, 0.52vw, 10px);
}

.stl-material-option__properties span {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap:
        clamp(5px, 0.36vw, 7px);

    color: #4d4d4d;

    text-align: center;
}

.stl-material-option__properties img {
    width:
        clamp(23px, 1.55vw, 31px);

    height:
        clamp(23px, 1.55vw, 31px);

    object-fit: contain;
}

.stl-material-option__properties small {
    font-size:
        clamp(8.5px, 0.58vw, 10.5px);

    line-height: 1.15;
    font-weight: 560;
}

.stl-material-recommendation__slider-controls {
    display: none;
}


/* =========================================================
   MAIN MATERIAL VISUAL
   ========================================================= */

.stl-material-recommendation__visual-column {
    grid-area: visual;

    min-width: 0;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.stl-material-recommendation__visual {
    position: relative;
    isolation: isolate;

    width: 100%;
    height:
        clamp(400px, 50svh, 720px);

    min-height: 0;

    flex: 0 0 auto;
}

.stl-material-recommendation__visual-intro {
    position: absolute;
    top:
        clamp(30px, 2.5vw, 50px);

    left: 0;
    z-index: 6;

    width:
        clamp(150px, 11.5vw, 230px);

    margin: 0;

    color: #555555;

    font-size:
        clamp(11px, 0.74vw, 14.5px);

    line-height: 1.5;
}

.stl-material-recommendation__visual-line {
    position: absolute;
    top:
        clamp(126px, 9.7vw, 194px);

    left: 0;
    z-index: 6;

    width:
        clamp(22px, 1.7vw, 34px);

    height: 2px;

    border-radius: 999px;

    background: #f0aa00;
}

.stl-material-recommendation__decor-grid {
    position: absolute;
    top:
        clamp(42px, 3.4vw, 68px);

    left:
        clamp(155px, 12vw, 240px);

    z-index: 1;

    width:
        clamp(55px, 4vw, 80px);

    height:
        clamp(55px, 4vw, 80px);

    object-fit: contain;

    opacity: 0.65;
}

.stl-material-recommendation__decor-orbits {
    position: absolute;
    top:
        clamp(25px, 2vw, 40px);

    right: 0;
    z-index: 1;

    width: 85%;
    height: 56%;

    object-fit: contain;
    object-position: center top;
}

.stl-material-recommendation__approval {
    position: absolute;
    top:
        clamp(5px, 0.6vw, 12px);

    right:
        clamp(90px, 7vw, 140px);

    z-index: 7;

    width:
        clamp(72px, 5.7vw, 114px);

    aspect-ratio: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap:
        clamp(4px, 0.32vw, 7px);

    border:
        1px solid rgba(239, 170, 0, 0.17);

    border-radius: 50%;

    background:
        rgba(255, 253, 247, 0.96);

    color: #4e4e4e;

    text-align: center;

    box-shadow:
        0 10px 25px rgba(38, 33, 23, 0.045);
}

.stl-material-recommendation__approval img {
    width:
        clamp(27px, 2vw, 40px);

    height:
        clamp(27px, 2vw, 40px);

    object-fit: contain;
}

.stl-material-recommendation__approval span {
    font-size:
        clamp(8.5px, 0.58vw, 11px);

    line-height: 1.25;
    font-weight: 650;
}

.stl-material-recommendation__main-image {
    position: absolute;
    bottom: -1%;
    left: -14%;
    z-index: 3;

    width: 128%;
    max-width: none;
    height: 96%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 22px 22px rgba(33, 29, 21, 0.12)
        );
}


/* =========================================================
   MATERIAL FINDING PROCESS
   ========================================================= */

.stl-material-recommendation__process {
    width: 96%;

    min-height:
        clamp(98px, 7.7vw, 154px);

    margin-top: 0;

    padding:
        clamp(14px, 1vw, 20px)
        clamp(18px, 1.35vw, 27px);

    border:
        1px solid rgba(20, 20, 20, 0.06);

    border-radius:
        clamp(14px, 1vw, 20px);

    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 14px 35px rgba(36, 32, 23, 0.055);
}

.stl-material-recommendation__process h3 {
    margin: 0;

    color: #242424;

    font-size:
        clamp(12px, 0.84vw, 17px);

    line-height: 1.25;
    font-weight: 710;
}

.stl-material-recommendation__process-list {
    margin-top:
        clamp(12px, 0.9vw, 18px);

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap:
        clamp(8px, 0.65vw, 13px);
}

.stl-material-recommendation-process-item {
    min-width: 0;

    display: flex;
    align-items: center;

    gap:
        clamp(10px, 0.75vw, 15px);
}

.stl-material-recommendation-process-item > img {
    width:
        clamp(41px, 2.85vw, 57px);

    height:
        clamp(41px, 2.85vw, 57px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-material-recommendation-process-item span {
    color: #5c5c5c;

    font-size:
        clamp(9.5px, 0.64vw, 12px);

    line-height: 1.43;
}

.stl-material-recommendation__process-arrow {
    width:
        clamp(20px, 1.35vw, 27px);

    height:
        clamp(13px, 0.9vw, 18px);

    object-fit: contain;
}


/* =========================================================
   MATERIAL TRUST STRIP
   ========================================================= */

.stl-material-recommendation__trust {
    width: 100%;

    min-height:
        clamp(132px, 10vw, 158px);

    margin-top: 0;

    padding:
        clamp(16px, 1.2vw, 24px)
        clamp(19px, 1.4vw, 28px);

    display: grid;

    grid-template-columns:
        minmax(330px, 1.7fr)
        minmax(480px, 2.25fr)
        minmax(245px, 1.05fr);

    align-items: center;

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(15px, 1.05vw, 21px);

    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 16px 40px rgba(35, 31, 22, 0.055);
}

.stl-material-recommendation__trust-main {
    min-width: 0;

    padding-right:
        clamp(18px, 1.4vw, 28px);

    display: flex;
    align-items: center;

    gap:
        clamp(14px, 1vw, 20px);

    border-right:
        1px solid rgba(20, 20, 20, 0.075);
}

.stl-material-recommendation__trust-main > img {
    width:
        clamp(58px, 4vw, 80px);

    height:
        clamp(58px, 4vw, 80px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-material-recommendation__trust-main strong,
.stl-material-recommendation__trust-main span {
    display: block;
}

.stl-material-recommendation__trust-main strong {
    color: #202020;

    font-size:
        clamp(12px, 0.82vw, 16.5px);

    line-height: 1.27;
    font-weight: 710;
}

.stl-material-recommendation__trust-main span {
    margin-top: 7px;

    color: #686868;

    font-size:
        clamp(10px, 0.68vw, 13px);

    line-height: 1.44;
}

.stl-material-recommendation__trust-items {
    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.stl-material-recommendation-trust-item {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(12px, 0.95vw, 19px);

    display: flex;
    align-items: center;

    gap:
        clamp(9px, 0.7vw, 14px);
}

.stl-material-recommendation-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 3%;
    right: 0;

    width: 1px;
    height: 94%;

    background:
        rgba(20, 20, 20, 0.075);
}

.stl-material-recommendation-trust-item > img {
    width:
        clamp(39px, 2.65vw, 53px);

    height:
        clamp(39px, 2.65vw, 53px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-material-recommendation-trust-item strong,
.stl-material-recommendation-trust-item span {
    display: block;
}

.stl-material-recommendation-trust-item strong {
    color: #242424;

    font-size:
        clamp(10px, 0.68vw, 13px);

    line-height: 1.28;
    font-weight: 700;
}

.stl-material-recommendation-trust-item span {
    margin-top: 5px;

    color: #717171;

    font-size:
        clamp(9px, 0.58vw, 11px);

    line-height: 1.38;
}

.stl-material-recommendation__cta {
    min-width: 0;

    padding-left:
        clamp(19px, 1.45vw, 29px);

    border-left:
        1px solid rgba(20, 20, 20, 0.075);

    text-align: center;
}

.stl-material-recommendation__cta > a:first-child {
    width: 100%;

    min-height:
        clamp(48px, 3.2vw, 64px);

    padding:
        0
        clamp(15px, 1.1vw, 22px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(10px, 0.7vw, 14px);

    border-radius:
        clamp(10px, 0.75vw, 15px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffad00
        );

    color: #171717;

    font-size:
        clamp(11.5px, 0.8vw, 15px);

    line-height: 1;
    font-weight: 700;
    white-space: nowrap;

    box-shadow:
        0 13px 28px rgba(238, 171, 0, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stl-material-recommendation__cta > a:first-child:hover,
.stl-material-recommendation__cta > a:first-child:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(238, 171, 0, 0.29);

    outline: none;
}

.stl-material-recommendation__cta > a:first-child img {
    width:
        clamp(20px, 1.3vw, 26px);

    height:
        clamp(20px, 1.3vw, 26px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-material-recommendation__cta small {
    display: block;

    margin-top:
        clamp(7px, 0.52vw, 10px);

    color: #777777;

    font-size:
        clamp(7.5px, 0.5vw, 10px);

    line-height: 1.35;
}

.stl-material-recommendation__materials-link {
    margin-top:
        clamp(9px, 0.68vw, 13px);

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #3d3d3d;

    font-size:
        clamp(11px, 0.72vw, 13.5px);

    line-height: 1;
    font-weight: 620;

    transition:
        color var(--transition),
        gap var(--transition);
}

.stl-material-recommendation__materials-link:hover,
.stl-material-recommendation__materials-link:focus-visible {
    gap: 13px;

    color: #c98e00;

    outline: none;
}


/* =========================================================
   MATERIAL RECOMMENDATION — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-material-recommendation__inner {
        height:
            calc(100svh - var(--header-height));

        min-height: 700px;

        padding:
            26px
            32px
            32px;

        row-gap: 24px;
    }

    .stl-material-recommendation__layout {
        grid-template-columns:
            minmax(0, 51.8fr)
            minmax(0, 48.2fr);

        gap: 36px;
    }

    .stl-material-recommendation__header h2 {
        font-size:
            clamp(42px, 3vw, 50px);
    }

    .stl-material-recommendation__header p {
        font-size: 13px;
    }

    .stl-material-recommendation__visual {
        height:
            clamp(390px, 49svh, 430px);

        min-height: 0;
    }

    .stl-material-recommendation__main-image {
        bottom: -1%;
        left: -14%;

        width: 128%;
        height: 96%;
    }

    .stl-material-option {
        min-height: 78px;

        grid-template-columns:
            minmax(130px, 0.9fr)
            minmax(155px, 1.22fr)
            minmax(175px, 1.2fr);
    }

    .stl-material-recommendation__process {
        width: 96%;
    }

    .stl-material-recommendation__trust {
        min-height: 140px;
    }
}


/* =========================================================
   MATERIAL RECOMMENDATION — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {

    .stl-material-recommendation {
        min-height: 0;
    }

    .stl-material-recommendation__inner {
        height: auto;
        min-height: 0;

        padding:
            66px
            30px
            60px;

        row-gap: 30px;
    }

    .stl-material-recommendation__layout {
        height: auto;

        grid-template-columns:
            minmax(0, 47fr)
            minmax(0, 53fr);

        gap: 30px;
    }

    .stl-material-recommendation__header h2 {
        font-size:
            clamp(39px, 4.5vw, 53px);
    }

    .stl-material-recommendation__header p {
        font-size: 14px;
    }

    .stl-material-recommendation__visual {
        min-height: 470px;
    }

    .stl-material-recommendation__visual-intro {
        width: 145px;

        font-size: 10px;
    }

    .stl-material-recommendation__approval {
        right: 50px;
    }

    .stl-material-option {
        min-height: 112px;

        grid-template-columns:
            minmax(120px, 0.9fr)
            minmax(125px, 1.1fr)
            minmax(160px, 1.2fr);
    }

    .stl-material-option__identity {
        gap: 11px;
    }

    .stl-material-option__swatch {
        width: 55px;
        height: 55px;
    }

    .stl-material-option__description {
        font-size: 10px;
    }

    .stl-material-option__properties small {
        font-size: 7.5px;
    }

    .stl-material-recommendation__process {
        width: 100%;
    }

    .stl-material-recommendation-process-item {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;
    }

    .stl-material-recommendation__trust {
        grid-template-columns:
            1fr
            1fr;

        gap: 24px;

        padding: 24px;
    }

    .stl-material-recommendation__trust-main {
        padding-right: 24px;
    }

    .stl-material-recommendation__trust-items {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .stl-material-recommendation__cta {
        grid-column: 2;
        grid-row: 1;
    }

    .stl-material-recommendation__trust-main strong {
        font-size: 16px;
    }

    .stl-material-recommendation__trust-main span {
        font-size: 12px;
    }

    .stl-material-recommendation-trust-item strong {
        font-size: 13px;
    }

    .stl-material-recommendation-trust-item span {
        font-size: 11px;
    }
}


/* =========================================================
   MATERIAL RECOMMENDATION — TABLET 900
   ========================================================= */

@media (max-width: 900px) {

    .stl-material-recommendation__inner {
        padding:
            70px
            24px
            54px;
    }

    .stl-material-recommendation__layout {
        height: auto;

        grid-template-areas:
            "content"
            "visual";

        grid-template-columns: 1fr;

        gap: 46px;
    }

    .stl-material-recommendation__header {
        max-width: 820px;
    }

    .stl-material-recommendation__header h2 {
        font-size:
            clamp(45px, 7vw, 59px);
    }

    .stl-material-recommendation__header p {
        max-width: 720px;

        font-size: 17px;
    }

    .stl-material-recommendation__materials-shell {
        max-width: 820px;
    }

    .stl-material-option {
        min-height: 116px;

        grid-template-columns:
            minmax(180px, 0.9fr)
            minmax(210px, 1.2fr)
            minmax(220px, 1.1fr);
    }

    .stl-material-option__description {
        font-size: 12px;
    }

    .stl-material-option__properties small {
        font-size: 9px;
    }

    .stl-material-recommendation__visual-column {
        width: 100%;
    }

    .stl-material-recommendation__visual {
        min-height:
            clamp(520px, 69vw, 650px);
    }

    .stl-material-recommendation__visual-intro {
        width: 190px;

        font-size: 13px;
    }

    .stl-material-recommendation__approval {
        right: 15%;

        width: 100px;
    }

    .stl-material-recommendation__process {
        width: 100%;
    }

    .stl-material-recommendation-process-item {
        flex-direction: row;
        align-items: center;
    }

    .stl-material-recommendation__trust {
        grid-template-columns: 1fr;
    }

    .stl-material-recommendation__trust-main {
        padding:
            0
            0
            22px;

        border-right: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-material-recommendation__trust-items {
        grid-column: 1;
        grid-row: auto;
    }

    .stl-material-recommendation__cta {
        grid-column: 1;
        grid-row: auto;

        padding:
            22px
            0
            0;

        border-top:
            1px solid rgba(20, 20, 20, 0.075);

        border-left: 0;
    }
}


/* =========================================================
   MATERIAL RECOMMENDATION — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {

    .stl-material-recommendation__glow {
        display: none;
    }

    .stl-material-recommendation__inner {
        padding:
            60px
            18px
            48px;
    }

    .stl-material-recommendation__kicker {
        margin-bottom: 20px;

        font-size: 9px;
    }

    .stl-material-recommendation__header h2 {
        font-size:
            clamp(38px, 10.2vw, 46px);

        line-height: 1.045;
    }

    .stl-material-recommendation__header h2 br {
        display: none;
    }

    .stl-material-recommendation__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .stl-material-recommendation__materials-shell {
        width:
            calc(100% + 18px);

        margin-top: 31px;
    }

    .stl-material-recommendation__materials {
        width: 100%;

        padding:
            4px
            54px
            25px
            0;

        flex-direction: row;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-material-recommendation__materials::-webkit-scrollbar {
        display: none;
    }

    .stl-material-option {
        width:
            calc(100vw - 70px);

        min-height: 355px;

        padding:
            22px
            20px;

        flex:
            0
            0
            calc(100vw - 70px);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-material-option:hover {
        transform: none;
    }

    .stl-material-option__selected {
        top: 24px;
        right: 20px;
        left: auto;

        transform: none;
    }

    .stl-material-option__identity {
        padding-right: 0;

        gap: 16px;
    }

    .stl-material-option__identity::after,
    .stl-material-option__description::after {
        display: none;
    }

    .stl-material-option__swatch {
        width: 75px;
        height: 75px;
    }

    .stl-material-option__number {
        font-size: 14px;
    }

    .stl-material-option h3 {
        font-size: 30px;
    }

    .stl-material-option__description {
        margin-top: 24px;
        padding:
            0
            0
            21px;

        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);

        font-size: 14px;
        line-height: 1.48;
    }

    .stl-material-option__properties {
        margin-top: auto;
        padding-top: 25px;

        gap: 12px;
    }

    .stl-material-option__properties img {
        width: 34px;
        height: 34px;
    }

    .stl-material-option__properties small {
        font-size: 10px;
    }

    .stl-material-recommendation__slider-controls {
        padding-right: 54px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 14px;
    }

    .stl-material-recommendation__slider-controls > span {
        max-width: 120px;

        color: #696969;

        font-size: 11px;
        line-height: 1.2;
        font-weight: 600;
    }

    .stl-material-recommendation__slider-navigation {
        display: flex;
        align-items: center;

        gap: 9px;
    }

    .stl-material-recommendation__slider-navigation > button {
        width: 34px;
        height: 34px;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border:
            1px solid rgba(20, 20, 20, 0.08);

        border-radius: 50%;

        background: #ffffff;
        color: #202020;

        font-size: 18px;
        line-height: 1;

        cursor: pointer;
    }

    .stl-material-recommendation__slider-navigation > button:disabled {
        opacity: 0.35;

        cursor: default;
    }

    .stl-material-recommendation__slider-dots {
        display: flex;
        align-items: center;

        gap: 5px;
    }

    .stl-material-recommendation__slider-dots button {
        width: 7px;
        height: 7px;
        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #ded8ca;

        cursor: pointer;

        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background 0.25s ease;
    }

    .stl-material-recommendation__slider-dots button.is-active {
        width: 21px;

        border-radius: 999px;

        background: #f1ae00;
    }

    .stl-material-recommendation__visual {
        min-height: 420px;
    }

    .stl-material-recommendation__visual-intro {
        top: 0;

        width: 165px;

        font-size: 11px;
    }

    .stl-material-recommendation__visual-line {
        top: 100px;
    }

    .stl-material-recommendation__decor-grid {
        top: 25px;
        left: 48%;

        width: 55px;
        height: 55px;
    }

    .stl-material-recommendation__decor-orbits {
        top: 32px;

        width: 94%;
        height: 48%;
    }

    .stl-material-recommendation__approval {
        top: 0;
        right: 4px;

        width: 82px;
    }

    .stl-material-recommendation__main-image {
        right: -8%;
        bottom: 0;

        width: 116%;
        height: 83%;
    }

    .stl-material-recommendation__process {
        margin-top: 18px;

        padding:
            20px
            18px;
    }

    .stl-material-recommendation__process h3 {
        font-size: 16px;
    }

    .stl-material-recommendation__process-list {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .stl-material-recommendation-process-item {
        min-height: 72px;

        flex-direction: row;
        align-items: center;
    }

    .stl-material-recommendation-process-item > img {
        width: 52px;
        height: 52px;
    }

    .stl-material-recommendation-process-item span {
        font-size: 12px;
    }

    .stl-material-recommendation__process-arrow {
        margin-left: 17px;

        transform: rotate(90deg);
    }

    .stl-material-recommendation__trust {
        margin-top: 0;

        padding:
            22px
            18px;
    }

    .stl-material-recommendation__trust-main {
        align-items: flex-start;
    }

    .stl-material-recommendation__trust-main > img {
        width: 60px;
        height: 60px;
    }

    .stl-material-recommendation__trust-main strong {
        font-size: 16px;
    }

    .stl-material-recommendation__trust-main span {
        font-size: 12px;
    }

    .stl-material-recommendation__trust-items {
        display: flex;
        flex-direction: column;
    }

    .stl-material-recommendation-trust-item {
        min-height: 91px;

        padding:
            15px
            0;
    }

    .stl-material-recommendation-trust-item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .stl-material-recommendation-trust-item > img {
        width: 48px;
        height: 48px;
    }

    .stl-material-recommendation-trust-item strong {
        font-size: 14px;
    }

    .stl-material-recommendation-trust-item span {
        font-size: 12px;
    }

    .stl-material-recommendation__cta > a:first-child {
        min-height: 59px;

        font-size: 13px;
    }

    .stl-material-recommendation__cta small {
        font-size: 10px;
    }

    .stl-material-recommendation__materials-link {
        margin-top: 17px;

        font-size: 12px;
    }
}


/* =========================================================
   MATERIAL RECOMMENDATION — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {

    .stl-material-recommendation__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .stl-material-recommendation__materials-shell {
        width:
            calc(100% + 16px);
    }

    .stl-material-recommendation__materials {
        padding-right: 48px;
    }

    .stl-material-option {
        width:
            calc(100vw - 64px);

        flex-basis:
            calc(100vw - 64px);
    }

    .stl-material-recommendation__slider-controls {
        padding-right: 48px;
    }

    .stl-material-recommendation__slider-controls > span {
        max-width: 100px;
    }

    .stl-material-recommendation__slider-navigation {
        gap: 7px;
    }

    .stl-material-recommendation__slider-navigation > button {
        width: 32px;
        height: 32px;
    }

    .stl-material-recommendation__visual {
        min-height: 395px;
    }

    .stl-material-recommendation__approval {
        width: 76px;
    }
}


/* =========================================================
   MATERIAL RECOMMENDATION — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stl-material-option,
    .stl-material-recommendation__cta > a:first-child,
    .stl-material-recommendation__materials-link,
    .stl-material-recommendation__slider-dots button {
        transition: none !important;
    }

    .stl-material-option:hover,
    .stl-material-recommendation__cta > a:first-child:hover {
        transform: none;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stl-page-hero.stl-page-hero--js
    [data-stl-hero-reveal],
    .stl-service-fit.stl-service-fit--js
    [data-stl-service-fit-reveal],
    .site-header__dropdown-toggle,
    .site-header__dropdown-menu,
    .site-header__dropdown-chevron,
    .site-header__whatsapp,
    .stl-page-hero__button,
    .stl-service-fit__button,
    .stl-service-fit-card,
    .stl-service-fit-card__visual img,
    .stl-service-fit__slider-tools b {
        animation: none !important;
        transition: none !important;
    }

    .stl-page-hero.stl-page-hero--js
    [data-stl-hero-reveal],
    .stl-service-fit.stl-service-fit--js
    [data-stl-service-fit-reveal] {
        opacity: 1;

        transform: none;
    }
}

/* =========================================================
   SCREEN 6 — FILE CHECK
   ========================================================= */

.stl-file-check {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 17% 43%,
            rgba(255, 198, 45, 0.055),
            transparent 38%
        ),
        radial-gradient(
            circle at 86% 18%,
            rgba(255, 221, 143, 0.075),
            transparent 39%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 57%,
            #ffffff 100%
        );
}

.stl-file-check__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}

.stl-file-check__glow {
    position: absolute;

    border-radius: 50%;
}

.stl-file-check__glow--left {
    top: 14%;
    left: -22%;

    width:
        clamp(560px, 42vw, 960px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 196, 35, 0.065),
            transparent 69%
        );
}

.stl-file-check__glow--right {
    top: -25%;
    right: -16%;

    width:
        clamp(650px, 49vw, 1120px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 221, 137, 0.09),
            transparent 70%
        );
}


/* =========================================================
   FILE CHECK INNER
   ========================================================= */

.stl-file-check__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(34px, 2.55vw, 52px)
        var(--page-space)
        clamp(28px, 2.2vw, 44px);

    display: flex;
    flex-direction: column;

    gap:
        clamp(18px, 1.4vw, 28px);
}

.stl-file-check__layout {
    width: 100%;

    flex:
        1
        1
        auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.03fr)
        minmax(0, 0.97fr);

    align-items: stretch;

    gap:
        clamp(28px, 2.35vw, 47px);
}


/* =========================================================
   LEFT INSPECTION COMPOSITION
   ========================================================= */

.stl-file-check__inspection {
    min-width: 0;
    min-height:
        clamp(530px, 48vw, 710px);

    display: grid;

    grid-template-columns:
        minmax(205px, 0.74fr)
        minmax(0, 1.26fr);

    gap:
        clamp(8px, 0.72vw, 14px);
}

.stl-file-check__issues-shell {
    min-width: 0;
}

.stl-file-check__issues {
    width: 100%;
    height: 100%;

    display: grid;

    grid-template-rows:
        repeat(4, minmax(0, 1fr));

    gap:
        clamp(9px, 0.68vw, 14px);
}

.stl-file-check-issue {
    position: relative;

    min-width: 0;
    min-height: 0;

    padding:
        clamp(9px, 0.7vw, 14px);

    display: grid;

    grid-template-columns:
        minmax(72px, 0.84fr)
        minmax(0, 1.16fr);

    align-items: center;

    gap:
        clamp(9px, 0.7vw, 14px);

    overflow: hidden;

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(12px, 0.9vw, 18px);

    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 12px 31px rgba(35, 31, 23, 0.055);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stl-file-check-issue:hover {
    transform: translateY(-3px);

    border-color:
        rgba(239, 170, 0, 0.2);

    box-shadow:
        0 18px 39px rgba(35, 31, 23, 0.085);
}

.stl-file-check-issue__image {
    width: 100%;
    height: 100%;

    min-height:
        clamp(76px, 6.3vw, 124px);

    border-radius:
        clamp(8px, 0.65vw, 13px);

    object-fit: cover;
    object-position: center;

    background: #f4f1eb;
}

/*
 * Изображения 03 и 04 имеют широкую композицию.
 * Они должны помещаться целиком, а не обрезаться.
 */
.stl-file-check-issue:nth-child(3)
.stl-file-check-issue__image,
.stl-file-check-issue:nth-child(4)
.stl-file-check-issue__image {
    object-fit: contain;
    object-position: center;
}

.stl-file-check-issue__copy {
    min-width: 0;
}

.stl-file-check-issue__copy > span {
    display: block;

    color: #efa900;

    font-size:
        clamp(14px, 1vw, 20px);

    line-height: 1;
    font-weight: 750;
}

.stl-file-check-issue h3 {
    margin:
        clamp(4px, 0.34vw, 7px)
        0
        0;

    color: #222222;

    font-size:
        clamp(11.5px, 0.8vw, 15px);

    line-height: 1.23;
    font-weight: 710;
    letter-spacing: -0.018em;
}

.stl-file-check-issue p {
    margin:
        clamp(5px, 0.4vw, 8px)
        0
        0;

    color: #666666;

    font-size:
        clamp(10px, 0.66vw, 12.5px);

    line-height: 1.42;
}


/* =========================================================
   MAIN PART
   ========================================================= */

.stl-file-check__part-stage {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height: 0;

    overflow: hidden;
}

.stl-file-check__part-glow {
    position: absolute;
    top: 13%;
    left: 5%;
    z-index: -1;

    width: 92%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 197, 39, 0.1),
            transparent 69%
        );
}

.stl-file-check__connectors {
    position: absolute;
    inset: 2% auto 5% -7%;
    z-index: 1;

    width: 106%;
    height: 93%;

    object-fit: contain;
    object-position: left center;

    pointer-events: none;
}

.stl-file-check__main-part {
    position: absolute;
    top: 47%;
    left: 50%;
    z-index: 2;

    width: 99%;
    max-width: none;
    height: 82%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 22px 21px rgba(37, 31, 22, 0.12)
        );

    transform:
        translate(-50%, -50%);
}

.stl-file-check__status {
    position: absolute;
    right: 1%;
    bottom: 1%;
    z-index: 5;

    width:
        min(63%, 270px);

    min-height:
        clamp(82px, 6.6vw, 132px);

    padding:
        clamp(12px, 0.9vw, 18px);

    display: flex;
    align-items: flex-start;

    gap:
        clamp(9px, 0.7vw, 14px);

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(12px, 0.85vw, 17px);

    background:
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 14px 34px rgba(37, 32, 23, 0.07);
}

.stl-file-check__status > img {
    width:
        clamp(20px, 1.4vw, 28px);

    height:
        clamp(20px, 1.4vw, 28px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-file-check__status strong,
.stl-file-check__status span,
.stl-file-check__status p {
    display: block;
}

.stl-file-check__status strong {
    color: #282828;

    font-size:
        clamp(10.5px, 0.72vw, 13.5px);

    line-height: 1.25;
    font-weight: 710;
}

.stl-file-check__status span {
    margin-top:
        clamp(5px, 0.38vw, 8px);

    color: #64a64b;

    font-size:
        clamp(9.5px, 0.64vw, 12px);

    line-height: 1.25;
    font-weight: 650;
}

.stl-file-check__status p {
    margin:
        clamp(6px, 0.45vw, 9px)
        0
        0;

    color: #6c6c6c;

    font-size:
        clamp(8.8px, 0.6vw, 11.2px);

    line-height: 1.4;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.stl-file-check__content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.stl-file-check__header {
    width: min(100%, 720px);
}

.stl-file-check__kicker {
    width: fit-content;

    min-height:
        clamp(32px, 2.2vw, 44px);

    margin-bottom:
        clamp(15px, 1.15vw, 23px);

    padding:
        6px
        clamp(13px, 0.95vw, 19px);

    display: inline-flex;
    align-items: center;

    gap:
        clamp(8px, 0.55vw, 11px);

    border:
        1px solid rgba(239, 170, 0, 0.15);

    border-radius: 999px;

    background:
        rgba(255, 252, 244, 0.98);

    color: #e89f00;

    font-size:
        clamp(8.5px, 0.62vw, 12px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.stl-file-check__kicker img {
    width:
        clamp(13px, 0.9vw, 18px);

    height:
        clamp(13px, 0.9vw, 18px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-file-check__header h2 {
    margin: 0;

    color: #111214;

    font-size:
        clamp(39px, 3.35vw, 68px);

    line-height: 1.01;
    font-weight: 655;
    letter-spacing: -0.052em;
}

.stl-file-check__header h2 span {
    color: #efa900;
}

.stl-file-check__header p {
    width: min(100%, 690px);

    margin:
        clamp(15px, 1.2vw, 24px)
        0
        0;

    color: #5e5e5e;

    font-size:
        clamp(14px, 0.92vw, 17.5px);

    line-height: 1.5;
}


/* =========================================================
   PROCESS CARDS
   ========================================================= */

.stl-file-check__process-shell {
    width: 100%;

    margin-top:
        clamp(23px, 1.75vw, 35px);
}

.stl-file-check__process {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap:
        clamp(7px, 0.6vw, 12px);
}

.stl-file-check-process-card {
    position: relative;

    min-width: 0;
    min-height:
        clamp(190px, 15.3vw, 305px);

    padding:
        clamp(14px, 1.1vw, 22px);

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(239, 170, 0, 0.11);

    border-radius:
        clamp(14px, 1vw, 20px);

    background:
        radial-gradient(
            circle at 71% 41%,
            rgba(255, 215, 110, 0.075),
            transparent 52%
        ),
        rgba(255, 255, 255, 0.98);

    box-shadow:
        0 14px 34px rgba(35, 31, 23, 0.055);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stl-file-check-process-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(239, 170, 0, 0.23);

    box-shadow:
        0 21px 43px rgba(35, 31, 23, 0.085);
}

.stl-file-check-process-card__number {
    color: #efa900;

    font-size:
        clamp(14px, 0.98vw, 19px);

    line-height: 1;
    font-weight: 740;
}

.stl-file-check-process-card__number::after {
    content: "";

    display: block;

    width:
        clamp(19px, 1.25vw, 25px);

    height: 2px;

    margin-top:
        clamp(7px, 0.48vw, 10px);

    border-radius: 999px;

    background: #efa900;
}

.stl-file-check-process-card__visual {
    width: 100%;
    height:
        clamp(70px, 5.8vw, 116px);

    margin-top:
        clamp(9px, 0.7vw, 14px);
}

.stl-file-check-process-card__visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-file-check-process-card:hover
.stl-file-check-process-card__visual img {
    transform:
        translateY(-3px)
        scale(1.018);
}

.stl-file-check-process-card h3 {
    margin:
        clamp(10px, 0.75vw, 15px)
        0
        0;

    color: #202020;

    font-size:
        clamp(13px, 0.88vw, 16.5px);

    line-height: 1.22;
    font-weight: 710;
}

.stl-file-check-process-card p {
    margin:
        clamp(7px, 0.52vw, 10px)
        0
        0;

    color: #676767;

    font-size:
        clamp(10px, 0.68vw, 13px);

    line-height: 1.45;
}

.stl-file-check__process-arrow {
    width:
        clamp(19px, 1.35vw, 27px);

    height:
        clamp(15px, 1.05vw, 21px);

    object-fit: contain;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.stl-file-check__benefits {
    width: 100%;

    min-height:
        clamp(86px, 6.8vw, 136px);

    margin-top:
        clamp(16px, 1.2vw, 24px);

    padding:
        clamp(13px, 0.95vw, 19px)
        clamp(14px, 1.05vw, 21px);

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(13px, 0.95vw, 19px);

    background:
        rgba(255, 255, 255, 0.98);

    box-shadow:
        0 14px 34px rgba(35, 31, 23, 0.05);
}

.stl-file-check-benefit {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(10px, 0.78vw, 16px);

    display: flex;
    align-items: center;

    gap:
        clamp(9px, 0.7vw, 14px);
}

.stl-file-check-benefit:first-child {
    padding-left: 0;
}

.stl-file-check-benefit:last-child {
    padding-right: 0;
}

.stl-file-check-benefit:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 5%;
    right: 0;

    width: 1px;
    height: 90%;

    background:
        rgba(20, 20, 20, 0.075);
}

.stl-file-check-benefit > img {
    width:
        clamp(37px, 2.55vw, 51px);

    height:
        clamp(37px, 2.55vw, 51px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-file-check-benefit strong,
.stl-file-check-benefit span {
    display: block;
}

.stl-file-check-benefit strong {
    color: #252525;

    font-size:
        clamp(10px, 0.68vw, 13px);

    line-height: 1.26;
    font-weight: 700;
}

.stl-file-check-benefit span {
    margin-top: 5px;

    color: #707070;

    font-size:
        clamp(9px, 0.6vw, 11px);

    line-height: 1.38;
}


/* =========================================================
   SUMMARY STRIP
   ========================================================= */

.stl-file-check__summary {
    width: 100%;

    min-height:
        clamp(130px, 10vw, 200px);

    padding:
        clamp(18px, 1.3vw, 26px);

    display: grid;

    grid-template-columns:
        minmax(330px, 1.38fr)
        minmax(510px, 1.82fr)
        minmax(235px, 0.8fr);

    align-items: center;

    border:
        1px solid rgba(239, 170, 0, 0.12);

    border-radius:
        clamp(15px, 1.05vw, 21px);

    background:
        rgba(255, 254, 250, 0.985);

    box-shadow:
        0 16px 40px rgba(35, 31, 23, 0.055);
}

.stl-file-check__summary-intro {
    min-width: 0;

    padding-right:
        clamp(18px, 1.4vw, 28px);

    display: flex;
    align-items: center;

    gap:
        clamp(13px, 1vw, 20px);

    border-right:
        1px solid rgba(20, 20, 20, 0.075);
}

.stl-file-check__summary-intro > img {
    width:
        clamp(66px, 4.6vw, 92px);

    height:
        clamp(66px, 4.6vw, 92px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-file-check__summary-intro strong {
    display: block;

    color: #212121;

    font-size:
        clamp(11px, 0.78vw, 15.5px);

    line-height: 1.27;
    font-weight: 710;
}

.stl-file-check__summary-intro p {
    margin:
        clamp(8px, 0.58vw, 12px)
        0
        0;

    color: #626262;

    font-size:
        clamp(9.5px, 0.62vw, 12px);

    line-height: 1.45;
}

.stl-file-check__summary-flow {
    min-width: 0;

    padding-inline:
        clamp(16px, 1.25vw, 25px);

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap:
        clamp(6px, 0.5vw, 10px);
}

.stl-file-check-summary-step {
    min-width: 0;

    text-align: center;
}

.stl-file-check-summary-step strong,
.stl-file-check-summary-step span {
    display: block;
}

.stl-file-check-summary-step strong {
    color: #292929;

    font-size:
        clamp(10px, 0.68vw, 12.5px);

    line-height: 1.25;
    font-weight: 700;
}

.stl-file-check-summary-step span {
    min-height:
        clamp(25px, 1.8vw, 36px);

    margin-top: 5px;

    color: #707070;

    font-size:
        clamp(8.5px, 0.56vw, 10.5px);

    line-height: 1.35;
}

.stl-file-check-summary-step > img {
    width: 100%;
    height:
        clamp(58px, 4.7vw, 94px);

    margin-top:
        clamp(5px, 0.4vw, 8px);

    object-fit: contain;
    object-position: center;
}

.stl-file-check__summary-arrow {
    width:
        clamp(18px, 1.2vw, 24px);

    height:
        clamp(14px, 0.95vw, 19px);

    object-fit: contain;
}

.stl-file-check__summary-cta {
    min-width: 0;

    padding-left:
        clamp(18px, 1.4vw, 28px);

    border-left:
        1px solid rgba(20, 20, 20, 0.075);

    text-align: center;
}

.stl-file-check__summary-cta > a:first-child {
    width: 100%;

    min-height:
        clamp(49px, 3.45vw, 69px);

    padding:
        0
        clamp(15px, 1.15vw, 23px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(10px, 0.75vw, 15px);

    border-radius:
        clamp(10px, 0.76vw, 15px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffad00
        );

    color: #171717;

    font-size:
        clamp(11px, 0.76vw, 15px);

    line-height: 1;
    font-weight: 710;
    white-space: nowrap;

    box-shadow:
        0 13px 28px rgba(238, 171, 0, 0.21);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stl-file-check__summary-cta > a:first-child:hover,
.stl-file-check__summary-cta > a:first-child:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 19px 36px rgba(238, 171, 0, 0.3);

    outline: none;
}

.stl-file-check__summary-cta > a:first-child img {
    width:
        clamp(20px, 1.35vw, 26px);

    height:
        clamp(20px, 1.35vw, 26px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-file-check__summary-cta small {
    display: block;

    margin-top:
        clamp(7px, 0.52vw, 10px);

    color: #777777;

    font-size:
        clamp(9px, 0.6vw, 11px);

    line-height: 1.35;
}

.stl-file-check__more-link {
    width: fit-content;

    margin:
        clamp(9px, 0.7vw, 14px)
        auto
        0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(7px, 0.5vw, 10px);

    color: #535353;

    font-size:
        clamp(10px, 0.66vw, 12px);

    line-height: 1;
    font-weight: 610;

    border-bottom:
        1px solid rgba(83, 83, 83, 0.35);

    transition:
        color var(--transition),
        border-color var(--transition);
}

.stl-file-check__more-link:hover,
.stl-file-check__more-link:focus-visible {
    color: #d99500;

    border-color: #d99500;

    outline: none;
}

.stl-file-check__more-link img {
    width:
        clamp(15px, 1vw, 20px);

    height:
        clamp(15px, 1vw, 20px);

    object-fit: contain;
}


/* =========================================================
   SLIDER CONTROLS
   ========================================================= */

.stl-file-check__mobile-controls {
    display: none;
}


/* =========================================================
   FILE CHECK — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-file-check__inner {
        padding:
            34px
            42px
            36px;
    }

    .stl-file-check__layout {
        gap: 31px;
    }

    .stl-file-check__inspection {
        min-height: 560px;

        grid-template-columns:
            minmax(205px, 0.76fr)
            minmax(0, 1.24fr);
    }

    .stl-file-check__header h2 {
        font-size:
            clamp(40px, 3.25vw, 52px);
    }

    .stl-file-check__header p {
        font-size: 14px;
    }

    .stl-file-check-process-card {
        min-height: 205px;
    }

    .stl-file-check__summary {
        grid-template-columns:
            minmax(315px, 1.32fr)
            minmax(470px, 1.8fr)
            minmax(220px, 0.82fr);
    }
}


/* =========================================================
   FILE CHECK — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {

    .stl-file-check {
        min-height: 0;
    }

    .stl-file-check__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;

        gap: 38px;
    }

    .stl-file-check__layout {
        grid-template-columns: 1fr;

        gap: 54px;
    }

    .stl-file-check__inspection {
        min-height: 650px;

        grid-template-columns:
            minmax(250px, 0.72fr)
            minmax(0, 1.28fr);
    }

    .stl-file-check-issue h3 {
        font-size: 14px;
    }

    .stl-file-check-issue p {
        font-size: 11px;
    }

    .stl-file-check__content {
        width: 100%;
    }

    .stl-file-check__header {
        max-width: 860px;
    }

    .stl-file-check__header h2 {
        font-size:
            clamp(49px, 5.9vw, 68px);
    }

    .stl-file-check__header p {
        max-width: 790px;

        font-size: 17px;
    }

    .stl-file-check-process-card {
        min-height: 275px;
    }

    .stl-file-check-process-card h3 {
        font-size: 16px;
    }

    .stl-file-check-process-card p {
        font-size: 12px;
    }

    .stl-file-check-benefit strong {
        font-size: 12px;
    }

    .stl-file-check-benefit span {
        font-size: 10px;
    }

    .stl-file-check__summary {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(250px, 0.52fr);

        gap:
            25px
            0;
    }

    .stl-file-check__summary-intro {
        grid-column: 1;
        grid-row: 1;

        padding-right: 25px;
    }

    .stl-file-check__summary-flow {
        grid-column: 1 / -1;
        grid-row: 2;

        padding:
            24px
            0
            0;

        border-top:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-file-check__summary-cta {
        grid-column: 2;
        grid-row: 1;
    }

    .stl-file-check__summary-intro strong {
        font-size: 15px;
    }

    .stl-file-check__summary-intro p {
        font-size: 11px;
    }

    .stl-file-check-summary-step strong {
        font-size: 12px;
    }

    .stl-file-check-summary-step span {
        font-size: 10px;
    }

    .stl-file-check-summary-step > img {
        height: 100px;
    }
}


/* =========================================================
   FILE CHECK — TABLET 900
   ========================================================= */

@media (max-width: 900px) {

    .stl-file-check__inner {
        padding:
            70px
            24px
            54px;
    }

    .stl-file-check__inspection {
        min-height: 0;

        display: flex;
        flex-direction: column-reverse;

        gap: 28px;
    }

    .stl-file-check__part-stage {
        width: 100%;
        height:
            clamp(480px, 66vw, 610px);
    }

    .stl-file-check__main-part {
        top: 44%;

        width: 96%;
        height: 88%;
    }

    .stl-file-check__connectors {
        display: none;
    }

    .stl-file-check__status {
        right: 5%;
        bottom: 3%;

        width: min(46%, 290px);
    }

    .stl-file-check__issues {
        height: auto;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            repeat(2, minmax(155px, auto));
    }

    .stl-file-check-issue {
        grid-template-columns:
            minmax(105px, 0.78fr)
            minmax(0, 1.22fr);
    }

    .stl-file-check__header h2 {
        font-size:
            clamp(45px, 7vw, 59px);
    }

    .stl-file-check__process {
        gap: 9px;
    }

    .stl-file-check-process-card {
        min-height: 260px;

        padding: 18px;
    }

    .stl-file-check__benefits {
        grid-template-columns: 1fr;

        padding:
            8px
            20px;
    }

    .stl-file-check-benefit,
    .stl-file-check-benefit:first-child,
    .stl-file-check-benefit:last-child {
        min-height: 88px;

        padding:
            15px
            0;
    }

    .stl-file-check-benefit:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .stl-file-check-benefit strong {
        font-size: 14px;
    }

    .stl-file-check-benefit span {
        font-size: 12px;
    }

    .stl-file-check__summary {
        grid-template-columns: 1fr;
    }

    .stl-file-check__summary-intro,
    .stl-file-check__summary-flow,
    .stl-file-check__summary-cta {
        grid-column: 1;
        grid-row: auto;
    }

    .stl-file-check__summary-intro {
        padding:
            0
            0
            24px;

        border-right: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-file-check__summary-flow {
        padding:
            24px
            0;

        border-top: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-file-check__summary-cta {
        padding:
            24px
            0
            0;

        border-left: 0;
    }
}


/* =========================================================
   FILE CHECK — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {

    .stl-file-check__glow {
        display: none;
    }

    .stl-file-check__inner {
        padding:
            60px
            18px
            48px;

        gap: 34px;
    }

    .stl-file-check__layout {
        gap: 43px;
    }

    .stl-file-check__part-stage {
        height: auto;

        aspect-ratio: 1 / 0.95;
    }

    .stl-file-check__main-part {
        top: 44%;
        left: 50%;

        width: 105%;
        height: 89%;
    }

    .stl-file-check__status {
        right: 0;
        bottom: 0;

        width: min(66%, 245px);

        padding: 13px;
    }

    .stl-file-check__issues-shell,
    .stl-file-check__process-shell {
        width:
            calc(100% + 18px);
    }

    .stl-file-check__issues {
        width: 100%;
        height: auto;

        padding:
            4px
            54px
            24px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-file-check__issues::-webkit-scrollbar,
    .stl-file-check__process::-webkit-scrollbar {
        display: none;
    }

    .stl-file-check-issue {
        width:
            calc(100vw - 70px);

        min-height: 190px;

        padding: 16px;

        flex:
            0
            0
            calc(100vw - 70px);

        grid-template-columns:
            minmax(115px, 0.85fr)
            minmax(0, 1.15fr);

        border-radius: 18px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-file-check-issue:hover {
        transform: none;
    }

    .stl-file-check-issue__image {
        min-height: 155px;
    }

    .stl-file-check-issue__copy > span {
        font-size: 18px;
    }

    .stl-file-check-issue h3 {
        font-size: 14px;
    }

    .stl-file-check-issue p {
        font-size: 11px;
    }

    .stl-file-check__header h2 {
        font-size:
            clamp(38px, 10.2vw, 46px);

        line-height: 1.04;
    }

    .stl-file-check__header h2 br {
        display: none;
    }

    .stl-file-check__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .stl-file-check__process {
        width: 100%;

        padding:
            4px
            54px
            24px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-file-check-process-card {
        width:
            calc(100vw - 70px);

        min-height: 350px;

        padding: 22px;

        flex:
            0
            0
            calc(100vw - 70px);

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-file-check-process-card:hover {
        transform: none;
    }

    .stl-file-check-process-card__number {
        font-size: 19px;
    }

    .stl-file-check-process-card__visual {
        height: 145px;

        margin-top: 20px;
    }

    .stl-file-check-process-card h3 {
        font-size: 20px;
    }

    .stl-file-check-process-card p {
        font-size: 14px;
    }

    .stl-file-check__process-arrow {
        display: none;
    }

    .stl-file-check__mobile-controls {
        padding-right: 54px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 14px;
    }

    .stl-file-check__mobile-controls > span {
        max-width: 120px;

        color: #696969;

        font-size: 11px;
        line-height: 1.25;
        font-weight: 600;
    }

    .stl-file-check__slider-navigation {
        display: flex;
        align-items: center;

        gap: 8px;
    }

    .stl-file-check__slider-navigation > button {
        width: 34px;
        height: 34px;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border:
            1px solid rgba(20, 20, 20, 0.08);

        border-radius: 50%;

        background: #ffffff;
        color: #202020;

        font-size: 18px;
        line-height: 1;

        cursor: pointer;

        transition:
            opacity 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease;
    }

    .stl-file-check__slider-navigation > button:disabled {
        opacity: 0.35;

        cursor: default;
    }

    .stl-file-check__slider-navigation > button:not(:disabled):hover,
    .stl-file-check__slider-navigation > button:not(:disabled):focus-visible {
        border-color:
            rgba(239, 170, 0, 0.45);

        color: #d99600;

        outline: none;
    }

    .stl-file-check__slider-dots {
        display: flex;
        align-items: center;

        gap: 5px;
    }

    .stl-file-check__slider-dots button {
        width: 7px;
        height: 7px;
        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #ded8ca;

        cursor: pointer;

        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background 0.25s ease;
    }

    .stl-file-check__slider-dots button.is-active {
        width: 21px;

        border-radius: 999px;

        background: #f1ae00;
    }

    .stl-file-check__summary {
        padding:
            22px
            18px;
    }

    .stl-file-check__summary-intro {
        align-items: flex-start;
    }

    .stl-file-check__summary-intro > img {
        width: 66px;
        height: 66px;
    }

    .stl-file-check__summary-intro strong {
        font-size: 16px;
    }

    .stl-file-check__summary-intro p {
        font-size: 12px;
    }

    .stl-file-check__summary-flow {
        grid-template-columns: 1fr;

        gap: 19px;
    }

    .stl-file-check-summary-step {
        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            120px;

        align-items: center;

        gap: 15px;

        text-align: left;
    }

    .stl-file-check-summary-step strong {
        font-size: 14px;
    }

    .stl-file-check-summary-step span {
        min-height: 0;

        font-size: 12px;
    }

    .stl-file-check-summary-step > img {
        height: 100px;

        margin-top: 0;
    }

    .stl-file-check__summary-arrow {
        margin-left: 32px;

        transform: rotate(90deg);
    }

    .stl-file-check__summary-cta > a:first-child {
        min-height: 59px;

        font-size: 14px;
    }

    .stl-file-check__summary-cta small {
        font-size: 11px;
    }

    .stl-file-check__more-link {
        margin-top: 17px;

        font-size: 12px;
    }
}

@media (min-width: 1181px) {
    .stl-page .site-header__inner {
        padding-inline: clamp(24px, 2.2vw, 42px);

        grid-template-columns:
            minmax(220px, 0.9fr)
            minmax(0, 1.55fr)
            minmax(290px, 1fr);
    }

    .stl-page .site-header__navigation {
        gap: clamp(17px, 1.2vw, 25px);
    }

    .stl-page .site-header__navigation > a,
    .stl-page .site-header__dropdown-toggle {
        font-size: clamp(12.5px, 0.82vw, 15.5px);
    }

    .stl-page .site-header__actions {
        gap: clamp(9px, 0.7vw, 12px);
    }

    .stl-page .site-header__project {
        min-width: clamp(164px, 10.6vw, 214px);
        padding: 0 clamp(14px, 0.95vw, 20px);
        gap: 12px;

        font-size: clamp(13px, 0.8vw, 15.5px);
    }

    .stl-page .site-header__whatsapp {
        min-width: clamp(122px, 8.6vw, 160px);
        padding: 0 clamp(13px, 0.9vw, 18px);
    }
}


/* =========================================================
   FILE CHECK — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {

    .stl-file-check__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .stl-file-check__issues-shell,
    .stl-file-check__process-shell {
        width:
            calc(100% + 16px);
    }

    .stl-file-check__issues,
    .stl-file-check__process {
        padding-right: 48px;
    }

    .stl-file-check-issue,
    .stl-file-check-process-card {
        width:
            calc(100vw - 64px);

        flex-basis:
            calc(100vw - 64px);
    }

    .stl-file-check__mobile-controls {
        padding-right: 48px;
    }

    .stl-file-check__slider-navigation {
        gap: 6px;
    }

    .stl-file-check__slider-navigation > button {
        width: 32px;
        height: 32px;
    }

    .stl-file-check__status {
        width: 72%;
    }

    .stl-file-check-summary-step {
        grid-template-columns:
            minmax(0, 1fr)
            105px;
    }
}


/* =========================================================
   FILE CHECK — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stl-file-check-issue,
    .stl-file-check-process-card,
    .stl-file-check-process-card__visual img,
    .stl-file-check__summary-cta > a:first-child,
    .stl-file-check__more-link,
    .stl-file-check__slider-navigation > button,
    .stl-file-check__slider-dots button {
        transition: none !important;
    }

    .stl-file-check-issue:hover,
    .stl-file-check-process-card:hover,
    .stl-file-check-process-card:hover
    .stl-file-check-process-card__visual img,
    .stl-file-check__summary-cta > a:first-child:hover {
        transform: none;
    }
}

/* =========================================================
   SCREEN 7 — SUITABLE PROJECTS
   ========================================================= */

.stl-suitable-projects {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 12% 34%,
            rgba(255, 204, 66, 0.045),
            transparent 37%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(255, 224, 148, 0.07),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 60%,
            #ffffff 100%
        );
}

.stl-suitable-projects__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}

.stl-suitable-projects__glow {
    position: absolute;

    border-radius: 50%;
}

.stl-suitable-projects__glow--left {
    top: 17%;
    left: -24%;

    width:
        clamp(540px, 41vw, 950px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 199, 43, 0.06),
            transparent 70%
        );
}

.stl-suitable-projects__glow--right {
    top: -25%;
    right: -17%;

    width:
        clamp(650px, 49vw, 1120px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 222, 140, 0.085),
            transparent 70%
        );
}


/* =========================================================
   INNER
   ========================================================= */

.stl-suitable-projects__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(24px, 1.9vw, 38px)
        var(--page-space)
        clamp(18px, 1.5vw, 30px);

    display: flex;
    flex-direction: column;
}


/* =========================================================
   HEADER
   ========================================================= */

.stl-suitable-projects__header {
    width: min(100%, 940px);

    margin-inline: auto;

    text-align: center;
}

/* =========================================================
   SUITABLE PROJECTS — TYPOGRAPHY
   ========================================================= */

.stl-suitable-projects__kicker {
    width: fit-content;

    min-height:
        clamp(34px, 2.2vw, 44px);

    margin:
        0
        auto
        clamp(12px, 0.9vw, 18px);

    padding:
        7px
        clamp(14px, 1vw, 20px);

    display: inline-flex;
    align-items: center;

    gap:
        clamp(8px, 0.55vw, 11px);

    border:
        1px solid rgba(239, 170, 0, 0.14);

    border-radius: 999px;

    background:
        rgba(255, 252, 244, 0.98);

    color: #e89f00;

    font-size:
        clamp(10px, 0.68vw, 13px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.stl-suitable-projects__kicker > span {
    width:
        clamp(9px, 0.65vw, 13px);

    height:
        clamp(9px, 0.65vw, 13px);

    flex: 0 0 auto;

    border-radius: 50%;

    background: #ffad00;

    box-shadow:
        0 0 0 4px rgba(255, 173, 0, 0.08);
}

.stl-suitable-projects__header h2 {
    margin: 0;

    color: #111214;

    font-size:
        clamp(42px, 3.1vw, 62px);

    line-height: 1.03;
    font-weight: 655;
    letter-spacing: -0.049em;
}

.stl-suitable-projects__header h2 span {
    color: #efa900;
}

.stl-suitable-projects__header p {
    width: min(100%, 820px);

    margin:
        clamp(12px, 0.85vw, 17px)
        auto
        0;

    color: #5e5e5e;

    font-size:
        clamp(15px, 0.9vw, 18px);

    line-height: 1.5;
}


/* =========================================================
   PROJECT CARDS GRID
   ========================================================= */

.stl-suitable-projects__cards-shell {
    width: 100%;

    margin-top:
        clamp(18px, 1.35vw, 27px);
}

.stl-suitable-projects__cards {
    width: 100%;

    height:
        clamp(410px, 32vw, 620px);

    display: grid;

    grid-template-columns:
        minmax(0, 1.07fr)
        minmax(0, 0.93fr);

    grid-template-rows:
        minmax(0, 1.03fr)
        minmax(0, 0.97fr);

    gap:
        clamp(10px, 0.75vw, 15px);
}

.stl-suitable-projects-card {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    border:
        1px solid rgba(239, 170, 0, 0.11);

    border-radius:
        clamp(14px, 1vw, 20px);

    background:
        radial-gradient(
            circle at 72% 50%,
            rgba(255, 218, 120, 0.06),
            transparent 52%
        ),
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 14px 35px rgba(35, 31, 23, 0.05);

    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stl-suitable-projects-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(239, 170, 0, 0.24);

    box-shadow:
        0 22px 47px rgba(35, 31, 23, 0.085);
}


/* =========================================================
   COMMON CARD CONTENT
   ========================================================= */

.stl-suitable-projects-card__copy {
    position: relative;
    z-index: 7;

    width: 29%;
    height: 100%;

    padding:
        clamp(15px, 1.15vw, 23px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* =========================================================
   CARD TYPOGRAPHY
   ========================================================= */

.stl-suitable-projects-card__number {
    display: block;

    color: #efa900;

    font-size:
        clamp(18px, 1.15vw, 23px);

    line-height: 1;
    font-weight: 750;
}

.stl-suitable-projects-card__number::after {
    content: "";

    display: block;

    width:
        clamp(20px, 1.35vw, 27px);

    height: 2px;

    margin-top:
        clamp(6px, 0.45vw, 9px);

    border-radius: 999px;

    background: #efa900;
}

.stl-suitable-projects-card h3 {
    margin:
        clamp(9px, 0.68vw, 14px)
        0
        0;

    color: #1c1c1c;

    font-size:
        clamp(20px, 1.3vw, 26px);

    line-height: 1.15;
    font-weight: 710;
    letter-spacing: -0.025em;
}

.stl-suitable-projects-card__copy > p {
    margin:
        clamp(9px, 0.68vw, 14px)
        0
        0;

    color: #646464;

    font-size:
        clamp(13px, 0.8vw, 16px);

    line-height: 1.48;
}

.stl-suitable-projects-card__tags {
    width: 100%;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap:
        clamp(7px, 0.55vw, 11px);
}

.stl-suitable-projects-card__tags > span,
.stl-suitable-projects-card__quantity {
    min-height:
        clamp(34px, 2.15vw, 43px);

    padding:
        5px
        clamp(10px, 0.75vw, 15px);

    display: inline-flex;
    align-items: center;

    gap:
        clamp(7px, 0.48vw, 10px);

    border:
        1px solid rgba(239, 170, 0, 0.11);

    border-radius:
        clamp(9px, 0.65vw, 13px);

    background:
        rgba(255, 252, 246, 0.97);

    color: #946600;

    font-size:
        clamp(10.5px, 0.65vw, 13px);

    line-height: 1;
    font-weight: 720;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    white-space: nowrap;

    box-shadow:
        0 7px 18px rgba(34, 31, 24, 0.035);
}

.stl-suitable-projects-card__tags img,
.stl-suitable-projects-card__quantity img {
    width:
        clamp(16px, 1.05vw, 21px);

    height:
        clamp(16px, 1.05vw, 21px);

    flex: 0 0 auto;

    object-fit: contain;
}


/* =========================================================
   CARD 01 — INDIVIDUAL
   ========================================================= */

.stl-suitable-projects-card--individual
.stl-suitable-projects-card__copy {
    width: 28%;
}

.stl-suitable-projects-card--individual
.stl-suitable-projects-card__tags {
    width:
        clamp(240px, 19vw, 380px);
}

.stl-suitable-projects-card__individual-visual {
    position: absolute;
    top: 1%;
    right: 1%;
    bottom: 0;
    z-index: 2;

    width: 75%;

    pointer-events: none;
}

.stl-suitable-projects-card__blueprint {
    position: absolute;
    inset: 2% 0 0 auto;

    width: 98%;
    height: 97%;

    object-fit: contain;
    object-position: center;
}

.stl-suitable-projects-card__individual-part {
    position: absolute;
    right: 5%;
    bottom: -2%;

    width: 84%;
    height: 96%;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 18px 16px rgba(34, 29, 21, 0.13)
        );

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-suitable-projects-card--individual:hover
.stl-suitable-projects-card__individual-part {
    transform:
        translateY(-3px)
        scale(1.014);
}


/* =========================================================
   CARD 02 — REPLACEMENT
   ========================================================= */

.stl-suitable-projects-card--replacement
.stl-suitable-projects-card__copy {
    width: 30%;
}

.stl-suitable-projects-card__replacement-flow {
    position: absolute;
    top: 3%;
    right: 1%;
    bottom: 1%;

    width: 70%;

    pointer-events: none;
}

.stl-suitable-projects-card__replacement-broken,
.stl-suitable-projects-card__replacement-ready {
    position: absolute;
    top: 49%;

    width: 35%;
    height: 84%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 16px 14px rgba(35, 30, 22, 0.13)
        );

    transform:
        translateY(-50%);

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-suitable-projects-card__replacement-broken {
    left: 2%;
}

.stl-suitable-projects-card__replacement-ready {
    right: 3%;
}

.stl-suitable-projects-card__replacement-arrow {
    position: absolute;
    top: 48%;
    left: 50%;

    width:
        clamp(29px, 2.2vw, 44px);

    height:
        clamp(18px, 1.3vw, 26px);

    object-fit: contain;

    transform:
        translate(-50%, -50%);
}

.stl-suitable-projects-card__success {
    position: absolute;
    right: 0;
    bottom: 31%;
    z-index: 6;

    width:
        clamp(29px, 2.05vw, 41px);

    height:
        clamp(29px, 2.05vw, 41px);

    object-fit: contain;
}

.stl-suitable-projects-card--replacement:hover
.stl-suitable-projects-card__replacement-broken {
    transform:
        translateY(calc(-50% - 3px))
        scale(1.014);
}

.stl-suitable-projects-card--replacement:hover
.stl-suitable-projects-card__replacement-ready {
    transform:
        translateY(calc(-50% - 3px))
        scale(1.014);
}


/* =========================================================
   CARD 03 — PROTOTYPES
   ========================================================= */

.stl-suitable-projects-card--prototypes
.stl-suitable-projects-card__copy {
    width: 27%;
}

.stl-suitable-projects-card__prototype-flow {
    position: absolute;
    top: 5%;
    right: 2%;
    bottom: 2%;

    width: 72%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: stretch;

    gap:
        clamp(4px, 0.35vw, 7px);

    pointer-events: none;
}

.stl-suitable-projects-prototype-stage {
    min-width: 0;
    min-height: 0;
    height: 100%;

    margin: 0;

    display: grid;

    grid-template-rows:
        minmax(0, 1fr)
        clamp(39px, 2.65vw, 53px);

    text-align: center;
}

.stl-suitable-projects-prototype-stage__visual {
    min-width: 0;
    min-height: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: visible;
}

.stl-suitable-projects-prototype-stage__visual img {
    width: 84%;
    height: 88%;
    max-width: none;

    object-fit: contain;
    object-position: center bottom;

    filter:
        drop-shadow(
            0 11px 11px rgba(35, 30, 22, 0.1)
        );

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   PROTOTYPE CAPTIONS
   ========================================================= */

.stl-suitable-projects-prototype-stage figcaption {
    position: relative;
    z-index: 3;

    min-height: 0;

    padding-top:
        clamp(4px, 0.3vw, 6px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stl-suitable-projects-prototype-stage strong,
.stl-suitable-projects-prototype-stage span {
    display: block;
}

.stl-suitable-projects-prototype-stage strong {
    color: #333333;

    font-size:
        clamp(10.5px, 0.65vw, 13px);

    line-height: 1.2;
    font-weight: 700;
}

.stl-suitable-projects-prototype-stage span {
    margin-top: 3px;

    color: #747474;

    font-size:
        clamp(9.5px, 0.58vw, 12px);

    line-height: 1.25;
}

.stl-suitable-projects-card__prototype-arrow {
    align-self: center;

    width:
        clamp(24px, 1.65vw, 33px);

    height:
        clamp(15px, 1vw, 20px);

    object-fit: contain;

    transform:
        translateY(
            clamp(-21px, -1.2vw, -13px)
        );
}

.stl-suitable-projects-card--prototypes
.stl-suitable-projects-card__success {
    right: 0;
    bottom: 35%;
}

.stl-suitable-projects-card--prototypes:hover
.stl-suitable-projects-prototype-stage__visual img {
    transform:
        translateY(-3px)
        scale(1.015);
}


/* =========================================================
   CARD 04 — SMALL SERIES
   ========================================================= */

.stl-suitable-projects-card--series
.stl-suitable-projects-card__copy {
    width: 27%;
}

.stl-suitable-projects-card__series-visual {
    position: absolute;
    top: 7%;
    right: 1%;
    bottom: 11%;

    width: 70%;

    pointer-events: none;
}

.stl-suitable-projects-card__series-visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: right center;

    filter:
        drop-shadow(
            0 15px 14px rgba(35, 30, 22, 0.12)
        );

    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-suitable-projects-card--series:hover
.stl-suitable-projects-card__series-visual img {
    transform:
        translateY(-3px)
        scale(1.012);
}

.stl-suitable-projects-card__quantity {
    position: absolute;

    right:
        clamp(14px, 1.1vw, 22px);

    bottom:
        clamp(11px, 0.8vw, 16px);

    z-index: 7;

    color: #5b5b5b;

    text-transform: none;
}


/* =========================================================
   SUPPORT STRIP TYPOGRAPHY
   ========================================================= */

.stl-suitable-projects__support {
    width: 100%;

    min-height:
        clamp(140px, 9.8vw, 196px);

    margin-top:
        clamp(14px, 1vw, 20px);

    padding:
        clamp(18px, 1.25vw, 25px)
        clamp(20px, 1.4vw, 28px);

    display: grid;

    grid-template-columns:
        minmax(360px, 1.5fr)
        minmax(520px, 1.75fr)
        minmax(300px, 1.02fr);

    align-items: center;

    border:
        1px solid rgba(239, 170, 0, 0.12);

    border-radius:
        clamp(15px, 1vw, 20px);

    background:
        rgba(255, 254, 250, 0.985);

    box-shadow:
        0 15px 37px rgba(35, 31, 23, 0.05);
}

.stl-suitable-projects__support-intro {
    min-width: 0;

    padding-right:
        clamp(17px, 1.3vw, 26px);

    display: flex;
    align-items: center;

    gap:
        clamp(13px, 0.95vw, 19px);

    border-right:
        1px solid rgba(20, 20, 20, 0.075);
}

.stl-suitable-projects__support-intro > img {
    width:
        clamp(63px, 4.2vw, 84px);

    height:
        clamp(63px, 4.2vw, 84px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-suitable-projects__support-intro strong,
.stl-suitable-projects__support-intro p {
    display: block;
}

.stl-suitable-projects__support-intro strong {
    color: #222222;

    font-size:
        clamp(15px, 0.92vw, 18px);

    line-height: 1.28;
    font-weight: 710;
}

.stl-suitable-projects__support-intro p {
    margin:
        clamp(8px, 0.55vw, 11px)
        0
        0;

    color: #656565;

    font-size:
        clamp(12px, 0.72vw, 14px);

    line-height: 1.48;
}

.stl-suitable-projects__support-benefits {
    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.stl-suitable-projects-support-benefit {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(11px, 0.85vw, 17px);

    display: flex;
    align-items: center;

    gap:
        clamp(8px, 0.62vw, 12px);
}

.stl-suitable-projects-support-benefit:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 5%;
    right: 0;

    width: 1px;
    height: 90%;

    background:
        rgba(20, 20, 20, 0.075);
}

.stl-suitable-projects-support-benefit > img {
    width:
        clamp(38px, 2.65vw, 53px);

    height:
        clamp(38px, 2.65vw, 53px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-suitable-projects-support-benefit strong,
.stl-suitable-projects-support-benefit span {
    display: block;
}

.stl-suitable-projects-support-benefit strong {
    color: #252525;

    font-size:
        clamp(12px, 0.76vw, 15px);

    line-height: 1.28;
    font-weight: 700;
}

.stl-suitable-projects-support-benefit span {
    margin-top: 6px;

    color: #707070;

    font-size:
        clamp(10.5px, 0.65vw, 13px);

    line-height: 1.42;
}

.stl-suitable-projects__support-cta {
    min-width: 0;

    padding-left:
        clamp(17px, 1.3vw, 26px);

    border-left:
        1px solid rgba(20, 20, 20, 0.075);

    text-align: center;
}

.stl-suitable-projects__support-cta > a:first-child {
    width: 100%;

    min-height:
        clamp(54px, 3.55vw, 71px);

    padding:
        0
        clamp(17px, 1.2vw, 24px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(10px, 0.72vw, 15px);

    border-radius:
        clamp(10px, 0.72vw, 14px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffad00
        );

    color: #171717;

    font-size:
        clamp(13px, 0.82vw, 16px);

    line-height: 1;
    font-weight: 710;
    white-space: nowrap;

    box-shadow:
        0 13px 28px rgba(238, 171, 0, 0.21);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stl-suitable-projects__support-cta > a:first-child:hover,
.stl-suitable-projects__support-cta > a:first-child:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 19px 36px rgba(238, 171, 0, 0.3);

    outline: none;
}

.stl-suitable-projects__support-cta > a:first-child img {
    width:
        clamp(20px, 1.3vw, 26px);

    height:
        clamp(20px, 1.3vw, 26px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-suitable-projects__support-cta small {
    display: block;

    margin-top:
        clamp(8px, 0.55vw, 11px);

    color: #777777;

    font-size:
        clamp(10.5px, 0.64vw, 12.5px);

    line-height: 1.4;
}

.stl-suitable-projects__support-link {
    width: fit-content;

    margin:
        clamp(10px, 0.68vw, 14px)
        auto
        0;

    display: inline-flex;
    align-items: center;

    gap:
        clamp(7px, 0.5vw, 10px);

    color: #555555;

    font-size:
        clamp(10.5px, 0.66vw, 13px);

    line-height: 1.2;
    font-weight: 610;

    border-bottom:
        1px solid rgba(85, 85, 85, 0.34);

    transition:
        color var(--transition),
        border-color var(--transition);
}

.stl-suitable-projects__support-link:hover,
.stl-suitable-projects__support-link:focus-visible {
    color: #d99500;

    border-color: #d99500;

    outline: none;
}

.stl-suitable-projects__support-link img {
    width:
        clamp(15px, 1vw, 20px);

    height:
        clamp(15px, 1vw, 20px);

    object-fit: contain;
}


/* =========================================================
   BOTTOM NOTE TYPOGRAPHY
   ========================================================= */

.stl-suitable-projects__note {
    width:
        min(100%, 820px);

    min-height:
        clamp(68px, 4.8vw, 96px);

    margin:
        clamp(13px, 0.9vw, 18px)
        auto
        0;

    padding:
        clamp(11px, 0.75vw, 15px)
        clamp(16px, 1.1vw, 22px);

    display: grid;

    grid-template-columns:
        minmax(290px, 1.4fr)
        minmax(165px, 0.75fr)
        minmax(135px, 0.55fr);

    align-items: center;

    border:
        1px solid rgba(239, 170, 0, 0.1);

    border-radius:
        clamp(12px, 0.82vw, 16px);

    background:
        rgba(255, 254, 250, 0.97);

    box-shadow:
        0 10px 27px rgba(35, 31, 23, 0.04);
}

.stl-suitable-projects__note-intro {
    min-width: 0;

    padding-right:
        clamp(12px, 0.9vw, 18px);

    display: flex;
    align-items: center;

    gap:
        clamp(9px, 0.68vw, 13px);

    border-right:
        1px solid rgba(20, 20, 20, 0.07);
}

.stl-suitable-projects__note-intro > img {
    width:
        clamp(34px, 2.35vw, 47px);

    height:
        clamp(34px, 2.35vw, 47px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-suitable-projects__note-intro strong,
.stl-suitable-projects__note-intro span {
    display: block;
}

.stl-suitable-projects__note-intro strong {
    color: #333333;

    font-size:
        clamp(11.5px, 0.72vw, 14px);

    line-height: 1.28;
    font-weight: 700;
}

.stl-suitable-projects__note-intro span {
    margin-top: 5px;

    color: #737373;

    font-size:
        clamp(10px, 0.62vw, 12px);

    line-height: 1.4;
}

.stl-suitable-projects__note-list {
    margin: 0;

    padding:
        0
        clamp(12px, 0.9vw, 18px);

    list-style: none;
}

.stl-suitable-projects__note-list li {
    position: relative;

    padding-left:
        clamp(15px, 0.95vw, 19px);

    color: #646464;

    font-size:
        clamp(10px, 0.62vw, 12px);

    line-height: 1.5;
}

.stl-suitable-projects__note-list li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    color: #6fa94e;

    font-weight: 750;
}

.stl-suitable-projects__note-visual {
    width: 100%;
    height:
        clamp(38px, 3vw, 60px);

    object-fit: contain;
    object-position: center;
}

.stl-suitable-projects__slider-controls {
    display: none;
}


/* =========================================================
   DESKTOP — 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-suitable-projects__inner {
        padding:
            22px
            42px
            24px;
    }

    .stl-suitable-projects__header h2 {
        font-size:
            clamp(42px, 3vw, 52px);
    }

    .stl-suitable-projects__cards {
        height:
            clamp(390px, 31vw, 465px);
    }

    .stl-suitable-projects-card__copy {
        padding: 16px;
    }

    .stl-suitable-projects__support {
        grid-template-columns:
            minmax(300px, 1.42fr)
            minmax(430px, 1.75fr)
            minmax(260px, 1fr);
    }
}


/* =========================================================
   TABLET — 1180
   ========================================================= */

@media (max-width: 1180px) {

    .stl-suitable-projects {
        min-height: 0;
    }

    .stl-suitable-projects__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;
    }

    .stl-suitable-projects__header {
        max-width: 880px;
    }

    .stl-suitable-projects__header h2 {
        font-size:
            clamp(49px, 5.8vw, 66px);
    }

    .stl-suitable-projects__header p {
        max-width: 800px;

        font-size: 17px;
    }

    .stl-suitable-projects__cards {
        height: auto;

        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(4, 410px);
    }

    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--individual
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--replacement
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--prototypes
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--series
    .stl-suitable-projects-card__copy {
        width: 31%;

        padding: 27px;
    }

    .stl-suitable-projects-card h3 {
        font-size: 25px;
    }

    .stl-suitable-projects-card__copy > p {
        font-size: 14px;
    }

    .stl-suitable-projects-card__individual-visual {
        width: 73%;
    }

    .stl-suitable-projects-card__replacement-flow,
    .stl-suitable-projects-card__prototype-flow,
    .stl-suitable-projects-card__series-visual {
        width: 69%;
    }

    .stl-suitable-projects__support {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(250px, 0.52fr);

        gap:
            24px
            0;
    }

    .stl-suitable-projects__support-intro {
        grid-column: 1;
        grid-row: 1;

        padding-right: 24px;
    }

    .stl-suitable-projects__support-benefits {
        grid-column: 1 / -1;
        grid-row: 2;

        padding:
            24px
            0
            0;

        border-top:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-suitable-projects__support-cta {
        grid-column: 2;
        grid-row: 1;
    }

    .stl-suitable-projects__support-intro strong {
        font-size: 16px;
    }

    .stl-suitable-projects__support-intro p {
        font-size: 12px;
    }

    .stl-suitable-projects-support-benefit strong {
        font-size: 13px;
    }

    .stl-suitable-projects-support-benefit span {
        font-size: 11px;
    }

    .stl-suitable-projects__note {
        width: min(100%, 760px);
    }
}


/* =========================================================
   TABLET — 900
   ========================================================= */

@media (max-width: 900px) {

    .stl-suitable-projects__inner {
        padding:
            70px
            24px
            54px;
    }

    .stl-suitable-projects__header h2 {
        font-size:
            clamp(44px, 7vw, 58px);
    }

    .stl-suitable-projects__cards {
        grid-template-rows:
            repeat(4, 375px);
    }

    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--individual
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--replacement
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--prototypes
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--series
    .stl-suitable-projects-card__copy {
        width: 34%;

        padding: 23px;
    }

    .stl-suitable-projects-card__individual-visual {
        width: 69%;
    }

    .stl-suitable-projects-card__replacement-flow,
    .stl-suitable-projects-card__prototype-flow,
    .stl-suitable-projects-card__series-visual {
        width: 66%;
    }

    .stl-suitable-projects__support {
        grid-template-columns: 1fr;
    }

    .stl-suitable-projects__support-intro,
    .stl-suitable-projects__support-benefits,
    .stl-suitable-projects__support-cta {
        grid-column: 1;
        grid-row: auto;
    }

    .stl-suitable-projects__support-intro {
        padding:
            0
            0
            23px;

        border-right: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-suitable-projects__support-benefits {
        padding:
            22px
            0;

        border-top: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-suitable-projects__support-cta {
        padding:
            23px
            0
            0;

        border-left: 0;
    }
}


/* =========================================================
   MOBILE — 620
   ========================================================= */

@media (max-width: 620px) {

    .stl-suitable-projects__glow {
        display: none;
    }

    .stl-suitable-projects__inner {
        padding:
            60px
            18px
            48px;
    }

    .stl-suitable-projects__header {
        text-align: left;
    }

    .stl-suitable-projects__kicker {
        margin-left: 0;

        font-size: 9px;
    }

    .stl-suitable-projects__header h2 {
        font-size:
            clamp(38px, 10.2vw, 46px);

        line-height: 1.04;
    }

    .stl-suitable-projects__header h2 br {
        display: none;
    }

    .stl-suitable-projects__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .stl-suitable-projects__cards-shell {
        width:
            calc(100% + 18px);

        margin-top: 31px;
    }

    .stl-suitable-projects__cards {
        width: 100%;
        height: auto;

        padding:
            4px
            54px
            24px
            0;

        display: flex;

        gap: 14px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-suitable-projects__cards::-webkit-scrollbar {
        display: none;
    }

    .stl-suitable-projects-card {
        width:
            calc(100vw - 70px);

        min-height: 490px;

        flex:
            0
            0
            calc(100vw - 70px);

        border-radius: 20px;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-suitable-projects-card:hover {
        transform: none;
    }

    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--individual
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--replacement
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--prototypes
    .stl-suitable-projects-card__copy,
    .stl-suitable-projects-card--series
    .stl-suitable-projects-card__copy {
        width: 100%;
        height: auto;

        padding:
            22px
            22px
            0;
    }

    .stl-suitable-projects-card h3 {
        font-size: 23px;
    }

    .stl-suitable-projects-card__copy > p {
        max-width: 280px;

        font-size: 14px;
    }

    .stl-suitable-projects-card__tags {
        position: absolute;
        right: 20px;
        bottom: 17px;
        left: 20px;

        width: auto;
    }

    .stl-suitable-projects-card__individual-visual {
        top: 37%;
        right: 2%;
        bottom: 13%;

        width: 96%;
    }

    .stl-suitable-projects-card__individual-part {
        right: 2%;
        bottom: -2%;

        width: 96%;
        height: 100%;
    }

    .stl-suitable-projects-card__replacement-flow {
        top: 37%;
        right: 3%;
        bottom: 12%;

        width: 94%;
    }

    .stl-suitable-projects-card__replacement-broken,
    .stl-suitable-projects-card__replacement-ready {
        width: 40%;
        height: 96%;
    }

    .stl-suitable-projects-card__success {
        right: 1%;
        bottom: 33%;
    }

    .stl-suitable-projects-card__prototype-flow {
        top: 38%;
        right: 4%;
        bottom: 13%;

        width: 92%;
    }

    .stl-suitable-projects-card--prototypes
    .stl-suitable-projects-card__success {
        right: 0;
        bottom: 34%;
    }

    .stl-suitable-projects-card__series-visual {
        top: 36%;
        right: 2%;
        bottom: 12%;

        width: 97%;
    }

    .stl-suitable-projects-card__quantity {
        right: 20px;
        bottom: 17px;
    }

    .stl-suitable-projects-card--series
    .stl-suitable-projects-card__tags {
        right: auto;

        width: fit-content;
    }

    .stl-suitable-projects__slider-controls {
        padding-right: 54px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 14px;
    }

    .stl-suitable-projects__slider-controls > span {
        max-width: 125px;

        color: #696969;

        font-size: 11px;
        line-height: 1.25;
        font-weight: 600;
    }

    .stl-suitable-projects__slider-navigation {
        display: flex;
        align-items: center;

        gap: 8px;
    }

    .stl-suitable-projects__slider-navigation > button {
        width: 34px;
        height: 34px;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border:
            1px solid rgba(20, 20, 20, 0.08);

        border-radius: 50%;

        background: #ffffff;
        color: #202020;

        font-size: 18px;
        line-height: 1;

        cursor: pointer;

        transition:
            opacity 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease;
    }

    .stl-suitable-projects__slider-navigation > button:disabled {
        opacity: 0.35;

        cursor: default;
    }

    .stl-suitable-projects__slider-navigation > button:not(:disabled):hover,
    .stl-suitable-projects__slider-navigation > button:not(:disabled):focus-visible {
        border-color:
            rgba(239, 170, 0, 0.45);

        color: #d99600;

        outline: none;
    }

    .stl-suitable-projects__slider-dots {
        display: flex;
        align-items: center;

        gap: 5px;
    }

    .stl-suitable-projects__slider-dots button {
        width: 7px;
        height: 7px;
        padding: 0;

        border: 0;
        border-radius: 50%;

        background: #ded8ca;

        cursor: pointer;

        transition:
            width 0.25s ease,
            border-radius 0.25s ease,
            background 0.25s ease;
    }

    .stl-suitable-projects__slider-dots button.is-active {
        width: 21px;

        border-radius: 999px;

        background: #f1ae00;
    }

    .stl-suitable-projects__support {
        margin-top: 32px;

        padding:
            22px
            18px;
    }

    .stl-suitable-projects__support-intro {
        align-items: flex-start;
    }

    .stl-suitable-projects__support-intro > img {
        width: 66px;
        height: 66px;
    }

    .stl-suitable-projects__support-intro strong {
        font-size: 16px;
    }

    .stl-suitable-projects__support-intro p {
        font-size: 12px;
    }

    .stl-suitable-projects__support-benefits {
        grid-template-columns: 1fr;

        padding:
            8px
            0;
    }

    .stl-suitable-projects-support-benefit {
        min-height: 88px;

        padding:
            15px
            0;
    }

    .stl-suitable-projects-support-benefit:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .stl-suitable-projects-support-benefit > img {
        width: 50px;
        height: 50px;
    }

    .stl-suitable-projects-support-benefit strong {
        font-size: 14px;
    }

    .stl-suitable-projects-support-benefit span {
        font-size: 12px;
    }

    .stl-suitable-projects__support-cta > a:first-child {
        min-height: 59px;

        font-size: 13px;
    }

    .stl-suitable-projects__support-cta small {
        font-size: 11px;
    }

    .stl-suitable-projects__support-link {
        margin-top: 17px;

        font-size: 12px;
    }

    .stl-suitable-projects__note {
        width: 100%;

        margin-top: 22px;

        padding: 17px;

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .stl-suitable-projects__note-intro {
        padding:
            0
            0
            16px;

        border-right: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.07);
    }

    .stl-suitable-projects__note-intro strong {
        font-size: 13px;
    }

    .stl-suitable-projects__note-intro span,
    .stl-suitable-projects__note-list li {
        font-size: 11px;
    }

    .stl-suitable-projects__note-list {
        padding: 0;
    }

    .stl-suitable-projects__note-visual {
        height: 85px;
    }
}


/* =========================================================
   MOBILE — 390
   ========================================================= */

@media (max-width: 390px) {

    .stl-suitable-projects__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .stl-suitable-projects__cards-shell {
        width:
            calc(100% + 16px);
    }

    .stl-suitable-projects__cards {
        padding-right: 48px;
    }

    .stl-suitable-projects-card {
        width:
            calc(100vw - 64px);

        flex-basis:
            calc(100vw - 64px);
    }

    .stl-suitable-projects__slider-controls {
        padding-right: 48px;
    }

    .stl-suitable-projects__slider-navigation {
        gap: 6px;
    }

    .stl-suitable-projects__slider-navigation > button {
        width: 32px;
        height: 32px;
    }

    .stl-suitable-projects-card__prototype-flow {
        right: 2%;

        width: 96%;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stl-suitable-projects-card,
    .stl-suitable-projects-card__individual-part,
    .stl-suitable-projects-card__replacement-broken,
    .stl-suitable-projects-card__replacement-ready,
    .stl-suitable-projects-prototype-stage__visual img,
    .stl-suitable-projects-card__series-visual img,
    .stl-suitable-projects__support-cta > a:first-child,
    .stl-suitable-projects__support-link,
    .stl-suitable-projects__slider-navigation > button,
    .stl-suitable-projects__slider-dots button {
        transition: none !important;
    }

    .stl-suitable-projects-card:hover,
    .stl-suitable-projects-card--individual:hover
    .stl-suitable-projects-card__individual-part,
    .stl-suitable-projects-card--replacement:hover
    .stl-suitable-projects-card__replacement-broken,
    .stl-suitable-projects-card--replacement:hover
    .stl-suitable-projects-card__replacement-ready,
    .stl-suitable-projects-card--prototypes:hover
    .stl-suitable-projects-prototype-stage__visual img,
    .stl-suitable-projects-card--series:hover
    .stl-suitable-projects-card__series-visual img,
    .stl-suitable-projects__support-cta > a:first-child:hover {
        transform: none;
    }
}

/* =========================================================
   SCREEN 8 — FAQ
   ========================================================= */

.stl-faq {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;
    margin-top:
        clamp(24px, 1.9vw, 36px);

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 18% 38%,
            rgba(255, 204, 67, 0.05),
            transparent 38%
        ),
        radial-gradient(
            circle at 88% 15%,
            rgba(255, 220, 135, 0.07),
            transparent 41%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #fffcf7 60%,
            #ffffff 100%
        );
}

.stl-faq__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}

.stl-faq__glow {
    position: absolute;

    border-radius: 50%;
}

.stl-faq__glow--left {
    top: 15%;
    left: -22%;

    width:
        clamp(520px, 40vw, 920px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 198, 37, 0.06),
            transparent 70%
        );
}

.stl-faq__glow--right {
    top: -24%;
    right: -17%;

    width:
        clamp(640px, 49vw, 1120px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 222, 143, 0.085),
            transparent 70%
        );
}


/* =========================================================
   FAQ INNER
   ========================================================= */

.stl-faq__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(22px, 1.55vw, 31px)
        var(--page-space)
        clamp(18px, 1.25vw, 25px);

    display: flex;
    flex-direction: column;

    gap:
        clamp(14px, 1vw, 20px);
}

.stl-faq__top {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(400px, 0.8fr)
        minmax(640px, 1.2fr);

    align-items: stretch;

    gap:
        clamp(28px, 2.2vw, 44px);
}


/* =========================================================
   FAQ HEADER
   ========================================================= */

.stl-faq__intro-column {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.stl-faq__header {
    width: min(100%, 610px);
}

.stl-faq__kicker {
    width: fit-content;

    min-height:
        clamp(31px, 1.9vw, 38px);

    margin-bottom:
        clamp(14px, 1vw, 20px);

    padding:
        6px
        clamp(13px, 0.9vw, 18px);

    display: inline-flex;
    align-items: center;

    gap:
        clamp(8px, 0.5vw, 10px);

    border:
        1px solid rgba(239, 170, 0, 0.15);

    border-radius: 999px;

    background:
        rgba(255, 252, 244, 0.98);

    color: #e89f00;

    font-size:
        clamp(9px, 0.58vw, 11.5px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.stl-faq__kicker > span {
    width:
        clamp(9px, 0.58vw, 12px);

    height:
        clamp(9px, 0.58vw, 12px);

    flex: 0 0 auto;

    border-radius: 50%;

    background: #ffad00;

    box-shadow:
        0 0 0 4px rgba(255, 173, 0, 0.08);
}

.stl-faq__header h2 {
    margin: 0;

    color: #111214;

    font-size:
        clamp(40px, 2.85vw, 57px);

    line-height: 1.02;
    font-weight: 655;
    letter-spacing: -0.052em;
}

.stl-faq__header h2 span {
    color: #efa900;
}

.stl-faq__header p {
    width: min(100%, 550px);

    margin:
        clamp(13px, 0.9vw, 18px)
        0
        0;

    color: #5e5e5e;

    font-size:
        clamp(14px, 0.9vw, 17px);

    line-height: 1.5;
}


/* =========================================================
   LEFT VISUAL
   ========================================================= */

.stl-faq__visual {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height:
        clamp(255px, 19vw, 370px);

    margin-top:
        clamp(8px, 0.7vw, 14px);
}

.stl-faq__visual-glow {
    position: absolute;
    top: 7%;
    left: 20%;
    z-index: -1;

    width: 68%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 197, 38, 0.1),
            transparent 69%
        );
}

.stl-faq__blueprint {
    position: absolute;
    right: 6%;
    bottom: 3%;
    z-index: 1;

    width: 72%;
    height: 82%;

    object-fit: contain;
    object-position: center bottom;

    opacity: 0.68;
}

.stl-faq__main-bracket {
    position: absolute;
    top: 50%;
    left: 52%;
    z-index: 3;

    width: 56%;
    max-width: none;
    height: 82%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 18px 17px rgba(35, 30, 21, 0.13)
        );

    transform:
        translate(-50%, -50%);
}

.stl-faq__file-card {
    position: absolute;
    top: 21%;
    left: 0;
    z-index: 5;

    width: 19%;
    height: 43%;

    object-fit: contain;
    object-position: left center;

    filter:
        drop-shadow(
            0 10px 15px rgba(35, 31, 23, 0.07)
        );
}

.stl-faq__connector {
    position: absolute;
    z-index: 2;

    object-fit: contain;

    pointer-events: none;
}

.stl-faq__connector--file {
    top: 30%;
    left: 17%;

    width: 21%;
    height: 15%;
}

.stl-faq__connector--check {
    top: 30%;
    right: 18%;

    width: 25%;
    height: 22%;
}

.stl-faq__check-card {
    position: absolute;
    top: 20%;
    right: 0;
    z-index: 5;

    width: 22%;
    min-height:
        clamp(108px, 7.3vw, 146px);

    padding:
        clamp(11px, 0.75vw, 15px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(12px, 0.8vw, 16px);

    background:
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 12px 29px rgba(35, 31, 23, 0.065);
}

.stl-faq__check-card img {
    width:
        clamp(30px, 2vw, 40px);

    height:
        clamp(30px, 2vw, 40px);

    object-fit: contain;
}

.stl-faq__check-card strong {
    display: block;

    margin-top:
        clamp(6px, 0.42vw, 8px);

    color: #262626;

    font-size:
        clamp(11px, 0.72vw, 13.5px);

    line-height: 1.23;
    font-weight: 710;
}

.stl-faq__check-card span {
    display: block;

    margin-top:
        clamp(5px, 0.38vw, 8px);

    color: #6a6a6a;

    font-size:
        clamp(9.5px, 0.64vw, 12px);

    line-height: 1.38;
}


/* =========================================================
   QUICK SUPPORT
   ========================================================= */

.stl-faq__quick-support {
    width: 100%;
    min-height:
        clamp(104px, 7.3vw, 145px);

    margin-top: auto;

    padding:
        clamp(13px, 0.9vw, 18px)
        clamp(15px, 1.05vw, 21px);

    border:
        1px solid rgba(239, 170, 0, 0.1);

    border-radius:
        clamp(14px, 0.9vw, 18px);

    background:
        rgba(255, 254, 250, 0.985);

    box-shadow:
        0 12px 30px rgba(35, 31, 23, 0.05);
}

.stl-faq__quick-support-main {
    display: flex;
    align-items: center;

    gap:
        clamp(11px, 0.78vw, 16px);
}

.stl-faq__quick-support-main > img {
    width:
        clamp(48px, 3.1vw, 62px);

    height:
        clamp(48px, 3.1vw, 62px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-faq__quick-support-main strong {
    display: block;

    color: #252525;

    font-size:
        clamp(13px, 0.86vw, 16px);

    line-height: 1.24;
    font-weight: 710;
}

.stl-faq__quick-support-main p {
    width: min(100%, 470px);

    margin:
        clamp(5px, 0.38vw, 8px)
        0
        0;

    color: #686868;

    font-size:
        clamp(10.5px, 0.7vw, 13px);

    line-height: 1.4;
}

.stl-faq__quick-support-items {
    margin-top:
        clamp(9px, 0.65vw, 13px);

    padding-top:
        clamp(9px, 0.65vw, 13px);

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top:
        1px solid rgba(20, 20, 20, 0.07);
}

.stl-faq-quick-item {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(10px, 0.75vw, 15px);

    display: flex;
    align-items: center;

    gap:
        clamp(8px, 0.6vw, 12px);
}

.stl-faq-quick-item:first-child {
    padding-left: 0;
}

.stl-faq-quick-item:last-child {
    padding-right: 0;
}

.stl-faq-quick-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 5%;
    right: 0;

    width: 1px;
    height: 90%;

    background:
        rgba(20, 20, 20, 0.07);
}

.stl-faq-quick-item img {
    width:
        clamp(24px, 1.55vw, 31px);

    height:
        clamp(24px, 1.55vw, 31px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-faq-quick-item span {
    color: #575757;

    font-size:
        clamp(9.5px, 0.64vw, 11.5px);

    line-height: 1.28;
    font-weight: 620;
}


/* =========================================================
   FAQ ACCORDION
   ========================================================= */

.stl-faq__accordion {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap:
        clamp(8px, 0.58vw, 12px);
}

.stl-faq-item {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(20, 20, 20, 0.05);

    border-radius:
        clamp(14px, 0.95vw, 19px);

    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 14px 34px rgba(35, 31, 23, 0.05);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.stl-faq-item.is-open {
    border-color:
        rgba(239, 170, 0, 0.72);

    background:
        rgba(255, 254, 250, 0.99);

    box-shadow:
        0 18px 42px rgba(35, 31, 23, 0.07);
}

.stl-faq-item__trigger {
    width: 100%;
    min-height:
        clamp(58px, 4vw, 79px);

    padding:
        clamp(10px, 0.7vw, 14px)
        clamp(15px, 1.05vw, 21px);

    display: grid;

    grid-template-columns:
        auto
        clamp(46px, 3vw, 60px)
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap:
        clamp(12px, 0.85vw, 17px);

    border: 0;

    background: transparent;
    color: inherit;

    text-align: left;

    cursor: pointer;
}

.stl-faq-item__trigger:focus-visible {
    outline:
        3px solid rgba(239, 170, 0, 0.23);

    outline-offset: -3px;
}

.stl-faq-item__number {
    align-self: start;

    min-width:
        clamp(31px, 2vw, 40px);

    color: #efa900;

    font-size:
        clamp(16px, 1vw, 20px);

    line-height: 1;
    font-weight: 750;
}

.stl-faq-item__icon {
    width:
        clamp(46px, 3vw, 60px);

    height:
        clamp(46px, 3vw, 60px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.stl-faq-item__icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.stl-faq-item__heading {
    min-width: 0;
}

.stl-faq-item__heading small,
.stl-faq-item__heading strong {
    display: block;
}

.stl-faq-item__heading small {
    color: #e89f00;

    font-size:
        clamp(10px, 0.64vw, 11.5px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stl-faq-item__heading strong {
    margin-top:
        clamp(5px, 0.35vw, 7px);

    color: #222222;

    font-size:
        clamp(14px, 0.92vw, 17.5px);

    line-height: 1.24;
    font-weight: 700;
    letter-spacing: -0.018em;
}

.stl-faq-item__state {
    width:
        clamp(32px, 2.1vw, 42px);

    height:
        clamp(32px, 2.1vw, 42px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.stl-faq-item__state img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.stl-faq-item__state-open {
    display: none;
}

.stl-faq-item.is-open
.stl-faq-item__state-open {
    display: block;
}

.stl-faq-item.is-open
.stl-faq-item__state-closed {
    display: none;
}

.stl-faq-item__answer-wrap {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-faq-item.is-open
.stl-faq-item__answer-wrap {
    grid-template-rows: 1fr;
}

.stl-faq-item__answer {
    min-height: 0;

    overflow: hidden;
}

.stl-faq-item__answer p {
    width: min(100%, 700px);

    margin: 0;

    padding:
        0
        clamp(58px, 4vw, 80px)
        clamp(14px, 1vw, 20px)
        clamp(112px, 7.8vw, 156px);

    color: #616161;

    font-size:
        clamp(11.5px, 0.78vw, 14.5px);

    line-height: 1.45;
}


/* =========================================================
   FAQ CTA
   ========================================================= */

.stl-faq__cta {
    width: 100%;
    min-height:
        clamp(108px, 7.5vw, 150px);

    padding:
        clamp(14px, 0.95vw, 19px)
        clamp(16px, 1.1vw, 22px);

    display: grid;

    grid-template-columns:
        minmax(340px, 1.25fr)
        minmax(520px, 1.8fr)
        minmax(270px, 0.95fr);

    align-items: center;

    border:
        1px solid rgba(239, 170, 0, 0.12);

    border-radius:
        clamp(15px, 1vw, 20px);

    background:
        rgba(255, 254, 250, 0.985);

    box-shadow:
        0 14px 35px rgba(35, 31, 23, 0.05);
}

.stl-faq__cta-intro {
    min-width: 0;

    padding-right:
        clamp(18px, 1.35vw, 27px);

    display: flex;
    align-items: center;

    gap:
        clamp(14px, 1vw, 20px);

    border-right:
        1px solid rgba(20, 20, 20, 0.075);
}

.stl-faq__cta-intro > img {
    width:
        clamp(62px, 4.2vw, 84px);

    height:
        clamp(62px, 4.2vw, 84px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-faq__cta-intro strong {
    display: block;

    color: #222222;

    font-size:
        clamp(14px, 0.9vw, 18px);

    line-height: 1.27;
    font-weight: 710;
}

.stl-faq__cta-intro p {
    margin:
        clamp(8px, 0.55vw, 11px)
        0
        0;

    color: #666666;

    font-size:
        clamp(12px, 0.8vw, 15px);

    line-height: 1.45;
}

.stl-faq__cta-benefits {
    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.stl-faq-cta-benefit {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(12px, 0.9vw, 18px);

    display: flex;
    align-items: center;

    gap:
        clamp(10px, 0.72vw, 14px);
}

.stl-faq-cta-benefit:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 4%;
    right: 0;

    width: 1px;
    height: 92%;

    background:
        rgba(20, 20, 20, 0.075);
}

.stl-faq-cta-benefit > img {
    width:
        clamp(39px, 2.65vw, 53px);

    height:
        clamp(39px, 2.65vw, 53px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-faq-cta-benefit strong,
.stl-faq-cta-benefit span {
    display: block;
}

.stl-faq-cta-benefit strong {
    color: #292929;

    font-size:
        clamp(12px, 0.82vw, 15px);

    line-height: 1.28;
    font-weight: 700;
}

.stl-faq-cta-benefit span {
    margin-top: 5px;

    color: #707070;

    font-size:
        clamp(11px, 0.72vw, 13px);

    line-height: 1.4;
}

.stl-faq__cta-action {
    min-width: 0;

    padding-left:
        clamp(18px, 1.35vw, 27px);

    border-left:
        1px solid rgba(20, 20, 20, 0.075);

    text-align: center;
}

.stl-faq__cta-button {
    width: 100%;
    min-height:
        clamp(51px, 3.5vw, 70px);

    padding:
        0
        clamp(16px, 1.15vw, 23px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(10px, 0.72vw, 15px);

    border-radius:
        clamp(10px, 0.75vw, 15px);

    background:
        linear-gradient(
            135deg,
            #ffd15a,
            #ffad00
        );

    color: #171717;

    font-size:
        clamp(12px, 0.8vw, 16px);

    line-height: 1;
    font-weight: 710;
    white-space: nowrap;

    box-shadow:
        0 13px 28px rgba(238, 171, 0, 0.21);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stl-faq__cta-button:hover,
.stl-faq__cta-button:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 19px 36px rgba(238, 171, 0, 0.3);

    outline: none;
}

.stl-faq__cta-button img {
    width:
        clamp(20px, 1.35vw, 27px);

    height:
        clamp(20px, 1.35vw, 27px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-faq__cta-action small {
    display: block;

    margin-top:
        clamp(7px, 0.52vw, 10px);

    color: #777777;

    font-size:
        clamp(11px, 0.72vw, 13px);

    line-height: 1.4;
}

.stl-faq__contact-link {
    width: fit-content;

    margin:
        clamp(9px, 0.68vw, 14px)
        auto
        0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(7px, 0.5vw, 10px);

    color: #555555;

    font-size:
        clamp(11px, 0.72vw, 13.5px);

    line-height: 1.2;
    font-weight: 610;

    border-bottom:
        1px solid rgba(85, 85, 85, 0.34);

    transition:
        color var(--transition),
        border-color var(--transition);
}

.stl-faq__contact-link:hover,
.stl-faq__contact-link:focus-visible {
    color: #d99500;

    border-color: #d99500;

    outline: none;
}

.stl-faq__contact-link img {
    width:
        clamp(16px, 1.05vw, 21px);

    height:
        clamp(16px, 1.05vw, 21px);

    object-fit: contain;
}


/* =========================================================
   FAQ TRUST
   ========================================================= */

.stl-faq__trust {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(18px, 1.7vw, 34px);

    color: #5d5d5d;

    font-size:
        clamp(10.5px, 0.68vw, 12.5px);

    line-height: 1.2;
    font-weight: 560;
}

.stl-faq__trust span {
    display: inline-flex;
    align-items: center;

    gap:
        clamp(7px, 0.5vw, 10px);

    white-space: nowrap;
}

.stl-faq__trust img {
    width:
        clamp(18px, 1.15vw, 23px);

    height:
        clamp(18px, 1.15vw, 23px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-faq__trust i {
    width: 4px;
    height: 4px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #efa900;
}


/* =========================================================
   FAQ — DESKTOP 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-faq__inner {
        padding:
            23px
            42px
            21px;

        gap: 15px;
    }

    .stl-faq__top {
        grid-template-columns:
            minmax(390px, 0.8fr)
            minmax(610px, 1.2fr);

        gap: 30px;
    }

    .stl-faq__header h2 {
        font-size: 42px;
    }

    .stl-faq__header p {
        font-size: 14px;
    }

    .stl-faq__visual {
        min-height: 280px;
    }

    .stl-faq__quick-support {
        min-height: 116px;
    }

    .stl-faq-item__trigger {
        min-height: 62px;

        padding:
            10px
            16px;
    }

    .stl-faq-item__heading strong {
        font-size: 14px;
    }

    .stl-faq-item__answer p {
        font-size: 12px;
    }

    .stl-faq__cta {
        min-height: 116px;

        grid-template-columns:
            minmax(315px, 1.22fr)
            minmax(480px, 1.78fr)
            minmax(255px, 0.95fr);
    }
}


/* =========================================================
   FAQ — TABLET 1180
   ========================================================= */

@media (max-width: 1180px) {

    .stl-faq {
        min-height: 0;
    }

    .stl-faq__inner {
        min-height: 0;

        padding:
            76px
            30px
            60px;

        gap: 38px;
    }

    .stl-faq__top {
        grid-template-columns: 1fr;

        gap: 52px;
    }

    .stl-faq__header {
        max-width: 840px;
    }

    .stl-faq__header h2 {
        font-size:
            clamp(49px, 5.9vw, 68px);
    }

    .stl-faq__header p {
        max-width: 760px;

        font-size: 17px;
    }

    .stl-faq__visual {
        min-height:
            clamp(430px, 54vw, 590px);

        margin-top: 26px;
    }

    .stl-faq__main-bracket {
        width: 57%;
        height: 92%;
    }

    .stl-faq__file-card {
        width: 20%;
    }

    .stl-faq__check-card {
        width: 23%;
    }

    .stl-faq__quick-support {
        margin-top: 28px;
    }

    .stl-faq__accordion {
        gap: 14px;
    }

    .stl-faq-item__trigger {
        min-height: 93px;
    }

    .stl-faq-item__heading strong {
        font-size: 18px;
    }

    .stl-faq-item__answer p {
        padding-left:
            clamp(132px, 15vw, 175px);

        font-size: 15px;
    }

    .stl-faq__cta {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(260px, 0.5fr);

        gap:
            25px
            0;
    }

    .stl-faq__cta-intro {
        grid-column: 1;
        grid-row: 1;

        padding-right: 25px;
    }

    .stl-faq__cta-benefits {
        grid-column: 1 / -1;
        grid-row: 2;

        padding:
            24px
            0
            0;

        border-top:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-faq__cta-action {
        grid-column: 2;
        grid-row: 1;
    }

    .stl-faq__trust {
        flex-wrap: wrap;

        row-gap: 15px;
    }
}


/* =========================================================
   FAQ — TABLET 900
   ========================================================= */

@media (max-width: 900px) {

    .stl-faq__inner {
        padding:
            70px
            24px
            54px;
    }

    .stl-faq__header h2 {
        font-size:
            clamp(44px, 7vw, 58px);
    }

    .stl-faq__visual {
        min-height: 450px;
    }

    .stl-faq__main-bracket {
        width: 65%;
    }

    .stl-faq__file-card {
        top: 24%;

        width: 23%;
    }

    .stl-faq__check-card {
        top: 20%;

        width: 25%;
    }

    .stl-faq__quick-support-items {
        grid-template-columns: 1fr;

        padding-top: 5px;
    }

    .stl-faq-quick-item,
    .stl-faq-quick-item:first-child,
    .stl-faq-quick-item:last-child {
        min-height: 65px;

        padding:
            12px
            0;
    }

    .stl-faq-quick-item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .stl-faq-item__trigger {
        grid-template-columns:
            auto
            62px
            minmax(0, 1fr)
            auto;
    }

    .stl-faq__cta {
        grid-template-columns: 1fr;
    }

    .stl-faq__cta-intro,
    .stl-faq__cta-benefits,
    .stl-faq__cta-action {
        grid-column: 1;
        grid-row: auto;
    }

    .stl-faq__cta-intro {
        padding:
            0
            0
            23px;

        border-right: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-faq__cta-benefits {
        padding:
            22px
            0;

        border-top: 0;
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-faq__cta-action {
        padding:
            23px
            0
            0;

        border-left: 0;
    }
}


/* =========================================================
   FAQ — MOBILE 620
   ========================================================= */

@media (max-width: 620px) {

    .stl-faq__glow {
        display: none;
    }

    .stl-faq__inner {
        padding:
            60px
            18px
            48px;

        gap: 34px;
    }

    .stl-faq__top {
        gap: 42px;
    }

    .stl-faq__header h2 {
        font-size:
            clamp(38px, 10.2vw, 46px);

        line-height: 1.04;
    }

    .stl-faq__header h2 br {
        display: none;
    }

    .stl-faq__header p {
        font-size: 16px;
        line-height: 1.52;
    }

    .stl-faq__visual {
        min-height: 405px;

        margin-top: 24px;
    }

    .stl-faq__blueprint {
        right: -9%;
        bottom: 4%;

        width: 111%;
        height: 72%;
    }

    .stl-faq__main-bracket {
        top: 49%;
        left: 55%;

        width: 90%;
        height: 69%;
    }

    .stl-faq__file-card {
        top: 2%;
        left: 0;

        width: 34%;
        height: 40%;
    }

    .stl-faq__connector {
        display: none;
    }

    .stl-faq__check-card {
        top: auto;
        right: 0;
        bottom: 0;

        width: 47%;
        min-height: 145px;

        padding: 15px;
    }

    .stl-faq__check-card strong {
        font-size: 13px;
    }

    .stl-faq__check-card span {
        font-size: 11px;
    }

    .stl-faq__quick-support {
        margin-top: 27px;

        padding:
            21px
            18px;
    }

    .stl-faq__quick-support-main {
        align-items: flex-start;
    }

    .stl-faq__quick-support-main > img {
        width: 62px;
        height: 62px;
    }

    .stl-faq__quick-support-main strong {
        font-size: 16px;
    }

    .stl-faq__quick-support-main p {
        font-size: 12px;
    }

    .stl-faq__accordion {
        gap: 12px;
    }

    .stl-faq-item__trigger {
        min-height: 0;

        padding:
            16px
            15px;

        grid-template-columns:
            32px
            52px
            minmax(0, 1fr)
            36px;

        align-items: start;

        gap: 10px;
    }

    .stl-faq-item__number {
        min-width: 0;

        font-size: 17px;
    }

    .stl-faq-item__icon {
        width: 52px;
        height: 52px;
    }

    .stl-faq-item__heading small {
        font-size: 9px;
    }

    .stl-faq-item__heading strong {
        margin-top: 6px;

        font-size: 14px;
        line-height: 1.32;
    }

    .stl-faq-item__state {
        width: 36px;
        height: 36px;
    }

    .stl-faq-item__answer p {
        padding:
            0
            16px
            18px
            109px;

        font-size: 13px;
        line-height: 1.5;
    }

    .stl-faq__cta {
        padding:
            22px
            18px;
    }

    .stl-faq__cta-intro {
        align-items: flex-start;
    }

    .stl-faq__cta-intro > img {
        width: 66px;
        height: 66px;
    }

    .stl-faq__cta-intro strong {
        font-size: 16px;
    }

    .stl-faq__cta-intro p {
        font-size: 12px;
    }

    .stl-faq__cta-benefits {
        grid-template-columns: 1fr;

        padding:
            7px
            0;
    }

    .stl-faq-cta-benefit {
        min-height: 88px;

        padding:
            15px
            0;
    }

    .stl-faq-cta-benefit:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .stl-faq-cta-benefit strong {
        font-size: 14px;
    }

    .stl-faq-cta-benefit span {
        font-size: 12px;
    }

    .stl-faq__cta-button {
        min-height: 59px;

        font-size: 13px;
    }

    .stl-faq__cta-action small {
        font-size: 11px;
    }

    .stl-faq__contact-link {
        margin-top: 17px;

        font-size: 12px;
    }

    .stl-faq__trust {
        width:
            calc(100% + 18px);

        padding:
            3px
            54px
            12px
            0;

        justify-content: flex-start;

        gap: 12px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-faq__trust::-webkit-scrollbar {
        display: none;
    }

    .stl-faq__trust span {
        min-height: 58px;

        padding:
            12px
            15px;

        flex:
            0
            0
            calc(100vw - 95px);

        border:
            1px solid rgba(20, 20, 20, 0.06);

        border-radius: 14px;

        background: #ffffff;

        box-shadow:
            0 9px 24px rgba(35, 31, 23, 0.045);

        white-space: normal;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-faq__trust i {
        display: none;
    }
}


/* =========================================================
   FAQ — MOBILE 390
   ========================================================= */

@media (max-width: 390px) {

    .stl-faq__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .stl-faq__visual {
        min-height: 380px;
    }

    .stl-faq__file-card {
        width: 36%;
    }

    .stl-faq__check-card {
        width: 50%;
    }

    .stl-faq-item__trigger {
        grid-template-columns:
            28px
            46px
            minmax(0, 1fr)
            32px;

        gap: 8px;
    }

    .stl-faq-item__icon {
        width: 46px;
        height: 46px;
    }

    .stl-faq-item__state {
        width: 32px;
        height: 32px;
    }

    .stl-faq-item__answer p {
        padding-left: 98px;
    }

    .stl-faq__trust {
        width:
            calc(100% + 16px);

        padding-right: 48px;
    }

    .stl-faq__trust span {
        flex-basis:
            calc(100vw - 84px);
    }
}


/* =========================================================
   FAQ — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stl-faq-item,
    .stl-faq-item__answer-wrap,
    .stl-faq__cta-button,
    .stl-faq__contact-link {
        transition: none !important;
    }

    .stl-faq__cta-button:hover {
        transform: none;
    }
}

/* =========================================================
   SCREEN 9 — FINAL CTA
   ========================================================= */

.stl-final-cta {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    scroll-margin-top:
        calc(var(--header-height) + 20px);

    background:
        radial-gradient(
            circle at 16% 36%,
            rgba(255, 197, 36, 0.06),
            transparent 38%
        ),
        radial-gradient(
            circle at 86% 19%,
            rgba(255, 221, 138, 0.085),
            transparent 41%
        ),
        linear-gradient(
            180deg,
            #fffdfa 0%,
            #fffaf3 52%,
            #ffffff 100%
        );
}

.stl-final-cta__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    overflow: hidden;

    pointer-events: none;
}

.stl-final-cta__glow {
    position: absolute;

    border-radius: 50%;
}

.stl-final-cta__glow--left {
    top: 9%;
    left: -22%;

    width:
        clamp(560px, 42vw, 960px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 198, 37, 0.07),
            transparent 70%
        );
}

.stl-final-cta__glow--right {
    top: -25%;
    right: -17%;

    width:
        clamp(650px, 49vw, 1120px);

    aspect-ratio: 1;

    background:
        radial-gradient(
            circle,
            rgba(255, 221, 138, 0.1),
            transparent 70%
        );
}


/* =========================================================
   INNER PANEL
   ========================================================= */

.stl-final-cta__inner {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 100svh;

    padding:
        clamp(26px, 1.9vw, 38px)
        var(--page-space)
        clamp(25px, 1.8vw, 36px);
}

.stl-final-cta__panel {
    width: 100%;
    min-height:
        calc(
            100svh -
            clamp(51px, 3.7vw, 74px)
        );

    padding:
        clamp(38px, 2.7vw, 54px)
        clamp(42px, 3vw, 60px)
        clamp(18px, 1.4vw, 28px);

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(239, 170, 0, 0.11);

    border-radius:
        clamp(22px, 1.55vw, 31px);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.99),
            rgba(255, 253, 248, 0.985)
        );

    box-shadow:
        0 24px 65px rgba(42, 35, 24, 0.075);
}

.stl-final-cta__top {
    width: 100%;

    flex:
        1
        1
        auto;

    display: grid;

    grid-template-columns:
        minmax(420px, 0.92fr)
        minmax(570px, 1.08fr);

    align-items: stretch;

    gap:
        clamp(34px, 2.7vw, 54px);
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.stl-final-cta__content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.stl-final-cta__header {
    width: min(100%, 690px);
}

.stl-final-cta__kicker {
    width: fit-content;

    min-height:
        clamp(33px, 2.15vw, 43px);

    margin-bottom:
        clamp(22px, 1.55vw, 31px);

    padding:
        7px
        clamp(14px, 1vw, 20px);

    display: inline-flex;
    align-items: center;

    gap:
        clamp(9px, 0.6vw, 12px);

    border:
        1px solid rgba(239, 170, 0, 0.15);

    border-radius: 999px;

    background:
        rgba(255, 252, 244, 0.98);

    color: #e89f00;

    font-size:
        clamp(10px, 0.67vw, 13px);

    line-height: 1;
    font-weight: 760;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.stl-final-cta__kicker > span {
    width:
        clamp(10px, 0.67vw, 13px);

    height:
        clamp(10px, 0.67vw, 13px);

    flex: 0 0 auto;

    border-radius: 50%;

    background: #ffad00;

    box-shadow:
        0 0 0 5px rgba(255, 173, 0, 0.08);
}

.stl-final-cta__header h2 {
    margin: 0;

    color: #111214;

    font-size:
        clamp(42px, 3.15vw, 63px);

    line-height: 1.04;
    font-weight: 655;
    letter-spacing: -0.052em;
}

.stl-final-cta__header h2 span {
    color: #efa900;
}

.stl-final-cta__header p {
    width: min(100%, 625px);

    margin:
        clamp(18px, 1.3vw, 26px)
        0
        0;

    color: #5d5d5d;

    font-size:
        clamp(14px, 0.92vw, 17.5px);

    line-height: 1.58;
}


/* =========================================================
   FILE TYPES
   ========================================================= */

.stl-final-cta__file-types {
    width: 100%;
    min-height:
        clamp(72px, 5.4vw, 108px);

    margin-top:
        clamp(24px, 1.75vw, 35px);

    padding:
        clamp(10px, 0.7vw, 14px)
        clamp(13px, 0.95vw, 19px);

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border:
        1px solid rgba(20, 20, 20, 0.06);

    border-radius:
        clamp(13px, 0.9vw, 18px);

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 12px 30px rgba(35, 31, 23, 0.04);
}

.stl-final-cta-file-type {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(10px, 0.75vw, 15px);

    display: flex;
    align-items: center;

    gap:
        clamp(10px, 0.75vw, 15px);
}

.stl-final-cta-file-type:first-child {
    padding-left: 0;
}

.stl-final-cta-file-type:last-child {
    padding-right: 0;
}

.stl-final-cta-file-type:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 10%;
    right: 0;

    width: 1px;
    height: 80%;

    background:
        rgba(20, 20, 20, 0.07);
}

.stl-final-cta-file-type img {
    width:
        clamp(36px, 2.35vw, 47px);

    height:
        clamp(36px, 2.35vw, 47px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-final-cta-file-type strong {
    color: #333333;

    font-size:
        clamp(11.5px, 0.78vw, 14.5px);

    line-height: 1.35;
    font-weight: 700;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.stl-final-cta__actions {
    width: 100%;

    margin-top:
        clamp(25px, 1.8vw, 36px);

    display: grid;

    grid-template-columns:
        minmax(235px, 1.22fr)
        auto
        minmax(180px, 0.78fr);

    align-items: stretch;

    gap:
        clamp(16px, 1.15vw, 23px);
}

.stl-final-cta__primary-action,
.stl-final-cta__personal-action {
    min-width: 0;

    text-align: center;
}

.stl-final-cta__upload-button {
    width: 100%;
    min-height:
        clamp(56px, 3.9vw, 78px);

    padding:
        0
        clamp(19px, 1.35vw, 27px);

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap:
        clamp(12px, 0.9vw, 18px);

    border-radius:
        clamp(11px, 0.78vw, 16px);

    background:
        linear-gradient(
            135deg,
            #ffc42d,
            #ff9f00
        );

    color: #171717;

    font-size:
        clamp(14px, 0.95vw, 19px);

    line-height: 1;
    font-weight: 740;

    box-shadow:
        0 15px 32px rgba(237, 164, 0, 0.24);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.stl-final-cta__upload-button:hover,
.stl-final-cta__upload-button:focus-visible {
    transform: translateY(-3px);

    box-shadow:
        0 21px 40px rgba(237, 164, 0, 0.32);

    outline: none;
}

.stl-final-cta__upload-button img {
    width:
        clamp(22px, 1.45vw, 29px);

    height:
        clamp(22px, 1.45vw, 29px);

    object-fit: contain;
}

.stl-final-cta__primary-action small,
.stl-final-cta__personal-action small {
    display: block;

    margin-top:
        clamp(8px, 0.58vw, 11px);

    color: #757575;

    font-size:
        clamp(10.5px, 0.7vw, 12.5px);

    line-height: 1.4;
}

.stl-final-cta__actions-divider {
    position: relative;

    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777777;

    font-size:
        clamp(10px, 0.65vw, 13px);

    line-height: 1;
}

.stl-final-cta__actions-divider::before,
.stl-final-cta__actions-divider::after {
    content: "";

    position: absolute;
    left: 50%;

    width: 1px;
    height: 30%;

    background:
        rgba(20, 20, 20, 0.1);
}

.stl-final-cta__actions-divider::before {
    top: 0;
}

.stl-final-cta__actions-divider::after {
    bottom: 0;
}

.stl-final-cta__whatsapp-button {
    width: 100%;
    min-height:
        clamp(56px, 3.9vw, 78px);

    padding:
        0
        clamp(14px, 1vw, 20px);

    display: flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(10px, 0.75vw, 15px);

    border:
        1px solid rgba(20, 20, 20, 0.075);

    border-radius:
        clamp(11px, 0.78vw, 16px);

    background:
        rgba(255, 255, 255, 0.98);

    color: #282828;

    font-size:
        clamp(12px, 0.82vw, 15.5px);

    line-height: 1.3;
    font-weight: 700;

    box-shadow:
        0 12px 28px rgba(35, 31, 23, 0.055);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.stl-final-cta__whatsapp-button:hover,
.stl-final-cta__whatsapp-button:focus-visible {
    transform: translateY(-3px);

    border-color:
        rgba(38, 193, 88, 0.32);

    box-shadow:
        0 18px 36px rgba(35, 31, 23, 0.085);

    outline: none;
}

.stl-final-cta__whatsapp-button img {
    width:
        clamp(25px, 1.6vw, 32px);

    height:
        clamp(25px, 1.6vw, 32px);

    flex: 0 0 auto;

    object-fit: contain;
}


/* =========================================================
   REVIEW NOTE
   ========================================================= */

.stl-final-cta__review-note {
    margin-top:
        clamp(19px, 1.35vw, 27px);

    display: flex;
    align-items: center;

    gap:
        clamp(12px, 0.85vw, 17px);
}

.stl-final-cta__review-note img {
    width:
        clamp(34px, 2.15vw, 43px);

    height:
        clamp(34px, 2.15vw, 43px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-final-cta__review-note p {
    margin: 0;

    color: #595959;

    font-size:
        clamp(11.5px, 0.78vw, 14.5px);

    line-height: 1.48;
}

.stl-final-cta__review-note strong {
    color: #292929;

    font-weight: 710;
}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.stl-final-cta__visual {
    position: relative;
    isolation: isolate;

    min-width: 0;
    min-height:
        clamp(440px, 33vw, 655px);
}

.stl-final-cta__visual-glow {
    position: absolute;
    top: 10%;
    left: 15%;
    z-index: -1;

    width: 79%;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 196, 32, 0.13),
            transparent 68%
        );
}

.stl-final-cta__file-card {
    position: absolute;
    top: 2%;
    left: 9%;
    z-index: 8;

    width:
        clamp(220px, 15.5vw, 310px);

    min-height:
        clamp(76px, 5.4vw, 108px);

    padding:
        clamp(13px, 0.95vw, 19px);

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap:
        clamp(10px, 0.75vw, 15px);

    border:
        1px solid rgba(20, 20, 20, 0.06);

    border-radius:
        clamp(14px, 0.95vw, 19px);

    background:
        rgba(255, 255, 255, 0.98);

    box-shadow:
        0 15px 36px rgba(35, 31, 23, 0.08);
}

.stl-final-cta__file-card > img:first-child {
    width:
        clamp(39px, 2.45vw, 49px);

    height:
        clamp(39px, 2.45vw, 49px);

    object-fit: contain;
}

.stl-final-cta__file-card strong,
.stl-final-cta__file-card span {
    display: block;
}

.stl-final-cta__file-card strong {
    color: #333333;

    font-size:
        clamp(11.5px, 0.78vw, 14.5px);

    line-height: 1.3;
    font-weight: 700;
}

.stl-final-cta__file-card span {
    margin-top: 5px;

    color: #797979;

    font-size:
        clamp(10px, 0.66vw, 12px);

    line-height: 1.3;
}

.stl-final-cta__file-card-check {
    width:
        clamp(21px, 1.35vw, 27px);

    height:
        clamp(21px, 1.35vw, 27px);

    object-fit: contain;
}

.stl-final-cta__response-card {
    position: absolute;
    top: 11%;
    right: 2%;
    z-index: 8;

    width:
        clamp(170px, 11.5vw, 230px);

    min-height:
        clamp(140px, 9.8vw, 196px);

    padding:
        clamp(17px, 1.2vw, 24px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    border:
        1px solid rgba(20, 20, 20, 0.055);

    border-radius:
        clamp(17px, 1.15vw, 23px);

    background:
        rgba(255, 255, 255, 0.97);

    box-shadow:
        0 17px 40px rgba(35, 31, 23, 0.075);
}

.stl-final-cta__response-person {
    width:
        clamp(30px, 1.95vw, 39px);

    height:
        clamp(30px, 1.95vw, 39px);

    object-fit: contain;
}

.stl-final-cta__response-card strong {
    display: block;

    margin-top:
        clamp(10px, 0.72vw, 14px);

    color: #292929;

    font-size:
        clamp(12px, 0.8vw, 15px);

    line-height: 1.35;
    font-weight: 710;
}

.stl-final-cta__response-card > span {
    display: block;

    margin-top:
        clamp(10px, 0.7vw, 14px);

    color: #777777;

    font-size:
        clamp(10px, 0.66vw, 12px);

    line-height: 1.45;
}

.stl-final-cta__response-check {
    position: absolute;
    right:
        clamp(10px, 0.72vw, 14px);
    bottom:
        clamp(10px, 0.72vw, 14px);

    width:
        clamp(23px, 1.45vw, 29px);

    height:
        clamp(23px, 1.45vw, 29px);

    object-fit: contain;
}

.stl-final-cta__arrow {
    position: absolute;
    z-index: 4;

    object-fit: contain;

    pointer-events: none;
}

.stl-final-cta__arrow--response {
    top: 7%;
    right: 20%;

    width: 29%;
    height: 18%;
}

.stl-final-cta__arrow--wireframe {
    top: 17%;
    left: 28%;

    width: 22%;
    height: 22%;
}

.stl-final-cta__wireframe {
    position: absolute;
    top: 29%;
    left: 5%;
    z-index: 2;

    width: 47%;
    height: 41%;

    object-fit: contain;
    object-position: center;

    opacity: 0.8;

    filter:
        drop-shadow(
            0 14px 17px rgba(35, 31, 23, 0.065)
        );
}

.stl-final-cta__finished-part {
    position: absolute;
    top: 32%;
    right: 9%;
    z-index: 5;

    width: 55%;
    height: 44%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 23px 21px rgba(35, 30, 21, 0.14)
        );
}


/* =========================================================
   PROCESS
   ========================================================= */

.stl-final-cta__process {
    position: absolute;
    right: 1%;
    bottom: 0;
    left: 4%;
    z-index: 9;

    display: grid;

    grid-template-columns:
        minmax(78px, 1fr)
        minmax(70px, 0.9fr)
        minmax(78px, 1fr)
        minmax(70px, 0.9fr)
        minmax(95px, 1fr);

    align-items: center;

    gap:
        clamp(5px, 0.4vw, 8px);
}

.stl-final-cta-process-step {
    min-width: 0;

    text-align: center;
}

.stl-final-cta-process-step__icon {
    width:
        clamp(57px, 3.8vw, 76px);

    height:
        clamp(57px, 3.8vw, 76px);

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(20, 20, 20, 0.07);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.96);

    box-shadow:
        0 10px 26px rgba(35, 31, 23, 0.05);
}

.stl-final-cta-process-step__icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.stl-final-cta-process-step strong {
    display: block;

    min-height:
        clamp(32px, 2.2vw, 44px);

    margin-top:
        clamp(7px, 0.5vw, 10px);

    color: #303030;

    font-size:
        clamp(10.5px, 0.7vw, 13px);

    line-height: 1.3;
    font-weight: 700;
}

.stl-final-cta__process-connector {
    width: 100%;
    height:
        clamp(10px, 0.7vw, 14px);

    object-fit: fill;
}


/* =========================================================
   BENEFITS STRIP
   ========================================================= */

.stl-final-cta__benefits {
    width: 100%;
    min-height:
        clamp(104px, 7.8vw, 156px);

    margin-top:
        clamp(24px, 1.75vw, 35px);

    padding:
        clamp(14px, 1vw, 20px)
        clamp(18px, 1.3vw, 26px);

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border:
        1px solid rgba(239, 170, 0, 0.1);

    border-radius:
        clamp(15px, 1.05vw, 21px);

    background:
        rgba(255, 254, 250, 0.985);

    box-shadow:
        0 14px 35px rgba(35, 31, 23, 0.045);
}

.stl-final-cta-benefit {
    position: relative;

    min-width: 0;

    padding-inline:
        clamp(16px, 1.15vw, 23px);

    display: flex;
    align-items: center;

    gap:
        clamp(12px, 0.9vw, 18px);
}

.stl-final-cta-benefit:first-child {
    padding-left: 0;
}

.stl-final-cta-benefit:last-child {
    padding-right: 0;
}

.stl-final-cta-benefit:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 6%;
    right: 0;

    width: 1px;
    height: 88%;

    background:
        rgba(20, 20, 20, 0.075);
}

.stl-final-cta-benefit > img {
    width:
        clamp(52px, 3.45vw, 69px);

    height:
        clamp(52px, 3.45vw, 69px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-final-cta-benefit strong,
.stl-final-cta-benefit span {
    display: block;
}

.stl-final-cta-benefit strong {
    color: #292929;

    font-size:
        clamp(12px, 0.82vw, 15px);

    line-height: 1.3;
    font-weight: 710;
}

.stl-final-cta-benefit span {
    margin-top:
        clamp(6px, 0.42vw, 8px);

    color: #707070;

    font-size:
        clamp(10.5px, 0.7vw, 13px);

    line-height: 1.42;
}


/* =========================================================
   TRUST ROW
   ========================================================= */

.stl-final-cta__trust {
    width: 100%;

    margin-top:
        clamp(15px, 1.05vw, 21px);

    display: flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(24px, 2.2vw, 44px);

    color: #606060;

    font-size:
        clamp(10.5px, 0.72vw, 13.5px);

    line-height: 1.2;
    font-weight: 570;
}

.stl-final-cta__trust span {
    display: inline-flex;
    align-items: center;

    gap:
        clamp(7px, 0.5vw, 10px);

    white-space: nowrap;
}

.stl-final-cta__trust img {
    width:
        clamp(18px, 1.15vw, 23px);

    height:
        clamp(18px, 1.15vw, 23px);

    flex: 0 0 auto;

    object-fit: contain;
}

.stl-final-cta__trust i {
    width: 4px;
    height: 4px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #efa900;
}


/* =========================================================
   DESKTOP — 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-final-cta__inner {
        padding:
            25px
            42px
            25px;
    }

    .stl-final-cta__panel {
        padding:
            38px
            42px
            20px;
    }

    .stl-final-cta__top {
        grid-template-columns:
            minmax(410px, 0.93fr)
            minmax(545px, 1.07fr);

        gap: 36px;
    }

    .stl-final-cta__header h2 {
        font-size:
            clamp(42px, 3.1vw, 51px);
    }

    .stl-final-cta__header p {
        font-size: 14px;
    }

    .stl-final-cta__visual {
        min-height: 480px;
    }

    .stl-final-cta__benefits {
        min-height: 118px;
    }
}


/* =========================================================
   TABLET — 1180
   ========================================================= */

@media (max-width: 1180px) {

    .stl-final-cta {
        min-height: 0;
    }

    .stl-final-cta__inner {
        min-height: 0;

        padding:
            55px
            30px
            55px;
    }

    .stl-final-cta__panel {
        min-height: 0;

        padding:
            45px
            38px
            27px;
    }

    .stl-final-cta__top {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .stl-final-cta__header {
        max-width: 850px;
    }

    .stl-final-cta__header h2 {
        font-size:
            clamp(49px, 5.9vw, 68px);
    }

    .stl-final-cta__header p {
        max-width: 780px;

        font-size: 17px;
    }

    .stl-final-cta-file-type strong {
        font-size: 14px;
    }

    .stl-final-cta__visual {
        min-height:
            clamp(535px, 62vw, 690px);
    }

    .stl-final-cta__file-card {
        left: 8%;
    }

    .stl-final-cta__response-card {
        right: 3%;
    }

    .stl-final-cta__benefits {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        padding:
            8px
            22px;
    }

    .stl-final-cta-benefit,
    .stl-final-cta-benefit:first-child,
    .stl-final-cta-benefit:last-child {
        min-height: 115px;

        padding:
            20px
            18px;
    }

    .stl-final-cta-benefit:nth-child(2n) {
        padding-right: 0;
    }

    .stl-final-cta-benefit:nth-child(2n + 1) {
        padding-left: 0;
    }

    .stl-final-cta-benefit:not(:last-child)::after {
        display: none;
    }

    .stl-final-cta-benefit:nth-child(odd)::after {
        display: block;

        top: 12%;
        right: 0;

        height: 76%;
    }

    .stl-final-cta-benefit:nth-child(-n + 2)::before {
        content: "";

        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;

        height: 1px;

        background:
            rgba(20, 20, 20, 0.075);
    }

    .stl-final-cta-benefit strong {
        font-size: 14px;
    }

    .stl-final-cta-benefit span {
        font-size: 12px;
    }
}


/* =========================================================
   TABLET — 900
   ========================================================= */

@media (max-width: 900px) {

    .stl-final-cta__inner {
        padding:
            48px
            24px
            50px;
    }

    .stl-final-cta__panel {
        padding:
            39px
            28px
            26px;
    }

    .stl-final-cta__header h2 {
        font-size:
            clamp(44px, 7vw, 58px);
    }

    .stl-final-cta__actions {
        grid-template-columns:
            minmax(0, 1fr)
            auto
            minmax(200px, 0.68fr);
    }

    .stl-final-cta__visual {
        min-height: 560px;
    }

    .stl-final-cta__wireframe {
        left: 0;

        width: 57%;
    }

    .stl-final-cta__finished-part {
        right: 3%;

        width: 66%;
    }

    .stl-final-cta__process {
        left: 1%;
    }
}


/* =========================================================
   MOBILE — 620
   ========================================================= */

@media (max-width: 620px) {

    .stl-final-cta__glow {
        display: none;
    }

    .stl-final-cta__inner {
        padding:
            35px
            14px
            40px;
    }

    .stl-final-cta__panel {
        padding:
            29px
            18px
            22px;

        border-radius: 21px;
    }

    .stl-final-cta__top {
        gap: 40px;
    }

    .stl-final-cta__kicker {
        margin-bottom: 19px;

        font-size: 9px;
    }

    .stl-final-cta__header h2 {
        font-size:
            clamp(37px, 10vw, 46px);

        line-height: 1.05;
    }

    .stl-final-cta__header h2 br {
        display: none;
    }

    .stl-final-cta__header p {
        font-size: 16px;
        line-height: 1.53;
    }

    .stl-final-cta__file-types {
        grid-template-columns: 1fr;

        padding:
            7px
            17px;
    }

    .stl-final-cta-file-type,
    .stl-final-cta-file-type:first-child,
    .stl-final-cta-file-type:last-child {
        min-height: 74px;

        padding:
            13px
            0;
    }

    .stl-final-cta-file-type:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 1px;
    }

    .stl-final-cta-file-type strong {
        font-size: 14px;
    }

    .stl-final-cta__actions {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .stl-final-cta__actions-divider {
        min-height: 22px;
    }

    .stl-final-cta__actions-divider::before,
    .stl-final-cta__actions-divider::after {
        top: 50%;

        width: 35%;
        height: 1px;
    }

    .stl-final-cta__actions-divider::before {
        right: auto;
        left: 0;
    }

    .stl-final-cta__actions-divider::after {
        right: 0;
        left: auto;
    }

    .stl-final-cta__upload-button,
    .stl-final-cta__whatsapp-button {
        min-height: 62px;
    }

    .stl-final-cta__upload-button {
        font-size: 15px;
    }

    .stl-final-cta__whatsapp-button {
        font-size: 14px;
    }

    .stl-final-cta__primary-action small,
    .stl-final-cta__personal-action small {
        font-size: 11px;
    }

    .stl-final-cta__review-note p {
        font-size: 12px;
    }

    .stl-final-cta__visual {
        min-height: 580px;
    }

    .stl-final-cta__file-card {
        top: 0;
        left: 0;

        width: 74%;
    }

    .stl-final-cta__response-card {
        top: 17%;
        right: 0;

        width: 46%;
        min-height: 160px;
    }

    .stl-final-cta__response-card strong {
        font-size: 12px;
    }

    .stl-final-cta__response-card > span {
        font-size: 10px;
    }

    .stl-final-cta__arrow--response {
        top: 9%;
        right: 25%;

        width: 38%;
    }

    .stl-final-cta__arrow--wireframe {
        top: 16%;
        left: 32%;

        width: 30%;
    }

    .stl-final-cta__wireframe {
        top: 34%;
        left: -8%;

        width: 66%;
        height: 37%;
    }

    .stl-final-cta__finished-part {
        top: 37%;
        right: -10%;

        width: 79%;
        height: 40%;
    }

    .stl-final-cta__process {
        right: 0;
        bottom: 0;
        left: 0;

        grid-template-columns:
            minmax(76px, 1fr)
            35px
            minmax(76px, 1fr)
            35px
            minmax(88px, 1fr);
    }

    .stl-final-cta-process-step__icon {
        width: 58px;
        height: 58px;
    }

    .stl-final-cta-process-step strong {
        font-size: 10px;
    }

    .stl-final-cta__benefits {
        grid-template-columns: 1fr;

        margin-top: 34px;

        padding:
            7px
            18px;
    }

    .stl-final-cta-benefit,
    .stl-final-cta-benefit:first-child,
    .stl-final-cta-benefit:last-child,
    .stl-final-cta-benefit:nth-child(2n),
    .stl-final-cta-benefit:nth-child(2n + 1) {
        min-height: 105px;

        padding:
            18px
            0;
    }

    .stl-final-cta-benefit::before,
    .stl-final-cta-benefit::after {
        display: none !important;
    }

    .stl-final-cta-benefit:not(:last-child) {
        border-bottom:
            1px solid rgba(20, 20, 20, 0.075);
    }

    .stl-final-cta-benefit > img {
        width: 61px;
        height: 61px;
    }

    .stl-final-cta-benefit strong {
        font-size: 14px;
    }

    .stl-final-cta-benefit span {
        font-size: 12px;
    }

    .stl-final-cta__trust {
        width:
            calc(100% + 18px);

        padding:
            2px
            54px
            10px
            0;

        justify-content: flex-start;

        gap: 12px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .stl-final-cta__trust::-webkit-scrollbar {
        display: none;
    }

    .stl-final-cta__trust span {
        min-height: 56px;

        padding:
            11px
            15px;

        flex:
            0
            0
            calc(100vw - 90px);

        border:
            1px solid rgba(20, 20, 20, 0.06);

        border-radius: 14px;

        background: #ffffff;

        box-shadow:
            0 9px 23px rgba(35, 31, 23, 0.045);

        white-space: normal;

        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .stl-final-cta__trust i {
        display: none;
    }
}


/* =========================================================
   MOBILE — 390
   ========================================================= */

@media (max-width: 390px) {

    .stl-final-cta__inner {
        padding-right: 12px;
        padding-left: 12px;
    }

    .stl-final-cta__panel {
        padding-right: 16px;
        padding-left: 16px;
    }

    .stl-final-cta__visual {
        min-height: 555px;
    }

    .stl-final-cta__file-card {
        width: 78%;
    }

    .stl-final-cta__response-card {
        width: 49%;
    }

    .stl-final-cta__finished-part {
        right: -13%;

        width: 83%;
    }

    .stl-final-cta__process {
        grid-template-columns:
            minmax(70px, 1fr)
            26px
            minmax(70px, 1fr)
            26px
            minmax(82px, 1fr);
    }

    .stl-final-cta__trust {
        width:
            calc(100% + 16px);

        padding-right: 48px;
    }

    .stl-final-cta__trust span {
        flex-basis:
            calc(100vw - 80px);
    }
}


/* =========================================================
   REVEAL
   ========================================================= */

.stl-final-cta.is-enhanced
[data-stl-final-cta-reveal] {
    opacity: 0;

    transform:
        translateY(22px);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-final-cta.is-enhanced
[data-stl-final-cta-reveal="visual"] {
    transform:
        translateX(26px);
}

.stl-final-cta.is-enhanced
[data-stl-final-cta-reveal="benefits"],
.stl-final-cta.is-enhanced
[data-stl-final-cta-reveal="trust"] {
    transform:
        translateY(18px);
}

.stl-final-cta.is-enhanced.is-visible
[data-stl-final-cta-reveal] {
    opacity: 1;

    transform: none;
}

.stl-final-cta.is-enhanced.is-visible
[data-stl-final-cta-reveal="visual"] {
    transition-delay: 0.12s;
}

.stl-final-cta.is-enhanced.is-visible
[data-stl-final-cta-reveal="benefits"] {
    transition-delay: 0.2s;
}

.stl-final-cta.is-enhanced.is-visible
[data-stl-final-cta-reveal="trust"] {
    transition-delay: 0.27s;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .stl-final-cta.is-enhanced
    [data-stl-final-cta-reveal] {
        opacity: 1;

        transform: none;

        transition: none;
    }

    .stl-final-cta__upload-button,
    .stl-final-cta__whatsapp-button {
        transition: none;
    }

    .stl-final-cta__upload-button:hover,
    .stl-final-cta__whatsapp-button:hover {
        transform: none;
    }
}


/* =========================================================
   HEADER NORMALIZATION TO MATCH HOME
   ========================================================= */

.stl-page .site-header__inner {
    grid-template-columns:
        minmax(250px, 0.95fr)
        minmax(520px, 1.4fr)
        minmax(340px, 1.1fr);
}

.stl-page .site-header__brand {
    width: clamp(235px, 16.5vw, 335px);
}

.stl-page .site-header__navigation {
    gap: clamp(25px, 2.15vw, 44px);
}

.stl-page .site-header__navigation > a,
.stl-page .site-header__dropdown-toggle {
    font-size: clamp(13px, 0.84vw, 17px);
    line-height: 1;
    font-weight: 550;
}

.stl-page .site-header__actions {
    gap: 13px;
}

.stl-page .site-header__project {
    min-width: clamp(190px, 13vw, 245px);
    min-height: clamp(52px, 3.5vw, 66px);
    padding: 0 clamp(20px, 1.4vw, 29px);

    border-radius: 14px;

    font-size: clamp(14px, 0.9vw, 18px);
}

.stl-page .site-header__project img {
    width: 22px;
    height: 22px;
}

.stl-page .site-header__whatsapp {
    min-width: clamp(148px, 10.4vw, 188px);
    min-height: clamp(52px, 3.5vw, 66px);
    padding: 0 clamp(17px, 1.2vw, 23px);

    gap: clamp(10px, 0.72vw, 14px);

    border-radius: 14px;

    font-size: clamp(13px, 0.82vw, 16px);
}

.stl-page .site-header__whatsapp img {
    width: clamp(22px, 1.5vw, 28px);
    height: clamp(22px, 1.5vw, 28px);
}

.stl-page .site-header__dropdown-menu {
    width: min(330px, 82vw);
}

@media (max-width: 1500px) and (min-width: 1181px) {

    .stl-page .site-header__inner {
        grid-template-columns:
            minmax(235px, 0.9fr)
            minmax(470px, 1.32fr)
            minmax(315px, 1fr);
    }

    .stl-page .site-header__brand {
        width: 250px;
    }

    .stl-page .site-header__navigation {
        gap: 27px;
    }

    .stl-page .site-header__project {
        min-width: 205px;
        min-height: 56px;

        font-size: 14px;
    }

    .stl-page .site-header__whatsapp {
        min-width: 154px;
        min-height: 56px;
        padding-inline: 18px;
    }
}

@media (max-width: 1180px) {

    .stl-page .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .stl-page .site-header__brand {
        width: 245px;
    }

    .stl-page .site-header__navigation {
        gap: 0;
    }

    .stl-page .site-header__navigation > a,
    .stl-page .site-header__dropdown-toggle {
        font-size: 16px;
    }

    .stl-page .site-header__dropdown-menu {
        width: 100%;
    }
}

@media (max-width: 620px) {

    .stl-page .site-header__inner {
        padding-inline: 16px;
    }

    .stl-page .site-header__brand {
        width: 202px;
    }

    .stl-page .site-header__whatsapp {
        min-width: 0;
        width: 47px;
        height: 47px;
        padding: 0;

        border-radius: 13px;
    }
}

@media (min-width: 1181px) {
    .stl-page .site-header__inner {
        padding-inline: clamp(24px, 2.2vw, 42px);

        grid-template-columns:
            minmax(220px, 0.9fr)
            minmax(0, 1.55fr)
            minmax(290px, 1fr);
    }

    .stl-page .site-header__navigation {
        gap: clamp(16px, 1.15vw, 24px);
    }

    .stl-page .site-header__navigation > a,
    .stl-page .site-header__dropdown-toggle {
        font-size: clamp(11px, 0.72vw, 14px);
    }

    .stl-page .site-header__actions {
        gap: clamp(9px, 0.7vw, 12px);
    }

    .stl-page .site-header__project {
        min-width: clamp(170px, 11vw, 220px);
        padding: 0 clamp(16px, 1vw, 22px);
        gap: 14px;

        font-size: clamp(13px, 0.82vw, 16px);
    }

    .stl-page .site-header__whatsapp {
        min-width: clamp(128px, 9vw, 166px);
        padding: 0 clamp(14px, 0.95vw, 20px);
    }
}

@media (min-width: 1181px) {
    .stl-page .site-header__navigation {
        gap: clamp(16px, 1.15vw, 22px);
    }

    .stl-page .site-header__navigation > a,
    .stl-page .site-header__dropdown-toggle {
        font-size: clamp(14px, 0.92vw, 16.5px);
    }

    .stl-page .site-header__project {
        min-width: clamp(158px, 10.1vw, 205px);
        padding: 0 clamp(13px, 0.9vw, 18px);
        gap: 10px;

        font-size: clamp(13px, 0.8vw, 15.5px);
    }

    .stl-page .site-header__whatsapp {
        min-width: clamp(116px, 8.1vw, 152px);
        padding: 0 clamp(12px, 0.82vw, 16px);
    }
}
