:root {
  --white: #ffffff;
  --snow: #f8f9fb;
  --cloud: #eef1f6;
  --silver: #dde2ec;
  --mist: #c4ccd9;
  --fog: #96a3b8;
  --slate: #5c6b82;
  --ink: #2c3544;
  --deep: #141b27;
  --black: #080c13;
  --gold: #c47c1a;
  --gold-lt: #f5a623;
  --gold-bg: #fdf4e7;
  --blue: #1a5fa8;
  --blue-lt: #2d7dd2;
  --blue-bg: #eaf3fc;
  --red: #b52b2b;
  --green: #1a7a4a;
  --mono: 'JetBrains Mono', monospace;
  --display: 'Bebas Neue', sans-serif;
  --cond: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cloud); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ====== NAV ====== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 70px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--silver);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 38px; width: auto; max-width: 180px; display: block; object-fit: contain; }
.nav-logo-name {
  font-family: var(--display);
  font-size: 26px; letter-spacing: 3px;
  color: var(--deep);
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-divider { width: 1px; height: 28px; background: var(--silver); }
.nav-logo-sub {
  font-family: var(--cond); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--fog);
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--cond); font-size: 14px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--deep); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--deep); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--cond); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white) !important; background: var(--deep);
  padding: 11px 28px; text-decoration: none;
  border: 2px solid var(--deep);
  transition: all 0.2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--ink); transition: 0.3s; }

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  padding: 140px 56px 80px;
  background: var(--deep);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(196,124,26,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(26,95,168,0.1) 0%, transparent 50%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .hero-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px;
  color: var(--gold-lt); text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-lt); }
.page-hero h1 {
  font-family: var(--display); font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95; letter-spacing: 4px; color: #fff; margin-bottom: 20px;
}
.page-hero h1 .gold { color: var(--gold-lt); }
.page-hero h1 .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
  color: transparent;
}
.page-hero p {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65);
  max-width: 560px; line-height: 1.85;
}

/* ====== HOME HERO ====== */
#home {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; padding-top: 70px;
  overflow: hidden;
}
.hero-left {
  padding: 80px 56px 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--deep);
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(196,124,26,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(26,95,168,0.1) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px;
  color: var(--gold-lt); text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-lt); }
.hero-h1 {
  font-family: var(--display); font-size: clamp(56px, 7vw, 100px);
  line-height: 0.93; letter-spacing: 4px; color: #fff; margin-bottom: 28px;
}
.hero-h1 .gold { color: var(--gold-lt); }
.hero-h1 .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
  color: transparent;
}
.hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65);
  max-width: 420px; line-height: 1.85; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--deep); background: var(--gold-lt);
  padding: 15px 32px; text-decoration: none;
  transition: all 0.2s; border: 2px solid var(--gold-lt);
}
.btn-gold:hover { background: #fff; border-color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25);
  padding: 15px 32px; text-decoration: none; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px; gap: 0;
}
.hero-stat { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.hero-stat:nth-child(2) { padding-left: 24px; }
.hero-stat-num {
  font-family: var(--display); font-size: 44px; letter-spacing: 2px;
  color: #fff; line-height: 1;
}
.hero-stat-num sup { color: var(--gold-lt); font-size: 24px; }
.hero-stat-label {
  font-family: var(--cond); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* HERO RIGHT */
.hero-right {
  position: relative; overflow: hidden; background: var(--cloud);
  display: flex; flex-direction: column;
}
.hero-image-main { flex: 1; position: relative; overflow: hidden; }
.hero-image-strip {
  height: 120px; background: var(--silver);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--silver);
}
.strip-cell {
  position: relative; overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.5);
}
.strip-cell:last-child { border-right: none; }
.strip-label {
  position: absolute; bottom: 10px; left: 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
  color: var(--slate); text-transform: uppercase;
  z-index: 2;
}

/* ====== TICKER ====== */
.ticker {
  background: var(--deep); color: var(--gold-lt);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; }
.ticker-item {
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; padding: 0 36px;
}
.ticker-dot { color: rgba(245,166,35,0.35); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ====== SECTION COMMONS ====== */
section { position: relative; }
.section-pad { padding: 96px 56px; }
.section-pad-sm { padding: 72px 56px; }
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: var(--display); font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 2px; color: var(--deep); line-height: 1;
}
.section-h2 .muted { color: var(--mist); }
.section-lead { font-size: 16px; color: var(--slate); max-width: 480px; margin-top: 14px; }
.divider { height: 1px; background: var(--cloud); }

