/* post-chrome.css: GENERATED by tools/extract_chrome_css.mjs from style.css.
   The nav, mega menu, mobile menu and footer rules, plus global tokens. Do not
   edit by hand; change style.css and rerun the script. 229 of 1497 rules kept. */
:root {
    --orange: #ff5a1f;
    --orange-hover: #e84a12;
    --orange-2: #ff9d2e;
    --orange-glow: rgba(255, 90, 31, 0.45);
    --brand-gradient: linear-gradient(105deg, #ff5a1f 0%, #ff8a1e 55%, #ffb347 100%);
    --brand-gradient-soft: linear-gradient(135deg, rgba(255,90,31,0.14), rgba(255,157,46,0.06));
    --black: #08070a;
    --dark: #0d0c11;
    --dark-2: #131119;
    --dark-surface: rgba(255, 255, 255, 0.035);
    --dark-surface-2: rgba(255, 255, 255, 0.055);
    --dark-border: rgba(255, 255, 255, 0.09);
    --dark-border-strong: rgba(255, 255, 255, 0.16);

    --white: #ffffff;
    --light-bg: #f5f3ef;
    --light-bg-2: #efece6;
    --light-surface: rgba(255, 255, 255, 0.8);
    --light-border: rgba(20, 16, 12, 0.08);

    --gray-text: #a8a29a;
    --text-muted: rgba(255, 255, 255, 0.62);
    --light-gray: #e4e1da;
    --font-heading: 'Satoshi', 'Outfit', sans-serif;
    --font-display: 'Satoshi', 'Outfit', sans-serif;
    --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
    --fs-hero: clamp(2.7rem, 5vw, 4.6rem);
    --fs-h2: clamp(2.3rem, 3.9vw, 3.5rem);
    --fs-h3: clamp(1.6rem, 2.2vw, 2.2rem);
    --fs-lead: clamp(1.2rem, 1.6vw, 1.55rem);
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 40px;
    --shadow-soft: 0 18px 50px -18px rgba(0, 0, 0, 0.45);
    --shadow-card: 0 30px 80px -40px rgba(0, 0, 0, 0.65);
    --shadow-glow: 0 20px 60px -20px var(--orange-glow);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

p {
    max-width: 700px;
    line-height: 1.7;
}
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 4rem);
    position: relative;
    z-index: 1;
}

.dark-section {
    background-color: var(--black);
    color: var(--white);
}

.dark-section p {
    color: var(--gray-text);
}
footer {
    background-color: #111114;
    color: #666;
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 102, 0, 0.18);
    box-shadow: 0 -1px 0 rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,102,0,0.06);
}
:root {
    --cb-front:  #c89f6d;
    --cb-side:   #b68c59;
    --cb-top:    #dba878;
    --cb-bottom: #946c43;
    --cb-back:   #c09564;
    --amz-smile: #000000;
    --amz-tape:  rgba(60, 40, 20, 0.45);
    --cb-crease: rgba(0,0,0,0.2);
    --cb-label:  #ffffff;
}
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.5rem 0;
}

.dual-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

.nav-bottom-bar {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.nav-bottom-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-bottom-bar a:hover { color: var(--orange); }

.nav-item {
    position: relative;
    padding: 0.5rem 0;
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: auto; right: -50px; transform: translateY(15px);
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 2.5rem;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 102, 0, 0.1);
    z-index: 1000;
}
.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.mega-col ul li a {
    color: var(--gray-text) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.2s ease !important;
}
.mega-col ul li a:hover {
    color: var(--orange) !important;
    transform: translateX(4px);
}

.nav-top-bar i, .nav-bottom-bar i {
    font-size: 0.8rem;
    vertical-align: middle;
    margin-left: 2px;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    font-family: var(--font-body);
    color: var(--white);
    letter-spacing: -1.5px;
    display: inline-block;
    white-space: nowrap !important;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-text span {
    color: var(--orange) !important;
    display: inline-block !important;
}

.logo-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.5));
}
@media (max-width: 900px) {
    .hamburger { display: flex; }
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}

