/* ========================================
   BIMiLY Website — Global Stylesheet
   ======================================== */

/* ---- Variables ---- */
:root {
  --teal:      #1A8A7A;
  --dteal:     #0A463E;
  --lteal:     #28A898;
  --orange:    #E06B20;
  --dark:      #12181C;
  --mid:       #1E2C32;
  --lgray:     #F4F7F6;
  --mgray:     #B4BEBA;
  --dgray:     #5A6A68;
  --white:     #FFFFFF;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);
  --glow-teal: 0 0 30px rgba(26,138,122,.4);
  --glow-orange: 0 0 30px rgba(224,107,32,.4);
  --radius:    10px;
  --radius-lg: 18px;
  --transition: all .25s ease;
}

/* ── Premium Animations ─────────────────────── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(36px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity:0; transform:translateX(-28px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform:translateX(28px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes glowRing {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,138,122,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(26,138,122,0); }
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scanLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes particleDrift {
  0%   { transform: translateY(0) rotate(0deg); opacity:0.6; }
  100% { transform: translateY(-120px) rotate(360deg); opacity:0; }
}

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal].revealed { opacity:1; transform:translate(0,0); }
[data-reveal][data-delay="100"].revealed { transition-delay:.1s; }
[data-reveal][data-delay="200"].revealed { transition-delay:.2s; }
[data-reveal][data-delay="300"].revealed { transition-delay:.3s; }
[data-reveal][data-delay="400"].revealed { transition-delay:.4s; }
[data-reveal][data-delay="500"].revealed { transition-delay:.5s; }
[data-reveal][data-delay="600"].revealed { transition-delay:.6s; }

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--dgray); line-height: 1.75; }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
}
.section-tag.light { color: var(--lteal); }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--dteal); }
.section-mid  { background: var(--mid); }
.section-gray { background: var(--lgray); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: #c55e18; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(224,107,32,.35); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--dteal); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,138,122,.35); }
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: 100px;
  display: flex;
  align-items: center;
  transition: background .4s ease, border-color .4s ease, height .3s ease, box-shadow .4s ease;
}
.navbar.scrolled {
  background: rgba(10,30,26,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,138,122,.18);
  height: 72px;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: 144px;
  width: auto;
  transition: height .3s ease;
  filter: drop-shadow(0 0 10px rgba(26,138,122,.25));
}
.navbar.scrolled .nav-logo img { height: 104px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  position: relative;
  letter-spacing: .02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--teal), var(--lteal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--lteal); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: var(--transition); }

/* ---- Hero (full-bleed canvas + gradient fade) ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060E0C;
}

/* Canvas covers the entire hero background */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  object-fit: cover;   /* for <video>: fills the section without distortion */
  object-position: center;
}

/* Gradient overlay: dark solid left → transparent right (the key blend) */
.hero-fade-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #060E0C 0%,
    #060E0C 30%,
    rgba(6,14,12,.95) 42%,
    rgba(6,14,12,.80) 54%,
    rgba(6,14,12,.40) 68%,
    rgba(6,14,12,.10) 82%,
    transparent 100%
  );
}

/* Grid texture — only visible over the solid left area */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(26,138,122,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,138,122,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  /* Fade the grid out to the right so it doesn't show over the 3D */
  mask-image: linear-gradient(to right, black 0%, black 30%, transparent 60%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 30%, transparent 60%);
}

/* Radial glows on left side */
.hero-fade-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 60% at 5% 35%, rgba(26,138,122,.14) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 0% 85%, rgba(224,107,32,.09) 0%, transparent 60%);
  pointer-events: none;
}

