/**
 * Values & Pricing Section
 * Version: 1.0
 */

/* ========================================
   Main Section Container
   ======================================== */
.values-pricing {
  
    background: #fff;
}

/* ========================================
   Values Section
   ======================================== */
.values-section {
    margin-bottom: 60px;
}

.values-section__title {
    color: #010101;
    text-align: center;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    margin: 0 0 40px;
}

.values-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.value-item {
    text-align: center;
    max-width: 280px;
}

.value-item__icon {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background: #F4F2F3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-item__icon img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.value-item__title {
    color: #010101;
    text-align: center;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin: 0 0 10px;
}

.value-item__text {
    color: #010101;
    text-align: center;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-header {
    background: #000;
    border-radius: 14px 14px 0 0;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pricing-header__icon {
    width: 50px;
    height: 50px;
}

.pricing-header__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-header__title {
    color: #FFF;
    text-align: center;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.pricing-table__row {
    display: flex;
    position: relative;
}

/* Separator line under each row */
.pricing-table__row:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E5E5;
}

.pricing-table__row:last-child:after {
    display: none;
}

.pricing-table__info {
    flex: 1;
    padding: 20px 25px;
    background: #fff;
}

.pricing-table__service-title {
    color: #000;
    text-align: right;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 8px;
}

.pricing-table__service-text {
    color: #575757;
    text-align: right;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin: 0;
}

.pricing-table__price {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border-right: 1px solid #75D587;
    border-left: 1px solid #75D587;
    background: rgba(117, 213, 135, 0.10);
}

/* First row - top border and top-right radius */
.pricing-table__row:first-child .pricing-table__price {
    border-top: 1px solid #75D587;
    border-radius: 0 10px 0 0;
}

/* Last row - bottom border and bottom-left radius */
.pricing-table__row:last-child .pricing-table__price {
    border-bottom: 1px solid #75D587;
    border-radius: 0 0 0 10px;
}

.pricing-table__price-text {
    color: #000;
    text-align: center;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
}

/* Pricing Body - wraps table only */
.pricing-body {
    border-radius: 0 0 10px 10px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    background: #FFF;
    overflow: hidden;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    padding: 25px 20px;
}

.pricing-footer__note {
    color: #000;
    text-align: center;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 20px;
}

.pricing-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 35px;
    border-radius: 4px;
    background: #75D587;
    color: #000;
    text-align: center;
    font-family: "Ploni DL 1.1 AAA", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-footer__btn:hover {
    background: #5fc472;
    color: #000;
}

.pricing-footer__btn img {
    width: 24px;
    height: 24px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
    .values-pricing {
        padding: 50px 0;
    }
    
    .values-section__title {
        font-size: 26px;
        line-height: 1.4;
    }
    
    .values-list {
        gap: 40px;
    }
    
    .value-item {
        max-width: 250px;
    }
    
    .value-item__icon {
        width: 100px;
        height: 100px;
    }
    
    .value-item__icon img {
        max-width: 55px;
        max-height: 55px;
    }
    
    .value-item__title {
        font-size: 20px;
    }
    
    .value-item__text {
        font-size: 18px;
    }
    
    .pricing-header__title {
        font-size: 32px;
    }
    
    .pricing-table__price {
        width: 160px;
    }
    
    .pricing-table__price-text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .values-pricing {
        padding: 40px 0;
    }
    
    .values-section {
        margin-bottom: 40px;
    }
    
    .values-section__title {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .values-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .value-item {
        max-width: 100%;
    }
    
    .value-item__icon {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }
    
    .value-item__icon img {
        max-width: 50px;
        max-height: 50px;
    }
    
    .value-item__title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .value-item__text {
        font-size: 16px;
        line-height: 22px;
    }
    
    .pricing-section {
        margin: 0 15px;
    }
    
    .pricing-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-header__icon {
        width: 40px;
        height: 40px;
    }
    
    .pricing-header__title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .pricing-table__row {
        flex-direction: column;
    }
    
    .pricing-table__info {
        padding: 15px 20px;
    }
    
    .pricing-table__service-title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .pricing-table__service-text {
        font-size: 14px;
    }
    
    .pricing-table__price {
        width: 100%;
        border-radius: 0;
        border-left: 1px solid #75D587;
        border-right: 1px solid #75D587;
        padding: 15px;
    }
    
    .pricing-table__row:first-child .pricing-table__price {
        border-radius: 0;
    }
    
    .pricing-table__row:last-child .pricing-table__price {
        border-radius: 0;
    }
    
    .pricing-table__price-text {
        font-size: 20px;
    }
    
    .pricing-footer {
        padding: 20px 15px;
    }
    
    .pricing-footer__note {
        font-size: 14px;
        line-height: 20px;
    }
    
    .pricing-footer__btn {
        font-size: 18px;
        padding: 10px 25px;
    }
}


