/* Catering plans public page */
.cp-hero .text-hero { max-width: 34rem; }
.cp-hero__eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #22A366;
    margin-bottom: .75rem;
}
.cp-hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #495057;
    margin: 1rem 0 1.5rem;
    max-width: 32rem;
}
.cp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.25rem;
}
.cp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .75rem;
    margin-top: .5rem;
}
.cp-hero__trust .fa-star.checked { color: #f5a623; font-size: .9rem; }
.cp-hero__trust-text { font-size: .875rem; color: #6c757d; }

.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.35rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.cp-btn--primary {
    background: #22A366;
    color: #fff !important;
}
.cp-btn--primary:hover {
    background: #1e8e3e;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 163, 102, .28);
}
.cp-btn--ghost {
    background: #fff;
    color: #333 !important;
    border-color: #dee2e6;
}
.cp-btn--ghost:hover {
    border-color: #22A366;
    color: #22A366 !important;
}
.cp-btn--outline-dark {
    background: transparent;
    color: #222 !important;
    border-color: #ced4da;
}
.cp-btn--outline-dark:hover {
    border-color: #22A366;
    color: #22A366 !important;
}
.cp-btn--white {
    background: #fff;
    color: #22A366 !important;
}
.cp-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}
.cp-btn--ghost-white {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .55);
}
.cp-btn--ghost-white:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff !important;
}
.cp-btn--block { width: 100%; }

.cp-section { padding: 4rem 1.5rem; }
.cp-plans-section { background: #fafbfc; }
.cp-section__header { margin-bottom: 2.5rem; }
.cp-section__header--center { text-align: center; max-width: 42rem; margin-left: auto; margin-right: auto; }
.cp-section__header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cp-section__eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #22A366;
    margin-bottom: .5rem;
}
.cp-section__title {
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: .75rem;
}
.cp-section__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #6c757d;
    margin: 0;
    max-width: 38rem;
}
.cp-section__header--center .cp-section__lead { margin-left: auto; margin-right: auto; }

.cp-plans-count {
    flex-shrink: 0;
    text-align: center;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.35rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.cp-plans-count__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #22A366;
    line-height: 1;
}
.cp-plans-count__label {
    font-size: .8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cp-how { background: #fff; border-bottom: 1px solid #eef0f2; }
.cp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.cp-step {
    text-align: center;
    padding: 1.25rem 1rem;
}
.cp-step__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f7ef 0%, #d4f0e2 100%);
    color: #22A366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.cp-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: .5rem;
}
.cp-step__text {
    font-size: .9rem;
    line-height: 1.55;
    color: #6c757d;
    margin: 0;
}

.cp-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.cp-plan-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cp-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .1);
    border-color: #c8e6d4;
}
.cp-plan-card__media-link { display: block; text-decoration: none; }
.cp-plan-card__media {
    position: relative;
    height: 220px;
    background: #f8f9fa;
    overflow: hidden;
}
.cp-plan-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.cp-plan-card:hover .cp-plan-card__image { transform: scale(1.04); }
.cp-plan-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, .96);
    color: #22A366;
    font-size: .72rem;
    font-weight: 700;
    padding: .35rem .7rem;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.cp-plan-card__body {
    padding: 1.25rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cp-plan-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 .75rem;
}
.cp-plan-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}
.cp-plan-card__title a:hover { color: #22A366; }
.cp-plan-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .85rem;
}
.cp-plan-card__chip {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .75rem;
    font-weight: 600;
    color: #495057;
    background: #f1f3f5;
    border-radius: 999px;
    padding: .28rem .65rem;
}
.cp-plan-card__chip--price {
    background: #e8f7ef;
    color: #1a7a45;
}
.cp-plan-card__chip i { font-size: .7rem; opacity: .85; }
.cp-plan-card__description {
    flex: 1;
    font-size: .92rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0 0 1.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cp-plan-card__actions { margin-top: auto; }

.cp-empty {
    text-align: center;
    padding: 4rem 1.5rem;
    background: #fff;
    border: 1px dashed #dee2e6;
    border-radius: 14px;
}
.cp-empty__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #e8f7ef;
    color: #22A366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.cp-empty__title { font-size: 1.35rem; font-weight: 700; margin-bottom: .5rem; }
.cp-empty__text { color: #6c757d; max-width: 28rem; margin: 0 auto 1.25rem; }

.cp-features { background: #fff; }
.cp-features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.cp-features__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.75rem;
}
.cp-features__list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .85rem;
    font-size: .98rem;
    color: #333;
}
.cp-features__list i {
    color: #22A366;
    margin-top: .2rem;
    width: 1rem;
    text-align: center;
}
.cp-features__visual { position: relative; }
.cp-features__image {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
    display: block;
}
.cp-features__card {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: -1.25rem;
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.15rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    border-left: 4px solid #22A366;
}
.cp-features__card-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #22A366;
    margin: 0 0 .35rem;
}
.cp-features__card-text {
    font-size: .9rem;
    line-height: 1.5;
    color: #495057;
    margin: 0;
}

.cp-cta-band {
    background: linear-gradient(135deg, #22A366 0%, #1a8f52 55%, #157a47 100%);
    padding: 3rem 1.5rem 3.5rem;
}
.cp-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cp-cta-band__title {
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 0 0 .4rem;
}
.cp-cta-band__text {
    color: rgba(255, 255, 255, .9);
    margin: 0;
    font-size: 1rem;
}
.cp-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

@media (max-width: 991px) {
    .cp-steps { grid-template-columns: repeat(2, 1fr); }
    .cp-plan-grid { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
    .cp-features__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .cp-features__visual { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 767px) {
    .cp-section { padding: 3rem 1rem; }
    .cp-hero__actions { flex-direction: column; align-items: stretch; }
    .cp-hero__actions .cp-btn { width: 100%; }
    .cp-steps { grid-template-columns: 1fr; gap: .5rem; }
    .cp-step { display: flex; text-align: left; gap: 1rem; padding: .85rem 0; }
    .cp-step__icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.1rem; }
    .cp-plan-grid { grid-template-columns: 1fr; }
    .cp-section__header-row { flex-direction: column; }
    .cp-plans-count { align-self: flex-start; }
    .cp-cta-band__inner { flex-direction: column; align-items: flex-start; }
    .cp-cta-band__actions { width: 100%; }
    .cp-cta-band__actions .cp-btn { flex: 1; min-width: 140px; }
    .cp-features__card { position: static; margin-top: 1rem; }
}
