*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0e0b06;
  --bg2:     #16110a;
  --bg3:     #1e1608;
  --orange:  #FF7A00;
  --orange2: #e06800;
  --orange3: #ff9a3c;
  --steel:   #C4A882;
  --silver:  #F4EFE8;
  --white:   #FFFFFF;
  --amber:   #FFB347;
  --dim:     rgba(244,239,232,0.55);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--silver); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  background: #0a0804;
  border-bottom: 1px solid rgba(255,122,0,0.15);
  padding: 6px 5vw;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--steel);
}
.topbar a { color: var(--steel); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--orange); }
.topbar-left, .topbar-right { display: flex; gap: 1.6rem; align-items: center; }
.topbar-right a svg { width: 14px; height: 14px; fill: currentColor; }
.topbar-social { display: flex; gap: 0.8rem; }
.topbar-social a { display: flex; align-items: center; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: stretch; justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  background: rgba(14,11,6,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,122,0,0.12);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img-wrap {
  background: #fff;
  padding: 8px 14px;
  display: flex; align-items: center;
  border-radius: 4px;
}
.logo-img-wrap img { height: 38px; width: auto; display: block; }

/* Nav menu */
.nav-menu { display: flex; align-items: stretch; list-style: none; gap: 0; }
.nav-menu > li { position: relative; display: flex; align-items: stretch; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 0 1.1rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--steel);
  text-decoration: none; transition: color 0.2s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-menu > li > a:hover,
.nav-menu > li:hover > a,
.nav-menu > li > a.current { color: var(--orange); border-bottom-color: var(--orange); }
.nav-menu > li > a .chevron {
  display: inline-block; width: 10px; height: 6px;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s; margin-top: 1px;
}
.nav-menu > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown base */
.dropdown, .megamenu {
  position: absolute; top: 100%; left: 0;
  background: #12100a;
  border: 1px solid rgba(255,122,0,0.18);
  border-top: 2px solid var(--orange);
  min-width: 240px;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s, transform 0.22s;
  z-index: 300;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.nav-menu > li:hover .dropdown,
.nav-menu > li:hover .megamenu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}

.dropdown a {
  display: block; padding: 0.7rem 1.4rem;
  font-size: 0.83rem; color: var(--steel);
  text-decoration: none; transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: rgba(255,122,0,0.08); color: var(--orange); padding-left: 1.8rem; }

/* Megamenu */
.megamenu {
  left: -120px; width: 620px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
}
.mega-col { padding: 1.6rem 1.6rem; }
.mega-col:first-child { border-right: 1px solid rgba(255,122,0,0.1); }
.mega-col h6 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,122,0,0.15);
}
.mega-link {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 0.6rem 0; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.15s;
}
.mega-link:last-child { border-bottom: none; }
.mega-link:hover { padding-left: 6px; }
.mega-link-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,122,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-top: 1px;
}
.mega-link-icon svg { width: 16px; height: 16px; }
.mega-link-text strong {
  display: block; font-size: 0.82rem; color: var(--white);
  font-weight: 600; margin-bottom: 2px;
  transition: color 0.15s;
}
.mega-link:hover .mega-link-text strong { color: var(--orange); }
.mega-link-text span { font-size: 0.74rem; color: var(--steel); line-height: 1.4; }

.nav-cta {
  display: flex; align-items: center; margin-left: 1rem; flex-shrink: 0;
}
.nav-cta a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 10px 22px;
  background: var(--orange); color: #fff;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta a:hover { background: var(--orange2); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--silver); transition: all 0.3s; }

/* Mobile nav hidden by default on desktop */
.mobile-nav { display: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  padding: 80px 5vw 60px;
  background:
    linear-gradient(to bottom, rgba(14,11,6,0.75) 0%, rgba(14,11,6,0.6) 50%, rgba(14,11,6,0.85) 100%),
    url('images/x1.jpg') center/cover no-repeat fixed;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
@media(max-width:860px){ .hero-grid { grid-template-columns: 1fr; } }

#circuit-canvas {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.22em; color: var(--orange);
  text-transform: uppercase; display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--orange); }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 0.95; letter-spacing: -0.01em; color: var(--white);
  text-transform: uppercase; margin-bottom: 1.4rem;
}
h1 .accent { color: var(--orange); }
h1 .thin { font-weight: 300; color: rgba(244,239,232,0.7); }

