.supershow-landing {
    --ss-turquoise: #00a9b7;
    --ss-turquoise-bright: #23d8d2;
    --ss-violet: #51258f;
    --ss-violet-bright: #8d55ef;
    --ss-coral: #ff526d;
    --ss-yellow: #ffd33d;
    --ss-ink: #25163f;
    --ss-muted: #665d75;
    --ss-paper: #ffffff;
    --ss-cloud: #f6f4fb;
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    color: var(--ss-ink);
    background: var(--ss-paper);
    font-family: Inter, Nunito, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

.supershow-landing *,
.supershow-landing *::before,
.supershow-landing *::after {
    box-sizing: border-box;
}

.supershow-landing img {
    display: block;
    max-width: 100%;
}

.supershow-landing h1,
.supershow-landing h2,
.supershow-landing h3,
.supershow-landing p {
    margin-top: 0;
}

.supershow-landing h1,
.supershow-landing h2,
.supershow-landing h3 {
    color: inherit;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.supershow-landing h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 6vw, 5.65rem);
}

.supershow-landing h2 {
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 4.6vw, 4.25rem);
}

.supershow-landing h3 {
    margin-bottom: 12px;
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.ss-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ss-section {
    position: relative;
    padding: clamp(76px, 10vw, 136px) 0;
    scroll-margin-top: 80px;
}

.ss-kicker {
    margin-bottom: 15px;
    color: var(--ss-coral);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ss-heading {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.ss-heading > p:last-child {
    max-width: 720px;
    margin: 0 auto;
    color: var(--ss-muted);
    font-size: 1.08rem;
}

.ss-heading-left {
    margin: 0;
    text-align: left;
}

.ss-heading-left > p:last-child {
    margin-left: 0;
}

.ss-hero {
    position: relative;
    min-height: 760px;
    padding: clamp(50px, 8vw, 105px) 0 clamp(80px, 10vw, 130px);
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(35, 216, 210, .22), transparent 28%),
        radial-gradient(circle at 92% 20%, rgba(255, 82, 109, .18), transparent 28%),
        linear-gradient(145deg, #fff 0%, #f9f5ff 58%, #effdfd 100%);
}

.ss-hero::after {
    position: absolute;
    right: -100px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(141, 85, 239, .08);
    border-radius: 50%;
    content: "";
}

.ss-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: clamp(46px, 7vw, 96px);
    align-items: center;
}

.ss-logo {
    width: min(390px, 76%);
    height: auto;
    margin-bottom: clamp(34px, 6vw, 64px);
}

.ss-lead {
    max-width: 680px;
    margin-bottom: 32px;
    color: var(--ss-muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.ss-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.ss-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.ss-button:hover {
    transform: translateY(-2px);
}

.ss-button:focus-visible,
.ss-program a:focus-visible,
.ss-faq-list summary:focus-visible {
    outline: 3px solid var(--ss-yellow);
    outline-offset: 4px;
}

.ss-button-primary {
    color: #fff !important;
    background: var(--ss-coral);
    box-shadow: 0 14px 30px rgba(255, 82, 109, .28);
}

.ss-button-primary:hover {
    color: #fff !important;
    background: #ef3d5b;
    box-shadow: 0 18px 36px rgba(255, 82, 109, .34);
}

.ss-button-ghost {
    color: var(--ss-violet) !important;
    border-color: rgba(81, 37, 143, .2);
    background: rgba(255, 255, 255, .78);
}

.ss-button-ghost:hover {
    border-color: var(--ss-violet);
    color: var(--ss-violet) !important;
}

.ss-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ss-trust li {
    padding: 7px 12px;
    border: 1px solid rgba(81, 37, 143, .1);
    border-radius: 999px;
    color: #51475f;
    background: rgba(255, 255, 255, .75);
    font-size: .82rem;
    font-weight: 720;
}

.ss-trust li::before {
    margin-right: 7px;
    color: var(--ss-turquoise);
    content: "●";
}

.ss-hero-visual {
    position: relative;
    margin: 0;
}

.ss-hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 4.6;
    border: 10px solid #fff;
    border-radius: 48% 48% 46% 54% / 42% 54% 46% 58%;
    object-fit: cover;
    object-position: 54% center;
    box-shadow: 0 35px 80px rgba(62, 31, 104, .24);
}

.ss-hero-visual figcaption {
    position: absolute;
    z-index: 3;
    right: -12px;
    bottom: 38px;
    max-width: 230px;
    padding: 14px 19px;
    border-radius: 18px;
    color: var(--ss-ink);
    background: var(--ss-yellow);
    box-shadow: 0 15px 34px rgba(37, 22, 63, .2);
    font-size: .94rem;
    font-weight: 850;
    line-height: 1.25;
    transform: rotate(-3deg);
}

.ss-orbit {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
}

.ss-orbit-one {
    top: -38px;
    right: -46px;
    width: 168px;
    height: 168px;
    border: 24px solid rgba(35, 216, 210, .46);
}

.ss-orbit-two {
    bottom: -42px;
    left: -45px;
    width: 120px;
    height: 120px;
    background: rgba(255, 82, 109, .18);
}

.ss-program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ss-program {
    overflow: hidden;
    border: 1px solid rgba(81, 37, 143, .09);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(64, 40, 92, .1);
    transition: transform .22s ease, box-shadow .22s ease;
}

.ss-program:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 66px rgba(64, 40, 92, .16);
}

.ss-program-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--ss-cloud);
}

