body[data-page="home"] {
    background:
        radial-gradient(circle at top left, rgba(0, 119, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 28%, #f8fbff 100%);
}

body[data-page="booking"] {
    background:
        radial-gradient(circle at top right, rgba(0, 119, 255, 0.09), transparent 24%),
        linear-gradient(180deg, #f5f9ff 0%, #ffffff 18%, #f6faff 100%);
}

body[data-page="home"] header,
body[data-page="booking"] header {
    backdrop-filter: blur(18px);
}

.service-status {
    padding-top: 120px;
    padding-bottom: 72px;
}

.service-status-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.service-status-intro {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 760px;
    margin-bottom: 28px;
}

.service-status-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 119, 255, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-status h2 {
    margin-bottom: 0;
    text-align: left;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--primary);
    font-family: var(--font-sans);
}

.service-status-copy {
    color: #5f6d7d;
    font-size: 17px;
    line-height: 1.8;
}

.status-container {
    max-width: none;
}

.home-overview-card {
    padding: 36px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(0, 119, 255, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.92) 100%);
    box-shadow: 0 28px 90px rgba(12, 33, 71, 0.1);
}

.overview-header {
    margin-bottom: 28px;
}

.overview-kicker {
    margin-bottom: 16px;
}

.overview-header h3 {
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -0.04em;
    font-family: var(--font-sans);
}

.overview-subcopy {
    margin-top: 12px;
    color: #6a7889;
    font-size: 16px;
    line-height: 1.7;
}

.home-booking-overview {
    gap: 22px;
}

.overview-stage {
    display: grid;
    gap: 22px;
}

.overview-highlight {
    min-height: 238px;
    padding: 30px 32px;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(12, 33, 71, 0.08);
}

.overview-highlight-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.overview-label {
    background: rgba(0, 53, 102, 0.07);
    text-transform: none;
    letter-spacing: 1px;
}

.overview-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.overview-status-pill.status-green {
    background: rgba(46, 204, 113, 0.14);
    color: #1b8f4b;
}

.overview-status-pill.status-yellow {
    background: rgba(241, 196, 15, 0.18);
    color: #a77b00;
}

.overview-status-pill.status-red {
    background: rgba(231, 76, 60, 0.14);
    color: #c0392b;
}

.overview-status-pill.status-gray {
    background: rgba(148, 163, 184, 0.18);
    color: #64748b;
}

.overview-status-pill.status-ended {
    background: rgba(71, 85, 105, 0.16);
    color: #334155;
}

.overview-highlight strong {
    margin-top: 0;
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: -0.05em;
    font-family: var(--font-sans);
}

.overview-highlight p {
    margin-top: 18px;
    font-size: 17px;
    color: #5d6c7f;
}

.overview-legend-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.overview-legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 53, 102, 0.08);
    color: #5f6d7d;
    font-size: 13px;
    font-weight: 600;
}

.overview-legend-chip::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.overview-legend-chip.green::before {
    background: var(--green);
}

.overview-legend-chip.yellow::before {
    background: var(--yellow);
}

.overview-legend-chip.red::before {
    background: var(--red);
}

.overview-legend-chip.gray::before {
    background: var(--gray);
}

.overview-legend-chip.ended::before {
    background: #64748b;
}

.overview-strip {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 16px;
}

.overview-day {
    position: relative;
    min-height: 188px;
    padding: 18px 16px 16px;
    border-radius: 26px;
    overflow: hidden;
}

.overview-day::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 999px;
    background: rgba(0, 53, 102, 0.08);
}

.overview-day.status-green::before {
    background: linear-gradient(180deg, #4ade80, #16a34a);
}

.overview-day.status-yellow::before {
    background: linear-gradient(180deg, #facc15, #eab308);
}

.overview-day.status-red::before {
    background: linear-gradient(180deg, #fb7185, #e11d48);
}

.overview-day.status-gray::before {
    background: linear-gradient(180deg, #cbd5e1, #94a3b8);
}

.overview-day.status-ended::before {
    background: linear-gradient(180deg, #94a3b8, #64748b);
}

.overview-day-name {
    color: #7a8798;
    text-transform: none;
}

.overview-day-date {
    font-size: 18px;
}

.overview-day-badge {
    padding: 8px 10px;
    font-size: 10px;
    background: rgba(0, 53, 102, 0.05);
}

.overview-day-status {
    min-height: 54px;
    font-size: 14px;
}

.overview-day-periods {
    gap: 8px;
}

.period-chip {
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.booking-hero {
    margin-bottom: 30px;
    padding: 42px 46px;
}

.booking-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.booking-hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 53, 102, 0.08);
    color: #4f6075;
    font-size: 13px;
    font-weight: 600;
}

.booking-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
}

.booking-main {
    max-width: none;
}

.booking-main > .booking-card {
    scroll-margin-top: 124px;
}

.booking-card {
    padding: 30px;
}

.booking-card h2 {
    margin-bottom: 10px;
    font-size: 13px;
}

.booking-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
    letter-spacing: -0.04em;
    font-family: var(--font-sans);
}

.booking-card p {
    margin-bottom: 22px;
}

.booking-period-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.booking-calendar,
.spot-panel,
.booking-period {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.94));
}

