/*
Name: Industrix-css
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0d0d0d;
  --black-2:  #1a1a1a;
  --black-3:  #242424;
  --red:      #cc1616;
  --red-dark: #a81010;
  --white:    #ffffff;
  --gray-50:  #f9f9f9;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-300: #cccccc;
  --gray-400: #a0a0a0;
  --gray-500: #7a7a7a;
  --gray-700: #3d3d3d;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--red); flex-shrink: 0;
}
.section-label-light {
  font-size: 10px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.section-label-light::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--red); flex-shrink: 0;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   SECTION 1 — HERO (BLACK)
============================================================ */
.section-hero {
  background: var(--black);
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 50px 0 90px;
}
.section-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 60px,
    rgba(255,255,255,0.014) 60px, rgba(255,255,255,0.014) 61px
  );
  pointer-events: none;
}
.section-hero::after {
  content: ''; position: absolute;
  bottom: -80px; right: -80px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(204,22,22,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-ghost {
  position: absolute; bottom: -50px; right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(110px, 17vw, 270px);
  color: rgba(255,255,255,0.025);
  line-height: 0.85; pointer-events: none; user-select: none;
  letter-spacing: -4px; white-space: nowrap;
}
.hero-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent);
}
.hero-hline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(204,22,22,0.35) 35%, rgba(204,22,22,0.35) 65%, transparent);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 36px;
}
.hero-dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.hero-eyebrow-text {
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.hero-eyebrow-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }
.hero-eyebrow-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 8.5vw, 118px);
  line-height: 0.87; color: var(--white);
  letter-spacing: 1px; margin-bottom: 32px; max-width: 900px;
}
.hero-title .accent { color: var(--red); }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
}

.hero-sub {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(16px, 1.8vw, 21px); line-height: 1.65;
  color: rgba(255,255,255,0.5); max-width: 620px; margin-bottom: 20px;
}
.hero-desc {
  font-size: 14px; line-height: 1.95; color: rgba(255,255,255,0.32);
  max-width: 620px; margin-bottom: 52px; font-weight: 300;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 16px 36px; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red-dark); transform: translateX(-100%); transition: transform 0.35s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(204,22,22,0.4); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.75);
  padding: 15px 36px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.18);
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; transition: all 0.3s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: var(--white); transform: translateY(-2px); }

/* 6-stat grid */
.hero-stats {
  display: grid; grid-template-columns: repeat(6, auto);
  width: fit-content;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 40px;
}
.hero-stat { padding: 0 32px 0 0; border-right: 1px solid rgba(255,255,255,0.07); }
.hero-stat:not(:first-child) { padding-left: 32px; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--white); line-height: 1; margin-bottom: 5px;
}
.hero-stat-num em { color: var(--red); font-style: normal; font-size: 24px; }
.hero-stat-label { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.28); letter-spacing: 0.5px; line-height: 1.4; }

/* Hero animation */
.section-hero .hero-eyebrow { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.section-hero .hero-title    { animation: fadeUp 0.7s ease both; animation-delay: 0.2s; }
.section-hero .hero-sub      { animation: fadeUp 0.7s ease both; animation-delay: 0.35s; }
.section-hero .hero-desc     { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.section-hero .hero-buttons  { animation: fadeUp 0.7s ease both; animation-delay: 0.5s; }
.section-hero .hero-stats    { animation: fadeUp 0.7s ease both; animation-delay: 0.6s; }


/* ============================================================
   SECTION 2 — INTRODUCTION (GRAY-50)
   Left: DM Serif italic title + 3 body paras
   Right: 3 capability pillars stacked
============================================================ */
.section-intro {
  background: var(--gray-50);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.section-intro::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--gray-200);
}
.section-intro::after {
  content: 'ACE';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(160px, 22vw, 300px);
  color: rgba(0,0,0,0.035); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: 6px;
}

.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.intro-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06; color: var(--black); margin-bottom: 32px;
}
.intro-title em { font-style: italic; color: var(--red); }

