/* Homepage offers sections: website design and retainers */

.cl-offers-section {
    position: relative;
    z-index: 0;
    padding: 26px 20px 22px;
    background: var(--bg-color);
    text-align: left;
}

.cl-offers-section + .cl-offers-section {
    padding-top: 10px;
}

.cl-offers-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.cl-offers-heading {
    text-align: center;
    margin: 0 auto 26px;
    max-width: 880px;
}

.cl-offers-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 204, 0, 0.12);
    color: #9b6a00;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cl-offers-heading h2 {
    margin: 0 0 12px;
    color: var(--text-color);
    font-size: clamp(2rem, 4vw, 2.4rem);
}

.cl-offers-heading p {
    margin: 0 auto;
    color: var(--secondary-text);
    max-width: 860px;
    line-height: 1.7;
}

.cl-offers-grid {
    display: grid;
    gap: 24px;
    align-items: stretch;
}

.cl-offers-grid--website {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cl-offers-grid--retainers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cl-offer-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    padding: 22px;
    border-radius: 18px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cl-offer-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cl-offer-card__lead {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.cl-offer-card__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 204, 0, 0.12);
    color: #b57700;
    font-size: 1rem;
}

.cl-offer-card__eyebrow {
    margin: 2px 0 4px;
    color: #9b6a00;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cl-offer-card h3 {
    margin: 0;
    color: var(--text-color);
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.05;
}

.cl-offer-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), #ffb300);
    color: #111;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.cl-offer-card__description {
    margin: 0;
    color: var(--secondary-text);
    line-height: 1.6;
}

.cl-offer-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cl-offer-card__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 204, 0, 0.1);
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
}

.cl-offer-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.cl-offer-card__list li {
    position: relative;
    padding-left: 24px;
    color: var(--secondary-text);
    line-height: 1.55;
}

.cl-offer-card__list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: #0d7c3a;
    font-size: 0.95rem;
}

.cl-offer-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: auto;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--primary-color);
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cl-offer-card__button i {
    font-size: 0.82rem;
}

.cl-offer-card__button:hover,
.cl-offers-strip__button:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-1px);
}

.cl-offers-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
    padding: 0;
    clear: both;
    position: relative;
    z-index: 1;
}

.cl-offers-strip p {
    margin: 0;
    color: var(--secondary-text);
    line-height: 1.7;
    text-align: left;
}

.cl-offers-strip__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 46px;
    max-width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    box-sizing: border-box;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cl-faq-section {
    background: #f7f7f7;
    padding: 58px 20px;
}

body.dark-mode .cl-faq-section,
.dark-mode .cl-faq-section {
    background: #0f0f0f;
}

.dark-mode .cl-offers-heading__eyebrow,
body.dark-mode .cl-offers-heading__eyebrow {
    background: rgba(255, 204, 0, 0.12);
    color: #ffcc00;
}

.dark-mode .cl-offer-card,
body.dark-mode .cl-offer-card {
    background: #111;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.dark-mode .cl-offer-card__icon,
body.dark-mode .cl-offer-card__icon {
    background: rgba(255, 204, 0, 0.12);
    color: #ffcc00;
}

.dark-mode .cl-offer-card__eyebrow,
body.dark-mode .cl-offer-card__eyebrow {
    color: #ffcc00;
}

.dark-mode .cl-offer-card__chip,
body.dark-mode .cl-offer-card__chip {
    background: rgba(255, 204, 0, 0.12);
    color: #f5f5f5;
}

.dark-mode .cl-offers-strip__button,
body.dark-mode .cl-offers-strip__button {
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5f5f5;
}

.dark-mode .cl-offers-strip__button:hover,
body.dark-mode .cl-offers-strip__button:hover {
    background: var(--primary-color);
    color: #111;
    border-color: var(--primary-color);
}

@media (max-width: 1024px) {
    .cl-offers-grid--retainers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .cl-offers-grid--website,
    .cl-offers-grid--retainers {
        grid-template-columns: 1fr;
    }

    .cl-offers-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .cl-offers-strip__button {
        width: 100%;
        max-width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 640px) {
    .cl-offers-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cl-offers-strip {
        gap: 14px;
    }

    .cl-offers-strip__button {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }

    .cl-offer-card {
        padding: 18px;
    }

    .cl-offer-card__button {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 0.92rem;
    }

    .cl-offer-card__top {
        flex-direction: column;
        align-items: stretch;
    }

    .cl-offer-card__badge {
        align-self: flex-start;
    }
}
