/* ============================================
   IRONLINE PIPELINE — SHARED STYLES
   ============================================ */

:root {
  --black: #0a0a0a;
  --carbon: #111111;
  --steel: #161616;
  --panel: #1a1a1a;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --orange: #ff5a1f;
  --orange-bright: #ff7a3f;
  --orange-soft: rgba(255, 90, 31, 0.14);
  --orange-glow: rgba(255, 90, 31, 0.35);
  --bone: #f4f4f0;
  --gray-50: #f9f9f7;
  --gray-100: #ededeb;
  --gray-300: #b8b8b3;
  --gray-400: #8a8a85;
  --gray-500: #5a5a55;
  --gray-700: #2a2a28;
  --text-on-dark: #e8e8e3;
  --muted-on-dark: #888880;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--bone);
  line-height: 1.55;
  overflow-x: hidden;
}

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

.mono { font-family: 'Space Mono', monospace; letter-spacing: 0.02em; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== LOGO ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--orange);
  position: relative;
  border-radius: 2px;
  flex-shrink: 0;
}
.logo-mark::before, .logo-mark::after {
  content: '';
  position: absolute;
  background: var(--black);
  top: 8px; bottom: 8px;
  width: 4px;
}
.logo-mark::before { left: 11px; }
.logo-mark::after { right: 11px; }
.logo-bar {
  position: absolute;
  top: 50%; left: 8px; right: 8px;
  height: 4px;
  background: var(--black);
  transform: translateY(-50%);
}
.logo-text { line-height: 1; font-weight: 900; letter-spacing: -0.02em; }
.logo-text .word { display: block; font-size: 17px; }
.logo-text .sub {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gray-400);
  text-transform: uppercase;
}
nav .logo .word, footer .logo .word { color: white; }

/* ===== NAV ===== */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}
nav.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
}
nav.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height 0.35s ease;
}
nav.site-nav.scrolled .container { height: 64px; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a.active::after, .nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--orange-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--orange-glow);
}
.nav-cta svg { width: 14px; height: 14px; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 17px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--orange-glow);
}
.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  padding: 17px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  background: transparent;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.06);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--orange);
  transition: gap 0.25s;
}
.btn-text:hover { gap: 16px; }

/* ===== HERO (HOME) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(0.3) contrast(1.05);
  animation: kenburns 20s ease-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-2%, -1%); }
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 2;
}
.hero .container { position: relative; z-index: 3; width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 1100px;
}
.hero h1 .accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 800;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.24s; }
@keyframes reveal { to { transform: translateY(0); } }

.hero p.lede {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-on-dark);
  max-width: 620px;
  margin-bottom: 48px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 88px;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s ease forwards;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}
.hero-stat {
  padding: 0 24px 0 0;
  border-right: 1px solid var(--line);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-num {
  font-family: 'Space Mono', monospace;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-stat-num .accent { color: var(--orange); }
.hero-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-on-dark);
  font-weight: 600;
}

/* ===== PAGE HEADER (INNER PAGES) ===== */
.page-header {
  position: relative;
  background: var(--black);
  color: white;
  overflow: hidden;
  padding: 180px 0 100px;
  border-bottom: 1px solid var(--line);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(0.4) contrast(1.05);
}
.page-header-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.95) 100%);
}
.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-on-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--gray-500); }
.breadcrumb .current { color: var(--orange); }
.page-title {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 900px;
}
.page-title .accent { color: var(--orange); font-style: italic; }
.page-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-on-dark);
  max-width: 680px;
  line-height: 1.6;
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--black);
  color: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marqueeScroll 38s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--text-on-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section { padding: 140px 0; position: relative; }
section.dark { background: var(--black); color: white; }
section.bone { background: var(--bone); }
section.carbon { background: var(--carbon); color: white; }

.section-head { margin-bottom: 80px; max-width: 900px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--orange);
}
.section-title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 24px;
}
section.dark .section-title, section.carbon .section-title { color: white; }
.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--gray-500);
  max-width: 680px;
  line-height: 1.6;
}
section.dark .section-sub, section.carbon .section-sub { color: var(--muted-on-dark); }

.section-foot {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== HOME: ABOUT TEASER ===== */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--steel);
}
.about-teaser-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.about-teaser-image:hover img { transform: scale(1.04); }
.about-teaser-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.image-tag {
  position: absolute;
  bottom: 28px; left: 28px;
  z-index: 2;
  padding: 14px 20px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: white;
}
.image-tag .label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.image-tag .value { font-size: 15px; font-weight: 600; }

.about-teaser-text p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 22px;
  line-height: 1.7;
}
.about-teaser-text p.lead {
  font-size: 22px;
  color: var(--black);
  font-weight: 500;
  line-height: 1.45;
}

