:root {
    --brand: #1357d6;
    --brand-dark: #092f88;
    --brand-soft: #eaf2ff;
    --green: #16b889;
    --green-soft: #e9fff8;
    --orange: #ffb020;
    --orange-soft: #fff6dd;
    --ink: #102033;
    --muted: #64748b;
    --line: #dfe8f6;
    --white: #ffffff;
    --shadow: 0 26px 70px rgba(9, 47, 136, .18);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
}


/* Lightweight Bootstrap fallback for offline preview/server without CDN */
.container { width: min(100% - 32px, 1180px); margin-inline: auto; }
.row { display: flex; flex-wrap: wrap; margin-inline: -12px; }
.row > * { padding-inline: 12px; width: 100%; }
.g-5 { row-gap: 3rem; } .g-4 { row-gap: 1.5rem; } .g-3 { row-gap: 1rem; }
.d-none { display: none !important; }
.d-flex { display: flex !important; } .inline-flex { display: inline-flex !important; }
.flex-column { flex-direction: column !important; }
.align-items-center { align-items: center !important; } .align-items-start { align-items: flex-start !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.gap-2 { gap: .5rem !important; } .gap-3 { gap: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; } .mb-4 { margin-bottom: 1.5rem !important; } .mt-2 { margin-top: .5rem !important; } .mt-3 { margin-top: 1rem !important; } .mt-4 { margin-top: 1.5rem !important; } .mt-5 { margin-top: 3rem !important; }
.me-2 { margin-right: .5rem !important; } .ms-2 { margin-left: .5rem !important; }
.py-2 { padding-block: .5rem !important; } .px-4 { padding-inline: 1.5rem !important; }
.fw-semibold { font-weight: 700 !important; } .small { font-size: .875rem !important; }
.text-secondary { color: var(--muted) !important; } .text-danger { color: #dc3545 !important; }
.fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; }
.sticky-top { position: sticky; top: 0; z-index: 1020; }
.navbar { display: flex; align-items: center; } .navbar-brand { color: inherit; text-decoration: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; cursor: pointer; text-decoration: none; line-height: 1.35; transition: .2s ease; }
.btn-lg { min-height: 50px; font-size: 1rem; } .rounded-pill { border-radius: 999px !important; }
.btn-light { color: var(--brand-dark); background: #fff; border-color: #fff; font-weight: 900; }
.btn-outline-light { background: transparent; }
.btn-primary { color: #fff; }
.shadow-sm { box-shadow: 0 10px 26px rgba(13,42,101,.08) !important; } .shadow-lg { box-shadow: var(--shadow) !important; }
.alert { padding: 1rem; border-radius: 1rem; } .alert-danger { color: #842029; background: #f8d7da; border: 1px solid #f5c2c7; }
.form-control, .form-select { display: block; appearance: none; }
.form-check { display: block; min-height: 1.5rem; padding-left: 1.5em; }
.form-check-input { width: 1em; height: 1em; margin-top: .25em; margin-left: -1.5em; float: left; }
.invalid-feedback { display: none; color: #dc3545; font-size: .875rem; } .is-invalid ~ .invalid-feedback { display: block; }
@media (min-width: 768px) { .col-md-4 { flex: 0 0 auto; width: 33.333333%; } .flex-md-row { flex-direction: row !important; } .d-md-inline-flex { display: inline-flex !important; } }
@media (min-width: 992px) { .col-lg-5 { flex: 0 0 auto; width: 41.666667%; } .col-lg-7 { flex: 0 0 auto; width: 58.333333%; } .d-lg-block { display: block !important; } }
@media (min-width: 1200px) { .col-xl-6 { flex: 0 0 auto; width: 50%; } }
@media (min-width: 768px) { .d-md-inline-flex { display: inline-flex !important; } }
@media (min-width: 992px) { .d-lg-block { display: block !important; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 8%, rgba(22, 184, 137, .16), transparent 28%),
        radial-gradient(circle at 92% 16%, rgba(255, 176, 32, .18), transparent 25%),
        #f6f9ff;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.navbar-glass {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(223, 232, 246, .75);
}

.brand-mark {
    position: relative;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand), #62a1ff);
    box-shadow: 0 12px 28px rgba(19, 87, 214, .24);
    color: #fff;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 5px;
}
.brand-mark i { display: none; font-size: 1.3rem; }
.brand-mark.brand-fallback i { display: block; }
.brand-title { display: grid; line-height: 1.05; letter-spacing: -.02em; }
.brand-title strong { font-size: 1.02rem; color: var(--ink); }
.brand-title small { color: var(--muted); font-weight: 700; font-size: .78rem; }

.nav-link-pill,
.year-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .9rem;
    padding: .72rem 1rem;
}
.nav-link-pill {
    color: var(--brand-dark);
    background: #eef5ff;
    border: 1px solid rgba(19, 87, 214, .12);
}
.year-pill {
    color: #fff;
    background: linear-gradient(135deg, var(--green), #20c997);
    box-shadow: 0 12px 26px rgba(22, 184, 137, .26);
}

.hero-modern {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 112px 0 48px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 35, 101, .96), rgba(19, 87, 214, .94) 52%, rgba(12, 151, 126, .94)),
        linear-gradient(135deg, #062365, #1357d6);
}
.hero-modern::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -72px;
    height: 144px;
    border-radius: 50% 50% 0 0;
    background: #f6f9ff;
    z-index: 0;
}
.hero-container { position: relative; z-index: 1; }
.hero-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: .22;
    z-index: 0;
}
.hero-blob-one {
    width: 420px;
    height: 420px;
    left: -140px;
    top: 110px;
    background: var(--green);
}
.hero-blob-two {
    width: 360px;
    height: 360px;
    right: -120px;
    top: 70px;
    background: var(--orange);
}

.hero-copy { max-width: 620px; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .72rem 1rem;
    border-radius: 999px;
    color: #e9fff8;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    font-weight: 800;
    margin-bottom: 18px;
}
.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.45rem, 6vw, 5.35rem);
    line-height: .96;
    letter-spacing: -.07em;
    font-weight: 950;
}
.hero-subtitle {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.05rem, 1.7vw, 1.24rem);
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, .42);
    color: #fff;
}
.hero-actions .btn-outline-light:hover { color: var(--brand-dark); background: #fff; }

.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}
.trust-card {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
}
.trust-card span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #083073;
    background: #fff;
    margin-bottom: 12px;
}
.trust-card strong,
.trust-card small { display: block; }
.trust-card strong { color: #fff; font-size: .95rem; }
.trust-card small { color: rgba(255, 255, 255, .72); margin-top: 3px; line-height: 1.35; }

.bus-scene {
    position: relative;
    width: min(500px, 95%);
    height: 210px;
    margin-top: 42px;
}
.route-line {
    position: absolute;
    left: 34px;
    right: 58px;
    bottom: 42px;
    border-top: 9px dashed rgba(255,255,255,.35);
    border-radius: 999px;
}
.map-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .72rem .9rem;
    border-radius: 18px;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 36px rgba(0,0,0,.14);
    font-weight: 850;
    z-index: 2;
}
.map-card i { color: var(--green); }
.map-card-one { left: 0; bottom: 78px; transform: rotate(-2deg); }
.map-card-two { right: 0; top: 14px; transform: rotate(2deg); }
.bus-illustration {
    position: absolute;
    left: 150px;
    bottom: 22px;
    width: 216px;
    height: 104px;
    border-radius: 30px 38px 26px 26px;
    background: linear-gradient(180deg, #ffd35a 0 44%, #ffaf20 45% 100%);
    box-shadow: inset 0 -10px 0 rgba(0,0,0,.08), 0 20px 40px rgba(0,0,0,.18);
    animation: busFloat 3.6s ease-in-out infinite;
}
.bus-illustration::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 42px;
    height: 4px;
    background: rgba(255, 255, 255, .62);
    border-radius: 999px;
}
.bus-window {
    position: absolute;
    top: 18px;
    width: 38px;
    height: 28px;
    border-radius: 9px;
    background: linear-gradient(135deg, #eaf7ff, #8dc8ff);
}
.bus-window-one { left: 26px; }
.bus-window-two { left: 76px; }
.bus-window-three { left: 126px; width: 52px; border-radius: 9px 18px 9px 9px; }
.bus-light {
    position: absolute;
    right: 12px;
    bottom: 28px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #ff5b5b;
}
.bus-wheel {
    position: absolute;
    bottom: -15px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #152238;
    border: 7px solid #f8fafc;
}
.bus-wheel-left { left: 38px; }
.bus-wheel-right { right: 40px; }
@keyframes busFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.registration-shell { position: relative; }
.form-card-modern {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(255, 255, 255, .65);
    color: var(--ink);
    box-shadow: var(--shadow);
}
.form-card-modern::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 9px;
    background: linear-gradient(90deg, var(--green), var(--brand), var(--orange));
}
.form-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 30px 30px 20px;
    background:
        radial-gradient(circle at 92% 0%, rgba(19, 87, 214, .13), transparent 30%),
        #fff;
}
.form-step-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    padding: .45rem .72rem;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 900;
    font-size: .78rem;
    margin-bottom: 12px;
}
.form-card-header h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 950;
    letter-spacing: -.04em;
}
.form-card-header p { margin: 7px 0 0; color: var(--muted); }
.header-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #62a1ff);
    box-shadow: 0 18px 38px rgba(19, 87, 214, .24);
    font-size: 1.8rem;
}

