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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #07090f;
  color: #e8edf5;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CSS VARIABLES ──────────────────────────────────── */
:root {
  --bg:      #07090f;
  --bg2:     #0d1117;
  --card:    rgba(255,255,255,0.04);
  --border:  rgba(255,107,26,0.18);
  --border2: rgba(255,255,255,0.08);
  --orange:  #ff6b1a;
  --red:     #ff3200;
  --yellow:  #ffc400;
  --blue:    #1a6bff;
  --text:    #e8edf5;
  --muted:   #8a9ab5;
  --radius:  14px;
  --max-w:   1200px;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1) translateX(var(--tx, 0)); }
  50%       { opacity: 1;   transform: scale(1.15) translateX(var(--tx, 0)); }
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── NAVIGATION ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 66px;
  background: rgba(7,9,15,0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.nav-logo-text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--orange); font-weight: 600; }

.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--orange)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 8px !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; background: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  border-radius: 8px;
  color: var(--text);
  padding: 0.4rem 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 2rem;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ── THERMAL DIVIDER ────────────────────────────────── */
.thermal-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent, var(--red), var(--orange), var(--yellow),
    var(--orange), var(--red), transparent);
  opacity: 0.4;
}

/* ── SECTION HELPERS ────────────────────────────────── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(255,50,0,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,50,0,0.45); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--orange); background: rgba(255,107,26,0.06); }

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,50,0,0.12), rgba(255,196,0,0.08));
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,50,0,0.1), transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta-banner > p, .cta-banner .cta-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-contact {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.cta-contact a { color: var(--orange); }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo img {
  height: 34px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-logo-text span {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer p { color: var(--muted); font-size: 0.82rem; }
footer a { color: var(--orange); text-decoration: none; }
footer a:hover { color: var(--yellow); }

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 700px) {
  nav { padding: 0 1.2rem; }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0; right: 0;
    z-index: 99;
    background: rgba(7,9,15,0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem 1.2rem 1.5rem;
    gap: 2px;
    align-items: stretch;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .stats-inner { gap: 2rem; }

  .section-wrap { padding: 3.5rem 1.25rem; }

  .cta-banner { padding: 3rem 1.5rem; }

  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