.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--steel);
  max-width: 480px; line-height: 1.75; margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 15px 34px;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,122,0,0.45); }
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 34px;
  background: transparent; color: var(--silver);
  border: 1.5px solid rgba(244,239,232,0.3);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); margin-top: 3px; }

/* Hero right panel */
.hero-panel {
  background: rgba(14,11,6,0.7);
  border: 1px solid rgba(255,122,0,0.2);
  backdrop-filter: blur(12px);
  padding: 2rem;
}
.hero-panel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); margin-bottom: 1.2rem;
  padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255,122,0,0.2);
}
.quick-links { display: flex; flex-direction: column; gap: 0; }
.quick-link {
  display: flex; align-items: center; gap: 12px;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; transition: padding-left 0.2s;
}
.quick-link:last-child { border-bottom: none; }
.quick-link:hover { padding-left: 8px; }
.ql-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,122,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.ql-icon svg { width: 18px; height: 18px; }
.ql-text strong { display: block; font-size: 0.88rem; color: var(--white); font-weight: 600; }
.ql-text span { font-size: 0.76rem; color: var(--steel); }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section { padding: 100px 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.22em; color: var(--orange);
  text-transform: uppercase; display: flex; align-items: center; gap: 10px;
  margin-bottom: 0.9rem;
}
.section-label::after { content: ''; flex: 1; max-width: 50px; height: 1px; background: var(--orange); opacity: 0.5; }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 800;
  text-transform: uppercase; color: var(--white); line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════
   ABOUT STRIP
══════════════════════════════════════ */
#about { background: var(--bg2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
@media(max-width:800px){ .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-text p { font-size: 0.95rem; color: var(--steel); line-height: 1.8; margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.6rem; }
.chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.67rem; letter-spacing: 0.1em;
  padding: 5px 12px; border: 1px solid rgba(255,122,0,0.3);
  color: var(--orange); text-transform: uppercase;
}
.about-cards { display: flex; flex-direction: column; gap: 1px; background: rgba(255,122,0,0.08); }
.about-card {
  background: var(--bg2); padding: 1.6rem 1.8rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: background 0.2s;
}
.about-card:hover { background: #1e1608; }
.about-card-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(255,122,0,0.1); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.about-card-icon svg { width: 20px; height: 20px; }
.about-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 3px; }
.about-card p { font-size: 0.82rem; color: var(--steel); line-height: 1.6; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { background: var(--bg); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 4rem;
}
@media(max-width:700px){ .services-header { grid-template-columns: 1fr; } }
.services-intro { font-size: 0.95rem; color: var(--steel); line-height: 1.75; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px; background: rgba(255,122,0,0.07);
}
.service-card {
  background: var(--bg); padding: 2.4rem 2rem;
  position: relative; overflow: hidden; transition: background 0.25s;
}
.service-card:hover { background: #1a1208; }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.2rem; color: var(--orange); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; letter-spacing: 0.02em;
}
.service-card p { font-size: 0.85rem; color: var(--steel); line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.1rem; }
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; padding: 4px 10px;
  border: 1px solid rgba(255,122,0,0.25); color: var(--orange); text-transform: uppercase;
}
.service-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 1.2rem; font-size: 0.8rem; font-weight: 600;
  color: var(--orange); text-decoration: none; letter-spacing: 0.05em;
  text-transform: uppercase; transition: gap 0.2s;
}
.service-more:hover { gap: 10px; }