form { padding: 0 30px 30px; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.form-field.span-2 { grid-column: span 2; }
.form-field label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 8px;
    color: #24364b;
    font-weight: 850;
    font-size: .92rem;
}
.form-field label span { color: #e5484d; }
.field-control { position: relative; }
.field-control > i {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
    z-index: 4;
    font-size: 1.08rem;
}
.field-control .form-control,
.field-control .form-select {
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background-color: #f8fbff;
    color: var(--ink);
    padding-left: 48px;
    font-weight: 650;
    box-shadow: none;
}
.field-control .form-control::placeholder { color: #9aadbf; font-weight: 550; }
.field-control .form-select { padding-right: 2.6rem; }
.field-control .form-control:focus,
.field-control .form-select:focus {
    border-color: rgba(19, 87, 214, .52);
    background: #fff;
    box-shadow: 0 0 0 .26rem rgba(19, 87, 214, .11);
}
.field-control .is-invalid { border-color: #dc3545; }
.field-control .invalid-feedback {
    margin-left: 8px;
    font-weight: 650;
}

.estimate-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, #eff8ff, #f4fff7);
    border: 1px solid rgba(19, 87, 214, .12);
}
.estimate-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--green), #4ed8aa);
    box-shadow: 0 16px 30px rgba(22, 184, 137, .25);
    font-size: 1.35rem;
}
.estimate-panel span,
.estimate-panel small { display: block; color: var(--muted); }
.estimate-panel strong {
    display: block;
    color: var(--brand-dark);
    font-size: 1.45rem;
    letter-spacing: -.02em;
}

