.bmcs-app {
    --bmcs-accent: #0f766e;
    --bmcs-ink: #172026;
    --bmcs-muted: #5f6f76;
    --bmcs-border: #d7dee2;
    --bmcs-soft: #f6f8f8;
    color: var(--bmcs-ink);
    font-family: inherit;
    margin: 0 auto;
    max-width: 1180px;
    padding: 28px 18px;
}

.bmcs-app * {
    box-sizing: border-box;
}

.bmcs-kicker {
    color: var(--bmcs-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.bmcs-app h1,
.bmcs-app h2,
.bmcs-app h3,
.bmcs-app p {
    margin-top: 0;
}

.bmcs-app h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.bmcs-app h2 {
    font-size: 1.5rem;
}

.bmcs-app p {
    color: var(--bmcs-muted);
    line-height: 1.65;
}

.bmcs-site-header,
.bmcs-site-footer {
    align-items: center;
    border-bottom: 1px solid var(--bmcs-border);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 26px;
    padding-bottom: 14px;
}

.bmcs-site-header nav,
.bmcs-site-footer div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bmcs-site-header a,
.bmcs-site-footer a {
    color: var(--bmcs-ink);
    font-weight: 800;
    text-decoration: none;
}

.bmcs-brand {
    color: var(--bmcs-accent) !important;
    font-size: 1.2rem;
}

.bmcs-site-footer {
    border-bottom: 0;
    border-top: 1px solid var(--bmcs-border);
    margin: 20px 0 0;
    padding: 18px 0 0;
}

.bmcs-site-footer p {
    margin: 4px 0 0;
}

.bmcs-button {
    align-items: center;
    background: var(--bmcs-accent);
    border: 1px solid var(--bmcs-accent);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    justify-content: center;
    min-height: 42px;
    padding: 9px 15px;
    text-decoration: none;
}

.bmcs-button:hover {
    color: #fff;
}

.bmcs-button-soft {
    background: #fff;
    color: var(--bmcs-accent);
}

.bmcs-button-soft:hover {
    color: var(--bmcs-accent);
}

.bmcs-button-danger {
    background: #b42318;
    border-color: #b42318;
}

.bmcs-button-small {
    min-height: 34px;
    padding: 6px 10px;
}

.bmcs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bmcs-panel,
.bmcs-profile-card,
.bmcs-service-card,
.bmcs-stat,
.bmcs-quote {
    background: #fff;
    border: 1px solid var(--bmcs-border);
    border-radius: 8px;
    padding: 20px;
}

.bmcs-split {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    align-items: start;
}

.bmcs-home-hero {
    align-items: center;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1fr) 340px;
    padding: 18px 0 32px;
}

.bmcs-checklist {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding-left: 18px;
}

.bmcs-form {
    display: grid;
    gap: 16px;
}

.bmcs-form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bmcs-form label {
    color: var(--bmcs-ink);
    display: grid;
    font-weight: 800;
    gap: 7px;
}

.bmcs-form input,
.bmcs-form select,
.bmcs-form textarea,
.bmcs-inline-form select {
    border: 1px solid #b8c4c9;
    border-radius: 6px;
    font: inherit;
    min-height: 42px;
    padding: 9px 11px;
    width: 100%;
}

.bmcs-form textarea {
    resize: vertical;
}

.bmcs-check {
    align-items: center;
    display: flex !important;
    flex-direction: row;
}

.bmcs-check input {
    min-height: 0;
    width: auto;
}

.bmcs-notice {
    background: #ecfdf3;
    border: 1px solid #abefc6;
    border-radius: 8px;
    color: #067647;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.bmcs-dashboard {
    display: grid;
    gap: 22px;
    grid-template-columns: 250px minmax(0, 1fr);
}

.bmcs-sidebar {
    align-self: start;
    background: #172026;
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 18px;
    padding: 18px;
    position: sticky;
    top: 24px;
}

.bmcs-sidebar-head {
    display: grid;
    gap: 4px;
}

.bmcs-sidebar-head span {
    color: #b6c7ce;
}

.bmcs-sidebar nav {
    display: grid;
    gap: 6px;
}

.bmcs-sidebar a {
    border-radius: 6px;
    color: #d8e5ea;
    padding: 10px 12px;
    text-decoration: none;
}

.bmcs-sidebar a.is-active,
.bmcs-sidebar a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.bmcs-public-link {
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.bmcs-main {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.bmcs-page-head {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.bmcs-stat-grid,
.bmcs-plan-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bmcs-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bmcs-stat {
    display: grid;
    gap: 5px;
}

.bmcs-stat strong,
.bmcs-plan-name {
    color: var(--bmcs-accent);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.bmcs-table-wrap {
    overflow-x: auto;
}

.bmcs-table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

.bmcs-table th,
.bmcs-table td {
    border-bottom: 1px solid var(--bmcs-border);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.bmcs-table th {
    color: var(--bmcs-muted);
    font-size: 0.84rem;
    text-transform: uppercase;
}

.bmcs-status {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    color: #9a3412;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 800;
    padding: 4px 9px;
}

.bmcs-inline-form {
    align-items: center;
    display: flex;
    gap: 8px;
}

.bmcs-client-form {
    align-items: stretch;
    flex-direction: column;
    min-width: 220px;
}

.bmcs-client-form input,
.bmcs-client-form textarea {
    border: 1px solid #b8c4c9;
    border-radius: 6px;
    font: inherit;
    padding: 8px;
}

.bmcs-stack {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.bmcs-public {
    display: grid;
    gap: 30px;
}

.bmcs-ad-banner {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    color: #7c2d12;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 16px;
}

.bmcs-public-hero {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 300px;
    padding: 20px 0;
}

.bmcs-profile-card {
    display: grid;
    gap: 8px;
    text-align: center;
}

.bmcs-profile-card img {
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.bmcs-section {
    display: grid;
    gap: 16px;
}

.bmcs-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bmcs-chip-grid span {
    background: var(--bmcs-soft);
    border: 1px solid var(--bmcs-border);
    border-radius: 999px;
    padding: 8px 12px;
}

.bmcs-service-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bmcs-service-card {
    display: grid;
    gap: 8px;
}

.bmcs-service-card strong {
    color: var(--bmcs-accent);
    font-size: 1.2rem;
}

.bmcs-booking-panel {
    border-top: 1px solid var(--bmcs-border);
    grid-template-columns: 340px minmax(0, 1fr);
    padding-top: 28px;
}

.bmcs-slots {
    display: grid;
    gap: 10px;
}

.bmcs-slot-day {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bmcs-slot-day button {
    background: #fff;
    border: 1px solid var(--bmcs-border);
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    min-height: 38px;
    padding: 7px 11px;
}

.bmcs-slot-day button.is-selected {
    background: var(--bmcs-accent);
    border-color: var(--bmcs-accent);
    color: #fff;
}

.bmcs-slot-day small {
    color: inherit;
    font-size: 0.75rem;
    font-weight: 800;
}

.bmcs-empty {
    background: var(--bmcs-soft);
    border: 1px dashed var(--bmcs-border);
    border-radius: 8px;
    padding: 20px;
}

.bmcs-quote {
    color: var(--bmcs-muted);
    line-height: 1.65;
    margin: 0;
}

.bmcs-faqs {
    display: grid;
    gap: 10px;
}

.bmcs-faqs p {
    background: var(--bmcs-soft);
    border-radius: 8px;
    margin: 0;
    padding: 14px;
}

.bmcs-powered {
    border-top: 1px solid var(--bmcs-border);
    color: var(--bmcs-muted);
    font-size: 0.9rem;
    padding-top: 16px;
    text-align: center;
}

.bmcs-powered.is-freemium {
    color: var(--bmcs-accent);
    font-weight: 800;
}

.bmcs-confirmation {
    display: grid;
    gap: 18px;
}

.bmcs-confirm-card {
    max-width: 760px;
}

.bmcs-detail-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 22px 0;
}

.bmcs-detail-list div {
    background: var(--bmcs-soft);
    border-radius: 8px;
    padding: 12px;
}

.bmcs-detail-list dt {
    color: var(--bmcs-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bmcs-detail-list dd {
    margin: 4px 0 0;
}

@media (max-width: 900px) {
    .bmcs-split,
    .bmcs-home-hero,
    .bmcs-dashboard,
    .bmcs-public-hero,
    .bmcs-booking-panel {
        grid-template-columns: 1fr;
    }

    .bmcs-sidebar {
        position: static;
    }

    .bmcs-stat-grid,
    .bmcs-plan-grid,
    .bmcs-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bmcs-form-grid,
    .bmcs-stat-grid,
    .bmcs-plan-grid,
    .bmcs-service-grid,
    .bmcs-detail-list {
        grid-template-columns: 1fr;
    }

    .bmcs-page-head,
    .bmcs-ad-banner,
    .bmcs-site-header,
    .bmcs-site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
