/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

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

/* === HEADER === */
.site-header {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.site-header .container {
    max-width: 100%;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
}

/* === HERO === */
.hero {
    padding: 8px 0 32px;
    text-align: center;
}

.headline {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #0a0a0a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.headline .accent {
    color: #00b4f0;
    position: relative;
    padding: 0 4px;
}

.headline .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background: #00b4f0;
    border-radius: 2px;
}

.sub-headline {
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === VIDEO === */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    border: 3px solid #00b4f0;
    box-shadow: 0 8px 32px rgba(0, 180, 240, 0.15), 0 4px 12px rgba(0,0,0,0.08);
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.scroll-cue {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* === BOOKING === */
.booking {
    padding: 80px 0;
    background: #f8fafc;
}

.booking-inner {
    text-align: center;
}

.booking-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.booking-sub {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.booking-widget {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-placeholder {
    color: #888;
    text-align: center;
}

.booking-placeholder strong {
    color: #00b4f0;
    display: block;
    margin-bottom: 8px;
}

/* === TRUST === */
.trust {
    padding: 80px 0;
}

.trust-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trust-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: #00b4f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 240, 0.1);
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.trust-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.trust-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* === FOOTER === */
.site-footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: invert(1);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.copyright {
    color: #777;
    font-size: 13px;
    margin-top: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .logo {
        height: 56px;
    }

    .site-header .container {
        padding: 0 14px;
    }

    .hero {
        padding: 4px 0 24px;
    }

    .booking, .trust {
        padding: 50px 0;
    }

    .booking-widget {
        padding: 24px;
    }

    .footer-links {
        gap: 20px;
        font-size: 13px;
    }
}
