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

:root {
    --y: #FFD000;
    --r: #CC0000;
    --black: #000;
    --dark: #111;
    --dark2: #1a1a1a;
    --w: #fff;
    --card: #ebebeb;
    --display: 'Open Sans', sans-serif;
    --body: 'Open Sans', sans-serif;
}

body { font-family: var(--body); background: var(--w); color: var(--black); overflow-x: hidden; }

/* TOPBAR */
.topbar { background: #FFD000; padding: 9px 40px; display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.topbar-contact { display: flex; align-items: center; gap: 20px; }
.topbar-divider { color: rgba(0,0,0,0.25); font-size: 12px; }
.topbar-phone { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13px; color: #000; text-decoration: none; letter-spacing: 0.02em; }
.topbar-phone svg { width: 14px; height: 14px; fill: #000; flex-shrink: 0; }
.topbar-phone:hover { opacity: 0.65; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--black); display: flex; align-items: center; justify-content: space-between; padding: 14px 40px; transition: padding 0.3s cubic-bezier(0.22,1,0.36,1); }
nav.scrolled { padding: 10px 40px; }
.nav-logo { height: 40px; display: block; transform-origin: left center; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
nav.scrolled .nav-logo { transform: scale(0.7); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: -0.8px; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--w); }
.nav-distributor { font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff !important; background: transparent; padding: 8px 20px; border-radius: 3px; border: 1.5px solid rgba(255,255,255,0.7); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.nav-distributor:hover { border-color: #fff; color: var(--w) !important; }
.nav-cta { font-weight: 800; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black) !important; background: var(--y); padding: 9px 22px; border-radius: 3px; text-decoration: none; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.88; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--w); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.2s; }
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-close { display: none; }
.nav-mobile-logo { display: none; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown > a::after { content: ''; display: block; width: 6px; height: 6px; border-right: 1.5px solid rgba(255,255,255,0.6); border-bottom: 1.5px solid rgba(255,255,255,0.6); transform: rotate(45deg) translateY(-2px); transition: transform 0.2s; }
.nav-dropdown:hover > a::after { transform: rotate(225deg) translateY(-2px); }
.nav-dropdown-panel { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-4px); background: #111; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; min-width: 200px; padding: 12px 8px 8px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.18s, transform 0.18s; box-shadow: 0 16px 48px rgba(0,0,0,0.6); }
.nav-dropdown:hover .nav-dropdown-panel { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown-panel a { display: block; font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7) !important; text-decoration: none; padding: 10px 14px; border-radius: 5px; transition: background 0.15s, color 0.15s; }
.nav-dropdown-panel a:hover { background: rgba(255,255,255,0.06); color: #fff !important; }
.drop-icon { display: inline-block; width: 6px; height: 6px; background: #FFD000; border-radius: 50%; margin-right: 8px; vertical-align: middle; position: relative; top: -1px; }

/* FOOTER */
footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.07); padding: 56px 40px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { height: 34px; display: block; margin-bottom: 14px; }
.footer-tagline { font-weight: 700; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--y); margin-bottom: 10px; }
.footer-brand p { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.3); max-width: 270px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color 0.2s; }
.footer-social a:hover { border-color: rgba(255,255,255,0.35); }
.footer-social svg { width: 13px; height: 13px; fill: none; stroke: rgba(255,255,255,0.45); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-col-title { font-weight: 700; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--w); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.footer-mfr-logos { display: flex; align-items: center; gap: 28px; }
.footer-mfr-logos img { height: 20px; opacity: 0.45; display: block; transition: opacity 0.2s; }
.footer-mfr-logos img:hover { opacity: 0.75; }
.footer-aus-logo { height: 48px !important; opacity: 0.9 !important; }
.footer-aus-logo:hover { opacity: 1 !important; }
.footer-bot-links { display: flex; gap: 20px; }
.footer-bot-links a { font-size: 11px; color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.2s; }
.footer-bot-links a:hover { color: rgba(255,255,255,0.45); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .topbar { padding: 8px 16px; }
    .topbar-divider, .topbar-contact a:last-child { display: none; }
    .nav-hamburger { display: flex; }
    nav { position: relative; z-index: auto; padding: 16px 20px; }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #111;
    }
    nav.nav-open .nav-links { display: flex; animation: navIn 0.22s cubic-bezier(0.22,1,0.36,1); }
    .nav-mobile-logo { display: flex; justify-content: center; margin-bottom: 16px; }
    .nav-mobile-logo img { height: 48px; }
    .nav-links li { width: auto; }
    .nav-links a { display: block; padding: 14px 40px; font-size: 20px; text-align: center; }
    .nav-links a:hover { color: #FFD000 !important; opacity: 1 !important; }
    .nav-distributor, .nav-cta { margin-top: 8px; width: 350px; text-align: center; justify-content: center; }
    .nav-dropdown > a::after, .nav-dropdown-panel { display: none; }
    .nav-close {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 102;
        background: rgba(255,255,255,0.07);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.7);
        transition: background 0.2s, color 0.2s;
    }
    nav.nav-open .nav-close { display: flex; }
    .nav-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
    .nav-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
    @keyframes navIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
    footer { padding: 40px 20px 0; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 16px; }
    .footer-mfr-logos { flex-wrap: wrap; justify-content: center; }
}