/* ══════════════════════════════════════
   PARALAX 1 — CAPABILITIES BANNER
══════════════════════════════════════ */
.paralax-1 {
  min-height: 420px;
  display: flex; align-items: center;
  background:
    linear-gradient(to right, rgba(14,11,6,0.88) 0%, rgba(14,11,6,0.55) 60%, rgba(14,11,6,0.3) 100%),
    url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1800&q=80') center/cover no-repeat fixed;
  position: relative; overflow: hidden;
}
.paralax-content { padding: 80px 5vw; max-width: 1200px; margin: 0 auto; width: 100%; }
.paralax-1 h2 { margin-bottom: 1rem; }
.paralax-1 p { font-size: 1rem; color: var(--steel); max-width: 560px; margin-bottom: 2rem; }
.stats-row { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid rgba(255,122,0,0.2); }
.big-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem; font-weight: 800; color: var(--orange); line-height: 1;
}
.big-stat .lbl { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); margin-top: 4px; }

/* ══════════════════════════════════════
   CAPABILITIES
══════════════════════════════════════ */
#capabilities { background: var(--bg2); }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
@media(max-width:800px){ .cap-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.cap-list { display: flex; flex-direction: column; }
.cap-item {
  display: grid; grid-template-columns: 50px 1fr; gap: 1rem;
  padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cap-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.cap-num { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--orange); padding-top: 3px; }
.cap-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.cap-desc { font-size: 0.84rem; color: var(--steel); line-height: 1.65; }
.spec-panel {
  background: #0e0b06; border: 1px solid rgba(255,122,0,0.12); padding: 2.2rem;
  position: sticky; top: 90px;
}
.spec-panel h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel);
  margin-bottom: 1.4rem; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255,122,0,0.15);
}
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.84rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--steel); }
.spec-val { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--white); }
.spec-val.good { color: var(--orange3); }

/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
#industries { background: var(--bg); }
.ind-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1.5px; background: rgba(255,122,0,0.07); margin-top: 3.5rem;
}
.ind-card {
  background: var(--bg); padding: 2rem 1.4rem; text-align: center;
  transition: background 0.2s; cursor: default;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
}
.ind-card:hover { background: #1a1208; }
.ind-icon { width: 52px; height: 52px; color: var(--orange); }
.ind-card h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700;
  text-transform: uppercase; color: var(--white); letter-spacing: 0.04em;
}
.ind-card p { font-size: 0.78rem; color: var(--steel); line-height: 1.5; }

/* ══════════════════════════════════════
   PARALAX 2 — PRODUCTS / OEM
══════════════════════════════════════ */
.paralax-2 {
  min-height: 460px;
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(14,11,6,0.92) 0%, rgba(14,11,6,0.6) 100%),
    url('https://images.unsplash.com/photo-1562408590-e32931084e23?w=1800&q=80') center/cover no-repeat fixed;
}
.paralax-2 .paralax-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:800px){ .paralax-2 .paralax-content { grid-template-columns: 1fr; } }
.oem-products { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,122,0,0.1); }
.oem-item { background: rgba(14,11,6,0.85); padding: 1.2rem; transition: background 0.2s; }
.oem-item:hover { background: rgba(255,122,0,0.08); }
.oem-item h5 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; color: var(--white); margin-bottom: 3px;
}
.oem-item p { font-size: 0.76rem; color: var(--steel); line-height: 1.4; }
.oem-dot { width: 8px; height: 8px; background: var(--orange); display: inline-block; margin-right: 8px; vertical-align: middle; }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
#process { background: var(--bg2); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0; margin-top: 4rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 34px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,0,0.3) 20%, rgba(255,122,0,0.3) 80%, transparent);
}
.step { padding: 0 1.4rem 2rem; text-align: center; }
.step-circle {
  width: 68px; height: 68px; border-radius: 50%;
  border: 1.5px solid rgba(255,122,0,0.35);
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem; position: relative; z-index: 1;
  font-family: 'JetBrains Mono', monospace; font-size: 0.88rem; color: var(--orange);
  transition: border-color 0.2s, background 0.2s;
}
.step:hover .step-circle { border-color: var(--orange); background: rgba(255,122,0,0.08); }
.step h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 0.4rem; }
.step p { font-size: 0.8rem; color: var(--steel); line-height: 1.6; }