.ss-program-image::after {
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(37, 22, 63, .24));
    content: "";
}

.ss-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.ss-program:hover img {
    transform: scale(1.04);
}

.ss-program-copy {
    padding: 26px 27px 30px;
}

.ss-program-copy p {
    min-height: 5.2em;
    margin-bottom: 20px;
    color: var(--ss-muted);
}

.ss-program-copy a {
    color: var(--ss-violet);
    font-weight: 850;
    text-decoration: none;
}

.ss-program-bubbles .ss-program-copy a {
    color: var(--ss-turquoise);
}

.ss-program-paper .ss-program-copy a {
    color: var(--ss-coral);
}

.ss-section-violet {
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(35, 216, 210, .24), transparent 24%),
        radial-gradient(circle at 10% 90%, rgba(255, 82, 109, .22), transparent 28%),
        var(--ss-violet);
}

.ss-heading-light > p:last-child,
.ss-section-violet .ss-heading p {
    color: rgba(255, 255, 255, .76);
}

.ss-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ss-benefit {
    min-height: 265px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(7px);
}

.ss-benefit > span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ss-violet);
    background: var(--ss-yellow);
    font-size: .9rem;
    font-weight: 900;
}

.ss-benefit p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
}

.ss-process-grid,
.ss-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
    gap: clamp(55px, 9vw, 120px);
    align-items: start;
}

.ss-steps {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ss-steps li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: start;
    padding: 25px;
    border-radius: 22px;
    background: var(--ss-cloud);
}

.ss-steps li > span {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: var(--ss-turquoise);
    font-size: 1.15rem;
    font-weight: 900;
}

.ss-steps li:nth-child(2) > span {
    background: var(--ss-coral);
}

.ss-steps li:nth-child(3) > span {
    color: var(--ss-ink);
    background: var(--ss-yellow);
}

.ss-steps h3 {
    margin-bottom: 7px;
}

.ss-steps p {
    margin-bottom: 0;
    color: var(--ss-muted);
}

.ss-faq-section {
    background: #faf8fd;
}

.ss-faq-list {
    display: grid;
    gap: 12px;
}

.ss-faq-list details {
    border: 1px solid rgba(81, 37, 143, .1);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(64, 40, 92, .06);
}

.ss-faq-list summary {
    display: flex;
    min-height: 70px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 19px 22px;
    color: var(--ss-ink);
    font-weight: 820;
    line-height: 1.3;
    list-style: none;
}

.ss-faq-list summary::-webkit-details-marker {
    display: none;
}

.ss-faq-list summary span {
    color: var(--ss-coral);
    font-size: 1.65rem;
    font-weight: 500;
    transition: transform .18s ease;
}

.ss-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.ss-faq-list details p {
    margin: -4px 22px 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(81, 37, 143, .08);
    color: var(--ss-muted);
}

.ss-contact {
    background: #fff;
}

.ss-contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr);
    gap: 50px;
    align-items: center;
    padding: clamp(38px, 7vw, 78px);
    border-radius: 36px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 211, 61, .28), transparent 25%),
        linear-gradient(130deg, var(--ss-turquoise) 0%, #008e9f 48%, var(--ss-violet) 100%);
    box-shadow: 0 30px 80px rgba(34, 114, 130, .24);
}

.ss-contact-card h2 {
    max-width: 760px;
}

.ss-contact-card p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .83);
}

