* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a1a; line-height: 1.6; overflow-x: hidden; background: #fff; }
/* HEADER & NAV */
header { position: fixed; top: 0; width: 100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 2px solid #dc2626; }
nav { max-width: 1400px; margin: 0 auto; padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: #dc2626; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #dc2626; }
.cta-btn { background: #dc2626; color: #fff; padding: 0.8rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: 2px solid #dc2626; display: flex; align-items: center; gap: 0.5rem; }
.cta-btn:hover { background: #b91c1c; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(220,38,38,0.3); }
.cta-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #111; min-width: 220px; z-index: 999; padding: 0.5rem 0; border-top: 2px solid #dc2626; }
.dropdown-menu li { list-style: none; }
.dropdown-menu li a { display: block; padding: 0.6rem 1.2rem; color: #fff; text-decoration: none; font-size: 0.9rem; white-space: nowrap; }
.dropdown-menu li a:hover { color: #dc2626; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown > a::after { content: ' ▾'; font-size: 0.75rem; }
.dropdown:hover > a::after { content: ' ▴'; }
/* HOLD HARMLESS BUTTON */
.hhf-btn { background: #ea580c !important; color: #fff !important; padding: 0.8rem 1.5rem; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.85rem; border: 2px solid #ea580c !important; white-space: nowrap; transition: all 0.3s; }
.hhf-btn:hover { background: #c2410c !important; border-color: #c2410c !important; }
.hhf-hero-btn { display: none; margin-top: 1.5rem; background: #ea580c !important; color: #fff !important; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; text-align: center; border: 2px solid #ea580c !important; transition: all 0.3s; }
.hhf-hero-btn:hover { background: #c2410c !important; border-color: #c2410c !important; }
/* FOOTER */
footer { background: #000; color: #9ca3af; padding: 3rem 2rem 1.5rem; }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 2rem; }
.footer-section h4 { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: #9ca3af; text-decoration: none; transition: color 0.3s; }
.footer-section a:hover { color: #dc2626; }
.footer-section ul li strong { color: #dc2626; font-weight: 600; margin-right: 0.5rem; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid #333; text-align: center; }
/* MEDIA QUERIES */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .cta-btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
    .hhf-btn { display: none !important; }
    .hhf-hero-btn { display: block !important; background: #ea580c !important; color: #fff !important; border-color: #ea580c !important; }
}

@media (max-width: 380px) {
    .cta-btn { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
}