/* Bottom dark vignette to anchor the section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #060E0C 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 70%;
  padding: 9rem 3rem 5rem 12%;
}
.hero-content > * {
  max-width: 580px;
}
/* ── Hero brand block (logo + name at top of hero-left) ── */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.hero-logo {
  width: 216px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(26,138,122,.35));
}
.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hero-brand-name {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #1A8A7A;
  line-height: 1;
}
.hero-brand-name span {
  color: var(--orange);
}
.hero-brand-tagline {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(26,138,122,.15);
  border: 1px solid rgba(26,138,122,.4);
  color: var(--lteal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: glowRing 2s ease infinite;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-size: clamp(2.2rem,5vw,3.8rem); }
.hero h1 span {
  background: linear-gradient(135deg, var(--lteal) 0%, #4DD8C8 50%, var(--orange) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 440px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hero-badge strong {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-badge span {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Hero disciplines row ── */
/* ── Hero project stack (right side) ── */
.hero-project-stack {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 320px;
  z-index: 6;
}
@media (max-width: 1100px) { .hero-project-stack { display: none; } }

.hps-card {
  position: absolute;
  width: 220px;
  background: rgba(6,18,15,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(26,138,122,.22);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.hps-card--back {
  bottom: 0; left: 20px;
  transform: rotate(5deg);
  opacity: .55;
  z-index: 1;
  border-color: rgba(26,138,122,.12);
}
.hps-card--mid {
  bottom: 30px; left: 10px;
  transform: rotate(2.5deg);
  opacity: .75;
  z-index: 2;
}
.hps-card--front {
  top: 0; left: 0;
  transform: rotate(-1deg);
  z-index: 3;
  border-color: rgba(26,138,122,.35);
  animation: fadeInRight .8s cubic-bezier(.22,1,.36,1) .6s both;
}
.hps-card-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lteal);
  margin-bottom: .5rem;
}
.hps-card-tag {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  margin-bottom: .3rem;
}
.hps-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  line-height: 1.25;
  margin-bottom: .85rem;
  letter-spacing: -.02em;
}
.hps-card-discs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .85rem;
}
.hps-card-discs span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .62rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .2rem .55rem;
}
.hps-card-discs i {
  width: 5px; height: 5px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hps-card-footer {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: .7rem;
}
.hps-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 7px rgba(34,197,94,.7);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-disciplines {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.hero-disc-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  white-space: nowrap;
}
.hero-disc-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.hero-disc-pill {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 100px;
  padding: .25rem .7rem .25rem .55rem;
  letter-spacing: .02em;
  transition: color .2s, border-color .2s, background .2s;
}
.hero-disc-pill:hover {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}
.hero-disc-pill i {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  font-style: normal;
}

/* ── Hero Results Metrics Panel (kept for reference, unused) ── */
.hero-metrics-panel {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 222px;
  background: rgba(5,18,15,.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(26,138,122,.26);
  border-radius: 20px;
  padding: 1.2rem 1.2rem 1rem;
  z-index: 4;
  box-shadow: 0 16px 56px rgba(0,0,0,.5), 0 0 0 1px rgba(26,138,122,.08);
  animation: fadeInRight .8s cubic-bezier(.22,1,.36,1) .5s both;
}
@media (max-width: 1280px) { .hero-metrics-panel { display: none; } }

.hmp-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(26,138,122,.16);
}
.hmp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lteal);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(40,168,152,.8);
  animation: pulse 2.5s ease infinite;
}
.hmp-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.hmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-bottom: .9rem;
}
.hmp-metric {
  background: rgba(26,138,122,.08);
  border: 1px solid rgba(26,138,122,.16);
  border-radius: 12px;
  padding: .85rem .75rem .7rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.hmp-metric:hover {
  background: rgba(26,138,122,.15);
  border-color: rgba(26,138,122,.35);
}
.hmp-metric--accent {
  background: rgba(224,107,32,.08);
  border-color: rgba(224,107,32,.18);
}
.hmp-metric--accent:hover {
  background: rgba(224,107,32,.14);
  border-color: rgba(224,107,32,.38);
}
.hmp-val {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: .3rem;
}
.hmp-metric--accent .hmp-val {
  color: #FFB347;
}
.hmp-label {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
  line-height: 1.3;
}
.hmp-icon {
  position: absolute;
  bottom: .6rem; right: .6rem;
  opacity: .18;
}
.hmp-icon svg {
  width: 18px; height: 18px;
  stroke: var(--lteal);
  fill: none;
  stroke-width: 2;
}
.hmp-metric--accent .hmp-icon svg {
  stroke: #E06B20;
}

.hmp-footer {
  font-size: .63rem;
  font-weight: 500;
  color: rgba(255,255,255,.32);
  text-align: center;
  padding-top: .7rem;
  border-top: 1px solid rgba(26,138,122,.12);
  letter-spacing: .02em;
  line-height: 1.4;
}

/* ── Discipline badges (float over canvas, right side) ── */
.hero-video-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}
.hero-video-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  background: rgba(6,14,12,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .38rem .8rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  animation: fadeInUp .8s ease both;
}
.hero-video-badge:nth-child(1) { animation-delay:.6s; }
.hero-video-badge:nth-child(2) { animation-delay:.9s; }
.hero-video-badge:nth-child(3) { animation-delay:1.1s; }
.hero-video-badge:nth-child(4) { animation-delay:1.3s; }
.hero-vbadge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-vbadge-dot.hvac { background:#28E8D0; box-shadow:0 0 7px #28E8D0; }
.hero-vbadge-dot.elec { background:#F5C842; box-shadow:0 0 7px #F5C842; }
.hero-vbadge-dot.plmb { background:#4AABF5; box-shadow:0 0 7px #4AABF5; }
.hero-vbadge-dot.fire { background:#EF5350; box-shadow:0 0 7px #EF5350; }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeInUp 1.2s ease 1.5s both;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  animation: scanLine 2s ease-in-out infinite;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: linear-gradient(to right, #0A1A18, #0D2420, #0A1A18);
  padding: 2.25rem 0;
  border-top: 1px solid rgba(26,138,122,.12);
  border-bottom: 1px solid rgba(26,138,122,.12);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 50% 0%, rgba(26,138,122,.08) 0%, transparent 70%);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 160px;
}
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(26,138,122,.15);
  border: 1px solid rgba(26,138,122,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.stat-item:hover .stat-icon {
  background: rgba(26,138,122,.28);
  border-color: rgba(26,138,122,.5);
  box-shadow: var(--glow-teal);
}
.stat-icon svg { width: 20px; height: 20px; stroke: var(--lteal); fill: none; stroke-width: 1.8; }
.stat-val { display: block; color: var(--white); font-size: 1.55rem; font-weight: 900; line-height: 1; letter-spacing: -.03em; margin-bottom: .18rem; }
.stat-val .counter { font-size: inherit; font-weight: inherit; }
.stat-main-label { display: block; color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.stat-sub-label { display: block; color: rgba(255,255,255,.35); font-size: .72rem; font-weight: 400; letter-spacing: .03em; margin-top: .05rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(26,138,122,.2); flex-shrink: 0; }

/* ---- Value Prop ---- */
.value-prop { background: #0E1C1A; }
.value-prop .section-tag { color: var(--lteal); }
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.value-left h2 { margin-bottom: 1rem; color: var(--white); }
.value-left h2 em { font-style: normal; color: var(--lteal); }
.value-left > p { margin-bottom: 2rem; font-size: 1.05rem; color: rgba(255,255,255,.6); }
.value-cards { display: flex; flex-direction: column; gap: .85rem; }
.value-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(26,138,122,.18);
  background: rgba(26,138,122,.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--lteal));
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}
.value-card:hover { border-color: rgba(26,138,122,.4); background: rgba(26,138,122,.1); transform: translateX(5px); box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.value-card:hover::before { transform: scaleY(1); }
.value-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--lteal));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,138,122,.35);
}
.value-card-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }
.value-card h4 { color: var(--white); margin-bottom: .2rem; font-size: 1rem; }
.value-card p { font-size: .88rem; margin: 0; color: rgba(255,255,255,.55); }
.value-right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(26,138,122,.2);
}
.value-right img, .value-video { width: 100%; height: 480px; object-fit: cover; display: block; }
.value-right-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(10,30,26,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(26,138,122,.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.value-right-badge .badge-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(34,197,94,.5);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.value-right-badge p { font-size: .82rem; font-weight: 600; color: var(--white); margin: 0; }
.value-right-badge span { font-size: .75rem; color: rgba(255,255,255,.5); }

/* ---- Services ---- */
.services-preview { background: var(--white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.05rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,138,122,.06), transparent);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(26,138,122,.18), 0 8px 24px rgba(0,0,0,.1); border-color: rgba(26,138,122,.3); }
.service-card:hover::after { opacity: 1; }
.service-card-img {
  height: 190px;
  overflow: hidden;
  background: var(--dteal);
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,.9), transparent);
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 1.5rem; }
.service-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--lteal));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .85rem;
  box-shadow: 0 4px 16px rgba(26,138,122,.3);
}
.service-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.service-card h3 { color: var(--dark); margin-bottom: .5rem; font-size: 1.05rem; }
.service-card p { font-size: .88rem; margin: 0; }
.services-cta { text-align: center; margin-top: 2.5rem; }

