/* ═══════════════════════════════════════════════
   PARS GLOBAL — Shared Stylesheet
   Theme: Black Steel + Signal Red
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── TOKENS ── */
:root {
  --ink:        #07070A;
  --ink-2:      #0D0D12;
  --ink-3:      #131318;
  --steel:      #1A1A22;
  --steel-2:    #222230;
  --line:       rgba(255,255,255,0.07);
  --line-dim:   rgba(255,255,255,0.035);

  --red:        #CC1512;
  --red-2:      #E82220;
  --red-3:      #FF3330;
  --red-dim:    rgba(204,21,18,0.12);
  --red-glow:   rgba(204,21,18,0.28);
  --red-border: rgba(204,21,18,0.30);

  --silver:     #B0BDD0;
  --fog:        #68778F;
  --fog-2:      #48566A;

  --white:      #FFFFFF;
  --off-white:  #F3F4F6;
  --border:     #E0E5EC;
  --border-2:   #CDD3DC;

  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --shadow-sm:  0 2px 14px rgba(0,0,0,0.28);
  --shadow:     0 8px 36px rgba(0,0,0,0.38);
  --shadow-lg:  0 20px 70px rgba(0,0,0,0.50);
  --shadow-red: 0 8px 30px rgba(204,21,18,0.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--ink); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── UTILITY ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.section-title.light { color: var(--white); }

.section-sub {
  color: var(--fog);
  font-size: 1rem;
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.7;
}
.section-sub.light { color: var(--silver); opacity: 0.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 26px; border-radius: var(--radius-xs);
  transition: all 0.25s var(--ease);
  white-space: nowrap; cursor: pointer; border: none;
  position: relative; overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-red {
  background: var(--red); color: white;
  box-shadow: 0 2px 14px rgba(204,21,18,0.30);
}
.btn-red:hover {
  background: var(--red-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-ghost {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-outline-red {
  background: transparent; color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: white; }

.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--steel-2); transform: translateY(-2px); }

.btn-white { background: white; color: var(--red); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.btn-white-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }

/* ── LOGO ── */
.logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.logo-img.dark { filter: brightness(0); }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(7,7,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}

.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dim);
  padding: 7px 0;
}

.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
}

.topbar-left { display: flex; gap: 24px; }

.topbar-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; color: var(--fog);
  transition: color 0.2s; text-decoration: none;
}
.topbar-item:hover { color: var(--red); }
.topbar-item i { color: var(--red); font-size: 0.7rem; }

.topbar-right { display: flex; align-items: center; gap: 8px; }

.topbar-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 1px;
  background: var(--red-dim); color: var(--red);
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid var(--red-border);
}
.topbar-badge i { animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}

.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 15px; border-radius: var(--radius-xs);
  font-family: var(--font-head); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  transition: all 0.2s;
}

.nav-link:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--red); }

.chev { font-size: 0.62rem; margin-top: 1px; transition: transform 0.22s; }
.nav-item:hover .chev { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  min-width: 248px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: dropFade 0.2s var(--ease) both;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-item:hover .dropdown { display: block; }

.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  font-size: 0.86rem; font-weight: 500;
  color: var(--silver);
  border-bottom: 1px solid var(--line-dim);
  transition: all 0.2s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.04); padding-left: 24px; }
.dropdown a i { color: var(--red); width: 16px; font-size: 0.82rem; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none;
}
.burger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 28px; color: var(--silver);
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid var(--line-dim);
  transition: all 0.2s;
}
.mobile-menu a:hover { color: var(--red); padding-left: 36px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--ink);
  padding: 150px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,21,18,0.12) 0%, transparent 65%);
  right: 5%; top: -10%;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.page-hero-label::before { content: ''; width: 20px; height: 2px; background: var(--red); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400; line-height: 0.95;
  letter-spacing: 2px;
  color: white; margin-bottom: 16px;
}

.page-hero p { color: var(--silver); max-width: 560px; font-size: 1rem; opacity: 0.75; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-top: 30px; font-size: 0.8rem;
}
.breadcrumb a { color: var(--fog); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.15); }
.breadcrumb strong { color: var(--red); }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--red);
  padding: 52px 0;
  position: relative; overflow: hidden;
}

.stat-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(0,0,0,0.04) 24px,
    rgba(0,0,0,0.04) 48px
  );
}

.stat-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; position: relative; z-index: 1;
}

.stat-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3.2rem; color: white; line-height: 1; letter-spacing: 2px; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin-top: 6px; font-weight: 500; letter-spacing: 0.5px; }

/* ── TAG ── */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-xs);
}
.tag-red   { background: var(--red-dim); color: var(--red); border: 1px solid var(--red-border); }
.tag-green { background: rgba(22,163,74,0.10); color: #16a34a; border: 1px solid rgba(22,163,74,0.25); }
.tag-silver { background: rgba(176,189,208,0.12); color: var(--silver); border: 1px solid rgba(176,189,208,0.2); }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-3); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.9rem; background: white;
  color: var(--ink); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-body {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding: 76px 0 56px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  color: var(--fog); font-size: 0.87rem;
  line-height: 1.75; margin: 20px 0 26px;
  max-width: 300px;
}

.footer-socials { display: flex; gap: 8px; }

.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--fog); font-size: 0.88rem;
  transition: all 0.2s;
}
.footer-social:hover { border-color: var(--red); color: var(--red); background: var(--red-dim); }

.footer-col h5 {
  font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: white; margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.footer-col h5::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 32px; height: 1px; background: var(--red);
}

.footer-col li { margin-bottom: 11px; }
.footer-col a {
  color: var(--fog); font-size: 0.86rem;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.footer-col a:hover { color: var(--red); transform: translateX(4px); }
.footer-col a i { font-size: 0.62rem; color: var(--red); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 16px;
  font-size: 0.78rem; color: var(--fog-2);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--fog-2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--red); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── SECTION LAYOUT ── */
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 54px; gap: 24px;
}

/* ── CARDS GRID ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-body { grid-template-columns: 1fr 1fr; gap: 36px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 768px) {
  .topbar .topbar-left { display: none; }
  .main-nav, .nav-actions { display: none; }
  .burger { display: flex; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-strip-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border: none !important; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── RED GLOW PULSE ── */
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(204,21,18,0.25); }
  50%      { box-shadow: 0 0 40px rgba(204,21,18,0.50); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 52px; width: max-content;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 14px; white-space: nowrap;
  font-family: var(--font-head); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.marquee-sep {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}

/* ── LINE ACCENTS ── */
.red-line {
  display: block; width: 48px; height: 3px;
  background: var(--red); border-radius: 2px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--red);
  padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(0,0,0,0.04) 28px, rgba(0,0,0,0.04) 56px);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); color: white; margin-bottom: 14px; letter-spacing: 2px; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
