:root {
    --navy: #0B2E4E;
    --navy-dark: #081F38;
    --teal: #14B8A6;
    --teal-dark: #0D9488;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--slate-700);
    background: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img,
svg {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------- HEADER ---------- */

header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand .logo-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand .logo-box .icon {
    stroke: #fff;
    width: 20px;
    height: 20px;
}

.brand span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand span em {
    color: var(--teal);
    font-style: normal;
}

nav.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

nav.desktop-nav a {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
}

nav.desktop-nav a:hover {
    color: #fff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

.nav-phone .icon {
    color: var(--teal);
    width: 18px;
    height: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    border-radius: 999px;
    padding: 12px 22px;
    transition: transform .2s, box-shadow .2s;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-teal {
    background: var(--teal);
    color: #fff;
}

.btn-teal:hover {
    background: var(--teal-dark);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: #fff;
    color: var(--slate-900);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: var(--navy);
    padding: 0 24px 24px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width:1023px) {
    nav.desktop-nav,
    .nav-right {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}


/* ---------- HERO ---------- */

.hero {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 80px 0 110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 184, 166, 0.15);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.badge span {
    color: var(--teal);
    font-size: 14px;
    font-weight: 500;
}

.hero h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    color: var(--teal);
    font-style: normal;
}

.hero p.lead {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat .stat-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.stat .stat-top .icon {
    color: var(--teal);
    width: 18px;
    height: 18px;
}

.stat .stat-top strong {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.stat p {
    color: var(--slate-400);
    font-size: 13px;
}

.hero-visual {
    position: relative;
}

.avatar {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    background: linear-gradient(160deg, var(--navy), var(--teal-dark));
}

.hero-visual .avatar-wrap {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 220px;
}

.floating-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .icon-box .icon {
    color: var(--teal-dark);
}

.floating-card p {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-900);
}

.floating-card span {
    font-size: 12px;
    color: var(--slate-500);
}

@media (max-width:1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 34px;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-card {
        left: 0;
    }
}


/* ---------- SECTION HEADER ---------- */

.section {
    padding: 88px 0;
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.eyebrow {
    display: block;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-head p {
    color: var(--slate-500);
    line-height: 1.7;
}


/* ---------- SERVICES ---------- */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--slate-100);
    transition: box-shadow .25s, border-color .25s;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(11, 46, 78, 0.1);
}

.service-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(11, 46, 78, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .icon-wrap .icon {
    color: var(--navy);
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.service-card p {
    color: var(--slate-500);
    font-size: 14px;
    margin-bottom: 16px;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width:1023px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:639px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}


/* ---------- ABOUT ---------- */

.about {
    background: var(--slate-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-imgs .avatar-wrap:first-child {
    margin-top: 32px;
    border-radius: 20px;
    overflow: hidden;
}

.about-imgs .avatar-wrap:last-child {
    border-radius: 20px;
    overflow: hidden;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--slate-900);
    margin: 12px 0 20px;
    letter-spacing: -0.01em;
}

.about-text > p {
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-item .icon {
    color: var(--teal-dark);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item p {
    color: var(--slate-700);
}

@media (max-width:1023px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- DOCTORS ---------- */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    border-radius: 16px;
    border: 1px solid var(--slate-100);
    overflow: hidden;
    transition: box-shadow .25s;
}

.doctor-card:hover {
    box-shadow: 0 20px 40px rgba(11, 46, 78, 0.1);
}

.doctor-card .avatar {
    border-radius: 0;
}

.doctor-body {
    padding: 18px;
}

.doctor-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.doctor-body .role {
    font-size: 14px;
    color: var(--teal-dark);
    margin-bottom: 12px;
}

.doctor-social {
    display: flex;
    gap: 12px;
    color: var(--slate-400);
}

.doctor-social .icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    transition: color .2s;
}

.doctor-social .icon:hover {
    color: var(--slate-700);
}

@media (max-width:1023px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:639px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}


/* ---------- TESTIMONIALS ---------- */

.testimonials {
    background: var(--navy);
}

.testimonials .section-head h2 {
    color: #fff;
}

.testimonials .eyebrow {
    color: var(--teal);
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.t-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 26px;
}

.t-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.t-stars .icon {
    width: 16px;
    height: 16px;
    color: var(--teal);
    fill: var(--teal);
}

.t-card p.quote {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
}

.t-card p.name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width:1023px) {
    .t-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- CTA ---------- */

.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(120deg, var(--teal-dark), var(--navy));
    border-radius: 24px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.cta-box h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-box p {
    color: #e2e8f0;
    line-height: 1.7;
}

.cta-right {
    display: flex;
    justify-content: flex-end;
}

@media (max-width:1023px) {
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 28px;
    }
    .cta-right {
        justify-content: center;
    }
}


/* ---------- FOOTER ---------- */

footer {
    background: var(--navy-dark);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-about p {
    color: var(--slate-400);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials .s-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    cursor: pointer;
    transition: background .2s;
}

.footer-socials .s-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-socials .icon {
    width: 16px;
    height: 16px;
}

footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 15px;
}

footer .footer-links li {
    margin-bottom: 12px;
}

footer .footer-links a {
    color: var(--slate-400);
    font-size: 14px;
    transition: color .2s;
}

footer .footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--slate-400);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--slate-500);
    font-size: 13px;
}

@media (max-width:1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:639px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   BOOKING MODAL
   ======================================== */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 31, 56, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp .3s cubic-bezier(.22, .68, 0, 1.2);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(28px) scale(.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Modal header */
.modal-header {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 20px 20px 0 0;
    padding: 1.6rem 1.8rem 1.4rem;
    position: relative;
    color: #fff;
}

.modal-header .modal-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: .3rem;
}

.modal-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.modal-header p {
    font-size: .85rem;
    opacity: .82;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, .18);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, .32);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

/* Steps bar */
.modal-steps {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.8rem .8rem;
    border-bottom: 1px solid var(--slate-100);
}

.modal-step {
    display: flex;
    align-items: center;
    gap: .45rem;
    flex: 1;
}

.step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    background: #e0f2f1;
    color: var(--teal-dark);
    border: 2px solid var(--teal-dark);
    flex-shrink: 0;
    transition: all .3s;
}

.step-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--slate-400);
    transition: color .3s;
}

.modal-step.active .step-num {
    background: var(--teal-dark);
    color: #fff;
}

.modal-step.active .step-label {
    color: var(--teal-dark);
}

.modal-step.done .step-num {
    background: var(--teal-dark);
    color: #fff;
}

.modal-step.done .step-label {
    color: var(--teal-dark);
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e0f2f1;
    margin: 0 .4rem;
    transition: background .3s;
}

.step-line.done {
    background: var(--teal-dark);
}

/* Form body */
.modal-body {
    padding: 1.5rem 1.8rem;
}

.form-page {
    display: none;
}

.form-page.active {
    display: block;
}

.form-section-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--teal-dark);
    margin-bottom: .9rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.form-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d1fae5;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin-bottom: .85rem;
}