.hamburger.open span:nth-child(1) { transform: rotate(42deg) translateY(-1px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-42deg) translateY(1px); }
.premium-nav.scrolled {
    background: rgba(3, 3, 3, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(255, 102, 0, 0.15);
}
footer {
    padding-bottom: 0;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-text);
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .container { padding: 0 1.1rem; }
    .hamburger { display: flex; }
}
.premium-footer {
    position: relative;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(to bottom, var(--dark-bg, #000), #050505);
    overflow: hidden;
}
.premium-footer .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}
.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}
.footer-nav a:hover {
    color: var(--orange);
    transform: translateX(5px);
}
.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}
.footer-contact-link:hover { opacity: 0.8; }
.portal-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
}
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }

@media (max-width: 900px) {
    .premium-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .premium-footer .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
:root {
    --cb-front:  #C89461;
    --cb-side:   #B88350;
    --cb-top:    #D9A572;
    --cb-bottom: #946C43;
    --cb-back:   #B88350;
    --amz-smile: #232F3E;
    --amz-tape:  #192A3A;
    --cb-tape:   #192A3A;
}
.premium-footer {
    background: #020202 !important;
    border-top: 1px solid #1a1a1e !important;
}
.premium-footer .footer-contact-link,
.premium-footer .footer-nav a {
    color: #aaa;
}
.premium-footer .footer-heading {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}
:root {
    --cb-front:  #c08f4f;
    --cb-side:   #a87a3e;
    --cb-top:    #dfb074;
    --cb-bottom: #926932;
    --cb-back:   #b8884a;
}
.footer-nav a, .nav-links a {
    position: relative;
}
.footer-nav a::after, .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}
.footer-nav a:hover::after, .nav-links a:hover::after {
    width: 100%;
}

@keyframes navSlideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.premium-nav { animation: navSlideDown 0.6s cubic-bezier(0.16,1,0.3,1) both; }
footer .footer-brand, footer .footer-links-group, footer .footer-contact-group {
    opacity: 1; transform: translateY(0);
}
.premium-footer { background: #f8f9fc; padding: 4rem 0 0; color: #111; position: relative; overflow: hidden; }
.premium-footer.dark-section { 
    background: var(--dark-bg); 
    color: var(--text-muted); 
    border-top: 1px solid var(--dark-border); 
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; padding-bottom: 1rem; position: relative; z-index: 2; margin-bottom: 0; }
.footer-heading { 
    font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 1.5rem; 
    color: #fff; 
}
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 0.75rem; }
.footer-nav a { 
    color: var(--text-muted); 
    text-decoration: none; font-size: 0.9rem; transition: color 0.2s; 
}
.footer-nav a:hover { color: var(--orange); }
.footer-contact-link { 
    display: flex; align-items: center; gap: 0.5rem; 
    color: var(--text-muted); 
    text-decoration: none; margin-bottom: 2rem; transition: 0.2s;
}
.footer-contact-link:hover { color: var(--orange); }
.portal-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; text-decoration: none; color: #fff; border: 1px solid var(--dark-border); transition: 0.2s; background: rgba(255,255,255,0.05); }
.portal-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.footer-bottom-bar { 
    border-top: 1px solid var(--dark-border); padding: 1.5rem 0; 
    display: flex; justify-content: space-between; align-items: center; 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    position: relative; z-index: 2;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-muted); text-decoration: none; transition: 0.2s; }
