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

:root {
  --bg: #0a0908;
  --orange: #FF9233;
  --white: #F5F3EF;
  --grey: #B9B5AE;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.accent { color: var(--orange); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  height: 70px;
  overflow: visible;
}

.nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 100%;
}
.logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  position: relative;
  top: 10px;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--orange); }
.support-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 6px;
  transition: filter 0.2s;
}
.support-btn:hover { filter: brightness(1.1); }

/* ===== SUPPORT DROPDOWN ===== */
.support-wrap {
  position: relative;
}
.support-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #111010;
  border: 1px solid rgba(255,146,51,0.3);
  border-radius: 8px;
  min-width: 280px;
  z-index: 200;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.support-dropdown.open {
  display: block;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.support-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  transition: background 0.2s;
}
.support-option:hover { background: rgba(255,146,51,0.08); }
.support-option-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,146,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.support-option-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 2px;
}
.support-option-value {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.support-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 18px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: unset;
  padding: 0 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-image:
    linear-gradient(90deg, rgba(10,9,8,1) 0%, rgba(10,9,8,1) 38%, rgba(10,9,8,0.35) 60%, rgba(10,9,8,0.0) 100%),
    linear-gradient(to bottom, transparent 65%, rgba(10,9,8,0.85) 100%),
    url("assets/hero-bg.jpg");
  background-size: cover, cover, 70% auto;
  background-position: center, center, right 10%;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.hero-inner {
  max-width: 620px;
  padding-top: 40px;
  padding-bottom: 30px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 20px;
}

.eyebrow-line {
  display: block;
  width: 255px;
  height: 2px;
  background: var(--orange);
  margin-top: 8px;
}
.headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.headline .italic { font-style: italic; }
.subcopy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 440px;
  margin-bottom: 0px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 18px 30px;
  border-radius: 6px;
  transition: transform 0.2s, filter 0.2s;
  margin-top: 16px;
}
.cta-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* ===== FEATURE STRIP ===== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
  background: #0a0908;
  position: relative;
  z-index: 2;
}

.feature-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 26px 10px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.feature-strip li:last-child { border-right: none; }
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,146,51,0.12);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.feature-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.feature-text small {
  display: block;
  font-weight: 400;
  color: var(--grey);
  margin-top: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0d0c0b;
  border-top: 1px solid rgba(255,146,51,0.2);
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 50px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 10px;
}
.footer-company {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,146,51,0.2);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a {
  color: var(--white);
  display: block;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-name {
  display: block;
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
}

/* FOOTER MOBILE */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 24px;
  }
  .footer-bottom {
    padding: 14px 20px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background: #111010;
  border-left: 1px solid rgba(255,146,51,0.2);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 30px;
  padding: 4px 8px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav-links a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--grey);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: var(--orange); }
.mobile-support-btn {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: var(--orange) !important;
  color: #0a0a0a !important;
  padding: 14px 20px !important;
  border-radius: 6px;
  margin-top: 20px;
  border-bottom: none !important;
  justify-content: center;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
/* ===== MOBILE SUPPORT SECTION ===== */
.mobile-support-section {
  margin-top: 20px;
  border-top: 1px solid rgba(255,146,51,0.2);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-support-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
}
.mobile-support-toggle svg.toggle-arrow {
  transition: transform 0.3s;
}
.mobile-support-toggle.open svg.toggle-arrow {
  transform: rotate(180deg);
}
.mobile-support-options {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.mobile-support-options.open {
  display: flex;
}

.mobile-support-label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--grey);
  margin-bottom: 1px;
}
.mobile-support-value {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.mobile-support-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.mobile-support-option-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,146,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-links { display: none; }
  .support-btn { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 100%;
  width: 100%;
}
  .logo-img { height: 60px; }

  /* HERO */
  .hero {
    padding: 0 20px 0;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image:
      linear-gradient(180deg, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0.6) 50%, rgba(10,9,8,0.95) 100%),
      url("assets/hero-bg.jpg");
    background-size: cover;
    background-position: 70% center;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }

  .feature-strip {
    margin-top: 0;
    flex-shrink: 0;
  }


  .headline { font-size: 32px; }
  .eyebrow { font-size: 11px; margin-bottom: 6px; }
  .subcopy { font-size: 14px; max-width: 85%; margin-bottom: 16px; }
  .cta-btn { font-size: 13px; padding: 14px 22px; width: fit-content; }
  
  /* FEATURE STRIP */
  .feature-strip {
    grid-template-columns: repeat(5, 1fr);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0908;
    border-top: 1px solid rgba(255,146,51,0.3);
    border-left: none;
    border-right: none;
  }
  .feature-strip li {
    padding: 12px 2px;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,0.15) !important;
  }
  .feature-icon {
    width: 28px;
    height: 28px;
  }
  .feature-icon svg {
    width: 14px;
    height: 14px;
  }
  .feature-icon svg {
    width: 14px;
    height: 14px;
  }
  .feature-text {
    font-size: 9px;
    letter-spacing: 0;
  }
  .feature-text small {
    display: none;
  }
  .feature-strip li:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.1); }
  .feature-strip li:nth-child(5) {
    grid-column: span 1;
    border-right: none;
  }
  .feature-strip li:nth-child(2) { border-right: none; }
  .feature-strip li:nth-child(5) {
    grid-column: span 1;
    border-right: none;
  }
  .feature-strip li {
    padding: 12px 2px;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,0.15) !important;
  }
  .feature-text {
    font-size: 9px;
    letter-spacing: 0;
    word-break: break-word;
    text-align: center;
  }
  .feature-icon {
    width: 28px;
    height: 28px;
  }
  .feature-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* ===== FULL IMAGE HERO ===== */
.hero-fullimg {
  position: relative;
  width: 100%;
  padding-top: 20px;
  background-color: #0a0908;
  z-index: 1;
}

.hero-fullimg img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-explore-btn {
  position: absolute;
  bottom: 22%;
  left: 3%;
  width: 25%;
  height: 8%;
  background: #FF9233;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
}
.hero-explore-btn:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .hero-explore-btn {
    bottom: 20%;
    left: 3%;
    width: 45%;
    height: 5%;
    font-size: 10px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero-fullimg {
    aspect-ratio: 4 / 5;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
  }
  .hero-explore-btn {
    bottom: 32%;
    left: 5%;
    font-size: 11px;
    padding: 10px 18px;
  }
}