.price {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.price::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -180px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(247, 138, 0, 0.14) 0, rgba(247, 138, 0, 0.06) 38%, rgba(247, 138, 0, 0) 72%);
    filter: blur(42px);
}

.price__body {
    position: relative;
    z-index: 1;
}

.price__top-columns {
    align-items: start;
}

.price__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    color: var(--accent-bg);
    font-family: var(--semibold);
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(247, 138, 0, 0.32);
    border-radius: 999px;
    background: rgba(247, 138, 0, 0.08);
}

.price__intro {
    max-width: 610px;
}

.price__text {
    color: rgba(247, 248, 250, 0.82);
}

.price__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.price__card,
.price__guarantees {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 18% 14%, rgba(247, 138, 0, 0.14), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.024));
}

.price__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.price__card-action {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: transparent;
    cursor: pointer;
}

.price__card-title {
    margin-bottom: 10px;
    color: rgba(247, 248, 250, 0.82);
}

.price__card-value {
    margin-bottom: 4px;
    font-family: var(--bold);
    font-size: 34px;
    line-height: 1;
}

.price__card-note {
    margin-bottom: 24px;
    color: rgba(247, 248, 250, 0.62);
    font-size: 13px;
}

.price__card-list {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.price__card-list-item {
    position: relative;
    padding-left: 28px;
    color: rgba(247, 248, 250, 0.88);
}

.price__card-list-item.text {
    margin-bottom: 0;
}

.price__card-list-item::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(247, 138, 0, 0.68);
    border-radius: 50%;
    background: rgba(247, 138, 0, 0.1);
}

.price__card-list-item::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 5px;
    width: 8px;
    height: 5px;
    border-bottom: 2px solid var(--accent-bg);
    border-left: 2px solid var(--accent-bg);
    transform: rotate(-45deg);
}

.price__guarantees-title {
    margin-bottom: 24px;
}

.price__guarantees-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.price__guarantee {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    color: rgba(247, 248, 250, 0.88);
}

.price__guarantee-icon {
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--accent-bg);
    background: rgba(247, 138, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(247, 138, 0, 0.18);
}

.price__guarantee-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (hover: hover) {
    .price__card,
    .price__guarantees {
        transition: border-color 0.25s ease, transform 0.25s ease;
    }

    .price__card:hover {
        border-color: rgba(247, 138, 0, 0.34);
        transform: translateY(-2px);
    }

    .price__guarantees:hover {
        border-color: rgba(247, 138, 0, 0.24);
    }
}

.price__card-action:focus-visible {
    outline: 2px solid rgba(247, 138, 0, 0.42);
    outline-offset: 3px;
}

@media (min-width: 640px) {
    .price__guarantees-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .price__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .price__top-columns {
        grid-template-columns: minmax(0, 1fr) minmax(0, 610px);
        gap: 48px;
    }

    .price__intro {
        align-self: end;
        justify-self: end;
    }

    .price__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        max-width: 1100px;
        margin-right: auto;
        margin-bottom: 24px;
        margin-left: auto;
    }

    .price__guarantees-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 38px;
        row-gap: 22px;
    }
}

@media (min-width: 1200px) {
    .price__card {
        min-height: 260px;
    }

    .price__card-value {
        font-size: 40px;
    }

    .price__guarantees {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .price__card,
    .price__guarantees {
        padding: 18px;
    }
}