/* ====== CAPABILITIES ====== */
.cap-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 56px;
}
.cap-visual { position: relative; height: 480px; overflow: hidden; border-radius: 2px; }
.cap-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--silver);
  border: 1px solid var(--silver);
}
.cap-card {
  background: var(--white); padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.cap-card:hover { background: var(--snow); }
.cap-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.35s;
}
.cap-card:hover::after { height: 100%; }
.cap-num {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  color: var(--mist); margin-bottom: 14px;
}
.cap-title {
  font-family: var(--cond); font-size: 17px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--deep); margin-bottom: 10px;
}
.cap-desc { font-size: 13px; color: var(--slate); line-height: 1.8; }
.cap-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px;
  color: var(--gold); border: 1px solid rgba(196,124,26,0.3);
  background: var(--gold-bg); padding: 3px 8px; text-transform: uppercase;
}

/* ====== ABOUT ====== */
.about-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 72px; align-items: start; margin-top: 56px;
}
.about-text h3 {
  font-family: var(--cond); font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin: 28px 0 10px;
}
.about-text h3:first-child { margin-top: 0; }
.about-text p { font-size: 15px; color: var(--slate); line-height: 1.9; margin-bottom: 12px; }
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-photo {
  position: relative; height: 360px; border-radius: 2px; overflow: hidden;
  margin-bottom: 24px;
}
.timeline { border-left: 2px solid var(--cloud); padding-left: 24px; margin-top: 0; }
.tl-item { margin-bottom: 28px; position: relative; }
.tl-item::before {
  content: ''; position: absolute; left: -29px; top: 6px;
  width: 10px; height: 10px; background: var(--gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.tl-year { font-family: var(--mono); font-size: 10px; color: var(--gold); letter-spacing: 2px; margin-bottom: 3px; }
.tl-title { font-family: var(--cond); font-size: 15px; font-weight: 700; color: var(--deep); letter-spacing: 1px; text-transform: uppercase; }
.tl-desc { font-size: 13px; color: var(--fog); margin-top: 3px; }
.cert-bar {
  background: var(--deep); color: #fff;
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
}
.cert-bar-text { font-family: var(--cond); font-size: 14px; font-weight: 600; letter-spacing: 1px; }
.cert-bar-text small { display: block; font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 2px; font-weight: 400; }
.cert-badge-pill {
  margin-left: auto; font-family: var(--mono); font-size: 9px;
  letter-spacing: 2px; color: var(--gold-lt);
  border: 1px solid var(--gold); padding: 4px 12px; text-transform: uppercase;
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--silver); border: 1px solid var(--silver);
  margin-top: 20px;
}
.val-card { background: var(--white); padding: 20px; }
.val-title {
  font-family: var(--cond); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.val-card p { font-size: 13px; color: var(--slate); line-height: 1.7; }

/* ====== FACILITIES ====== */
.fac-hero { position: relative; height: 420px; overflow: hidden; margin: 56px 0 0; border: 1px solid var(--silver); }
.fac-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,12,19,0.82) 0%, rgba(8,12,19,0.3) 60%, transparent 100%);
  z-index: 1; display: flex; align-items: center; padding: 48px;
}
.fac-hero-content { z-index: 2; color: #fff; }
.fac-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 12px;
}
.fac-h3 {
  font-family: var(--display); font-size: 52px; letter-spacing: 3px;
  color: #fff; line-height: 1; margin-bottom: 12px;
}
.fac-size {
  font-family: var(--cond); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.6); letter-spacing: 2px; text-transform: uppercase;
}
.fac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--silver); border: 1px solid var(--silver); border-top: none; }
.fac-card { background: var(--white); padding: 28px; transition: background 0.2s; }
.fac-card:hover { background: var(--snow); }
.fac-card-title { font-family: var(--cond); font-size: 16px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--deep); margin-bottom: 10px; }
.fac-card p { font-size: 13px; color: var(--slate); line-height: 1.8; }
.fac-card .cap-tags { margin-top: 14px; }
.coming-soon-bar {
  background: var(--gold-bg); border: 1px solid rgba(196,124,26,0.25);
  padding: 12px 20px; display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; margin-top: 12px;
}
.fac-secondary {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--silver); border: 1px solid var(--silver); border-top: none;
}
.fac-sec-card { background: var(--snow); padding: 32px; }
.fac-sec-photo { height: 200px; overflow: hidden; margin-bottom: 20px; border-radius: 2px; }
.fac-sec-title { font-family: var(--cond); font-size: 18px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--deep); margin-bottom: 10px; }
.fac-sec-card p { font-size: 14px; color: var(--slate); line-height: 1.8; }

