:root {
    --package-dark: #8E846B;
    --package-light: #F4E2B8;
    --package-accent: #FFD963;
    --package-text-on-theme: #ffffff;
    --package-shadow: rgba(176, 131, 1, .22);
}

/* Silver */
html[data-package="silver"] {
    --package-dark: #828589;
    --package-light: #E3E8EF;
    --package-accent: #C9D0D8;
    --package-text-on-theme: #ffffff;
    --package-shadow: rgba(130, 133, 137, .24);
}

/* Gold */
html[data-package="gold"] {
    --package-dark: #8E846B;
    --package-light: #F4E2B8;
    --package-accent: #FFD963;
    --package-text-on-theme: #ffffff;
    --package-shadow: rgba(176, 131, 1, .25);
}

/* Platinum */
html[data-package="platinum"] {
    --package-dark: #868686;
    --package-light: #ECECEC;
    --package-accent: #CFCFCF;
    --package-text-on-theme: #ffffff;
    --package-shadow: rgba(134, 134, 134, .24);
}

/* Diamond */
html[data-package="diamond"] {
    --package-dark: #8B9399;
    --package-light: #E7F5FF;
    --package-accent: #BDE8FF;
    --package-text-on-theme: #ffffff;
    --package-shadow: rgba(139, 147, 153, .25);
}

/* Titanium */
html[data-package="titanium"] {
    --package-dark: #76797C;
    --package-light: #D7DDE2;
    --package-accent: #B8C0C8;
    --package-text-on-theme: #ffffff;
    --package-shadow: rgba(118, 121, 124, .25);
}

/* =========================
   BASE
========================= */

.package-detail-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 42% 0%, rgba(255, 217, 99, .17), transparent 24%),
        radial-gradient(circle at 16% 38%, rgba(255, 217, 99, .10), transparent 25%),
        radial-gradient(circle at 86% 50%, rgba(255, 217, 99, .09), transparent 25%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: #ffffff;
}

.package-detail-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255, 217, 99, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 99, .14) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 44%);
}

.package-detail-page .container-lg {
    position: relative;
    z-index: 2;
}

.package-feature-card,
.package-info-card,
.package-timeline-card,
.package-process__card {
    border: 1px solid transparent;
    background:
        linear-gradient(135deg, rgba(16, 16, 16, .96), rgba(4, 4, 4, .96)) padding-box,
        linear-gradient(145.97deg, #FFD963 0%, rgba(255, 217, 99, 0) 27.41%) border-box,
        linear-gradient(320.38deg, #FFD963 0%, rgba(255, 217, 99, 0) 18.55%) border-box
}

.package-hero {
    position: relative;
    padding: calc(var(--header-h, 76px) + 62px) 0 72px;
    background: transparent;
    overflow: visible;
}

.package-hero__inner {
    position: relative;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    align-items: center;
    gap: 72px;
}

.package-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.package-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.package-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 32px;
    padding: 0 17px;
    border-radius: 999px;

    border: 1px solid transparent;

    background:
        linear-gradient(0deg, rgba(18, 18, 18, .82), rgba(18, 18, 18, .82)) padding-box,
        linear-gradient(148.97deg, #FFD963 0%, rgba(255, 217, 99, 0) 26.41%) border-box,
        linear-gradient(324.38deg, #FFD963 0%, rgba(255, 217, 99, 0) 19.55%) border-box;

    color: #fff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.package-hero__title {
    margin: 0 0 24px;
    color: #fff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 64px;
    line-height: .95;
    font-weight: 700;
    white-space: nowrap;
}

#packageTitle {
    white-space: nowrap;
}

.package-hero__zone {
    max-width: 650px;
    margin: 0 0 20px;
    color: #fff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.22;
    font-weight: 500;
}

.package-hero__subtitle {
    max-width: 590px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .55);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.package-location {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 217, 99, .25);
    border-radius: 999px;
    background: rgba(14, 14, 14, .76);
    color: rgba(255, 255, 255, .82);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.package-location__icon {
    color: var(--package-accent);
    font-size: 14px;
}

.package-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 31px;
    border-radius: 16px;
    text-decoration: none;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.package-btn--primary {
    color: #161616;
    background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
}

.package-btn--outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .62);
    background: rgba(0, 0, 0, .25);
}

