.price-page {
    width: 100%;
    background: #050505;
    color: #ffffff;
    overflow: hidden;
}


/* HERO */

.price-hero {
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-hero-title {
    color: #ffffff;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
}


/* SECTION */

.price-section {
    background: #080808;
}

.price-section-title {
    color: #ffffff;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
}

.price-title-divider {
    width: 70px;
    height: 3px;
    background: #85f3ca;
    border-radius: 50px;
}


/* CARD */

.price-card {
    padding: 10px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(133, 243, 202, 0.55);
}


/* CARD HEADER */

.price-card-header {
    padding: 30px;
    background: #121212;
    border-radius: 14px;
}

.price-card-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.price-currency {
    margin-top: 8px;
    margin-right: 5px;
    color: #85f3ca;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.price-amount {
    color: #ffffff;
    font-size: clamp(52px, 6vw, 72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
}


/* CARD BODY */

.price-card-body {
    padding: 30px;
}

.price-list {
    padding: 0;
    list-style: none;
}

.price-list-item {
    padding: 14px 0;
    color: #c8c8c8;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.price-list-item:first-child {
    padding-top: 0;
}

.price-list-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}


/* CHECK */

.price-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    min-width: 25px;
    height: 25px;
    background: #85f3ca;
    color: #050505;
    border-radius: 50%;
    font-size: 11px;
}


/* FOOTER */

.price-card-footer {
    padding: 0 30px 30px;
}


/* BUTTON */

.price-btn {
    padding: 15px 20px;
    background: #85f3ca;
    color: #050505;
    border: 1px solid #85f3ca;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: transparent;
    color: #85f3ca;
    border-color: #85f3ca;
}