.intro-body {
  font-size: 15px; line-height: 1.9;
  color: var(--gray-500); font-weight: 300; margin-bottom: 22px;
}
.intro-body:last-child { margin-bottom: 0; }
.intro-body strong { color: var(--black); font-weight: 600; }

/* Right: three approach items */
.intro-right {}
.intro-pillars-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gray-400);
  margin-bottom: 28px; display: flex; align-items: center; gap: 14px;
}
.intro-pillars-label::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

.intro-pillar {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 0; border-bottom: 1px solid var(--gray-200);
  cursor: default; transition: all 0.3s;
}
.intro-pillar:first-of-type { padding-top: 0; }
.intro-pillar:last-of-type { border-bottom: none; }
.intro-pillar:hover { padding-left: 6px; }

.intro-pillar-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; transition: all 0.3s;
}
.intro-pillar:hover .intro-pillar-icon {
  background: rgba(204,22,22,0.07); border-color: rgba(204,22,22,0.25);
  transform: scale(1.05);
}
.intro-pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px; letter-spacing: 3px;
  color: var(--gray-300); display: block; margin-bottom: 5px;
}
.intro-pillar-name {
  font-size: 15px; font-weight: 700; color: var(--black);
  margin-bottom: 6px; transition: color 0.3s;
}
.intro-pillar:hover .intro-pillar-name { color: var(--red); }
.intro-pillar-desc {
  font-size: 13px; color: var(--gray-500); line-height: 1.65; font-weight: 300;
}


/* ============================================================
   SECTION 3 — CORE INDUSTRIES (WHITE)
   Bold 2-col header, then 6 industry deep-dive cards
   Layout: 3+3 grid, each card has full narrative content
============================================================ */
.section-core {
  background: var(--white);
  padding: 110px 0;
  position: relative;
}
.section-core::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red) 200px, transparent 500px);
}

.core-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 64px;
}
.core-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.88; color: var(--black); letter-spacing: 0.5px;
}
.core-title .accent { color: var(--red); }
.core-intro { font-size: 15px; line-height: 1.85; color: var(--gray-500); font-weight: 300; }

/* 3+3 grid with 1px separator lines */
.core-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200); border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.core-grid-row2 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200); border-top: none;
  border-radius: 0 0 3px 3px; overflow: hidden;
}

.core-card {
  background: var(--white);
  padding: 44px 36px 40px;
  position: relative; overflow: hidden;
  cursor: default; transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.core-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.core-card:hover { background: var(--gray-50); transform: translateY(-3px); z-index: 2; box-shadow: 0 16px 52px rgba(0,0,0,0.07); }
.core-card:hover::before { transform: scaleY(1); }

/* Ghost large number */
.core-card-ghost {
  position: absolute; bottom: -12px; right: 10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 96px; line-height: 1;
  color: rgba(0,0,0,0.03); pointer-events: none; user-select: none;
  transition: color 0.3s;
}
.core-card:hover .core-card-ghost { color: rgba(204,22,22,0.05); }

.core-card-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 10px; letter-spacing: 3px;
  color: var(--gray-300); display: block; margin-bottom: 22px; transition: color 0.3s;
}
.core-card:hover .core-card-num { color: var(--red); }

.core-card-icon {
  width: 52px; height: 52px;
  background: var(--gray-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px; transition: all 0.3s;
}
.core-card:hover .core-card-icon { background: var(--red); }

.core-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.5px;
  color: var(--black); margin-bottom: 14px; line-height: 1.1; transition: color 0.3s;
}
.core-card:hover .core-card-name { color: var(--red); }

.core-card-body {
  font-size: 13.5px; line-height: 1.8;
  color: var(--gray-500); font-weight: 300; margin-bottom: 20px;
}

