/* ── My Signature Shots Page ──────────────────────────────────────────────── */

.my-shots-page {
    --ms-dark: #01143F;
    --ms-darker: #000417;
    --ms-bg: var(--Bg-Radial);
    --ms-gold: #B8A97A;
    --ms-gold-2: #968368;
    --ms-white: #B8C3D6;
    --ms-gray: #B8C3D6;
    --ms-border: rgba(255, 255, 255, 0.15);
    --ms-py: 96px;
    --Pure-gold: linear-gradient(90deg, #968368 0%, #CCB78C 52%, #968368 100%);

    background: var(--ms-bg);
    color: var(--ms-white);
    margin-top: 36px;
}

/* ── Shared utilities ──────────────────────────────────────────────────────── */

.ms-badge {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    width: 100%;
    word-spacing: .5rem;
    letter-spacing: .06em;
}

.ms-badge::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ms-gold-2);
    margin-left: 12px;
}

.ms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity .2s;
}

.ms-btn:hover {
    opacity: .95;
}

.ms-btn--gold {
    background: var(--Pure-gold);
    color: white;
}

/* ── Shared section header ─────────────────────────────────────────────────── */

.ms-section-header {
    margin-bottom: 32px;
}

.ms-section-header__title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.ms-section-header__desc {
    font-size: 24px;
    color: var(--ms-gray);
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .ms-section-header__desc {
        font-size: 16px;
    }
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */

.ms-hero {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 49.45%, rgba(1, 20, 63, 0.20) 55.96%),
                var(--ms-hero-bg, none) lightgray 50% / cover no-repeat;
    overflow: hidden;
}

.ms-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 28px;
}

.ms-hero__content {
    max-width: 680px;
}

.ms-hero__label-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 48px;
}

.ms-hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #CB2128;
    flex-shrink: 0;
}

.ms-hero__content .ms-btn {
    width: 100%;
}

.ms-hero__label {
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
}

.ms-hero__title {
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 88px;
    color: white;
    margin: 0 0 48px;
}

.ms-hero__desc {
    font-size: 24px;
    line-height: 1.5;
    color: var(--ms-gray);
    margin: 0 0 48px;
}

.ms-hero__icons {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 24px;
    max-width: 750px;
}

.ms-hero__icons--desktop {
    margin-top: 63px;
}

.ms-hero__icons-mobile {
    display: none;
    background: #010C29;
    padding: 24px 0;
}

.ms-hero__icons--mobile {
    margin-top: 0;
    max-width: 100%;
}

.ms-hero__icon-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.ms-hero__icon-img {
    width: 64px;
    height: 64px;
    padding: 16px;
    border: 1px solid #968368;
    border-radius: 9999999px;
    flex-shrink: 0;
}

.ms-hero__icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ms-hero__icon-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--ms-gray);
}

@media screen and (max-width: 768px) {
    .ms-hero__icons--desktop {
        display: none;
    }

    .ms-hero__icons-mobile {
        display: block;
    }

    .ms-hero__icon-label {
        font-size: 12px;
    }

    .ms-hero__icon-img {
        width: 38px;
        height: 38px;
        padding: 8px;
    }
}


/* ── Process ───────────────────────────────────────────────────────────────── */

.ms-process {
    padding: var(--ms-py) 0;
}

.ms-process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.ms-process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% + 40px);
    right: calc(-50% + 40px);
    height: 1px;
    background: var(--Pure-gold);
    z-index: 0;
    pointer-events: none;
}

.ms-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.ms-process__step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--Pure-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.ms-process__step-num {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.ms-process__step-body {
    flex: 1;
}

.ms-process__step-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 16px;
}

.ms-process__step-title span {
    display: none;
}

.ms-process__step-desc {
    font-size: 18px;
    color: var(--ms-gray);
    line-height: 1.6;
    margin: 0 0 20px;
    text-align: start;
}

.ms-process__step-sub {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: start;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .ms-process__steps {
        gap: 24px;
        grid-template-columns: 1fr;
    }
    .ms-process__step:not(:last-child)::after {
        display: none;
    }
    .ms-process__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    .ms-process__step-desc {
        text-align: center;
    }

    .ms-process__step-sub {
        text-align: center;
    }

    .ms-process__step-icon {
        display: none;
    }

}

.ms-process__dots {
    display: none;
}

