.pricing-hero {
    padding: 66px 0 40px;
}

.pricing-hero__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.pricing-hero__visual {
    min-height: 290px;
}
.pricing-main{
    background-image: url(../../img/pricing-main.png);
    background-size: cover;
    height: 210%;
    z-index: 1;
}

.pair-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0 0 26px;
    padding: 24px 30px;
    z-index: 2;
}

.pair-banner h2,
.pair-banner p {
    margin: 0;
}

.pair-banner p {
    margin-top: 4px;
    color: var(--navy-900);
    font-size: large;
}

.price-table-wrap {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

thead th:nth-child(1) {
    border-radius: 14px 0 0 0;
}

thead th:nth-child(4) {
    border-radius: 0 14px 0 0;
}

.price-table th,
.price-table td {
    padding: 18px 20px;
    border-right: 1px solid #8ea8c8;
    border-bottom: 1px solid #8ea8c8;
    vertical-align: middle;
}

.price-table th:last-child,
.price-table td:last-child {
    border-right: 0;
}

.price-table tr:last-child td {
    border-bottom: 0;
}

.price-table thead th {
    color: #ffffff;
    background: linear-gradient(180deg, #051b55, #001642);
    font-size: 0.98rem;
    text-align: left;
}

.price-table td:nth-child(1),
.price-table td:nth-child(3),
.price-table td:nth-child(4) {
    text-align: center;
}

.people-price {
    display: grid;
    gap: 6px;
    justify-items: center;
}




.people-price__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.people-price iconify-icon {
    color: var(--navy-800);
    font-size: 2rem;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 900;
}

.price-hr {
    height: 2px;
    width: 100%;
    background-color: var(--navy-900);
}

@media (min-width: 920px) {
    .people-price {
        transform: rotate(-45deg);
    }

    .price-table td:nth-child(1){
        padding: 0;
    }

    .price-table td:nth-child(4){
         padding: 6px;
    }

    .people-price iconify-icon {
        transform: rotate(45deg);
    }

    .people-price .price-value:nth-child(1) {
        margin-bottom: 10px;
    }

    .people-price .price-value:nth-child(3) {
        margin-top: 10px;
    }

    .price-value {
        transform: rotate(45deg);
    }
}


.weekend-note {
    margin-top: 14px;
}

.custom-services {
    margin-top: 30px;
    padding: 28px;
}

.custom-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.custom-service {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.custom-service h3 {
    margin: 14px 0 8px;
}

.custom-service p {
    margin: 0 0 18px;
    color: var(--navy-900);
    font-size: 0.9rem;
}

.custom-service .button {
    width: 100%;
    margin-top: auto;
}

.button--outline.button--coral{
    color: var(--coral-500);
    border-color: var(--coral-500);
}

.pricing-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 14px;
    padding: 18px 28px;
    border-radius: 12px;
    background: linear-gradient(90deg, #fff2eb, #fff8f4);
}

.pricing-contact h2,
.pricing-contact p {
    margin: 0;
}

@media (max-width: 820px) {
    .pricing-hero__grid {
        grid-template-columns: 1fr;
    }

    .custom-services__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {

    .pair-banner,
    .pricing-contact {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 500px) {
    .price-table th, .price-table td {    padding: 10px 12px;}
}

@media (max-width: 420px) {
    .price-table th, .price-table td {    padding: 8px 10px;}
}

@media (max-width: 390px) {
    .price-table th, .price-table td {    padding: 6px 8    px;}
}