/* ====== INDUSTRIES ====== */
.ind-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.ind-card {
  background: var(--white); border: 1px solid var(--silver);
  overflow: hidden; transition: box-shadow 0.25s, transform 0.25s;
}
.ind-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
.ind-photo { height: 200px; overflow: hidden; position: relative; }
.ind-body { padding: 24px; }
.ind-name {
  font-family: var(--cond); font-size: 20px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--deep);
  margin-bottom: 10px;
}
.ind-desc { font-size: 13px; color: var(--slate); line-height: 1.8; }
.ind-clients {
  margin-top: 14px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 1px; color: var(--fog);
}
.ind-clients strong { color: var(--gold); display: block; margin-bottom: 3px; font-family: var(--cond); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

/* ====== WHY US ====== */
.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 56px; align-items: start;
}
.why-eyebrow { color: var(--gold-lt) !important; }
.why-eyebrow::before { background: var(--gold-lt) !important; }
.why-h2 { color: #fff !important; }
.why-h2 .muted { color: rgba(255,255,255,0.25) !important; }
.why-point {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-point:last-child { border-bottom: none; }
.why-num { font-family: var(--mono); font-size: 10px; color: var(--gold-lt); letter-spacing: 2px; min-width: 30px; padding-top: 2px; }
.why-title { font-family: var(--cond); font-size: 16px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.why-visual-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.why-cell { background: rgba(255,255,255,0.04); padding: 32px 24px; }
.why-cell.gold-cell { background: var(--gold); }
.why-cell.gold-cell .wc-num, .why-cell.gold-cell .wc-label { color: var(--deep); }
.wc-num { font-family: var(--display); font-size: 48px; letter-spacing: 2px; color: #fff; line-height: 1; }
.wc-label { font-family: var(--cond); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.4; }
.why-full { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.08); padding: 24px; }
.why-certs { display: flex; gap: 20px; flex-wrap: wrap; }
.why-cert { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--gold-lt); border: 1px solid rgba(245,166,35,0.3); padding: 6px 14px; }

/* ====== CAREERS ====== */
.careers-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; }
.careers-left p { font-size: 15px; color: var(--slate); line-height: 1.9; margin-bottom: 14px; }
.careers-left p strong { color: var(--ink); }
.openings { display: flex; flex-direction: column; gap: 1px; background: var(--silver); border: 1px solid var(--silver); }
.opening {
  background: var(--white); padding: 18px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: background 0.2s; cursor: default;
}
.opening:hover { background: var(--snow); }
.opening-role { font-family: var(--cond); font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--deep); }
.opening-dept { font-family: var(--mono); font-size: 10px; color: var(--fog); letter-spacing: 1.5px; margin-top: 2px; }
.opening-pill {
  margin-left: auto; font-family: var(--mono); font-size: 9px;
  letter-spacing: 2px; color: var(--green); border: 1px solid rgba(26,122,74,0.3);
  background: #f0faf5; padding: 3px 10px; text-transform: uppercase;
}