.agreement-panel {
    margin-top: 18px;
    padding: 18px;
    border-radius: 24px;
    background: var(--orange-soft);
    border: 1px solid rgba(255, 176, 32, .24);
}
.agreement-panel.agreement-error { border-color: #dc3545; background: #fff5f5; }
.form-check-input:checked {
    background-color: var(--brand);
    border-color: var(--brand);
}
.form-check-input:focus { box-shadow: 0 0 0 .25rem rgba(19, 87, 214, .12); }
.form-check-label { color: #30445c; line-height: 1.55; }
.form-check-label a { font-weight: 900; white-space: nowrap; }

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
}
.submit-note {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--muted);
    font-weight: 750;
    font-size: .88rem;
}
.submit-note i { color: var(--brand); }
.submit-btn {
    border: 0;
    border-radius: 999px;
    padding: .95rem 1.45rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand), #0c7bff);
    box-shadow: 0 16px 34px rgba(19, 87, 214, .26);
}
.submit-btn:hover { transform: translateY(-1px); }

.info-strip {
    position: relative;
    z-index: 2;
    margin-top: -12px;
    padding: 20px 0 58px;
}
.info-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 114px;
    padding: 20px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(223, 232, 246, .9);
    box-shadow: 0 18px 45px rgba(13, 42, 101, .08);
}
.tile-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    font-size: 1.4rem;
}
.tile-blue { background: var(--brand-soft); color: var(--brand); }
.tile-green { background: var(--green-soft); color: var(--green); }
.tile-orange { background: var(--orange-soft); color: #b86700; }
.info-tile strong,
.info-tile span { display: block; }
.info-tile strong { font-size: 1.08rem; color: var(--ink); }
.info-tile span { color: var(--muted); line-height: 1.45; margin-top: 3px; }

.footer-modern {
    padding: 26px 0;
    border-top: 1px solid var(--line);
    background: #fff;
}

.success-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(22,184,137,.23), transparent 34%),
        radial-gradient(circle at top right, rgba(19,87,214,.18), transparent 35%),
        #f8fafc;
}
.success-card {
    max-width: 860px;
    padding: 44px;
    text-align: center;
    background: #fff;
    border-radius: 36px;
    border: 1px solid rgba(223, 232, 246, .9);
    box-shadow: var(--shadow);
}
.success-icon {
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 30px;
    font-size: 3.1rem;
    background: linear-gradient(135deg, var(--green), #60d394);
    box-shadow: 0 18px 40px rgba(22, 184, 137, .26);
}
.reg-number-box {
    padding: 24px;
    border-radius: 26px;
    background: #f1f8ff;
    border: 1px dashed rgba(19, 87, 214, .35);
}
.info-card {
    min-height: 88px;
    padding: 17px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
}
.info-card span {
    display: block;
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 4px;
}

@media (max-width: 1199.98px) {
    .hero-copy h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
    .form-card-header, form { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 991.98px) {
    .navbar-glass { position: sticky !important; }
    .hero-modern { min-height: auto; padding: 42px 0 42px; }
    .hero-modern::after { height: 86px; bottom: -42px; }
    .hero-copy { max-width: 100%; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust-grid { max-width: 760px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 767.98px) {
    body { background: #f6f9ff; }
    .brand-title small { display: none; }
    .nav-link-pill { display: none !important; }
    .year-pill { padding: .55rem .72rem; font-size: .78rem; }
    .hero-modern { padding-top: 28px; }
    .hero-kicker { font-size: .85rem; }
    .hero-copy h1 { font-size: 2.7rem; }
    .hero-subtitle { font-size: 1rem; line-height: 1.62; }
    .hero-actions .btn { width: 100%; }
    .hero-trust-grid { grid-template-columns: 1fr; }
    .trust-card {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }
    .trust-card span { margin: 0; flex: 0 0 38px; }
    .form-card-modern { border-radius: 28px; }
    .form-card-header {
        padding: 24px 20px 16px;
        align-items: center;
    }
    .header-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 18px;
        font-size: 1.45rem;
    }
    form { padding: 0 20px 22px; }
    .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .form-field.span-2 { grid-column: span 1; }
    .field-control .form-control,
    .field-control .form-select { min-height: 52px; border-radius: 16px; }
    .estimate-panel,
    .agreement-panel { border-radius: 20px; }
    .form-submit-row { display: grid; }
    .submit-btn { width: 100%; }
    .info-strip { padding-bottom: 38px; }
    .info-tile { min-height: auto; border-radius: 22px; }
    .success-card { padding: 30px 18px; border-radius: 28px; }
}

@media (max-width: 420px) {
    .hero-copy h1 { font-size: 2.35rem; }
    .form-card-header h2 { font-size: 1.55rem; }
    .form-card-header p { font-size: .92rem; }
    .header-icon { display: none; }
}

.hero-status-chip {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: 20px;
    padding: .8rem 1.05rem;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(12px);
}
.hero-status-chip.is-open {
    color: #062365;
    background: rgba(255, 255, 255, .95);
}
.hero-status-chip.is-locked {
    color: #fff4d0;
    background: rgba(255, 176, 32, .18);
}
.form-step-badge.is-locked {
    color: #8a4b00;
    background: var(--orange-soft);
}
.lock-panel {
    text-align: center;
    padding: clamp(28px, 5vw, 46px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 176, 32, .16), transparent 32%),
        linear-gradient(180deg, #fff, #fbfdff);
    border: 1px solid rgba(255, 176, 32, .26);
}
.lock-panel-icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    color: #8a4b00;
    background: var(--orange-soft);
    box-shadow: 0 18px 40px rgba(255, 176, 32, .22);
    font-size: 2.1rem;
    margin-bottom: 20px;
}
.lock-panel h3 {
    margin: 0;
    font-weight: 950;
    letter-spacing: -.04em;
    color: var(--ink);
}
.lock-panel p {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--muted);
    line-height: 1.7;
}
.schedule-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}
.schedule-box > div {
    text-align: left;
    padding: 16px;
    border-radius: 20px;
    background: #f6f9ff;
    border: 1px solid var(--line);
}
.schedule-box span,
.schedule-box strong {
    display: block;
}
.schedule-box span {
    color: var(--muted);
    font-weight: 800;
    font-size: .82rem;
}
.schedule-box strong {
    color: var(--ink);
    font-size: .95rem;
    margin-top: 6px;
}
.admin-hint {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 18px;
    padding: .75rem 1rem;
    color: var(--muted);
    background: #eef5ff;
    border: 1px solid rgba(19, 87, 214, .12);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
}
.admin-hint code {
    color: var(--brand-dark);
    background: rgba(255, 255, 255, .75);
    padding: .12rem .35rem;
    border-radius: 8px;
}

@media (max-width: 767.98px) {
    .schedule-box { grid-template-columns: 1fr; }
    .admin-hint { border-radius: 18px; align-items: flex-start; text-align: left; }
}
