/* Mobile-first overrides for main pages only.
   Loaded after page-specific styles to keep desktop untouched. */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    body {
        line-height: 1.55;
    }

    .container,
    .navbar-container,
    .footer-container,
    .footer-bottom-inner,
    .article-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    section,
    .section,
    .hero,
    .featured-section,
    .promo-section,
    .blog-preview,
    .contact-section,
    .faq-section,
    .intl-banner,
    .booking-hero,
    .checkout-hero,
    .itinerary-hero {
        padding-top: clamp(28px, 6vw, 44px) !important;
        padding-bottom: clamp(28px, 6vw, 44px) !important;
    }

    h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
        line-height: 1.2;
    }

    h2 {
        font-size: clamp(1.45rem, 5.8vw, 1.95rem) !important;
        line-height: 1.25;
    }

    h3 {
        font-size: clamp(1.15rem, 4.8vw, 1.45rem) !important;
    }

    p,
    li,
    .section-subtitle,
    .card-description {
        font-size: 0.96rem;
    }

    .hero-actions .btn,
    .hero-actions .btn-ghost,
    .card-footer .btn,
    .cta-section .btn,
    .intl-cta .btn,
    .checkout-cta .btn,
    .btn-large {
        width: 100%;
        justify-content: center;
        min-height: 46px;
    }

    .btn,
    button,
    input,
    select,
    textarea,
    .mobile-menu-links a {
        min-height: 44px;
    }

    .grid,
    .cards-grid,
    .feature-grid,
    .blog-grid,
    .itinerary-grid,
    .comparison-grid,
    .booking-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .feature-card,
    .promo-card,
    .blog-preview__card,
    .itinerary-card,
    .contact-card,
    .faq-item,
    .legal-card,
    .booking-card,
    .checkout-card {
        border-radius: 14px;
        padding: 14px;
    }

    .navbar {
        height: 64px !important;
    }

    .navbar-container {
        height: 64px !important;
    }

    .logo-img {
        width: 168px !important;
        max-height: 56px !important;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu {
        width: min(86vw, 340px) !important;
    }

    .mobile-menu-links a {
        padding: 12px 10px !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .footer-bottom-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: center;
    }

    .footer {
        padding-top: clamp(28px, 7vw, 40px);
        padding-bottom: clamp(18px, 5vw, 28px);
    }

    .footer-section {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        padding: 14px 12px;
    }

    .footer-section h3 {
        margin-bottom: 10px;
        font-size: 1.02rem !important;
        text-align: center;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .footer-section ul {
        margin: 0;
        padding: 0;
    }

    .footer-section li {
        margin-bottom: 8px;
    }

    .social-links {
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: left;
    }

    .footer-newsletter {
        margin-top: 12px;
        padding-top: 12px;
    }

    .newsletter-form {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 100% !important;
    }

    .newsletter-form input[type="email"] {
        border-radius: 10px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
        min-height: 46px;
    }

    .newsletter-form button {
        width: 100%;
        border-radius: 10px !important;
        justify-content: center;
        min-height: 44px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-dot {
        display: none;
    }

    .comparison-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    iframe,
    video,
    svg,
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Phase 2 mobile refinements for article-heavy and utility pages */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 72px;
    }

    /* Prevent iOS form zoom and improve touch editing comfort */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Keep long prose readable */
    article,
    .article-container,
    .legal-card,
    .contact-form,
    .faq-accordion {
        max-width: 100%;
    }

    article p,
    .article-container p,
    .legal-card p,
    .legal-card li {
        line-height: 1.7;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .hero-badge,
    .section-label,
    .card-label {
        letter-spacing: 1px !important;
    }

    .featured-card,
    .featured-card-highlight {
        grid-template-columns: 1fr !important;
    }

    .featured-image,
    .featured-card-media,
    .blog-preview__img,
    .blog-post-image,
    .dest-card img {
        height: clamp(160px, 42vw, 240px) !important;
        object-fit: cover;
    }

    .card-specs,
    .booking-setting-row,
    .trip-type-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .card-includes li,
    .footer-contact-list li {
        align-items: flex-start;
    }

    /* Table readability on narrow screens */
    table {
        font-size: 0.9rem;
    }

    th,
    td {
        padding: 10px 8px !important;
        white-space: normal !important;
        vertical-align: top;
    }

    .comparison-table,
    .table-responsive {
        border-radius: 10px;
    }

    /* Avoid horizontal clipping from long inline tokens */
    code,
    pre,
    .path-tag,
    .badge,
    .dest-chip,
    .lang-option {
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
    }
}

/* Mobile header polish layer */
@media (max-width: 920px) {
    .navbar {
        height: 64px !important;
        padding: 0 !important;
        background: rgba(0, 0, 0, 0.46) !important;
        border-bottom-color: rgba(255, 255, 255, 0.12) !important;
        border-bottom-width: 1px;
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.14) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar-container {
        height: 64px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 10px !important;
        gap: 8px;
    }

    .logo {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .logo-img {
        width: clamp(148px, 42vw, 176px) !important;
        max-height: 52px !important;
        margin-left: -8px !important;
    }

    .hamburger-btn {
        display: inline-flex !important;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        border-radius: 14px;
        border: 1px solid rgba(0, 229, 255, 0.42);
        background: linear-gradient(145deg, rgba(5, 12, 24, 0.55), rgba(8, 30, 54, 0.45)) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 16px rgba(0, 229, 255, 0.2);
        color: #e8faff !important;
        font-size: 24px;
        transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    }

    .hamburger-lines,
    .hamburger-lines::before,
    .hamburger-lines::after {
        background: currentColor !important;
        height: 2px;
        box-shadow: 0 0 8px rgba(0, 229, 255, 0.45);
    }

    .hamburger-btn:hover,
    .hamburger-btn:active {
        border-color: rgba(0, 229, 255, 0.7);
        background: linear-gradient(145deg, rgba(7, 18, 34, 0.78), rgba(10, 39, 70, 0.68)) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 22px rgba(0, 229, 255, 0.35);
    }

    .hamburger-btn.active {
        transform: scale(0.98);
        border-color: rgba(0, 229, 255, 0.8);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 24px rgba(0, 229, 255, 0.42);
    }

    .hamburger-btn:focus-visible {
        outline: 2px solid rgba(0, 229, 255, 0.9);
        outline-offset: 2px;
    }

    .mobile-menu-overlay {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .mobile-menu {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .mobile-menu-links {
        padding: 8px 0;
    }

    .mobile-menu-links li {
        border-bottom-color: rgba(91, 70, 50, 0.1);
    }

    .mobile-menu-links a {
        margin: 2px 8px;
        padding: 12px 12px !important;
        border-radius: 10px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .menu-icon,
    .menu-icon svg {
        width: 19px;
        height: 19px;
    }

    .mobile-menu-links a.active {
        border-left-width: 3px;
        padding-left: 13px;
    }

    .mobile-menu-links a.active::before {
        display: none;
    }

    .mobile-menu-links li {
        border-bottom: 0 !important;
    }

    .mobile-menu-links a {
        background: #fff !important;
        border: 1px solid rgba(15, 23, 42, 0.08) !important;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05) !important;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:active,
    .mobile-menu-links a.active {
        background: #fff !important;
        border-color: rgba(15, 23, 42, 0.18) !important;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08) !important;
    }

    .menu-icon {
        background: #fff !important;
        border: 1px solid rgba(15, 23, 42, 0.1) !important;
    }
}

@media (max-width: 380px) {
    .logo-img {
        width: clamp(136px, 40vw, 156px) !important;
    }
}

/* Force solid dark mobile header for all non-home pages */
@media (max-width: 920px) {
    :root.hr-nonhome-page .navbar {
        background: #000 !important;
        border-bottom-color: rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
    }
}

/* =========================================================
   Mobile Compact UX Layer (2026-03)
   Search/filter + tabs optimized for one-hand use
   ========================================================= */
@media (max-width: 920px) {
    .search-section {
        padding: 10px 0 8px !important;
        border-top: 1px solid #eef2f7;
        border-bottom: 1px solid #eef2f7;
        background: #ffffff !important;
    }

    .search-section .container {
        display: grid !important;
        gap: 8px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .search-currency {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .currency-bar__label {
        font-size: 11px !important;
        letter-spacing: 0.04em;
        color: #64748b !important;
    }

    .currency-switch {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .currency-switch::-webkit-scrollbar {
        display: none;
    }

    .currency-switch__btn {
        min-height: 32px !important;
        padding: 6px 10px !important;
        font-size: 12px !important;
        border-radius: 999px !important;
        white-space: nowrap;
    }

    .search-input-group {
        display: grid !important;
        grid-template-columns: 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .search-input,
    #searchInput,
    #destSearchInput {
        min-height: 36px !important;
        height: 36px !important;
        padding: 0 10px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    #searchBtn,
    .search-input-group .btn,
    .dest-toolbar .btn {
        min-height: 36px !important;
        height: 36px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
        border-radius: 10px !important;
    }

    .filters-section {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px !important;
        margin-top: 2px !important;
    }

    .filter-group {
        min-width: 0;
    }

    .filter-group label {
        font-size: 11px !important;
        margin-bottom: 4px !important;
        color: #64748b !important;
    }

    .filter-group select {
        min-height: 34px !important;
        height: 34px !important;
        padding: 6px 8px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

    .clear-filters-btn {
        min-height: 34px !important;
        height: 34px !important;
        padding: 0 10px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

    /* Offbeat destinations compact toolbar + filter chips */
    .dest-toolbar {
        display: grid !important;
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 10px 12px 6px !important;
    }

    .dest-toolbar__search {
        width: 100% !important;
    }

    .dest-toolbar__meta {
        align-self: center;
        font-size: 11px !important;
        color: #64748b !important;
        white-space: nowrap;
    }

    .dest-filters {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px !important;
        padding: 6px 12px 10px !important;
        scroll-snap-type: x mandatory;
    }

    .dest-filters::-webkit-scrollbar {
        display: none;
    }

    .dest-filters .filter-btn {
        min-height: 32px !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
        border-radius: 999px !important;
        white-space: nowrap;
        scroll-snap-align: start;
    }

    /* Tabs behave like native app chips */
    .intl-tab-nav {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 2px 2px 8px;
        scroll-snap-type: x mandatory;
    }

    .intl-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .intl-tab {
        min-height: 34px !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
        white-space: nowrap;
        scroll-snap-align: start;
    }
}

@media (max-width: 560px) {
    .filters-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .currency-more {
        min-height: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
        padding: 0 8px !important;
    }
}

@media (max-width: 420px) {
    .search-section .container,
    .dest-toolbar,
    .dest-filters {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .filters-section {
        grid-template-columns: 1fr;
    }
}

/* Footer mobile visibility reinforcement */
@media (max-width: 920px) {
    .footer,
    .site-footer {
        background: #ffffff !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    .footer-section {
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
    }

    .footer-section h3,
    .footer-newsletter h4,
    .footer-section a,
    .footer-brand p,
    .footer-section p,
    .footer-section li,
    .footer-contact-list li,
    .footer-bottom,
    .footer-bottom-links a {
        color: #334155 !important;
    }

    .newsletter-form input[type="email"] {
        background: #ffffff !important;
        border: 1px solid #d1d5db !important;
        color: #111827 !important;
    }

    .newsletter-form button {
        background: #0a0a0a !important;
        border-color: #0a0a0a !important;
        color: #ffffff !important;
    }
}

/* Mobile Hero + Menu Webapp Cleanup (2026-03) */
@media (max-width: 920px) {
    :root.hr-home-page .hero.hero-photo {
        min-height: 100svh !important;
        padding-top: 108px !important;
        padding-bottom: 20px !important;
    }

    :root.hr-home-page .hero-content {
        max-width: 520px !important;
        padding: 14px !important;
        border-radius: 14px !important;
        background: linear-gradient(180deg, rgba(2, 6, 23, 0.46) 0%, rgba(2, 6, 23, 0.58) 100%) !important;
        border: 1px solid rgba(226, 232, 240, 0.3) !important;
        box-shadow: 0 10px 28px rgba(2, 6, 23, 0.24) !important;
        backdrop-filter: blur(2px) !important;
        -webkit-backdrop-filter: blur(2px) !important;
    }

    :root.hr-home-page .hero-badge {
        font-size: 10px !important;
        padding: 5px 10px !important;
        margin-bottom: 10px !important;
        letter-spacing: 0.08em !important;
        border-radius: 999px !important;
    }

    :root.hr-home-page .hero h1 {
        font-size: clamp(1.55rem, 7.2vw, 2.1rem) !important;
        line-height: 1.12 !important;
        margin-bottom: 8px !important;
    }

    :root.hr-home-page .hero-subtitle {
        font-size: 0.84rem !important;
        line-height: 1.45 !important;
        margin: 0 auto 12px !important;
        max-width: 40ch !important;
        color: #dbe3ef !important;
    }

    :root.hr-home-page .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 7px !important;
        margin-top: 2px !important;
    }

    :root.hr-home-page .hero-actions .btn {
        min-height: 34px !important;
        height: 34px !important;
        padding: 0 10px !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        border-radius: 999px !important;
    }

    :root.hr-home-page .hero-trust-strip {
        margin-top: 10px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
    }

    :root.hr-home-page .hero-trust-strip .trust-pill {
        min-height: 28px !important;
        padding: 4px 7px !important;
        font-size: 10px !important;
        line-height: 1.3 !important;
        justify-content: center !important;
    }

    :root.hr-home-page .hero-trust-strip .trust-pill:nth-child(n+3) {
        display: none !important;
    }

    .navbar {
        background: #ffffff !important;
        border-bottom: 1px solid #e5e7eb !important;
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08) !important;
    }

    :root.hr-home-page .navbar {
        background: rgba(255, 255, 255, 0.94) !important;
    }

    .hamburger-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        border-radius: 11px !important;
        border: 1px solid #d1d5db !important;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
        color: #0f172a !important;
    }

    .hamburger-lines,
    .hamburger-lines::before,
    .hamburger-lines::after {
        box-shadow: none !important;
        background: #0f172a !important;
    }

    .hamburger-btn:hover,
    .hamburger-btn:active,
    .hamburger-btn.active {
        border-color: #94a3b8 !important;
        background: #f8fafc !important;
        box-shadow: 0 3px 10px rgba(15, 23, 42, 0.1) !important;
    }

    .mobile-menu-overlay {
        background: rgba(2, 6, 23, 0.28) !important;
        backdrop-filter: blur(1px) !important;
        -webkit-backdrop-filter: blur(1px) !important;
    }

    .mobile-menu {
        left: auto !important;
        right: 0 !important;
        top: 0 !important;
        width: min(86vw, 340px) !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        border-left: 1px solid #e2e8f0 !important;
        border-radius: 0 !important;
        background: #ffffff !important;
        box-shadow: -14px 0 34px rgba(15, 23, 42, 0.14) !important;
    }

    .mobile-menu-links {
        padding: 8px 10px 14px !important;
        gap: 6px !important;
    }

    .mobile-menu-links li {
        border: 0 !important;
    }

    .mobile-menu-links a {
        margin: 0 !important;
        padding: 10px 10px !important;
        border-radius: 10px !important;
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        color: #0f172a !important;
        background: #ffffff !important;
        border: 1px solid #e5e7eb !important;
        box-shadow: none !important;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:active {
        background: #f8fafc !important;
        border-color: #cbd5e1 !important;
        color: #0f172a !important;
    }

    .mobile-menu-links a.active {
        background: #eff6ff !important;
        border-color: #bfdbfe !important;
        color: #1d4ed8 !important;
    }

    .menu-icon {
        background: #f8fafc !important;
        border: 1px solid #e5e7eb !important;
    }
}

@media (max-width: 480px) {
    :root.hr-home-page .hero-actions {
        grid-template-columns: 1fr !important;
    }

    :root.hr-home-page .hero-trust-strip {
        grid-template-columns: 1fr !important;
    }

    :root.hr-home-page .hero-trust-strip .trust-pill:nth-child(n+2) {
        display: none !important;
    }
}

/* Mobile Drawer App UX Upgrade (2026-03) */
@media (max-width: 920px) {
    .navbar,
    .navbar.navbar-scrolled,
    :root.hr-home-page .navbar,
    :root.hr-nonhome-page .navbar {
        background: #000000 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24) !important;
    }

    .mobile-menu-overlay {
        background: rgba(2, 6, 23, 0.42) !important;
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
    }

    .mobile-menu {
        width: min(88vw, 356px) !important;
        right: 0 !important;
        left: auto !important;
        background: #ffffff !important;
        border-left: 1px solid #e2e8f0 !important;
        box-shadow: -18px 0 42px rgba(15, 23, 42, 0.2) !important;
        display: flex !important;
        flex-direction: column !important;
        padding-top: 12px !important;
    }

    .mobile-menu::before {
        content: none !important;
        display: none !important;
    }

    .mobile-menu-links {
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        padding: 8px 10px 14px !important;
        display: grid !important;
        gap: 7px !important;
    }

    .mobile-menu-links a {
        min-height: 44px !important;
        margin: 0 !important;
        padding: 10px 12px !important;
        border-radius: 12px !important;
        border: 1px solid #e5e7eb !important;
        background: #ffffff !important;
        color: #0f172a !important;
        font-size: 0.92rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.01em;
        box-shadow: none !important;
        transition: background .16s ease, border-color .16s ease, transform .16s ease;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:active {
        background: #f8fafc !important;
        border-color: #cbd5e1 !important;
        transform: translateY(-1px);
    }

    .mobile-menu-links a.active {
        background: #eff6ff !important;
        color: #1d4ed8 !important;
        border-color: #bfdbfe !important;
        box-shadow: inset 2px 0 0 #2563ff !important;
    }

    .menu-icon {
        width: 18px !important;
        height: 18px !important;
        border-radius: 8px !important;
        border: 1px solid #e5e7eb !important;
        background: #f8fafc !important;
        color: #334155 !important;
    }

    .mobile-menu-links a.active .menu-icon {
        border-color: #bfdbfe !important;
        background: #dbeafe !important;
        color: #1d4ed8 !important;
    }
}

/* Mobile Header Opaque Final Lock (2026-03) */
@media (max-width: 920px) {
    .navbar,
    .navbar.navbar-scrolled,
    :root.hr-home-page .navbar,
    :root.hr-nonhome-page .navbar {
        background: rgba(0, 0, 0, 0.56) !important;
        background-color: rgba(0, 0, 0, 0.56) !important;
        background-image: none !important;
        opacity: 1 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* Drawer Language + Currency Minimal UI (2026-03) */
@media (max-width: 920px) {
    .mobile-drawer-footer {
        border-top: 1px solid #e5e7eb !important;
        padding-top: 10px !important;
        background: #ffffff !important;
    }

    .drawer-pills {
        display: grid !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }

    .drawer-utility-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 6px !important;
    }

    .drawer-mini-label,
    .drawer-lang-wrap h4 {
        display: block !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        color: #64748b !important;
        margin: 0 0 6px 0 !important;
    }

    .drawer-lang-wrap {
        border: 1px solid #e5e7eb !important;
        border-radius: 10px !important;
        padding: 8px !important;
        background: #ffffff !important;
    }

    .drawer-lang-wrap .mobile-lang-options {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 !important;
        overflow: hidden !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 8px !important;
        background: #ffffff !important;
    }

    .drawer-lang-wrap .mobile-lang-btn,
    .drawer-lang-wrap .lang-option {
        min-height: 28px !important;
        flex: 1 1 25% !important;
        padding: 4px 0 !important;
        border-radius: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: #334155 !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        letter-spacing: 0.06em !important;
        text-align: center !important;
        box-shadow: none !important;
        position: relative;
    }

    .drawer-lang-wrap .mobile-lang-btn + .mobile-lang-btn,
    .drawer-lang-wrap .lang-option + .lang-option {
        border-left: 0 !important;
    }

    .drawer-lang-wrap .mobile-lang-btn + .mobile-lang-btn::before,
    .drawer-lang-wrap .lang-option + .lang-option::before {
        content: "|" !important;
        position: absolute;
        left: -1px;
        top: 50%;
        transform: translateY(-50%);
        color: #cbd5e1;
        font-weight: 500;
        pointer-events: none;
    }

    .drawer-lang-wrap .mobile-lang-btn.active,
    .drawer-lang-wrap .lang-option.active {
        background: #f0f6ff !important;
        color: #1d4ed8 !important;
    }

    .drawer-currency-wrap {
        border: 1px solid #e5e7eb !important;
        border-radius: 10px !important;
        padding: 8px !important;
        background: #ffffff !important;
    }

    .drawer-currency-switch {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px !important;
        overflow: hidden !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .drawer-currency-btn {
        min-height: 28px !important;
        flex: 0 0 auto !important;
        padding: 4px 0 !important;
        border-radius: 7px !important;
        border: 1px solid #e2e8f0 !important;
        background: #ffffff !important;
        color: #334155 !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        position: relative;
        text-align: center !important;
    }

    .drawer-currency-btn + .drawer-currency-btn {
        border-left: 0 !important;
    }

    .drawer-currency-btn + .drawer-currency-btn::before {
        content: none !important;
    }

    .drawer-currency-btn.active {
        background: #f0f6ff !important;
        border-color: #bfdbfe !important;
        color: #1d4ed8 !important;
    }

    /* Remove duplicate back/close feeling: keep close in drawer only */
    body.menu-open .hamburger-btn {
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Drawer Footer Ultra Compact (2026-03) */
@media (max-width: 920px) {
    .mobile-drawer-footer {
        padding: 6px 8px 8px !important;
        gap: 6px !important;
    }

    .drawer-cta {
        min-height: 32px !important;
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
        border-radius: 9px !important;
    }

    .drawer-footer-label {
        display: none !important;
    }

    .drawer-secondary-links {
        display: flex !important;
        gap: 4px !important;
        flex-wrap: wrap !important;
        flex: 1 1 auto !important;
    }

    .drawer-secondary-link {
        min-height: 24px !important;
        height: 24px !important;
        padding: 0 8px !important;
        font-size: 10px !important;
        font-weight: 600 !important;
        border-radius: 999px !important;
        letter-spacing: 0.02em !important;
    }

    .drawer-pills {
        margin-top: 4px !important;
        gap: 6px !important;
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    .drawer-theme-pill {
        width: 30px !important;
        min-width: 30px !important;
        height: 30px !important;
        min-height: 30px !important;
        border-radius: 8px !important;
        border: 1px solid #e2e8f0 !important;
        padding: 0 !important;
        align-self: start !important;
        justify-self: start !important;
    }

    .drawer-pill-icon {
        width: 14px !important;
        height: 14px !important;
    }

    .drawer-pill-icon svg {
        width: 13px !important;
        height: 13px !important;
    }

    .drawer-lang-wrap,
    .drawer-currency-wrap {
        padding: 6px !important;
        border-radius: 9px !important;
    }

    .drawer-mini-label,
    .drawer-lang-wrap h4 {
        margin-bottom: 4px !important;
        font-size: 9px !important;
    }
}

/* Mobile Hero Ultra Minimal Final (2026-03) */
@media (max-width: 920px) {
    :root.hr-home-page .hero.hero-photo {
        padding-top: 96px !important;
        padding-bottom: 14px !important;
        min-height: 100svh !important;
        height: 100svh !important;
    }

    :root.hr-home-page .hero-content {
        max-width: 420px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    :root.hr-home-page .hero-badge {
        display: none !important;
    }

    :root.hr-home-page .hero h1 {
        font-size: clamp(1.35rem, 6.2vw, 1.8rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 6px !important;
        letter-spacing: -0.01em !important;
    }

    :root.hr-home-page .hero-subtitle {
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
        margin: 0 auto 8px !important;
        max-width: 34ch !important;
        color: #e2e8f0 !important;
    }

    :root.hr-home-page .hero-actions {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        justify-content: center !important;
    }

    :root.hr-home-page .hero-actions .btn {
        min-height: 30px !important;
        height: 30px !important;
        padding: 0 10px !important;
        font-size: 10.5px !important;
        border-radius: 999px !important;
    }

    :root.hr-home-page .hero-trust-strip {
        display: none !important;
    }
}
