/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (1024px and below) ────────────────────────────── */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__right {
        display: none;
    }

    .header__mobile-toggle {
        display: block;
    }

    .hero__content {
        padding: 0 32px;
        padding-top: 72px;
    }

    .hero__title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

/* ── Mobile (768px and below) ─────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        max-height: none;
    }

    .hero__content {
        padding: 0 24px;
        padding-top: 72px;
    }

    .hero__title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__tagline {
        font-size: 1rem;
    }

    .hero__slide::after {
        background: linear-gradient(
            to right,
            rgba(10, 22, 40, 0.9) 0%,
            rgba(10, 22, 40, 0.7) 50%,
            rgba(10, 22, 40, 0.4) 100%
        );
    }

    .floating-cta__text {
        display: none;
    }

    .floating-cta {
        padding: 14px;
        border-radius: 50%;
    }

    .floating-cta__icon {
        width: 24px;
        height: 24px;
    }
}

/* ── Small Mobile (480px and below) ───────────────────────── */
@media (max-width: 480px) {
    .hero__content {
        padding: 0 20px;
        padding-top: 64px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__label-line {
        width: 32px;
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 4px 0;
    }
}
