:root {
    --tsc-dark: #111827;
    --tsc-muted: #6b7280;
    --tsc-soft: #f8fafc;
    --tsc-border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: var(--tsc-dark);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: var(--tsc-dark);
}

.tsc-navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17,24,39,.08);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: -.04em;
}

.hero {
    background:
        radial-gradient(circle at top left, rgba(17,24,39,.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0 4.5rem;
}

.hero-card,
.tsc-card {
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(15,23,42,.08);
    background: #fff;
}

.tsc-card {
    box-shadow: 0 14px 40px rgba(15,23,42,.05);
}

.soft-panel {
    background: var(--tsc-soft);
    border: 1px solid var(--tsc-border);
    border-radius: 22px;
}

.action-card {
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    transition: .15s ease;
    height: 100%;
    background: #fff;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15,23,42,.08);
}

.icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #111827;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.btn-dark {
    background: #111827;
    border-color: #111827;
}

.btn-dark:hover {
    background: #030712;
    border-color: #030712;
}

.section-padding {
    padding: 4.5rem 0;
}

.kicker {
    color: #6b7280;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-pill {
    border: 1px solid var(--tsc-border);
    border-radius: 999px;
    padding: .65rem .9rem;
    background: #fff;
    font-weight: 650;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.progress-soft {
    height: 10px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.progress-soft > div {
    height: 100%;
    background: #111827;
    border-radius: 999px;
    width: 33%;
    transition: width .2s ease;
}

.time-chip {
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: .6rem .95rem;
    background: #fff;
    cursor: pointer;
    font-weight: 650;
}

.time-chip.active {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.status-pill {
    border-radius: 999px;
    font-weight: 700;
    font-size: .82rem;
    padding: .45rem .8rem;
}

.detail-label {
    color: #6b7280;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.detail-value {
    font-size: 1rem;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.footer-note {
    color: #6b7280;
    font-size: .9rem;
}

@media (max-width: 575.98px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .display-4 {
        font-size: 2.25rem;
    }

    .hero-card,
    .tsc-card {
        border-radius: 20px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .card-body {
        padding: 1.25rem !important;
    }

    .action-card {
        border-radius: 18px;
    }
}
html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
}

form#form1 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}