.ms-process__dot {
    width: 8px;
    height: 8px;
    background: rgba(222, 232, 248, .6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .3s;
    flex-shrink: 0;
}

.ms-process__dot.is-active {
    background: white;
}

/* ── Experts ───────────────────────────────────────────────────────────────── */

.ms-experts {
    padding-bottom: var(--ms-py);
}

.ms-experts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ms-experts__dots {
    display: none;
}

.ms-experts__dot {
    width: 8px;
    height: 8px;
    background: rgba(222, 232, 248, .6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .3s;
    flex-shrink: 0;
}

.ms-experts__dot.is-active {
    background: white;
}

.ms-experts__card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ms-experts__photo {
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--ms-gold-2);
}

.ms-experts__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ms-experts__name {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 18px;
}

.ms-experts__name svg {
    min-width: 28px;
}

.ms-experts__position {
    font-size: 18px;
    color: var(--ms-gray);
    margin: 0;
    line-height: 1.5;
}

/* ── Why it works ──────────────────────────────────────────────────────────── */

.ms-why {
    padding-bottom: var(--ms-py);
}

.ms-why__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ms-why__dots {
    display: none;
}

.ms-why__dot {
    width: 8px;
    height: 8px;
    background: rgba(222, 232, 248, .6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .3s;
    flex-shrink: 0;
}

.ms-why__dot.is-active {
    background: white;
}

.ms-why__card {
    display: flex;
    flex-direction: column;
}

.ms-why__card-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    max-height: 400px;
}

.ms-why__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.ms-why__card-img:hover img {
    transform: scale(1.04);
}

.ms-why__card-body {
    padding: 20px 0 0;
}

.ms-why__card-sub {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: block;
    margin-top: 12px;
}

.ms-why__card-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    position: relative;
    line-height: 1.1;
    margin: 0 0 16px;
    min-height: calc(2 * 1.1em + 16px);
}

.ms-why__card-desc {
    font-size: 18px;
    color: var(--ms-gray);
    line-height: 1.5;
    margin: 0;
}

/* ── Program builder ───────────────────────────────────────────────────────── */


.ms-program__badge {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ms-program__title {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 32px;
}

.ms-program__tabs {
    display: inline-flex;
    margin-bottom: 32px;
}

.ms-program__tab {
    padding: 12px 16px;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    gap: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 232px;
    border: 1px solid transparent;
    border-image: var(--Pure-gold) 1;
    background: none;
    color: var(--ms-white);
    transition: color .2s, background .2s;
}

.ms-program__tab svg {
    display: none;
}

.ms-program__tab:first-child {
    border-right: none;
}

.ms-program__tab:last-child {
    border-left: none;
}

.ms-program__tab.is-active svg {
    display: block;
}

.ms-program__tab.is-active,
.ms-program__tab:hover {
    background: var(--Pure-gold);
    color: var(--ms-dark);
}

.ms-program__section-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ms-gray);
    margin: 0 0 16px;
}

.ms-program__age {
    margin-bottom: 32px;
}

.ms-program__age-groups {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ms-program__age-btn {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1px solid transparent;
    border-image: var(--Pure-gold) 1;
    color: var(--ms-white);
    cursor: pointer;
    transition: background .2s, color .2s;
}

.ms-program__age-btn svg {
    display: none;
}

.ms-program__age-btn.is-active svg {
    display: block;
}

.ms-program__age-btn.is-active,
.ms-program__age-btn:hover {
    background: var(--Pure-gold);
    color: var(--ms-dark);
}



.ms-program__areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.ms-program__area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: border-color .2s;
    padding: 0;
    border-radius: 4px;
    width: 100%;
    position: relative;
}

.ms-program__area-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #1F3357;
    mix-blend-mode: color;
    z-index: 1;
}

.ms-program__area-card.is-active .ms-program__area-overlay {
    display: none;
}

.ms-program__area-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    -webkit-transition: filter .25s;
    transition: filter .25s;
}

.ms-program__area-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 8px;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
}

.ms-program__area-label,
.ms-program__area-img {
    -webkit-filter: grayscale(.6) brightness(.9);
    filter: grayscale(.6) brightness(.9);
}

.ms-program__area-card:hover .ms-program__area-label,
.ms-program__area-card.is-active .ms-program__area-label,
.ms-program__area-card:hover .ms-program__area-img,
.ms-program__area-card.is-active .ms-program__area-img {
    -webkit-filter: none;
    filter: none;
}

.ms-program__area-detail.is-hidden {
    display: none;
}

.ms-program__area-detail {
    padding-top: 24px;
}

.ms-program__option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
}

.ms-program__option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ms-option-checked {
    display: none;
}

.ms-option-unchecked {
    display: block;
}

.ms-program__option input:checked ~ .ms-option-checked {
    display: block;
}

.ms-program__option input:checked ~ .ms-option-unchecked {
    display: none;
}

.ms-program__option-text {
    font-size: 17px;
    color: var(--ms-white);
    font-weight: 300;
    line-height: 1.4;
}