/* Capability tags per card */
.core-card-tags {
  display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto;
  padding-top: 20px; border-top: 1px solid var(--gray-100);
}
.core-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 3px; font-size: 10px; font-weight: 600;
  color: var(--gray-500); letter-spacing: 0.5px; transition: all 0.25s;
}
.core-card-tag::before { content: ''; width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.core-card:hover .core-card-tag { border-color: rgba(204,22,22,0.2); color: var(--gray-700); }


/* ============================================================
   SECTION 4 — GLOBAL PROJECT SUPPORT (BLACK)
   World regions map-style layout
============================================================ */
.section-global {
  background: var(--black-2);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.section-global::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px; pointer-events: none;
}
.global-ghost {
  position: absolute; left: 50%; bottom: -40px; transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(90px, 15vw, 220px);
  color: rgba(255,255,255,0.02);
  white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: 8px;
}

.global-inner { position: relative; z-index: 1; }

.global-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.global-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.88; color: var(--white); letter-spacing: 1px;
}
.global-title .accent { color: var(--red); }
.global-intro {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.45); font-weight: 300;
}

/* Region layout: 1 primary (wide) + 3 secondary on first row, 1 more on second */
.global-regions {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px 3px 0 0; overflow: hidden;
}
.global-regions-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none; border-radius: 0 0 3px 3px; overflow: hidden;
}

.region-card {
  background: var(--black-2);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  cursor: default; transition: background 0.3s;
}
.region-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 0;
  background: var(--red);
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.region-card:hover { background: rgba(204,22,22,0.05); }
.region-card:hover::before { height: 3px; }

/* Primary region — featured */
.region-card--primary {
  background: rgba(204,22,22,0.07);
  border-top: 3px solid var(--red);
}
.region-card--primary::before { display: none; }

.region-flags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.region-flag { font-size: 28px; line-height: 1; }
.region-card--primary .region-flag { font-size: 36px; }

.region-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(204,22,22,0.15); border: 1px solid rgba(204,22,22,0.3);
  padding: 4px 12px; border-radius: 3px;
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.region-badge-dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; animation: blink 2s ease-in-out infinite; }

.region-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.5px;
  color: var(--white); margin-bottom: 10px; line-height: 1.1;
  transition: color 0.3s;
}
.region-card--primary .region-name { font-size: 28px; color: var(--white); }
.region-card:not(.region-card--primary):hover .region-name { color: var(--red); }

.region-countries {
  font-size: 12px; color: rgba(255,255,255,0.35);
  line-height: 1.7; font-weight: 300; margin-bottom: 14px;
}
.region-status {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.region-card--primary .region-status {
  border-color: rgba(204,22,22,0.35); color: var(--red);
  background: rgba(204,22,22,0.08);
}

/* Standards strip */
.global-standards {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none; overflow: hidden;
  border-radius: 0 0 3px 3px;
}
.global-standards-label {
  background: var(--red);
  padding: 18px 28px;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--white);
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 10px;
}
.global-standards-items {
  display: flex; flex: 1; flex-wrap: wrap;
}
.global-std-item {
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  font-size: 11.5px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s; cursor: default;
  display: flex; align-items: center; gap: 8px;
}
.global-std-item:last-child { border-right: none; }
.global-std-item:hover { color: var(--white); }
.global-std-dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }


/* ============================================================
   SECTION 5 — CAPABILITIES (GRAY-50)
   Full-width bold header + 6 capability cards in 2x3
============================================================ */
.section-caps {
  background: var(--gray-50);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.section-caps::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--gray-200);
}
.section-caps::after {
  content: 'CAPABILITIES';
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 150px);
  color: rgba(0,0,0,0.03); white-space: nowrap;
  pointer-events: none; user-select: none; letter-spacing: 4px;
}

.caps-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 64px;
}
.caps-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.88; color: var(--black); letter-spacing: 0.5px;
}
.caps-title .accent { color: var(--red); }
.caps-intro { font-size: 15px; line-height: 1.85; color: var(--gray-500); font-weight: 300; }

/* 6 capabilities in 3-col horizontal list style */
.caps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--gray-200);
  border: 1px solid var(--gray-200); border-radius: 3px 3px 0 0; overflow: hidden;
}
.caps-grid-row2 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--gray-200);
  border: 1px solid var(--gray-200); border-top: none;
  border-radius: 0 0 3px 3px; overflow: hidden;
}

