/* ============================================================
   Swordfish Edition — style.css?v=1
   Pure black #050505 | Electric blue #3b82f6
   ============================================================ */

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

:root {
  --black:       #050505;
  --black-mid:   #0d0d0d;
  --black-light: #141414;
  --grey:        #1a1a1a;
  --grey-mid:    #2a2a2a;
  --border:      #222;
  --blue:        #3b82f6;
  --blue-dark:   #2563eb;
  --blue-glow:   rgba(59, 130, 246, 0.15);
  --white:       #ffffff;
  --text:        #c9cdd4;
  --text-muted:  #6b7280;
  --font:        'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.25s ease;
  --shadow:      0 4px 24px rgba(0,0,0,0.7);
  --shadow-blue: 0 0 32px rgba(59,130,246,0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text); }

.text-blue  { color: var(--blue); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: var(--grey);
}
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--white);
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO SPLIT ---------- */
.hero { margin-top: 72px; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

.hero-video-half {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.hero-split-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-text-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: #050505;
  color: #fff;
}

.hero-text-half h1 { margin-bottom: 20px; }
.hero-text-half p  { font-size: 1.1rem; color: var(--text); margin-bottom: 36px; max-width: 480px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.35);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- GENERIC HERO (other pages) ---------- */
.page-hero {
  margin-top: 72px;
  padding: 80px 0;
  background: var(--black-mid);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.05rem; color: var(--text); max-width: 640px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  line-height: 1;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-ghost { background: var(--grey); color: var(--white); }
.btn-ghost:hover { background: var(--grey-mid); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ---------- SECTION LABELS / HEADERS ---------- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text); font-size: 1rem; max-width: 640px; }
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

.divider { width: 48px; height: 3px; background: var(--blue); border-radius: 2px; margin: 20px 0; }
.divider-center { margin: 20px auto; }

/* ---------- GRID HELPERS ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

/* ---------- CARDS ---------- */
.card {
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.card-body { padding: 28px; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.card-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.card-title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.card-text  { font-size: 0.88rem; color: var(--text-muted); }
.card-meta  { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; display: flex; gap: 16px; }

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--black-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- FEATURE BLOCKS ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-item {
  background: var(--black-light);
  padding: 36px 28px;
  transition: background var(--transition);
}
.feature-item:hover { background: var(--grey); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.feature-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.feature-text  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- TWO-COL SPLIT ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 16px; position: relative; }
.cta-banner p  { margin-bottom: 32px; color: var(--text); position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- IMAGE BANNER ---------- */
.img-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
}
.img-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,0.88) 40%, transparent);
  display: flex;
  align-items: center;
  padding: 64px;
}
.img-banner-content { max-width: 520px; }
.img-banner-content h2 { margin-bottom: 16px; }
.img-banner-content p  { margin-bottom: 28px; }

/* ---------- JOB CARDS ---------- */
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all var(--transition);
}
.job-card:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.job-info { flex: 1; }
.job-title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--grey);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.job-tag.blue { background: rgba(59,130,246,0.1); color: var(--blue); border-color: rgba(59,130,246,0.25); }

/* ---------- ACCORDION ---------- */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  background: var(--black-light);
  border: none;
  padding: 20px 24px;
  text-align: left;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  font-family: var(--font);
}
.accordion-trigger:hover { background: var(--grey); }
.accordion-trigger .acc-icon {
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-trigger.open .acc-icon { transform: rotate(45deg); }
.accordion-body {
  background: var(--black-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body-inner { padding: 20px 24px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.accordion-body.open { max-height: 500px; }

/* ---------- BLOG GRID ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.86rem; color: var(--text-muted); flex: 1; line-height: 1.6; }
.blog-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-card-footer a { color: var(--blue); font-weight: 600; }
.blog-card-footer a:hover { color: var(--white); }

/* ---------- ARTICLE PAGE ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.article-header { margin-bottom: 40px; }
.article-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  border: 1px solid var(--border);
  object-fit: cover;
  max-height: 480px;
}
.article-body { font-size: 1rem; line-height: 1.85; }
.article-body h2 { font-size: 1.45rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.15rem; margin: 32px 0 12px; }
.article-body p  { margin-bottom: 20px; color: var(--text); }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; color: var(--text); }
.article-body img { border-radius: var(--radius); margin: 32px 0; border: 1px solid var(--border); width: 100%; }
.article-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 16px 24px;
  background: var(--black-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text);
}

.article-sidebar { position: sticky; top: 96px; }
.sidebar-widget {
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 { margin-bottom: 16px; font-size: 0.95rem; }
.sidebar-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { transform: translateX(4px); }
.sidebar-link-img { width: 56px; height: 40px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.sidebar-link-text { font-size: 0.83rem; color: var(--text); line-height: 1.4; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--border); }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-control {
  width: 100%;
  background: var(--black-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black-mid);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.86rem; color: var(--text-muted); max-width: 280px; line-height: 1.75; }
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.86rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--blue); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ---------- TAG ---------- */
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; }
.tag-blue { background: rgba(59,130,246,0.1); color: var(--blue); border: 1px solid rgba(59,130,246,0.25); }
.tag-grey { background: var(--grey); color: var(--text-muted); border: 1px solid var(--border); }

/* ---------- SITEMAP ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sitemap-group ul li { margin-bottom: 10px; }
.sitemap-group ul a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.sitemap-group ul a:hover { color: var(--white); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  flex-direction: column;
}
.error-code { font-size: 7rem; font-weight: 900; color: var(--blue); line-height: 1; opacity: 0.18; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px; top: 5px;
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  border: 2px solid var(--black);
  box-shadow: 0 0 8px var(--blue);
}
.timeline-date { font-size: 0.78rem; color: var(--blue); font-weight: 600; margin-bottom: 6px; letter-spacing: 0.06em; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.timeline-text { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- UTILS ---------- */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-video-half { height: 300px; }
  .hero-text-half { padding: 48px 24px; }
  .split-section { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
  .feature-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .cta-banner { padding: 48px 28px; }
  .img-banner { height: auto; }
  .img-banner img { height: 300px; }
  .img-banner-overlay { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--black-mid); border-bottom: 1px solid var(--border); padding: 12px 0; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 0; padding: 14px 24px; width: 100%; }
  .nav-links .nav-cta { margin-left: 0; border-radius: 0; }
  .nav-toggle { display: flex; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--grey-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ---------- SELECTION ---------- */
::selection { background: rgba(59,130,246,0.3); color: var(--white); }
