/* Pricing page layout */

.cc-pricing-body {
    background-color: #f4f4f2;
}

.cc-pricing-page {
    padding-top: 40px;
    padding-bottom: 80px;
}


.cc-pricing-container--inner {
    max-width: 1160px;

}

/* Breadcrumb */

.cc-breadcrumb {
    font-size: 13px;
    color: #8a8f9a;
    margin-bottom: 24px;
}

.cc-breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cc-breadcrumb__item {
    display: flex;
    align-items: center;
    color: #8a8f9a;
}

.cc-breadcrumb__item::after {
    content: "›";
    margin-left: 6px;
    color: #c1c4cc;
}

.cc-breadcrumb__item:last-child::after {
    content: "";
    margin: 0;
}

.cc-breadcrumb__link {
    color: #8a8f9a;
    text-decoration: none;
}

.cc-breadcrumb__link:hover {
    text-decoration: underline;
}

.cc-breadcrumb__current {
    color: #505565;
    font-weight: 500;
}

/* Sections */

.cc-pricing-section {
    padding: 32px 28px 40px;
    /* border-radius: 24px; */
    margin-bottom: 32px;
}

.cc-pricing-section--domestic {
    background-color: #f5f5f2;
}

.cc-pricing-section--commercial {
    background-color: #F3F5DB !important;
}

.cc-pricing-section--management {
    background-color: #f5f5f2 !important;
}

.cc-pricing-section__header {
    margin-bottom: 32px;
}

.cc-pricing-section__title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 8px;
    color: #000000;
}

.cc-pricing-section__subtitle {
    margin: 0;
    font-size: 14px;
    color: #6d7280;
}

/* Grid */

.cc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Cards */

.cc-price-card {
    background-color: #ffffff;
    border: 1px solid #D2D2D299;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
    min-height: 0;
}

.cc-price-card__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
    background-color: #F3F5DB;
    padding: 12px;
    border-radius: 12px;
    align-items: center;
}

.cc-price-card__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: #000000;
}

.cc-price-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #22252f;
}

.cc-price-card__currency {
    font-size: 20px;
    font-weight: 600;
}

.cc-price-card__amount {
    font-size: 32px;
    font-weight: 700;
}

.cc-price-card__per {
    font-size: 12px;
    font-weight: 500;
    color: #6d7280;
}

.cc-price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-price-card__features li {
    position: relative;
    padding-left: 28px;
    font-size: 13px;
    line-height: 1.6;
    color: #4b5160;
}

.cc-price-card__features li+li {
    margin-top: 6px;
}

.cc-price-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background-color: #d4dd5e;
    color: #212426;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-price-card__actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

/* Buttons */

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 20px;
    border-radius: 46px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.cc-btn--primary {
    background-color: #B9C32E;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(148, 163, 24, 0.35);
}

.cc-btn--primary:hover {
    background-color: #b8c13b;
}

.cc-btn--secondary {
    background-color: #ffffff;
    color: #B9C32E;
    border: 1px solid #B9C32E;
}

.cc-btn--secondary:hover {
    background-color: #f5f5f9;
}

/* Responsive tweaks */

@media (max-width: 1199px) {
    .cc-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cc-pricing-section {
        padding: 24px 18px 32px;
        border-radius: 18px;
    }

    .cc-pricing-section__title {
        font-size: 24px;
    }

    .cc-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cc-price-card {
        padding: 18px 16px 22px;
    }

    .cc-price-card__amount {
        font-size: 28px;
    }

    .cc-price-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cc-btn {
        width: 100%;
    }
}

/* Review Page Styles */

.cc-review-summary {
    background-color: #F3F5DB;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cc-review-summary__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #B9C32E;
    font-size: 24px;
}

.cc-review-summary__rating {
    margin-left: 12px;
    font-weight: 700;
    color: #000;
    font-size: 24px;
}

.cc-review-summary__text {
    margin: 0;
    font-size: 14px;
    color: #3A3A3A;
    font-weight: 500;
}

.cc-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.cc-review-card {
    background: #ffffff;
    border-radius: 36px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.cc-review-card__top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.cc-review-card__quote {
    color: #B9C32E;
    font-size: 32px;
}

.cc-review-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #3A3A3A;
    margin: 0;
    flex-grow: 1;
}

.cc-review-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cc-review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #F3F5DB;
}

.cc-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-review-card__info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.cc-review-card__name {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.cc-review-card__service {
    font-size: 14px;
    color: #8a8f9a;
    margin: 0;
}

@media (max-width: 991px) {
    .cc-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cc-review-grid {
        grid-template-columns: 1fr;
    }

    .cc-review-card {
        padding: 30px;
        border-radius: 30px;
    }
}