.field-row.single {
    grid-template-columns: 1fr;
}

.field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.field label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--slate-700);
}

.field input,
.field select,
.field textarea {
    border: 1.5px solid #d1fae5;
    border-radius: 10px;
    padding: .62rem .85rem;
    font-size: .88rem;
    color: var(--slate-900);
    background: #f8fffe;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal-dark);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, .12);
    background: #fff;
}

.field textarea {
    resize: vertical;
    min-height: 80px;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2.2rem;
}

.field .field-hint {
    font-size: .7rem;
    color: #ef4444;
    display: none;
}

.field.error input,
.field.error select,
.field.error textarea {
    border-color: #ef4444;
}

.field.error .field-hint {
    display: block;
}

/* Time slots */
.time-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: .5rem;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
    margin-bottom: .6rem;
}

.time-btn {
    border: 1.5px solid #d1fae5;
    border-radius: 8px;
    padding: .45rem .3rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal-dark);
    background: #f0fdf9;
    cursor: pointer;
    transition: all .18s;
    text-align: center;
    font-family: inherit;
}

.time-btn:hover {
    border-color: var(--teal-dark);
    background: #e0f7f4;
}

.time-btn.selected {
    background: var(--teal-dark);
    color: #fff;
    border-color: var(--teal-dark);
}

.time-error {
    font-size: .7rem;
    color: #ef4444;
    display: none;
    margin-bottom: .6rem;
}

/* Summary */
.summary-card {
    background: #f0fdf9;
    border: 1.5px solid #d1fae5;
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .38rem 0;
    border-bottom: 1px solid #d1fae5;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span:first-child {
    font-size: .78rem;
    color: var(--slate-500);
    font-weight: 500;
}

.summary-row span:last-child {
    font-size: .82rem;
    color: var(--slate-900);
    font-weight: 600;
}

.summary-notice {
    font-size: .78rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.summary-notice a {
    color: var(--teal-dark);
    text-decoration: underline;
}

/* Success view */
.success-view {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.2rem 1.8rem 2rem;
}

.success-view.show {
    display: flex;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: successPop .4s cubic-bezier(.22, .68, 0, 1.4);
}

@keyframes successPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-icon svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-view h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: .5rem;
}

.success-view p {
    font-size: .88rem;
    color: var(--slate-500);
    max-width: 340px;
    line-height: 1.6;
}

.ref-badge {
    margin-top: 1rem;
    background: #f0fdf9;
    border: 1.5px dashed var(--teal-dark);
    border-radius: 10px;
    padding: .55rem 1.2rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--teal-dark);
    letter-spacing: .06em;
}

.success-sub {
    margin-top: .8rem;
    font-size: .78rem;
    color: var(--slate-400) !important;
}

/* Modal footer */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.8rem 1.5rem;
    border-top: 1px solid var(--slate-100);
}

.btn-ghost-modal {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    color: var(--slate-500);
    border: 1.5px solid var(--slate-100);
    border-radius: 999px;
    padding: 10px 20px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
    visibility: hidden;
}

.btn-ghost-modal:hover {
    background: var(--slate-50);
}

.btn-ghost-modal svg,
#btnNext svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#btnNext:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 500px) {
    .field-row { grid-template-columns: 1fr; }
    .time-grid  { grid-template-columns: repeat(3, 1fr); }
    .modal-body, .modal-footer { padding-left: 1.1rem; padding-right: 1.1rem; }
}