.cap-item {
  background: var(--white);
  padding: 36px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  position: relative; overflow: hidden;
  cursor: default; transition: background 0.3s;
}
.cap-item::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 0;
  background: var(--red); transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.cap-item:hover { background: var(--gray-50); padding-left: 36px; }
.cap-item:hover::before { width: 3px; }

.cap-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: var(--gray-100); line-height: 1;
  flex-shrink: 0; transition: color 0.3s; width: 36px; text-align: center; margin-top: 2px;
}
.cap-item:hover .cap-num { color: rgba(204,22,22,0.2); }

.cap-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gray-100); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: all 0.3s;
}
.cap-item:hover .cap-icon { background: rgba(204,22,22,0.1); }

.cap-name {
  font-size: 14px; font-weight: 700; color: var(--black);
  margin-bottom: 6px; transition: color 0.3s; line-height: 1.3;
}
.cap-item:hover .cap-name { color: var(--red); }
.cap-desc {
  font-size: 12.5px; color: var(--gray-500); line-height: 1.65; font-weight: 300;
}


/* ============================================================
   SECTION 6 — WHY CHOOSE US (BLACK)
   Bold asymmetric layout: big left quote + right reason cards
============================================================ */
.section-why {
  background: var(--black);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.section-why::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 60px,
    rgba(255,255,255,0.013) 60px, rgba(255,255,255,0.013) 61px
  );
  pointer-events: none;
}

.why-inner { position: relative; z-index: 1; }

.why-layout {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px; align-items: start;
}

/* Left: big DM Serif heading + intro */
.why-left {}
.why-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08; color: var(--white); margin-bottom: 28px;
}
.why-title em { font-style: italic; color: var(--red); }

.why-body {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 44px;
}
.why-body strong { color: var(--white); font-weight: 600; }

/* Trust numbers */
.why-numbers {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px; overflow: hidden;
}
.why-num-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-align: center; cursor: default; transition: background 0.25s;
}
.why-num-item:nth-child(even) { border-right: none; }
.why-num-item:nth-child(3),
.why-num-item:nth-child(4) { border-bottom: none; }
.why-num-item:hover { background: rgba(204,22,22,0.06); }
.why-num-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: var(--white); line-height: 1; margin-bottom: 5px;
}
.why-num-val em { color: var(--red); font-style: normal; font-size: 28px; }
.why-num-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.28); line-height: 1.4;
}

/* Right: 5 reason cards — stacked list style */
.why-right {}
.why-reasons { display: flex; flex-direction: column; gap: 1px; }

.why-reason {
  background: var(--black-2);
  padding: 32px 32px 32px 36px;
  display: flex; gap: 20px; align-items: flex-start;
  position: relative; overflow: hidden;
  cursor: default; transition: background 0.3s;
}
.why-reason::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.why-reason:hover { background: rgba(204,22,22,0.05); }
.why-reason:hover::before { transform: scaleY(1); }

.why-reason-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; transition: all 0.3s;
}
.why-reason:hover .why-reason-icon {
  background: rgba(204,22,22,0.15); border-color: rgba(204,22,22,0.3);
}

.why-reason-num {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  color: rgba(255,255,255,0.2); display: block; margin-bottom: 5px;
}
.why-reason-name {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 6px; transition: color 0.3s;
}
.why-reason:hover .why-reason-name { color: var(--red); }
.why-reason-desc {
  font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; font-weight: 300;
}


/* ============================================================
   SECTION 7 — FINAL CTA (BLACK + red glows)
============================================================ */
.section-cta {
  background: var(--black);
  padding: 130px 0 120px;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-glow-l {
  position: absolute; left: -220px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(204,22,22,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-glow-r {
  position: absolute; right: -200px; bottom: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,22,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-noise {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}

.cta-inner {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.cta-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(204,22,22,0.1); border: 1px solid rgba(204,22,22,0.3);
  padding: 8px 18px; border-radius: 3px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 32px;
}
.cta-badge-dot {
  width: 6px; height: 6px; background: var(--red); border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.8vw, 80px);
  line-height: 0.87; color: var(--white); letter-spacing: 1px; margin-bottom: 24px;
}
.cta-title .accent { color: var(--red); }
.cta-desc {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.4); font-weight: 300;
  margin-bottom: 48px; max-width: 500px;
}

.cta-trust { display: flex; flex-direction: column; gap: 10px; margin-bottom: 44px; }
.cta-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.45);
}
.cta-trust-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(204,22,22,0.1); border: 1px solid rgba(204,22,22,0.2);
  border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px;
}