/* ---- How We Work ---- */
.process { background: #F8FAFA; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal) 20%, var(--lteal) 80%, transparent);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--lteal));
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
  border: 3px solid white;
  box-shadow: 0 0 0 1px rgba(26,138,122,.3), 0 8px 24px rgba(26,138,122,.3);
  flex-shrink: 0;
  transition: var(--transition);
}
.process-step:hover .process-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 1px rgba(26,138,122,.5), var(--glow-teal);
}
.process-step:nth-child(even) .process-num {
  background: linear-gradient(135deg, var(--dteal), var(--teal));
}
.process-step h3 { color: var(--dark); margin-bottom: .5rem; font-size: 1rem; font-weight: 700; }
.process-step p { font-size: .87rem; }

/* ---- Industries ---- */
.industries { background: var(--lgray); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.industry-card:hover img { transform: scale(1.07); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,70,62,.88) 0%, rgba(10,70,62,.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}
.industry-card:hover .industry-overlay { background: linear-gradient(to top, rgba(10,70,62,.95) 0%, rgba(10,70,62,.5) 60%, rgba(10,70,62,.1) 100%); }
.industry-overlay h3 { color: var(--white); margin-bottom: .3rem; font-size: 1.15rem; }
.industry-overlay p  { color: rgba(255,255,255,.8); font-size: .85rem; margin: 0; max-height: 0; overflow: hidden; transition: max-height .4s ease, opacity .4s, transform .4s ease; opacity: 0; transform: translateY(6px); }
.industry-card:hover .industry-overlay p { max-height: 100px; opacity: 1; transform: translateY(0); }
.industry-card:hover .industry-overlay { padding-bottom: 1.75rem; }
.industry-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: .5rem;
  align-self: flex-start;
}