/* ===== ABOUT PAGE: FOUNDER ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--steel);
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.about-text p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 22px;
  line-height: 1.7;
}
.about-text p:first-of-type {
  font-size: 22px;
  color: var(--black);
  font-weight: 500;
  line-height: 1.45;
}
.signature {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 20px;
}
.signature-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.signature-name { font-weight: 700; color: var(--black); font-size: 17px; }
.signature-title { font-size: 14px; color: var(--gray-500); margin-top: 2px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--carbon);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card-image {
  margin: -44px -36px 28px -36px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--steel);
  position: relative;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.02);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.service-card:hover .service-card-image img {
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.06);
}
.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--orange-soft) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover { background: var(--steel); }
.service-card:hover::before { opacity: 1; }
.service-card-num {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.service-card-num .total { color: var(--gray-500); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--orange-soft);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: white;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--muted-on-dark);
  font-size: 15px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.service-arrow {
  margin-top: 28px;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.service-card:hover .service-arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: rotate(-45deg);
}

/* ===== REGIONS ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.region-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--carbon);
  cursor: pointer;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
  display: block;
}
.region-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1s ease, filter 0.5s ease;
  filter: grayscale(0.4);
}
.region-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}
.region-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.region-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  align-self: flex-start;
}
.region-card h3 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.region-card .region-desc {
  color: var(--text-on-dark);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
  opacity: 0.85;
}
.region-locales { display: flex; flex-wrap: wrap; gap: 6px; }
.region-locales span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--text-on-dark);
}

/* ===== CAPABILITIES ===== */
.caps-list { display: grid; gap: 0; }
.cap-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  transition: padding 0.3s ease;
}
.cap-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.cap-row:hover { padding-left: 16px; }
.cap-num {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--orange);
  font-weight: 700;
  padding-top: 6px;
}
.cap-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.cap-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}
.cap-tag {
  text-align: right;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 8px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}
.cta-banner.no-photo::before {
  background:
    radial-gradient(ellipse at 15% 70%, var(--orange-soft) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(255,90,31,0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 100%);
}
.cta-banner.no-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-header.no-photo .page-header-bg::before {
  background:
    radial-gradient(ellipse at 20% 80%, var(--orange-soft) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255,90,31,0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.95) 100%);
}
.hero.no-photo .hero-bg::before {
  background:
    radial-gradient(ellipse at 20% 70%, var(--orange-soft) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(255,90,31,0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.65) 100%);
}
.region-card.no-photo {
  background: linear-gradient(135deg, var(--steel) 0%, var(--carbon) 100%);
}
.region-card.no-photo::before {
  background:
    radial-gradient(ellipse at 30% 30%, var(--orange-soft) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0.18) 0%, rgba(10,10,10,0.88) 100%);
}
.about-teaser-image.no-photo,
.about-image-wrap.no-photo {
  background:
    radial-gradient(ellipse at 30% 70%, var(--orange-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--carbon) 0%, var(--black) 100%);
}
.contact-image.no-photo {
  background:
    radial-gradient(ellipse at 50% 30%, var(--orange-soft) 0%, transparent 55%),
    linear-gradient(135deg, var(--carbon) 0%, var(--black) 100%);
}
.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(0.5) contrast(1.05);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 100%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 96px 64px;
  color: white;
  max-width: 720px;
}
.cta-content h3 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-content p {
  color: var(--text-on-dark);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ===== CERTIFICATIONS ===== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cert-card {
  background: var(--black);
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cert-card:hover { background: var(--steel); }
.cert-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cert-card:hover::before { transform: scaleX(1); }
.cert-code {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.cert-name {
  font-size: 14px;
  color: var(--text-on-dark);
  line-height: 1.4;
  font-weight: 500;
}
.safety-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.safety-stat {
  background: var(--black);
  padding: 44px 32px;
  text-align: center;
}
.safety-stat-num {
  font-family: 'Space Mono', monospace;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.safety-stat-label {
  font-size: 12px;
  color: var(--text-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-wrap {
  background: var(--black);
  color: white;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-image {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  min-height: 600px;
}
.contact-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}
.contact-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(10,10,10,0.6) 100%);
}
.contact-image-tag {
  position: absolute;
  top: 32px; left: 32px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-image-tag .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
.contact-form-wrap { padding: 64px 56px; }
.contact-form-wrap h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.contact-form-wrap > p {
  color: var(--muted-on-dark);
  font-size: 15px;
  margin-bottom: 36px;
}
.channels {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.channel-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.channel a, .channel-value {
  color: white;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.channel a:hover { color: var(--orange); }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--carbon);
  color: white;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--steel);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--gray-500); }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--orange-bright);
  box-shadow: 0 12px 28px var(--orange-glow);
}
.form-submit svg { transition: transform 0.25s; }
.form-submit:hover svg { transform: translateX(4px); }

/* ===== FOOTER ===== */
footer.site-footer {
  background: #050505;
  color: var(--muted-on-dark);
  padding: 100px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.footer-brand p {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.65;
  max-width: 360px;
  color: var(--muted-on-dark);
}
.footer-col h4 {
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  color: var(--muted-on-dark);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col li.muted { color: var(--muted-on-dark); font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-500);
}
.footer-bottom .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-on-dark);
}
.footer-bottom .badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e80;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cap-row { grid-template-columns: 60px 1fr 2fr; }
  .cap-tag { display: none; }
}
@media (max-width: 760px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px 32px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero-stat { padding: 0 16px; border-right: 1px solid var(--line); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { padding-left: 0; }
  .page-header { padding: 130px 0 70px; }
  .about-grid, .about-teaser, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 40px 28px; }
  .contact-image { min-height: 320px; aspect-ratio: 16/10; }
  .services-grid, .regions-grid, .certs-grid { grid-template-columns: 1fr; }
  .safety-band { grid-template-columns: 1fr; }
  .cap-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .cap-desc { grid-column: 1 / -1; padding-left: 56px; }
  .cap-row:hover { padding-left: 0; }
  .cta-content { padding: 56px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
  .section-head { margin-bottom: 48px; }
  .marquee-track { gap: 40px; }
  .marquee-item { gap: 40px; font-size: 11px; }
}