/* ══════════════════════════════════════
   VISION / MISSION
══════════════════════════════════════ */
#vision { background: var(--bg); padding: 0; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media(max-width:700px){ .vision-grid { grid-template-columns: 1fr; } }
.vision-pane { padding: 80px 5vw; }
.vision-pane:first-child { background: var(--bg3); border-right: 1px solid rgba(255,122,0,0.1); }
.vision-pane:last-child { background: var(--bg2); }
.vm-icon { width: 56px; height: 56px; color: var(--orange); margin-bottom: 1.4rem; }
.vision-pane h2 { margin-bottom: 1.2rem; }
.vision-pane p { font-size: 0.92rem; color: var(--steel); line-height: 1.8; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials { background: var(--bg2); }
.testi-carousel { margin-top: 3.5rem; overflow: hidden; }
.testi-track {
  display: flex; width: 100%;
  transition: transform 0.5s ease;
}
.testi-slide { min-width: 100%; flex-shrink: 0; }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px; background: rgba(255,122,0,0.07);
}
.testi-card { background: var(--bg2); padding: 2rem 1.8rem; transition: background 0.2s; }
.testi-card:hover { background: #1e1608; }
.testi-stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testi-card blockquote {
  font-size: 0.88rem; color: var(--silver); line-height: 1.75;
  font-style: italic; margin-bottom: 1.2rem;
  min-height: 110px;
}
.testi-card blockquote::before { content: '"'; font-size: 2rem; color: var(--orange); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testi-author strong { display: block; font-size: 0.88rem; color: var(--white); font-weight: 600; }
.testi-author span { font-size: 0.76rem; color: var(--steel); }

/* Carousel controls */
.testi-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem; margin-top: 2.2rem;
}
.testi-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,122,0,0.3); background: transparent;
  color: var(--orange); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.testi-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.testi-dots { display: flex; gap: 10px; }
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,122,0,0.25); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testi-dot.active { background: var(--orange); transform: scale(1.2); }

@media(max-width:700px){
  .testi-card blockquote { min-height: 0; }
}

/* ══════════════════════════════════════
   PARALAX 3 — LOCATION BANNER
══════════════════════════════════════ */
.paralax-3 {
  min-height: 380px;
  display: flex; align-items: center;
  background:
    linear-gradient(to bottom, rgba(14,11,6,0.8) 0%, rgba(14,11,6,0.7) 100%),
    url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1800&q=80') center/cover no-repeat fixed;
}
.paralax-3 .paralax-content { text-align: center; }
.paralax-3 h2 { margin-bottom: 1rem; }
.paralax-3 p { font-size: 1rem; color: var(--steel); max-width: 640px; margin: 0 auto 2rem; }
.location-cards { display: flex; gap: 1.5px; flex-wrap: wrap; justify-content: center; background: rgba(255,122,0,0.06); margin-top: 2.4rem; }
.loc-card { background: rgba(14,11,6,0.85); padding: 1.8rem 2rem; flex: 1; min-width: 220px; max-width: 340px; }
.loc-card h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; }
.loc-card p { font-size: 0.82rem; color: var(--steel); line-height: 1.6; }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
#cta {
  text-align: center; padding: 120px 5vw;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,122,0,0.07) 0%, transparent 70%),
    var(--bg3);
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,6,0.3) 0%, transparent 50%, rgba(14,11,6,0.3) 100%);
}
#cta > * { position: relative; z-index: 1; }
#cta h2 { margin-bottom: 1rem; }
#cta p { color: var(--steel); margin-bottom: 2.4rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════ */
#contact { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; }
@media(max-width:800px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(255,122,0,0.1); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 0.84rem; color: var(--steel); text-decoration: none; line-height: 1.6; }
.contact-item a:hover { color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:500px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,122,0,0.18);
  color: var(--silver); padding: 12px 14px; font-family: 'Inter', sans-serif;
  font-size: 0.88rem; outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #1a1208; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #080604; padding: 60px 5vw 30px;
  border-top: 1px solid rgba(255,122,0,0.1);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.83rem; color: var(--steel); line-height: 1.7; margin-top: 0.8rem; max-width: 280px; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.82rem; color: var(--steel); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,122,0,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); transition: all 0.2s; text-decoration: none;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,122,0,0.08); }