.ss-contact-action {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.ss-button-yellow {
    color: var(--ss-ink) !important;
    background: var(--ss-yellow);
    box-shadow: 0 16px 34px rgba(37, 22, 63, .2);
}

.ss-button-yellow:hover {
    color: var(--ss-ink) !important;
    background: #ffe169;
}

.ss-contact-action small {
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    line-height: 1.45;
}

.ss-phone {
    color: #fff !important;
    font-size: 1.08rem;
    font-weight: 850;
    text-decoration: none !important;
}

.ss-phone:hover,
.ss-phone:focus-visible {
    color: var(--ss-yellow) !important;
}

.ss-privacy {
    padding: 0 0 42px;
    background: var(--ss-paper);
}

.ss-privacy details {
    border-top: 1px solid rgba(81, 37, 143, .12);
    color: var(--ss-muted);
    font-size: .84rem;
}

.ss-privacy summary {
    width: fit-content;
    padding: 18px 0 8px;
    color: var(--ss-ink);
    cursor: pointer;
    font-weight: 800;
}

.ss-privacy p {
    max-width: 920px;
    margin: 6px 0;
}

.ss-privacy a {
    color: var(--ss-violet);
    font-weight: 750;
}

/* Multilingual animator catalogue and individual SEO pages. */
.ss-catalog-hero,
.ss-service-hero {
    position: relative;
    padding: clamp(62px, 9vw, 118px) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(35, 216, 210, .2), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255, 82, 109, .16), transparent 26%),
        linear-gradient(145deg, #fff 0%, #faf6ff 60%, #effdfd 100%);
}

.ss-catalog-hero::after,
.ss-service-hero::after {
    position: absolute;
    right: -90px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border: 62px solid rgba(141, 85, 239, .08);
    border-radius: 50%;
    content: "";
}

.ss-catalog-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: clamp(40px, 7vw, 90px);
    align-items: center;
}

.ss-catalog-hero h1,
.ss-service-hero h1 {
    max-width: 900px;
    font-size: clamp(2.5rem, 5.5vw, 5rem);
}

.ss-catalog-count {
    display: grid;
    width: 220px;
    min-height: 220px;
    place-content: center;
    padding: 28px;
    border: 8px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--ss-violet), var(--ss-violet-bright));
    box-shadow: 0 30px 70px rgba(62, 31, 104, .24);
    text-align: center;
}

.ss-catalog-count strong {
    font-size: 4.4rem;
    line-height: .9;
}

.ss-catalog-count span {
    margin-top: 12px;
    font-size: .9rem;
    font-weight: 760;
    line-height: 1.25;
}

.ss-phone-dark {
    align-self: center;
    color: var(--ss-violet) !important;
}

.ss-phone-dark:hover,
.ss-phone-dark:focus-visible {
    color: var(--ss-coral) !important;
}

.ss-catalog-section {
    background: var(--ss-cloud);
}

.ss-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ss-catalog-card {
    overflow: hidden;
    border: 1px solid rgba(81, 37, 143, .08);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(58, 35, 91, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ss-catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(58, 35, 91, .14);
}

.ss-catalog-card-image {
    display: block;
    overflow: hidden;
    background: #eeeaf6;
}

.ss-catalog-card-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .35s ease;
}

.ss-catalog-card:hover .ss-catalog-card-image img {
    transform: scale(1.025);
}

.ss-catalog-card-copy {
    padding: 25px 25px 28px;
}

.ss-card-label {
    margin-bottom: 8px;
    color: var(--ss-coral);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ss-catalog-card h2 {
    margin-bottom: 12px;
    font-size: 1.52rem;
    letter-spacing: -.025em;
}

.ss-catalog-card h2 a,
.ss-related h3 a {
    color: var(--ss-ink);
    text-decoration: none;
}

.ss-catalog-card h2 a:hover,
.ss-related h3 a:hover {
    color: var(--ss-coral);
}

.ss-catalog-card-copy > p:not(.ss-card-label) {
    min-height: 5.1em;
    margin-bottom: 20px;
    color: var(--ss-muted);
    font-size: .94rem;
    line-height: 1.55;
}

.ss-text-link {
    color: var(--ss-violet) !important;
    font-weight: 850;
    text-decoration: none !important;
}

.ss-text-link:hover {
    color: var(--ss-coral) !important;
}

.ss-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: clamp(34px, 5vw, 60px);
    color: var(--ss-muted);
    font-size: .84rem;
    font-weight: 720;
}

.ss-breadcrumb a {
    color: var(--ss-violet);
    text-decoration: none;
}

.ss-service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    gap: clamp(44px, 7vw, 92px);
    align-items: center;
}

.ss-service-image {
    position: relative;
    margin: 0;
}

.ss-service-image img {
    width: 100%;
    aspect-ratio: 1;
    border: 9px solid #fff;
    border-radius: 34px;
    object-fit: cover;
    box-shadow: 0 32px 74px rgba(62, 31, 104, .22);
}

