/* Base reset – ultra light */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}


/* ================================
   AXISBRAND – HEADER (ULTRA FAST)
================================ */

/* --- CSS RESET (header-only safe) --- */
.site-header,
.site-header * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- HEADER WRAPPER --- */
.site-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

/* --- CONTAINER --- */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- LOGO --- */
.logo img {
  width: 160px;
  height: 55px;
  display: block;
}

/* --- NAVIGATION --- */
.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  position: relative;
}

/* Hover underline (no animation = faster) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #e32619;
}

.nav-link:hover::after {
  width: 100%;
}

/* --- CTA BUTTON --- */
.header-cta .cta-btn {
  background: #e32619;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 4px;
  white-space: nowrap;
}

/* --- MOBILE TOGGLE (HIDDEN DESKTOP) --- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* ================================
   MOBILE STYLES
================================ */
@media (max-width: 900px) {

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eee;
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}


/* ============================
   FOOTER
============================ */

.site-footer {
  background: #0b0b0b;
  color: #aaa;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */
.footer-brand strong {
  color: #fff;
  font-size: 18px;
}

.footer-brand p {
  margin-top: 10px;
  line-height: 1.6;
}

/* NAV */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

/* CONTACT */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  color: #aaa;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