.ms-program__area-detail.has-limit .ms-program__option:not(:has(input:checked)) {
    opacity: .35;
    pointer-events: none;
}

.ms-program__footer {
    display: flex;
    width: 100%;
}

.ms-program__footer .ms-btn {
    width: 100%;
}

.ms-program__cta:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* ── Benefits strip ────────────────────────────────────────────────────────── */

.ms-benefits {
    padding: 40px 0;
    overflow: hidden;
}

@keyframes ms-benefits-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.ms-benefits__inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ms-benefits-scroll 28s linear infinite;
    width: max-content;
}

.ms-benefits__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    flex-shrink: 0;
}

.ms-benefits__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.ms-benefits__text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ms-white);
}

.ms-benefits__sep {
    color: var(--ms-gold-2);
    margin-left: 16px;
    font-size: 10px;
}

/* ── Testimonials ──────────────────────────────────────────────────────────── */

.ms-testimonials {
    padding: 0 0  var(--ms-py) ;
}

.ms-testimonials__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.ms-testimonials__photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ms-testimonials__media {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ms-testimonials__media > img,
.ms-testimonials__video {
    width: 100%;
    aspect-ratio: 343 / 460;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.ms-testimonials__media-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-testimonials__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ms-testimonials__nick {
    font-size: 14px;
    font-weight: 500;
    color: var(--ms-white);
}

.ms-testimonials__score {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ms-testimonials__score-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--ms-white);
    line-height: 1;
}

.ms-testimonials__score-stars {
    display: flex;
    gap: 4px;
}

.ms-testimonials__score-count {
    font-size: 13px;
    color: var(--ms-gray);
}

.ms-star {
    color: rgba(255, 255, 255, .2);
}

.ms-star--filled {
    color: var(--ms-gold);
}

.ms-testimonials__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ms-testimonials__card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--ms-border);
    padding: 24px;
    border-radius: 4px;
}

.ms-testimonials__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.ms-testimonials__author {
    font-size: 18px;
    font-weight: 700;
    color: var(--ms-gray);
    margin: 0 0 6px;
}

.ms-testimonials__details {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ms-gray);
    margin: 0 0 16px;
}

.ms-testimonials__text {
    font-size: 18px;
    color: var(--ms-gray);
    line-height: 1.7;
    margin: 0;
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */

.ms-faq {
    padding-bottom: var(--ms-py);
}

.ms-faq__title {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 32px;
}

.ms-faq__body {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: start;
}

.ms-faq__image {
    position: sticky;
    top: 120px;
    width: 50%;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.ms-faq__image img {
    width: 100%;
    display: block;
}

.ms-faq__questions .faq__questions-tabs {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.ms-faq__questions .faq__tab {
    color: var(--Color-Blue);
    font-size: 24px;
    line-height: 32px;
    cursor: pointer;
    padding-bottom: 8px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
}

.ms-faq__questions .faq__tab.active {
    color: var(--Logo-Gold);
    border-color: var(--Logo-Gold);
}

.ms-faq__questions {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.ms-faq__item {
    border-bottom: 1px solid var(--ms-border);
    overflow: hidden;
}

.ms-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    color: var(--ms-white);
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    line-height: 1.5;
}

.ms-faq__icon {
    flex-shrink: 0;
    transition: transform .3s ease;
}

.ms-faq__item.is-open .ms-faq__icon {
    transform: rotate(45deg);
}

.ms-faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}

.ms-faq__item.is-open .ms-faq__answer {
    grid-template-rows: 1fr;
}

.ms-faq__answer-inner {
    overflow: hidden;
    min-height: 0;
}

.ms-faq__answer-inner p {
    padding: 0 0 20px;
    font-size: 18px;
    color: var(--ms-gray);
    line-height: 1.7;
    margin: 0;
}
.qp-experts {
    margin-bottom: var(--ms-py);
}
/* ── Toast ─────────────────────────────────────────────────────────────────── */

.ms-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #1F3357;
    color: #DEE8F8;
    border: 1px solid rgba(184, 169, 122, .35);
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
}

.ms-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Page loader ───────────────────────────────────────────────────────────── */

.ms-loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 4, 23, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}

.ms-loader.is-visible {
    opacity: 1;
    pointer-events: all;
}

.ms-loader__spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(184, 169, 122, .2);
    border-top-color: #CCB78C;
    animation: ms-spin .7s linear infinite;
}

@keyframes ms-spin {
    to { transform: rotate(360deg); }
}

/* ── Mobile slider shared states ───────────────────────────────────────────── */

.ms-experts__card.ts-no-trans,
.ms-why__card.ts-no-trans {
    transition: none !important;
}

.ms-experts__card.ts-enter-left,
.ms-why__card.ts-enter-left {
    transform: translateX(-100%) !important;
}

