body.landing-body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    color: #0f172a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    padding: 32px 0 48px;
}

body.landing-body--error {
    background: #0f172a;
    color: #f8fafc;
}

.landing-main {
    width: 100%;
    max-width: 1280px;
    padding: 32px 16px 48px;
    box-sizing: border-box;
}

.landing-header {
    text-align: center;
    margin-bottom: 24px;
}

.landing-header h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.landing-header p {
    margin: 12px auto 0;
    max-width: 540px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.72);
}

body.landing-body--loaded .landing-header p {
    color: rgba(15, 23, 42, 0.7);
}

.landing-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.landing-form .landing-booking-trigger[hidden] {
    display: none !important;
}

.landing-spinner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: 0 20px 60px -32px rgba(30, 41, 59, 0.5);
    font-weight: 500;
    color: rgba(15, 23, 42, 0.8);
}

.landing-spinner__icon {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-top-color: rgba(67, 56, 202, 0.95);
    border-radius: 50%;
    animation: landing-spin 0.8s linear infinite;
}

@keyframes landing-spin {
    to {
        transform: rotate(360deg);
    }
}

body.landing-body #bh-booking-root .bh-popup-mask {
    display: none !important;
}

body.landing-body #bh-booking-root .bh-popup {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(100%, 800px);
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 32px 60px -36px rgba(15, 23, 42, 0.45);
    background: #ffffff;
    max-height: calc(100vh - 16px);
    overflow: visible;
}

body.landing-body #bh-booking-root .bh-popup-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

body.landing-body #bh-booking-root .bh-popup-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
}

body.landing-body #bh-booking-root .bh-popup-content {
    padding: 32px;
    padding-bottom: 32px;
}

body.landing-body #bh-booking-root .close-btn,
body.landing-body #bh-booking-root .bh-close-btn {
    display: none;
}

.landing-message {
    margin: 72px auto;
    padding: 40px;
    max-width: 560px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 40px 80px -50px rgba(15, 23, 42, 0.75);
}

.landing-message h1 {
    margin: 0 0 16px 0;
    font-size: 2rem;
}

.landing-message p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 720px) {
    body.landing-body #bh-booking-root .bh-popup {
        width: min(100% - 16px, 100%);
        border-radius: 16px;
        max-height: calc(100vh - 16px);
    }

    body.landing-body #bh-booking-root .bh-popup-content {
        padding: 20px;
        padding-bottom: 32px;
    }
}