.booking-period {
    height: 100%;
}

.booking-period-header {
    align-items: flex-start;
}

.booking-slot-grid {
    grid-template-columns: 1fr;
    gap: 10px;
}

.calendar-day {
    transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.calendar-day:hover {
    filter: saturate(1.05);
}

.slot-card {
    position: relative;
    overflow: hidden;
}

.slot-card::after {
    content: "";
    position: absolute;
    inset: auto -24px -48px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 119, 255, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity .24s ease;
    pointer-events: none;
}

.slot-card:hover::after,
.slot-card.selected::after {
    opacity: 1;
}

.slot-card.selected .slot-time,
.slot-card.selected .slot-label {
    color: #0052a4;
}

.spot-panel {
    position: relative;
    overflow: hidden;
}

.spot-panel::after {
    content: "";
    position: absolute;
    inset: auto -40px -50px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 119, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.spot-grid {
    gap: 14px;
}

.spot-choice {
    min-height: 68px;
    border-radius: 20px;
}

.spot-choice:hover .spot-choice-dot {
    transform: scale(1.14);
    box-shadow: 0 0 0 8px rgba(0, 119, 255, 0.14);
}

.spot-choice-dot {
    transition: transform .24s ease, box-shadow .24s ease;
}

.primary-action,
.secondary-action {
    min-height: 48px;
}

.booking-summary {
    display: block;
    background:
        radial-gradient(circle at top right, rgba(0, 119, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.96));
}

.summary-row {
    transition: background .2s ease, padding-left .2s ease;
}

.summary-row:hover {
    background: rgba(0, 119, 255, 0.03);
    padding-left: 6px;
}

.booking-summary {
    position: static;
    top: auto;
    max-width: none;
    padding: 24px 22px 22px;
}

.summary-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 119, 255, 0.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.summary-lead {
    margin: -6px 0 10px;
    color: #6a7889;
    font-size: 14px;
    line-height: 1.7;
}

.summary-row {
    padding: 14px 0;
}

.summary-row span {
    color: #8190a4;
}

.summary-row strong {
    color: var(--primary);
    font-size: 15px;
}

.summary-hint {
    min-height: 72px;
}

#continueBtn {
    display: block;
    min-height: 52px;
}

.services,
.pricing {
    position: relative;
}

.services h2,
.pricing h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: -0.04em;
    color: var(--primary);
    font-family: var(--font-sans);
}

.services {
    padding-top: 56px;
}

.service-grid {
    gap: 22px;
}

.card {
    padding: 34px 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
    border: 1px solid rgba(0, 53, 102, 0.08);
    box-shadow: 0 20px 60px rgba(12, 33, 71, 0.08);
    text-align: left;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(12, 33, 71, 0.12);
}

.card h3 {
    margin-bottom: 14px;
    font-size: 26px;
    letter-spacing: -0.03em;
    font-family: var(--font-sans);
}

.card p {
    color: #617084;
    font-size: 16px;
    line-height: 1.8;
}

.pricing {
    padding-top: 32px;
}

.price-grid {
    gap: 22px;
    align-items: stretch;
}

.price-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    padding: 34px 30px;
    border-radius: 30px;
    border: 1px solid rgba(0, 53, 102, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
    box-shadow: 0 20px 60px rgba(12, 33, 71, 0.08);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(12, 33, 71, 0.12);
}

.price-card h3 {
    font-size: 24px;
    letter-spacing: -0.03em;
    font-family: var(--font-sans);
}

.price-card h1 {
    margin: 22px 0 16px;
    font-size: 54px;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.05em;
    font-family: var(--font-sans);
}

.price-card p {
    color: #617084;
    font-size: 16px;
    line-height: 1.8;
}

.price-card button {
    margin-top: auto;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(0, 119, 255, 0.18);
}

.featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
    box-shadow: 0 26px 80px rgba(12, 33, 71, 0.12);
}

.featured h3,
.featured h1,
.featured p,
.featured .price-summary,
.featured .price-points,
.featured .price-note,
.featured .price-recommendation,
.featured .plan-badge,
.featured .price-plan-name {
    color: var(--primary) !important;
}

.featured .price-note {
    background: rgba(0, 119, 255, 0.06);
}

.featured .plan-badge {
    background: rgba(0, 53, 102, 0.08);
    border-color: rgba(0, 53, 102, 0.12);
}

.featured .price-cta {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 16px 28px rgba(0, 119, 255, 0.18);
}

@media (max-width: 1200px) {
    .overview-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .booking-main {
        max-width: none;
    }

    .booking-summary {
        position: static;
        max-width: none;
        justify-self: stretch;
    }

    .booking-period-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-status {
        padding-top: 96px;
        padding-bottom: 48px;
    }

    .service-status-intro {
        margin-bottom: 22px;
    }

    .home-overview-card {
        padding: 24px;
        border-radius: 26px;
    }

    .overview-strip {
        grid-template-columns: 1fr;
    }

    .overview-highlight {
        min-height: auto;
        padding: 24px;
    }

    .service-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }

    .booking-hero {
        padding: 32px 24px;
    }

    .booking-hero-meta {
        margin-top: 18px;
    }
}