/* ---- Tech Stack (marquee) ---- */
.tech-stack {
  background: #0A1918;
  padding: 3.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(26,138,122,.1);
  border-bottom: 1px solid rgba(26,138,122,.1);
}
.tech-label { text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 2rem; }
.tech-marquee-wrap {
  position: relative;
  overflow: hidden;
}
.tech-marquee-wrap::before,
.tech-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.tech-marquee-wrap::before { left: 0; background: linear-gradient(to right, #0A1918, transparent); }
.tech-marquee-wrap::after  { right: 0; background: linear-gradient(to left, #0A1918, transparent); }
.tech-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.tech-marquee-track:hover { animation-play-state: paused; }
.tech-pills-set {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(26,138,122,.08);
  border: 1px solid rgba(26,138,122,.2);
  border-radius: 100px;
  padding: .65rem 1.3rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  white-space: nowrap;
  cursor: default;
}
.tech-pill:hover {
  border-color: rgba(26,138,122,.5);
  background: rgba(26,138,122,.18);
  color: var(--lteal);
  box-shadow: var(--glow-teal);
}
.tech-pill svg { width: 15px; height: 15px; fill: var(--teal); flex-shrink: 0; }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, #061310 0%, #0A2E28 50%, var(--dteal) 100%);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,138,122,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,138,122,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,138,122,.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(224,107,32,.1) 0%, transparent 60%);
}
/* Floating particles */
.cta-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.cta-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--lteal);
  box-shadow: 0 0 8px var(--lteal);
  animation: particleDrift 6s ease-in-out infinite;
}
.cta-particle:nth-child(1)  { left:10%; bottom:0; animation-delay:0s;   animation-duration:8s;  }
.cta-particle:nth-child(2)  { left:25%; bottom:0; animation-delay:1.5s; animation-duration:7s;  background:var(--orange); box-shadow:0 0 8px var(--orange); }
.cta-particle:nth-child(3)  { left:45%; bottom:0; animation-delay:3s;   animation-duration:9s;  }
.cta-particle:nth-child(4)  { left:65%; bottom:0; animation-delay:0.5s; animation-duration:7.5s;}
.cta-particle:nth-child(5)  { left:80%; bottom:0; animation-delay:2s;   animation-duration:8.5s; background:var(--orange); box-shadow:0 0 8px var(--orange); }
.cta-particle:nth-child(6)  { left:92%; bottom:0; animation-delay:4s;   animation-duration:6.5s;}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
  font-size: clamp(1.8rem,4vw,3rem);
}
.cta-section p { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- Industries hover upgrade ---- */
.industry-card {
  cursor: default;
  transition: transform .4s ease, box-shadow .4s ease;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(26,138,122,.3); }

/* ---- Page Hero (inner pages) — dark glass ---- */
.page-hero {
  padding-top: 100px;
  min-height: 360px;
  background: linear-gradient(150deg, #061310 0%, #0A2E28 50%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,138,122,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,138,122,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(26,138,122,.2) 0%, transparent 70%);
  z-index: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 3;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: .75rem;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--lteal), #4DD8C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: rgba(255,255,255,.72);
  max-width: 560px;
  font-size: 1.05rem;
}
.page-hero .breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.3); }

