/* Subdomain homepage common sections (non-differential) */

.cta {
    padding: 24px 0 20px;
    border-bottom: 1px solid #e6dece;
    background:
        radial-gradient(700px 260px at 0% 0%, #fff2e9 0%, rgba(255, 242, 233, 0) 72%),
        radial-gradient(620px 220px at 100% 0%, #fff8e8 0%, rgba(255, 248, 232, 0) 70%),
        linear-gradient(120deg, #ffffff 0%, #fffbf3 100%);
}

.cta__content {
    display: grid;
    grid-template-columns: 1.2fr minmax(290px, 360px);
    gap: 18px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.cta__title {
    margin: 0 0 8px;
    font-size: 2rem;
    line-height: 1.06;
    color: #2f2f2f;
}

.cta__subtitle {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.45;
    max-width: 66ch;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 9px;
    border: 1px solid #d32f2f;
    background: #d32f2f;
    color: #fff;
    font-weight: 700;
    padding: 10px 16px;
    white-space: nowrap;
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.cta__button:hover {
    background: #b71c1c;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: 320px;
    border: 1px solid #eadfca;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(57, 41, 14, 0.08);
    padding: 12px;
}

.cta__new-client-card {
    border: 1px dashed #dcc7a6;
    border-radius: 10px;
    background: #fffdf7;
    padding: 10px;
}

.cta__new-client-text {
    margin: 0;
    font-size: 0.92rem;
    color: #5a5549;
    line-height: 1.35;
}

.cta__new-client-link {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #d8cbb1;
    background: #fdf7eb;
    color: #8f2d1f;
    font-weight: 700;
    padding: 8px 10px;
}

.cta__new-client-link:hover {
    background: #f9efdd;
}

.cta__new-client-card a {
    color: #8f2d1f;
    font-weight: 700;
}

.availability-widget {
    border: 1px solid #e6dece;
    border-radius: 10px;
    padding: 12px;
    background: #fffcf6;
}

.availability-widget__days {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.availability-widget__day-btn {
    border: 1px solid #d8cbb1;
    border-radius: 8px;
    padding: 6px 10px;
    background: #fff;
    cursor: pointer;
}

.availability-widget__day-btn--active {
    background: #f4eee3;
    border-color: #b89f78;
}

.availability-widget__day-label {
    display: block;
    font-weight: 700;
}

.availability-widget__day-date {
    display: block;
    font-size: 0.82rem;
    color: #665f53;
}

.availability-widget__rows {
    display: grid;
    gap: 10px;
}

.availability-widget__mode {
    font-weight: 700;
    margin-bottom: 4px;
    color: #4a4338;
    font-size: 0.88rem;
}

.availability-widget__slots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.availability-widget__slot {
    display: inline-flex;
    border: 1px solid #d8cbb1;
    border-radius: 999px;
    background: #fff;
    padding: 4px 8px;
    font-size: 0.84rem;
}

.availability-widget__slot--empty {
    color: #6f685d;
}

.availability-widget__footer {
    margin-top: 10px;
}

.availability-widget__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: #3d7cad;
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 700;
}

@media (max-width: 980px) {
    .cta__content {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cta__actions {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 680px) {
    .cta__content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .cta__title {
        font-size: 1.62rem;
    }
}