/* ====== CONTACT ====== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; margin-top: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-block { background: var(--white); border: 1px solid var(--silver); padding: 22px; }
.contact-block-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--fog); margin-bottom: 8px; }
.contact-block-value { font-family: var(--cond); font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.6; }
.contact-block-value a { color: var(--blue); text-decoration: none; }
.contact-block-value a:hover { text-decoration: underline; }
.contact-highlight { background: var(--deep) !important; border-color: var(--deep) !important; }
.contact-highlight .contact-block-label { color: rgba(255,255,255,0.45) !important; }
.contact-highlight .contact-block-value { color: rgba(255,255,255,0.85) !important; font-size: 13px !important; font-family: var(--body) !important; font-weight: 300 !important; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--silver); padding: 40px; }
.contact-form-wrap h3 { font-family: var(--cond); font-size: 22px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--deep); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--fog); }
.form-input, .form-select, .form-textarea {
  background: var(--snow); border: 1px solid var(--silver);
  color: var(--ink); font-family: var(--body); font-size: 14px;
  padding: 11px 14px; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; font-family: var(--cond); font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
  background: var(--deep); border: 2px solid var(--deep); padding: 16px;
  cursor: pointer; transition: all 0.2s; margin-top: 6px;
}
.form-submit:hover { background: var(--gold); border-color: var(--gold); }

/* ====== FOOTER ====== */
footer { background: var(--deep); color: #ffffff; padding: 60px 56px 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo-img { height: 36px; width: auto; max-width: 180px; display: block; object-fit: contain; }
.footer-logo span { color: var(--gold-lt); }
.footer-tagline { font-size: 13px; color: #ffffff; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #ffffff; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: #ffffff; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-family: var(--mono); font-size: 10px; color: #ffffff; letter-spacing: 1px; }
.footer-copy strong { color: #ffffff; }

/* ====== ANIMATIONS ====== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ====== HOME PREVIEW CARDS ====== */
.preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.preview-card {
  background: var(--white); border: 1px solid var(--silver);
  padding: 32px; transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none; color: inherit;
}
.preview-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
.preview-card .cap-num { margin-bottom: 12px; }
.preview-card h3 {
  font-family: var(--cond); font-size: 18px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--deep); margin-bottom: 10px;
}
.preview-card p { font-size: 13px; color: var(--slate); line-height: 1.8; }
.preview-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 16px;
}

/* ====== CTA BANNER ====== */
.cta-banner {
  background: var(--gold); padding: 56px; text-align: center;
}
.cta-banner h2 {
  font-family: var(--display); font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 3px; color: var(--deep); margin-bottom: 16px;
}
.cta-banner p {
  font-size: 16px; color: var(--deep); opacity: 0.7;
  max-width: 480px; margin: 0 auto 28px;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff; background: var(--deep);
  padding: 15px 32px; text-decoration: none;
  transition: all 0.2s; border: 2px solid var(--deep);
}
.btn-dark:hover { background: var(--black); border-color: var(--black); transform: translateY(-2px); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #home { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 24px; min-height: 100vh; }
  .page-hero { padding: 120px 24px 60px; }
  .section-pad, .section-pad-sm { padding-left: 24px; padding-right: 24px; }
  .cap-layout, .about-layout, .why-layout, .contact-layout, .careers-layout { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .fac-grid { grid-template-columns: 1fr; }
  .fac-secondary { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  footer { padding: 48px 24px 28px; }
}
@media (max-width: 640px) {
  .preview-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .why-visual-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
}

/* Mobile nav */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  z-index: 999; flex-direction: column; padding: 36px 24px; gap: 0;
  border-top: 1px solid var(--silver);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--cond); font-size: 28px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--deep);
  text-decoration: none; border-bottom: 1px solid var(--cloud);
  padding: 20px 0; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }


/* ====== ENHANCED TEXT VISIBILITY ====== */
body {
  font-size: 17px;
}
.cap-desc, .ind-desc, .fac-card p, .fac-sec-card p, .val-card p, .tl-desc {
  font-size: 15px;
}
.cap-title, .ind-name, .fac-card-title {
  font-size: 20px;
}
.about-text p, .careers-left p {
  font-size: 17px;
}
.hero-sub, .page-hero p, .section-lead {
  font-size: 18px;
}
.nav-links a {
  font-size: 15px;
}
.footer-links a {
  font-size: 15px;
  color: #ffffff;
}
.footer-links a:hover {
  color: #ffffff;
}
.footer-tagline {
  font-size: 15px;
  color: #ffffff;
}
.footer-col h4 {
  font-size: 13px;
  color: #ffffff;
}
.footer-copy {
  font-size: 12px;
  color: #ffffff;
}
.footer-copy strong {
  color: #ffffff;
}
.contact-block-value {
  font-size: 16px;
}
.preview-card h3 {
  font-size: 20px;
}
.preview-card p {
  font-size: 15px;
}
.why-title {
  font-size: 18px;
}
.why-desc {
  font-size: 15px;
}
.ticker-item {
  font-size: 14px;
}
