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

body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #ffffff;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
}

nav.scrolled {
  height: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 2px;
}

.menu {
  display: flex;
  gap: 60px;
}

.menu a {
  font-size: 13px;
  letter-spacing: 2px;
  color: #000000;
}

.quote-btn {
  padding: 14px 28px;
  background: #ff3131;
  font-size: 12px;
  letter-spacing: 2px;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.hero-content {
  position: relative;
  z-index: 20;
  padding-left: 90px;
  padding-top: 260px;
  max-width: 900px;
}

.small {
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.hero h1 {
  font-size: 120px;
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero p {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 40px;
  font-family: sans-serif;
}

.hero-btn {
  display: inline-block;
  padding: 18px 40px;
  background: #ff3131;
  font-size: 12px;
  letter-spacing: 2px;
}

/* EXPERTISE */
.expertise {
  background: #0e0e0e;
  padding: 140px 90px;
  position: relative;
}

.expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.expertise-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 40px;
}

.expertise-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 40px;
}

.expertise-value {
  font-size: 78px;
  font-weight: 700;
  letter-spacing: 2px;
  transform: translateX(200px);
}

.expertise-label {
  font-family: sans-serif;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateX(200px);
}

.expertise-copy {
  font-size: 38px;
  line-height: 1.3;
  letter-spacing: 0.2px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
}

/* SECTION HEAD */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.6;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 70px;
  line-height: 1;
}

.section-head p {
  font-family: sans-serif;
  opacity: 0.7;
  max-width: 420px;
  line-height: 1.6;
}

/* CAPABILITIES */
.capabilities {
  background: radial-gradient(circle at top left, rgba(255, 49, 49, 0.08), transparent 55%), #0b0b0b;
  padding: 140px 90px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cap-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.cap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 49, 49, 0.45);
}

.cap-label {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.5;
}

.cap-card h3 {
  font-size: 32px;
  margin: 16px 0 12px;
}

.cap-card p {
  font-family: sans-serif;
  opacity: 0.7;
  line-height: 1.6;
}

/* MADE IN */
.made-in {
  background: #090909;
  padding: 140px 90px;
}

.map-panel {
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 60%), #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 34px 34px;
  opacity: 0.25;
  pointer-events: none;
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.9) contrast(1.1) brightness(0.95);
}

.made-content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: min(460px, 46%);
  background: rgba(9, 9, 9, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  backdrop-filter: blur(6px);
}

.made-content h2 {
  font-size: 70px;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.made-content p {
  font-family: sans-serif;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stat {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-label {
  font-family: sans-serif;
  font-size: 13px;
  opacity: 0.6;
}

/* MEDIA */
.media {
  background: #0a0a0a;
  padding: 140px 90px 80px;
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.media-header h2 {
  font-size: 70px;
  line-height: 1;
}

.media-header p {
  font-family: sans-serif;
  opacity: 0.7;
  max-width: 420px;
  line-height: 1.6;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f0f0f;
  max-height: 260px;
}

.media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 0.5s ease;
}

.media-card:hover img {
  transform: scale(1.04);
}

/* INDUSTRIES */
.industries {
  background: #0b0b0b;
  padding: 140px 90px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

/* CONTACT */
.contact {
  background: #0a0a0a;
  padding: 120px 90px;
  text-align: center;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #cc1f1f;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .section-kicker {
  margin-bottom: 20px;
}

.contact-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.contact-intro {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.75;
  margin: 0 0 64px;
  font-family: sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1c1c1c;
  border: 1px solid #1c1c1c;
  width: 100%;
  margin-bottom: 56px;
}

.contact-block {
  background: #111;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-block:hover {
  background: #180000;
}

.contact-block svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.cb-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #444;
  text-transform: uppercase;
}

.cb-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

.contact-cta {
  display: inline-block;
  background: #cc1f1f;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 56px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.contact-cta:hover {
  background: #e02a2a;
  transform: translateY(-2px);
}

/* CTA */
.cta {
  background: #ffffff;
  color: #000000;
  padding: 160px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta h2 {
  font-size: 100px;
  line-height: 1;
}

.cta a {
  background: #ff3131;
  padding: 20px 40px;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  .menu {
    display: none;
  }

  .hero-content {
    padding-left: 24px;
    padding-top: 180px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .expertise {
    padding: 100px 24px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 20px;
    margin-left: 0;
    align-items: center;
  }

  .expertise-value {
    transform: translateX(0);
  }

  .expertise-label {
    transform: translateX(0);
  }

  .expertise-copy {
    font-size: 26px;
  }

  .capabilities {
    padding: 100px 24px;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head h2 {
    font-size: 50px;
  }

  .made-in {
    padding: 100px 24px;
  }

  .map-panel {
    padding: 24px;
    min-height: 420px;
  }

  .made-content {
    position: static;
    width: 100%;
    margin-top: 24px;
    background: rgba(9, 9, 9, 0.85);
  }

  .made-content h2 {
    font-size: 50px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .media {
    padding: 100px 24px;
  }

  .media-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-header h2 {
    font-size: 50px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .industries {
    padding: 100px 24px;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact {
    padding: 80px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    flex-direction: column;
    gap: 40px;
    padding: 100px 24px;
  }

  .cta h2 {
    font-size: 50px;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: 44px;
  }

  .expertise-copy {
    font-size: 22px;
  }

  .expertise-value {
    font-size: 58px;
  }

  .expertise-label {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }
}