/* ---- Mobile menu — dark ---- */
.mobile-menu {
  background: rgba(10,30,26,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(26,138,122,.15);
}
.mobile-menu a { color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.06); }

/* ---- Footer ---- */
.footer {
  background: #080F0E;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(26,138,122,.12);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 160px; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--mgray); line-height: 1.7; max-width: 280px; }
.footer-col h5 { color: var(--white); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .88rem; color: var(--mgray); transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact p { font-size: .88rem; color: var(--mgray); display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .7rem; }
.footer-contact p svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); }
.footer-social svg { width: 16px; height: 16px; fill: var(--mgray); }
.footer-social a:hover svg { fill: var(--white); }

/* ---- Page Hero (inner pages) — see also override block below ---- */
.page-hero {
  display: flex;
  align-items: center;
}

/* ---- Services Page ---- */
.services-categories { background: var(--white); }
/* ── Service Categories ── */
.services-categories { padding: 5rem 0; }
.service-category {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #e8eeed;
}
.service-category:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.category-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: none;
  position: relative;
}
.category-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 2px;
}

.category-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--dteal) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(26,138,122,.28);
}
.category-icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.category-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .35rem;
}
.category-header h3 { color: var(--dark); font-size: 1.45rem; font-weight: 800; margin-bottom: .4rem; }
.category-header p { font-size: .9rem; color: #5a6e6a; margin: 0; line-height: 1.6; max-width: 580px; }

.category-tags {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .65rem;
}
.category-tag {
  display: inline-block;
  padding: .18rem .6rem;
  background: rgba(26,138,122,.08);
  border-radius: 5px;
  font-size: .7rem; font-weight: 600; color: var(--teal);
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.35rem 1.4rem;
  border-radius: 12px;
  border: 1.5px solid #e4edeb;
  background: #fff;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--teal), var(--lteal));
  opacity: 0;
  transition: opacity .2s;
}
.service-item:hover {
  border-color: rgba(26,138,122,.35);
  box-shadow: 0 6px 24px rgba(26,138,122,.1);
  transform: translateY(-2px);
}
.service-item:hover::before { opacity: 1; }
.service-item-dot {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: rgba(26,138,122,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-item-dot::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.service-item h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; line-height: 1.3; }
.service-item p { font-size: .855rem; margin: 0; color: #5a6e6a; line-height: 1.6; }

/* ---- Tech Full Section ---- */
.tech-full { background: var(--lgray); }
.tech-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tech-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,.07);
  transition: var(--transition);
}
.tech-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.tech-card h4 { font-size: .95rem; color: var(--dark); margin-bottom: .3rem; }
.tech-card p { font-size: .82rem; margin: 0; }
.tech-card-icon { font-size: 2rem; margin-bottom: .75rem; }

/* ---- About Page ---- */
.about-intro { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-img-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .4rem .9rem;
  border-radius: 100px;
}
.differentiators { background: var(--lgray); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.diff-num { font-size: 3rem; font-weight: 900; color: rgba(26,138,122,.12); line-height: 1; margin-bottom: .5rem; }
.diff-card h3 { color: var(--dark); margin-bottom: .75rem; }
.diff-card p { font-size: .9rem; margin: 0; }
.values-section { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-item { text-align: center; padding: 1.5rem; }
.value-item-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--lteal));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-item-icon svg { width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 2; }
.value-item h4 { color: var(--dark); margin-bottom: .4rem; }
.value-item p { font-size: .88rem; margin: 0; }
.team-placeholder { background: var(--lgray); }
.team-coming {
  text-align: center;
  padding: 4rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(26,138,122,.3);
}
.team-coming p { font-size: .95rem; max-width: 400px; margin: 0 auto; }

/* ---- Industries Page ---- */
.industries-full { background: var(--white); }
.industry-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--lgray);
}
.industry-detail:last-child { border-bottom: none; }
.industry-detail.reverse { direction: rtl; }
.industry-detail.reverse > * { direction: ltr; }
.industry-detail-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.industry-detail-img img { width: 100%; height: 320px; object-fit: cover; }
.industry-detail-text h2 { margin-bottom: .75rem; }
.industry-detail-text p { margin-bottom: 1.5rem; }
.industry-services-list { display: flex; flex-direction: column; gap: .5rem; }
.industry-services-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--dark); font-weight: 500;
}
.industry-services-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ---- Portfolio Page ---- */
.portfolio-intro { background: var(--white); }
/* Portfolio era divider */
.portfolio-era-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 4rem 0 2.5rem;
}
.era-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8deda, transparent);
}
.era-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8fa8a4;
  white-space: nowrap;
  padding: .35rem .9rem;
  border: 1.5px solid #d8e6e3;
  border-radius: 20px;
  background: #f8fbfb;
}