.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 17px 36px; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-cta-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red-dark); transform: translateX(-100%); transition: transform 0.35s;
}
.btn-cta-primary:hover::before { transform: translateX(0); }
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(204,22,22,0.4); }
.btn-cta-primary span { position: relative; z-index: 1; }
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.7);
  padding: 16px 36px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.16);
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; transition: all 0.3s;
}
.btn-cta-secondary:hover { border-color: rgba(255,255,255,0.5); color: var(--white); transform: translateY(-2px); }

/* Right: action card */
.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 44px 40px;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), transparent);
}
.cta-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.cta-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: 0.5px;
  color: var(--white); margin-bottom: 10px; line-height: 1.1;
}
.cta-card-sub {
  font-size: 13.5px; line-height: 1.7;
  color: rgba(255,255,255,0.4); margin-bottom: 32px; font-weight: 300;
}
.cta-card-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.btn-card-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 16px 28px; border-radius: 4px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; transition: all 0.25s;
}
.btn-card-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(204,22,22,0.4); }
.btn-card-secondary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.65);
  padding: 15px 28px; border-radius: 4px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.14); transition: all 0.25s;
}
.btn-card-secondary:hover { border-color: rgba(255,255,255,0.45); color: var(--white); transform: translateY(-2px); }

.cta-card-contact {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px;
}
.cta-contact-link {
  font-size: 11.5px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s;
}
.cta-contact-link:hover { color: rgba(255,255,255,0.75); }
.cta-contact-sep { color: rgba(255,255,255,0.15); }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); width: 100%; }
  .hero-stat { padding: 20px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat:not(:first-child) { padding-left: 0; }
  .global-regions { grid-template-columns: 1fr 1fr; }
  .global-regions-row2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .intro-grid, .core-header, .global-header, .caps-header,
  .why-layout, .cta-inner { grid-template-columns: 1fr; gap: 40px; }

  .why-layout { gap: 56px; }
  .why-left .why-numbers { grid-template-columns: repeat(4, 1fr); }
  .why-num-item { border-bottom: none; }
  .why-num-item:nth-child(even) { border-right: 1px solid rgba(255,255,255,0.07); }
  .why-num-item:last-child { border-right: none; }

  .core-grid { grid-template-columns: 1fr 1fr; }
  .core-grid-row2 { grid-template-columns: 1fr 1fr; }

  .global-regions { grid-template-columns: 1fr 1fr; }
  .global-regions-row2 { grid-template-columns: 1fr 1fr; }
  .global-standards { flex-direction: column; }
  .global-standards-label { border-radius: 0; }
  .global-standards-items { flex-wrap: wrap; }
  .global-std-item { border-bottom: 1px solid rgba(255,255,255,0.07); }

  .caps-grid, .caps-grid-row2 { grid-template-columns: 1fr 1fr; }

  .hero-stats { grid-template-columns: repeat(3, 1fr); width: 100%; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .section-intro, .section-core, .section-global,
  .section-caps, .section-why, .section-cta { padding: 72px 0; }

  .core-grid, .core-grid-row2 { grid-template-columns: 1fr; }
  .global-regions, .global-regions-row2 { grid-template-columns: 1fr; }
  .caps-grid, .caps-grid-row2 { grid-template-columns: 1fr; }
  .why-left .why-numbers { grid-template-columns: 1fr 1fr; }
  .why-num-item:nth-child(even) { border-right: none; }
  .why-num-item:nth-child(1),
  .why-num-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column; }
  .btn-cta-primary, .btn-cta-secondary { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .why-left .why-numbers { grid-template-columns: 1fr 1fr; }
}