.ms-experts__card.ts-exit-left,
.ms-why__card.ts-exit-left {
    transform: translateX(-100%);
    opacity: 0;
    position: absolute;
}

.ms-experts__card.ts-exit-right,
.ms-why__card.ts-exit-right {
    transform: translateX(100%);
    opacity: 0;
    position: absolute;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 640px) {
    .my-shots-page {
        margin-top: 67px;
    }
}

@media (min-width: 782px) {
    .my-shots-page {
        margin-top: 87px;
    }
}

@media (max-width: 1280px) {
    .ms-hero__title {
        font-size: 48px;
        line-height: 52px;
    }
}

@media (max-width: 1024px) {
    .ms-experts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ms-why__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ms-testimonials__body {
        grid-template-columns: 1fr;
    }

    .ms-faq__image {
        position: static;
        max-width: 480px;
    }

    .ms-program__area-detail-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .ms-program__area-detail-inner {
        grid-template-columns: 1fr;
    }
}
#ms-area-details {
    display: none;
}
@media (max-width: 768px) {
    .my-shots-page {
        --ms-py: 56px;
    }
    .ms-program__area-label {
        font-size: 11px;
    }
    .ms-program__area-detail .ms-program__authorize-form .ms-btn {
        width: 100%;
    }
    .ms-hero {
        background: var(--ms-hero-bg-mobile);
        background-size: cover;
        background-position: right top;
        background-repeat: no-repeat;
    }

    .ms-hero .container {
        min-height: calc(75dvh - 128px);
        padding-top: 80px;
        padding-bottom: 20px;
        justify-content: end;
    }

    .ms-hero__title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 10px;
    }

    .ms-hero__label-wrap {
        margin-bottom: 10px;
    }

    .ms-hero__desc {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .ms-hero__icons {
        gap: 20px;
    }

    .ms-section-header {
        margin-bottom: 16px;
    }

    .ms-section-header__title {
        font-size: 28px;
    }


    .ms-program__title {
        font-size: 28px;
    }

    .ms-program__area-detail-title {
        font-size: 22px;
    }

    .ms-program__areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ms-faq__title {
        font-size: 28px;
    }

    .ms-why__card-title {
        font-size: 17px;
        font-weight: 400;
        min-height: unset;
    }

    .ms-why__card-desc {
        font-size: 16px;
        text-align: center;
    }

    .ms-experts__name {
        font-size: 18px;
    }

    .ms-experts__position {
        font-size: 16px;
    }

    .ms-process__step-title {
        font-size: 17px;
    }

    .ms-process__step-title span {
        display: unset;
    }

    .ms-process__step-desc {
        font-size: 16px;
        margin: 0;
    }

    .ms-faq__question {
        font-size: 16px;
    }

    .ms-faq__answer-inner p {
        font-size: 16px;
    }

    .ms-testimonials__author {
        font-size: 16px;
    }

    .ms-testimonials__text {
        font-size: 16px;
    }

    .ms-faq__body {
        flex-direction: column;
        gap: 32px;
    }

    .ms-faq__image {
        width: 100%;
        max-width: none;
    }

    .ms-faq__questions {
        width: 100%;
    }

    .ms-faq__questions .faq__questions-tabs {
        gap: 16px;
        margin-bottom: 0;
    }

    .ms-faq__questions .faq__tab {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 540px) {
    .ms-why__card-img {
        aspect-ratio: 16 / 9;
        max-height: 350px;
    }

    .ms-experts__grid,
    .ms-why__cards {
        display: block;
        position: relative;
        overflow: hidden;
        cursor: grab;
        user-select: none;
    }

    .ms-experts__grid.is-drag,
    .ms-why__cards.is-drag {
        cursor: grabbing;
    }

    .ms-experts__card,
    .ms-why__card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(.25, .46, .45, .94), opacity .35s ease;
        will-change: transform, opacity;
    }

    .ms-experts__card.is-active,
    .ms-why__card.is-active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .ms-experts__dots,
    .ms-why__dots {
        display: flex;
        gap: 8px;
        margin-top: 20px;
    }

    .ms-hero__icons--desktop {
        margin-top: 16px;
    }
}

@media (max-width: 500px) {
    .my-shots-page {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .ms-why__card-img img {
        max-height: 350px;
    }
    .my-shots-page {
        --ms-py: 40px;
    }

    .ms-hero__title {
        font-size: 28px;
        line-height: 30px;
    }

    .ms-program__tabs {
        display: flex;
        width: 100%;
    }

    .ms-program__tab {
        flex: 1;
        width: auto;
        font-size: 13px;
        padding: 12px 8px;
    }
}