.portfolio-placeholder {
  background: var(--lgray);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  border: 2px dashed rgba(26,138,122,.25);
}
.portfolio-placeholder h3 { color: var(--dteal); margin-bottom: .75rem; }
.portfolio-placeholder p { max-width: 480px; margin: 0 auto 2rem; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-card-img { height: 220px; overflow: hidden; }
.portfolio-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.06); }
.portfolio-card-info { padding: 1.25rem; background: var(--white); }
.portfolio-card-info .tag { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); }
.portfolio-card-info h3 { font-size: 1rem; color: var(--dark); margin: .25rem 0 .4rem; }
.portfolio-card-info p { font-size: .85rem; margin: 0; }

/* ---- Contact Page ---- */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { font-size: 1.05rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(26,138,122,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; }
.contact-detail h4 { color: var(--dark); font-size: .9rem; margin-bottom: .2rem; }
.contact-detail p { font-size: .9rem; margin: 0; }
.contact-detail a { color: var(--teal); font-weight: 600; }
.contact-form { background: var(--lgray); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.5rem; }
.form-note { font-size: .8rem; color: var(--dgray); margin-top: .75rem; }

/* ---- Showreel / Video Section ---- */
.showreel-section {
  background: #060E0D;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.showreel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(26,138,122,.1) 0%, transparent 70%);
}
.showreel-section .container { position: relative; z-index: 2; }
.showreel-section .section-header h2 { color: var(--white); }
.showreel-section .section-header p { color: rgba(255,255,255,.55); }
.showreel-section .section-tag { color: var(--lteal); }
.showreel-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(26,138,122,.2);
  max-width: 960px;
  margin: 0 auto;
  background: #000;
  aspect-ratio: 16/9;
}
.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showreel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.38);
  cursor: pointer;
  transition: background .3s;
}
.showreel-overlay:hover { background: rgba(0,0,0,.22); }
.showreel-play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(26,138,122,.9);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s;
  box-shadow: 0 0 0 0 rgba(26,138,122,.5);
  animation: playPulse 2.5s ease infinite;
}
@keyframes playPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(26,138,122,.5); }
  50%      { box-shadow: 0 0 0 18px rgba(26,138,122,0); }
}
.showreel-overlay:hover .showreel-play-btn {
  transform: scale(1.1);
  background: var(--teal);
  animation: none;
  box-shadow: 0 8px 40px rgba(26,138,122,.6);
}
.showreel-play-btn svg {
  width: 28px; height: 28px;
  fill: white;
  margin-left: 4px;
}
.showreel-overlay-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  white-space: nowrap;
}
.showreel-hint {
  text-align: center;
  margin-top: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .06em;
  transition: opacity .3s;
}
.showreel-hint.hidden { opacity: 0; pointer-events: none; }