.package-hero__visual img {
    width: 100%;
    height: 100%;
}

.package-visual-card {
    position: relative;
    width: 430px;
    height: 285px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, var(--package-light), var(--package-dark)),
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .3), transparent 40%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .36);
}

.package-visual-card__z {
    position: absolute;
    top: -44px;
    right: -8px;
    color: rgba(31, 31, 31, .16);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 245px;
    line-height: 1;
    font-weight: 900;
}

.package-visual-card__name {
    position: absolute;
    left: 28px;
    bottom: 26px;
    color: rgba(31, 31, 31, .22);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.package-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 92px;
}

.package-feature-card {
    min-height: 100px;
    border-radius: 16px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-feature-card h3 {
    margin: 0;
    color: #fff;
    text-align: center;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 18px;
    line-height: 145%;
    font-weight: 600;
}

/* =========================
   SECTIONS
========================= */

.package-section {
    position: relative;
    padding: 58px 0;
}

.package-section-title {
    margin: 0 0 36px;

    background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
}

.package-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.package-info-card {
    min-height: 124px;
    border-radius: 16px;
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
}

.package-info-card::after,
.package-timeline-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 160px;
    height: 160px;
    pointer-events: none;
    opacity: .28;
    background: radial-gradient(circle, rgba(255, 255, 255, .26), transparent 65%);
}

.package-info-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.package-info-card p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.55;
}

.package-load-more {
    margin-top: 24px;
    min-height: 34px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: transparent;
    color: #fff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
}

/* =========================
   TIMELINE
========================= */

.package-section--timeline {
    padding-top: 76px;
}

.package-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.package-timeline-card {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}

.package-timeline-card__day {
    display: inline-block;
    margin-bottom: 12px;
    color: transparent;
    -webkit-text-fill-color: rgba(255, 217, 99, .04);
    -webkit-text-stroke: .5px transparent;
    background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-shadow: 0 0 18px rgba(255, 217, 99, .18);
}

.package-timeline-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}

.package-timeline-card p {
    margin: 0 auto;
    max-width: 210px;
    color: rgba(255, 255, 255, .56);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.45;
}

.package-section--price {
    padding-top: 76px;
}

.package-price-layout {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 80px;
    align-items: start;
}

.package-price-content .package-section-title {
    margin-bottom: 30px;
}

.package-price-total {
    display: block;
    margin-bottom: 28px;

    background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 72px;
    line-height: .95;
    font-weight: 700;
}

.package-price-content p {
    max-width: 500px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .58);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.package-price-list {
    padding-top: 82px;
}

.package-price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 21px;
    color: rgba(255, 255, 255, .78);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

.package-price-row strong {
    background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    font-size: 16px;
    font-weight: 500;
}

.package-section--faq {
    padding-top: 70px;
    padding-bottom: 90px;
}

