/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0b0b0b;
  --bg2:       #111111;
  --bg3:       #161616;
  --card:      #1a1a1a;
  --border:    #2a2a2a;
  --orange:    #e8650a;
  --orange-h:  #ff7920;
  --white:     #ffffff;
  --muted:     #888888;
  --muted2:    #555555;
  --teal-dark: #0a1e1e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ─── NAV ──────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(11,11,11,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 43px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.btn-nav {
  background: var(--orange);
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--orange-h) !important; }

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-h); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s;
  background: transparent;
}
.btn-outline:hover { border-color: #fff; }

.btn-dark {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--border);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-dark:hover { border-color: #555; }

/* ─── SECTION LABELS ───────────────────────────────────────────── */
.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.05;
}

/* ─── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0d2b2b 0%, #0a1f1f 50%, #071818 100%);
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cta-banner .label { display: block; margin-bottom: 16px; }

.cta-banner .cta-title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 18px;
}

.cta-banner .cta-sub {
  font-size: 14px;
  color: #888;
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions { display: flex; gap: 14px; justify-content: center; }

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 48px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-logo img {
  height: 33px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: #666; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-links li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #666; }
.footer-links li svg { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 12px; color: #444; }

/* ─── STAR RATING ──────────────────────────────────────────────── */
.stars { display: flex; gap: 3px; }
.star { width: 14px; height: 14px; fill: var(--orange); }
.star.sm { width: 12px; height: 12px; }

/* ─── MOBILE NAV HAMBURGER ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 101;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE BREAKPOINT ────────────────────────────────────────── */
@media (max-width: 768px) {
  /* NAV */
  nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 13px;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.08em;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .btn-nav {
    display: block !important;
    text-align: center;
    margin-top: 12px;
    padding: 14px !important;
    border-radius: 2px;
    border-bottom: none !important;
  }

  /* CTA BANNER */
  .cta-banner { padding: 56px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline,
  .cta-actions a { text-align: center; }

  /* FOOTER */
  footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