/* ── Custom video controls ── */
.sreel-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.1rem .75rem;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  z-index: 10;
  opacity: 0;
  transition: opacity .25s ease;
}
.sreel-controls.active { display: flex; }
.showreel-wrap:hover .sreel-controls.active { opacity: 1; }
.sreel-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: .8;
  transition: opacity .2s;
}
.sreel-btn:hover { opacity: 1; }
.sreel-btn svg {
  width: 18px; height: 18px;
  stroke: white; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.sreel-btn svg polygon, .sreel-btn svg rect { fill: white; stroke: none; }

/* Progress bar */
.sreel-progress-wrap {
  flex: 1;
  cursor: pointer;
  padding: .5rem 0;
}
.sreel-progress-bg {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
  overflow: visible;
}
.sreel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--lteal));
  border-radius: 3px;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}
.sreel-progress-thumb {
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 6px rgba(26,138,122,.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.sreel-progress-wrap:hover .sreel-progress-thumb { opacity: 1; }
.sreel-progress-wrap:hover .sreel-progress-bg { height: 4px; }

/* Time */
.sreel-time {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  min-width: 36px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Volume button */
.sreel-vol-btn { margin-left: .25rem; }

/* Volume slider */
.sreel-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}
.sreel-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0,0,0,.4);
}
.sreel-volume::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-content { padding: 8rem 2rem 4rem 3rem; }
  .value-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .value-right { order: -1; }
  .value-right img, .value-video { height: 350px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-full-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .industry-detail { grid-template-columns: 1fr; gap: 2rem; }
  .industry-detail.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-fade-overlay {
    background: linear-gradient(
      to bottom,
      rgba(6,14,12,.92) 0%,
      rgba(6,14,12,.75) 50%,
      rgba(6,14,12,.55) 100%
    );
  }
  .nav-links, .nav-cta .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .stats-inner { justify-content: center; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .industries-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .service-items-grid { grid-template-columns: 1fr; }
}

/* ---- Nav Mobile Menu ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 100px; left: 0; right: 0;
  background: rgba(8,20,18,.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(26,138,122,.15);
  padding: 1.5rem 2rem;
  z-index: 998;
  flex-direction: column;
  gap: .75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.8); padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s; }
.mobile-menu a:hover { color: var(--lteal); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: .5rem; }