.package-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.package-faq summary {
    min-height: 72px;

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

    cursor: pointer;
    list-style: none;

    color: rgba(255, 255, 255, 0.76);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

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

.package-faq summary::after {
    content: none;
}

.package-faq__arrow {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;

    fill: #9CA3AF;

    transform: rotate(0deg);
    transition:
        transform 0.25s ease,
        fill 0.25s ease;
}

.package-faq details[open] .package-faq__arrow {
    transform: rotate(180deg);
}

.package-faq details[open] summary {
    color: #fff;
}

.package-faq details[open] summary::after {
    transform: rotate(180deg);
}

.package-faq p {
    max-width: 980px;
    margin: -4px 0 24px;
    color: rgba(255, 255, 255, .58);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .package-hero__inner {
        grid-template-columns: 1fr 390px;
        gap: 44px;
    }

    .package-visual-card {
        width: 390px;
        height: 260px;
    }

    .package-price-layout {
        grid-template-columns: 1fr 460px;
        gap: 48px;
    }
}

@media (max-width: 992px) {
    .package-hero {
        padding-top: calc(var(--header-h, 76px) + 38px);
    }

    .package-hero__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .package-hero__visual {
        justify-content: flex-start;
    }

    .package-feature-grid,
    .package-timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-price-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .package-price-list {
        padding-top: 0;
    }

    .package-process__card {
        padding: 48px 36px;
    }

    .package-process__mark {
        opacity: .26;
    }
}

@media (max-width: 768px) {
    .package-detail-page {
        background:
            radial-gradient(circle at 5% 12%, rgba(255, 217, 99, .15), transparent 24%),
            radial-gradient(circle at 88% 50%, rgba(255, 217, 99, .09), transparent 25%),
            linear-gradient(180deg, #050505 0%, #020202 100%);
    }

    .package-detail-page .container-lg {
        padding-left: 20px;
        padding-right: 20px;
    }

    .package-hero {
        padding-top: calc(var(--header-h, 70px) + 28px);
        padding-bottom: 44px;
    }

    .package-hero__inner {
        gap: 24px;
    }

    .package-hero__visual {
        order: -1;
    }

    .package-visual-card {
        width: 100%;
        height: 174px;
        border-radius: 6px;
    }

    .package-visual-card__z {
        top: -28px;
        right: 0;
        font-size: 152px;
    }

    .package-visual-card__name {
        left: 16px;
        bottom: 16px;
        font-size: 28px;
    }

    .package-hero__badges {
        gap: 9px;
        margin-bottom: 17px;
    }

    .package-pill {
        min-height: 28px;
        padding: 0 13px;
        font-size: 12px;
    }

    .package-hero__title {
        margin-bottom: 14px;
        font-size: 34px;
        line-height: 1.05;
    }

    .package-hero__zone {
        margin-bottom: 14px;
        font-size: 18px;
        line-height: 1.32;
    }

    .package-hero__subtitle {
        margin-bottom: 16px;
        font-size: 12px;
        line-height: 1.55;
    }

    .package-location {
        min-height: 26px;
        padding: 0 11px;
        margin-bottom: 20px;
        font-size: 10px;
    }

    .package-hero__actions {
        display: grid;
        gap: 12px;
    }

    .package-btn {
        width: 100%;
        min-height: 48px;
        padding: 0 18px;
        font-size: 14px;
    }

    .package-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 54px;
    }

    .package-feature-card {
        min-height: 70px;
        padding: 14px 10px;
    }

    .package-feature-card h3 {
        font-size: 10px;
        line-height: 1.35;
    }

    .package-section {
        padding: 42px 0;
    }

    .package-section-title {
        margin-bottom: 24px;
        font-size: 32px;
        line-height: 1.12;
    }

    .package-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .package-info-card {
        min-height: auto;
        padding: 18px 16px;
    }

    .package-info-card h3 {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .package-info-card p {
        font-size: 11px;
        line-height: 1.45;
    }

    .package-load-more {
        display: none;
    }

    .package-section--timeline {
        padding-top: 36px;
    }

    .package-timeline-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .package-timeline-card {
        min-height: 108px;
        text-align: left;
        padding: 18px 16px;
    }

    .package-timeline-card__day {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .package-timeline-card h3 {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .package-timeline-card p {
        max-width: none;
        margin: 0;
        font-size: 10px;
        line-height: 1.45;
    }

    .package-section--price {
        padding-top: 38px;
    }

    .package-price-total {
        margin-bottom: 16px;
        font-size: 32px;
    }

    .package-price-content p {
        margin-bottom: 13px;
        font-size: 10px;
        line-height: 1.5;
    }

    .package-price-row {
        margin-bottom: 11px;
        gap: 12px;
        font-size: 10px;
    }

    .package-price-row strong {
        font-size: 14px;
    }

    .package-process__card {
        min-height: auto;
        border-radius: 20px;
        padding: 30px 22px;
    }

    .package-process__title {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .package-process__list {
        gap: 16px;
        margin-bottom: 26px;
    }

    .package-process__item {
        gap: 12px;
    }

    .package-process__tick {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        font-size: 11px;
    }

    .package-process__text {
        font-size: 12px;
    }

    .package-process__mark {
        right: -24px;
        top: auto;
        bottom: -20px;
        font-size: 230px;
        opacity: .18;
    }

    .package-faq summary {
        min-height: 55px;
        font-size: 12px;
        gap: 16px;
    }

    .package-faq p {
        margin: -2px 0 18px;
        font-size: 10px;
        line-height: 1.5;
    }
}

.package-section--process {
    padding-top: 78px;
    padding-bottom: 78px;
}

.package-process {
    position: relative;
    overflow: visible;
}

.package-process__card {
    position: relative;
    min-height: 430px;
    border-radius: 60px;
    padding: 70px;
    overflow: hidden;
    isolation: isolate;

    border: 1px solid transparent;

    background:
        linear-gradient(135deg, #050505 0%, #000000 100%) padding-box,
        linear-gradient(135.97deg, #FFD963 0%, rgba(255, 217, 99, 0) 28.41%) border-box,
        linear-gradient(315.38deg, #FFD963 0%, rgba(255, 217, 99, 0) 23.55%) border-box;
}

.package-process__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background-image:
        url("../images/solution_bg_image.png");

    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.package-process__card::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 217, 99, .18), transparent 64%);
}

.package-process__content {
    position: relative;
    z-index: 2;
    max-width: 430px;
}

.package-process__title {
    margin: 0 0 52px;
    color: #ffffff;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 48px;
    line-height: 125%;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.package-process__title span {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.package-process__title span::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #FFD963 0%, #B08301 100%);
    z-index: -1;
    opacity: .9;
}

.package-process__list {
    display: grid;
    gap: 32px;
    margin: 0 0 42px;
    padding: 0;
    list-style: none;
}

.package-process__item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 24px;
    align-items: center;
}

.package-process__tick {
    width: 40px;
    height: 40px;
    border-radius: 12px;

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

    flex: 0 0 24px;

    border: 1px solid transparent;

    background:
        linear-gradient(#070707, #070707) padding-box,
        linear-gradient(141deg, #FFD963 0%, rgba(255, 198, 99, 0) 40.42%) border-box,
        linear-gradient(321.62deg, #FFD963 0%, rgba(255, 217, 99, 0) 25.42%) border-box,
        linear-gradient(0deg, #2F2F2F, #2F2F2F) border-box;

    box-shadow: none;
}

.package-process__tick img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.package-process__text {
    color: rgba(255, 255, 255, .88);
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.package-process__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 289px;
    padding: 0 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, #FFD963 0%, #B08301 100%);
    color: #1F1F1F;
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease;
}

.package-process__mark {
    display: none;
}

@media (max-width: 992px) {
    .package-section--process {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .package-process__card {
        min-height: auto;
        padding: 48px 36px;
        border-radius: 34px;
    }

    .package-process__card::before {
        background-image:
            linear-gradient(90deg,
                rgba(5, 5, 5, .98) 0%,
                rgba(5, 5, 5, .9) 48%,
                rgba(5, 5, 5, .55) 100%),
            url("../images/solution_bg_image.png");
        opacity: .75;
    }

    .package-process__content {
        max-width: 100%;
    }

    .package-process__title {
        font-size: 38px;
        margin-bottom: 36px;
    }

    .package-process__btn {
        width: 100%;
        max-width: 289px;
    }
}

@media (max-width: 768px) {
    .package-section--process {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .package-process__card {
        min-height: auto;
        border-radius: 20px;
        padding: 30px 22px;
    }

    .package-process__card::before {
        background-image:
            linear-gradient(180deg,
                rgba(5, 5, 5, .98) 0%,
                rgba(5, 5, 5, .92) 58%,
                rgba(5, 5, 5, .75) 100%),
            url("../images/solution_bg_image.png");
        background-position: right bottom;
        background-size: 80%;
        opacity: .55;
    }

    .package-process__title {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 1.18;
    }

    .package-process__title span::after {
        bottom: 5px;
        height: 7px;
    }

    .package-process__list {
        gap: 16px;
        margin-bottom: 26px;
    }

    .package-process__item {
        grid-template-columns: 24px 1fr;
        gap: 12px;
    }

    .package-process__tick {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .package-process__tick img {
        width: 12px;
        height: 12px;
    }

    .package-process__text {
        font-size: 12px;
        line-height: 1.35;
    }

    .package-process__btn {
        width: 100%;
        max-width: none;
        min-height: 44px;
        font-size: 12px;
    }
}