.footer-social a svg { width: 14px; height: 14px; fill: currentColor; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.74rem; color: rgba(196,168,130,0.45); flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4); transition: transform 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════════════════════════════
   REVEAL
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════ */
@media(max-width:960px){
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: block;
    position: fixed; inset: 0; top: 70px;
    background: rgba(10,8,4,0.98); z-index: 150;
    padding: 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.3s;
  }
  .mobile-nav.open { transform: none; }
  .mobile-nav a {
    display: block; padding: 0.9rem 0; color: var(--silver); text-decoration: none;
    font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--orange); }
  .mobile-nav .m-sub a { padding-left: 1rem; font-size: 0.9rem; color: var(--steel); }
}

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--steel); flex-wrap: wrap; }
.breadcrumb a { color: var(--steel); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(244,239,232,0.3); }
.breadcrumb .current { color: var(--orange); }

/* ══════════════════════════════════════
   INNER HERO (sub-page banner)
══════════════════════════════════════ */
.inner-hero {
  position: relative;
  padding: 150px 5vw 80px;
  background:
    linear-gradient(180deg, rgba(14,11,6,0.55) 0%, var(--bg) 92%),
    radial-gradient(ellipse at 15% 0%, rgba(255,122,0,0.14), transparent 55%);
  border-bottom: 1px solid rgba(255,122,0,0.12);
  overflow: hidden;
}
.inner-hero-grid { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.inner-hero h1 { margin-top: 1.2rem; max-width: 900px; }
.inner-hero-sub { font-size: 1rem; font-weight: 300; color: var(--steel); max-width: 620px; line-height: 1.75; margin-top: 1rem; margin-bottom: 1.8rem; }
.inner-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.inner-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FEATURE GRID (used on capability / industry / service pages)
══════════════════════════════════════ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,122,0,0.08); margin-top: 3rem; }
@media(max-width:900px){ .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px){ .feature-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--bg); padding: 2.2rem 1.8rem; transition: background 0.2s; }
.feature-card:hover { background: #1a1208; }
.f-icon { width: 40px; height: 40px; color: var(--orange); margin-bottom: 1.2rem; }
.feature-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.08rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.feature-card p { font-size: 0.84rem; color: var(--steel); line-height: 1.65; }

/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; margin-top: 3rem; max-width: 880px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 0.2rem; cursor: pointer; }
.faq-q h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 600; text-transform: none; color: var(--white); letter-spacing: 0; }
.faq-plus { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.2rem; font-weight: 300; transition: transform 0.25s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.faq-a p { font-size: 0.86rem; color: var(--steel); line-height: 1.7; max-width: 760px; }

/* ══════════════════════════════════════
   QUICK CONTACT SECTION
══════════════════════════════════════ */
.qc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; margin-top: 2.5rem; }
@media(max-width:800px){ .qc-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.qc-text p { font-size: 0.95rem; color: var(--steel); line-height: 1.8; margin-bottom: 1.6rem; max-width: 480px; }
.qc-box { background: rgba(14,11,6,0.7); border: 1px solid rgba(255,122,0,0.2); padding: 1.8rem; display: flex; flex-direction: column; gap: 1.4rem; }
.qc-row { display: flex; gap: 1rem; align-items: flex-start; }
.qc-row h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 3px; }
.qc-row a, .qc-row p { font-size: 0.84rem; color: var(--steel); text-decoration: none; line-height: 1.6; }
.qc-row a:hover { color: var(--orange); }

/* ══════════════════════════════════════
   MISC SECTION BACKGROUND HELPERS
══════════════════════════════════════ */
.overview-section, .services-section, .capabilities-section,
.process-section, .faq-section, .quick-contact-section { }