.ss-service-image figcaption {
    position: absolute;
    right: -12px;
    bottom: 26px;
    max-width: 230px;
    padding: 13px 18px;
    border-radius: 16px;
    color: var(--ss-ink);
    background: var(--ss-yellow);
    box-shadow: 0 15px 34px rgba(37, 22, 63, .18);
    font-size: .8rem;
    font-weight: 820;
    line-height: 1.35;
}

.ss-service-content-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(44px, 8vw, 110px);
    align-items: start;
}

.ss-service-content-grid h2 {
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.ss-service-content-grid > div > p:last-child {
    color: var(--ss-muted);
    font-size: 1.05rem;
}

.ss-service-features {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ss-service-features li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 17px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(81, 37, 143, .09);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(58, 35, 91, .07);
}

.ss-service-features span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: var(--ss-violet);
    font-weight: 900;
}

.ss-service-features p {
    margin: 0;
    color: var(--ss-muted);
    line-height: 1.5;
}

.ss-service-practical {
    background: linear-gradient(145deg, #f8f4ff, #effcfc);
}

.ss-practical-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ss-practical-grid article {
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(58, 35, 91, .08);
}

.ss-practical-grid h3 {
    color: var(--ss-violet);
}

.ss-practical-grid p {
    margin: 0;
    color: var(--ss-muted);
}

.ss-related {
    background: #fff;
}

.ss-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ss-related-grid article {
    text-align: center;
}

.ss-related-grid img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 42px rgba(58, 35, 91, .1);
}

.ss-related-grid h3 {
    margin-top: 18px;
    font-size: 1.35rem;
}

.ss-trademark-note {
    padding: 26px 0 40px;
    color: var(--ss-muted);
    background: #fff;
    font-size: .76rem;
    line-height: 1.55;
}

.ss-trademark-note p {
    max-width: 920px;
    margin: 0;
}

@media (max-width: 960px) {
    .ss-hero {
        min-height: auto;
    }

    .ss-hero-grid,
    .ss-process-grid,
    .ss-faq-grid {
        grid-template-columns: 1fr;
    }

    .ss-hero-visual {
        width: min(620px, 92%);
        margin-inline: auto;
    }

    .ss-program-grid,
    .ss-benefit-grid {
        grid-template-columns: 1fr;
    }

    .ss-program {
        display: grid;
        grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr);
    }

    .ss-program-copy p {
        min-height: 0;
    }

    .ss-contact-card {
        grid-template-columns: 1fr;
    }

    .ss-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ss-service-hero-grid,
    .ss-service-content-grid {
        grid-template-columns: 1fr;
    }

    .ss-service-image {
        width: min(650px, 92%);
        margin-inline: auto;
    }

    .ss-practical-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .supershow-landing {
        font-size: 16px;
    }

    .ss-shell {
        width: min(100% - 28px, 1180px);
    }

    .ss-section {
        padding-block: 72px;
    }

    .ss-hero {
        padding-top: 38px;
    }

    .ss-logo {
        width: min(330px, 88%);
        margin-bottom: 38px;
    }

    .ss-actions,
    .ss-button {
        width: 100%;
    }

    .ss-trust {
        display: grid;
    }

    .ss-hero-visual {
        width: 100%;
    }

    .ss-hero-visual img {
        border-width: 7px;
        border-radius: 34px;
        aspect-ratio: 1 / 1.1;
    }

    .ss-hero-visual figcaption {
        right: 6px;
        bottom: 20px;
        max-width: 190px;
        font-size: .78rem;
    }

    .ss-program {
        display: block;
    }

    .ss-benefit {
        min-height: auto;
    }

    .ss-steps li {
        grid-template-columns: 48px 1fr;
        gap: 16px;
        padding: 20px;
    }

    .ss-steps li > span {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .ss-contact-card {
        width: calc(100% - 28px);
        padding: 36px 24px;
        border-radius: 26px;
    }

    .ss-catalog-hero-grid {
        grid-template-columns: 1fr;
    }

    .ss-catalog-count {
        width: 170px;
        min-height: 170px;
        justify-self: center;
    }

    .ss-catalog-count strong {
        font-size: 3.4rem;
    }

    .ss-catalog-grid,
    .ss-related-grid {
        grid-template-columns: 1fr;
    }

    .ss-catalog-card-copy > p:not(.ss-card-label) {
        min-height: 0;
    }

    .ss-service-image {
        width: 100%;
    }

    .ss-service-image figcaption {
        right: 8px;
        bottom: 16px;
    }

    .ss-service-features li {
        grid-template-columns: 44px 1fr;
        padding: 18px;
    }

    .ss-service-features span {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .supershow-landing *,
    .supershow-landing *::before,
    .supershow-landing *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