.footer-legal a:hover { color: var(--orange); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; } }
.nav-item { position: relative; }
.mega-menu { position: absolute; top: 100%; left: auto; right: -50px; transform: translateY(10px); background: #0a0a0d; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 2rem; display: grid; grid-template-columns: repeat(3, minmax(200px, 1fr)); gap: 2rem; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.8); z-index: 1000; min-width: 800px; }
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.mega-col ul li a { color: rgba(255, 255, 255, 0.7) !important; font-size: 0.95rem; text-decoration: none; transition: color 0.3s ease; font-weight: 400 !important; }
.mega-col ul li a:hover { color: #fff !important; }
.premium-footer { background: #f8f9fc; padding: 4rem 0 0; color: #111; }
.premium-footer.dark-section { 
    background: #020202; 
    color: rgba(255, 255, 255, 0.75); 
    border-top: 1px solid rgba(255,255,255,0.08); 
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; padding-bottom: 1rem; margin-bottom: 0; }
.footer-heading { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 1.5rem; color: #fff !important; }
.footer-nav { list-style: none; padding: 0.5rem 0; }
.footer-nav li { margin-bottom: 0.75rem; }
.premium-footer .footer-nav a,
.premium-footer .footer-contact-link,
.premium-footer .social-icon,
.premium-footer .footer-legal a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.premium-footer .footer-nav a:hover,
.premium-footer .footer-contact-link:hover,
.premium-footer .social-icon:hover,
.premium-footer .footer-legal a:hover {
    color: var(--orange) !important;
}

.footer-nav a { font-size: 0.9rem; }
.footer-contact-link { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; }
.portal-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; text-decoration: none; color: #fff !important; border: 1px solid rgba(255,255,255,0.08); transition: 0.2s; background: rgba(255,255,255,0.05); }
.portal-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; } }
.premium-footer { padding: 1.5rem 0 1rem; background: var(--black); position: relative; border-top: 1px solid rgba(255,255,255,0.03); overflow: hidden; }
.premium-footer .container { max-width: 98%; padding: 0 4%; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 4rem; margin-bottom: 0; padding-bottom: 1rem !important; }
.footer-heading { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 1px; }
.premium-footer .logo-text { font-size: 1.5rem !important; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-nav a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-size: 0.9rem; }
.footer-nav a:hover { color: #27c93f; transform: translateX(5px); }
.footer-contact-link { display: flex; align-items: center; gap: 8px; color: var(--text-muted); text-decoration: none; margin-bottom: 0.5rem; transition: 0.3s; font-size: 0.9rem; }
.footer-contact-link:hover { color: #fff; }
.footer-contact-link i { color: var(--orange); font-size: 1rem; }
.secure-portal-box { margin-top: 0.75rem; padding: 1rem; background: rgba(39,201,63,0.03); border: 1px solid rgba(39,201,63,0.15); border-radius: 10px; max-width: 320px; }
.secure-portal-box .portal-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.portal-btn { color: #fff; text-decoration: none; padding: 0.4rem 0.8rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; font-size: 0.82rem; transition: 0.3s; display: flex; align-items: center; gap: 5px; }
.portal-btn.client:hover { background: #27c93f; border-color: #27c93f; color: #000; }
.portal-btn.admin:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

@media (max-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom-bar { flex-direction: column; text-align: center; gap: 1rem; }
}

.footer-bottom-bar { display: flex !important; justify-content: space-between !important; align-items: center !important; width: 100% !important; gap: 2rem; flex-wrap: wrap; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.03); margin-top: 0; }
.footer-legal { display: flex; gap: 2rem; }
:root {
    --huly-bg: #000000;
    --huly-surface: #0a0a0c;
    --huly-border: rgba(255, 255, 255, 0.1);
    --huly-text: #ffffff;
    --huly-text-muted: rgba(255, 255, 255, 0.6);
}
body {
    perspective: 1500px;
}
body.secure-mode {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.nav-bottom-bar a:hover, .nav-item:hover > a {
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    color: var(--orange) !important;
}
.mega-menu {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8) !important;
}
@media (hover: none) and (pointer: coarse) {
    .nav-item:hover .mega-menu {
        opacity: 0 !important;
        visibility: hidden !important;
    }
    .logo-text:hover {
        transform: none !important;
        filter: none !important;
    }
    .nav-links a::after,
    .footer-nav a::after {
        display: none !important;
    }
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 4, 8, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10001;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    width: 86%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(180deg, #141016 0%, #0b0a0e 100%);
    border-left: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    position: relative;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
}
.mobile-menu-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 44px;
    height: 44px;
    background: var(--dark-surface-2);
    border: 1px solid var(--dark-border);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover { background: rgba(255, 90, 31, 0.15); border-color: var(--orange); }
.mobile-menu-close:active { transform: scale(0.92); }
.mobile-link, .mobile-accordion-toggle {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease, padding-left 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-link:active, .mobile-accordion-toggle:active,
.mobile-link:hover, .mobile-accordion-toggle:hover {
    color: var(--orange);
    padding-left: 0.35rem;
}

.accordion-icon {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    line-height: 1;
}

.mobile-accordion.open .accordion-icon {
    transform: rotate(45deg);
}
.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.mobile-accordion.open .mobile-accordion-content {
    max-height: 600px;
}

.mobile-accordion-content a {
    display: block;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-accordion-content a:hover,
.mobile-accordion-content a:active { color: var(--white); background: rgba(255, 90, 31, 0.08); }

.mobile-accordion-content a:last-child {
    border-bottom: none;
}
.hamburger {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-bottom-bar { display: none !important; }
    .hamburger { display: flex !important; }
    .container { padding: 0 2.5rem; }
    .mobile-menu-inner {
        width: 55%;
        max-width: 420px;
        padding: 4.5rem 2rem 2rem;
    }
    .mobile-link, .mobile-accordion-toggle {
        font-size: 1.2rem;
        padding: 1.1rem 0;
    }
    .mobile-accordion-content a {
        font-size: 1rem;
        padding: 0.9rem 1.25rem;
    }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-bottom-bar { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}
@media (max-width: 768px) {
    .nav-bottom-bar { display: none !important; }
    .hamburger { display: flex !important; }
    .logo-text { font-size: 1.45rem; }
    .mobile-menu-inner {
        width: 88%;
        max-width: 380px;
        padding: 5rem 1.25rem 2rem;
    }
    .mobile-link, .mobile-accordion-toggle {
        font-size: 1.05rem;
        padding: 1rem 0;
    }
    .mobile-accordion-content a {
        font-size: 0.92rem;
        padding: 0.85rem 1rem;
    }
    .container { padding: 0 1rem; }
    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-brand { text-align: center; }
    .footer-brand p { max-width: 100%; margin: 0 auto; }
    .footer-links-group { text-align: center; }
    .footer-nav { text-align: center; }
    .footer-contact-group { text-align: center; }
    .footer-contact-link { justify-content: center; }
    .secure-portal-box { align-items: center; }
    .portal-btns { justify-content: center; flex-wrap: wrap; }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .footer-legal { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 400px) {
    .mobile-link, .mobile-accordion-toggle {
        font-size: 0.95rem;
    }
    .mobile-menu-inner {
        width: 92%;
        padding: 5rem 1rem 2rem;
    }
    .container { padding: 0 0.75rem; }
    .footer-heading { font-size: 0.95rem; }
}
@supports (padding: max(0px)) {
    .premium-nav {
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
    }
    .mobile-menu {
        padding-top: max(5rem, calc(env(safe-area-inset-top) + 3.5rem));
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
}
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-menu {
        padding-top: 3rem;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0;
    }
    .mobile-link {
        font-size: 1.1rem;
        width: 50%;
        padding: 0.5rem 0.5rem;
        border-bottom: none;
    }
    .mobile-menu-close {
        top: 0.5rem;
        right: 1rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .mobile-menu.open .mobile-link {
        transition: none !important;
    }
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
@media (max-width: 768px) {
    [style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }
    [style*="position: absolute"][style*="translate(-50%, -50%)"][style*="border-radius: 50%"] {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .premium-footer {
        padding: 2.5rem 0 0 !important;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .footer-brand {
        text-align: center !important;
    }
    .footer-brand p {
        font-size: 0.88rem !important;
        max-width: 100% !important;
        margin: 0.5rem auto 0 !important;
    }
    .footer-links-group {
        text-align: center !important;
    }
    .footer-nav {
        text-align: center !important;
    }
    .footer-nav li {
        margin-bottom: 0.5rem !important;
    }
    .footer-contact-group {
        text-align: center !important;
    }
    .footer-contact-link {
        justify-content: center !important;
        font-size: 0.88rem !important;
    }
    .secure-portal-box {
        align-items: center !important;
    }
    .portal-btns {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    .portal-btn {
        font-size: 0.82rem !important;
        padding: 0.5rem 1rem !important;
    }
    .footer-bottom-bar {
        flex-direction: column !important;
        gap: 0.5rem !important;
        text-align: center !important;
        padding: 1rem 0 !important;
    }
    .footer-bottom-bar p {
        font-size: 0.78rem !important;
        max-width: 100% !important;
    }
    .footer-legal {
        justify-content: center !important;
        gap: 0.75rem !important;
    }
    .footer-legal a {
        font-size: 0.78rem !important;
    }
    p {
        max-width: 100% !important;
    }
}
@media (max-width: 360px) {
    .container {
        padding: 0 0.6rem !important;
    }
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
a, button, [role="button"], .btn,
input, select, textarea,
.nav-item, .mobile-link, .mobile-accordion-toggle, .filter-tag {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    -webkit-overflow-scrolling: touch;
}
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-login-btn,
    .portal-btn,
    .filter-tag,
    .mobile-link,
    .mobile-accordion-toggle,
    .hamburger,
    .mobile-menu-close,
    .footer-nav a,
    .social-icon {
        min-height: 44px;
    }
}
@supports (padding: max(0px)) {
    .premium-footer {
        padding-bottom: max(3rem, calc(2rem + env(safe-area-inset-bottom)));
    }
    .mobile-menu-inner {
        padding-top: max(5rem, calc(4rem + env(safe-area-inset-top)));
        padding-bottom: max(2rem, calc(1.25rem + env(safe-area-inset-bottom)));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
}
@media (max-width: 768px) {
    html, body { max-width: 100%; overflow-x: hidden; }
}
@media (min-width: 1025px) and (max-width: 1366px) {
    .container { padding-left: 3rem; padding-right: 3rem; }
}
.tag-new {
    display: inline-block;
    margin-left: 6px;
    padding: 0.14rem 0.5rem 0.12rem;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a0d04;
    background: var(--brand-gradient);
    border-radius: 20px;
    vertical-align: middle;
    line-height: 1.4;
}
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 4px;
}
.logo-link:focus,
.logo-link:focus-visible {
    outline: none !important;
}
::selection {
    background: rgba(255, 90, 31, 0.85);
    color: #fff;
}
.nav-item { position: relative; }

.mega-menu {
    min-width: 0 !important;
    width: max-content;
    max-width: min(820px, calc(100vw - 3rem)) !important;
    right: 0 !important;
    left: auto !important;
}
@media (max-width: 1240px) {
    .mega-menu {
        position: fixed !important;
        top: var(--nav-h, 76px) !important;
        right: 1.5rem !important;
        max-width: calc(100vw - 3rem) !important;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
        max-height: calc(100vh - var(--nav-h, 76px) - 2rem);
        overflow-y: auto;
    }
}

@media (max-width: 860px) {
    .mega-menu { grid-template-columns: 1fr !important; }
}
.premium-footer .footer-top { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.mega-menu-title {
    color: var(--orange);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mega-menu-title i { font-size: 0.9em; }
