/* ═══════════════════════════════════════════════════════════
   EDS — Engineering Design & Service
   Global Stylesheet
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --y: #FFD200;
  --y-dim: rgba(255,210,0,.15);
  --d: #0A0A0A;
  --g1: #111111;
  --g2: #1A1A1A;
  --g3: #222222;
  --g4: #333333;
  --lt: #E8E8E8;
  --mt: #888888;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --transition: 0.3s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--d);
  color: var(--lt);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 4%;
  background: rgba(10,10,10,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,210,0,0.06);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  padding: 0.55rem 4%;
  background: rgba(10,10,10,0.97);
  border-bottom-color: rgba(255,210,0,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo svg { height: 38px; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--fd); font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; line-height: 1.35; color: var(--mt);
  letter-spacing: 0.03em;
}
.nav-center {
  display: flex; gap: 1.8rem; align-items: center;
}
.nav-center a {
  font-family: var(--fd); font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: color var(--transition); color: var(--lt);
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav-center a:hover { color: var(--y); }
.nav-center a.active { color: var(--y); border-bottom-color: var(--y); }
.nav-right {
  display: flex; align-items: center; gap: 0.8rem;
}
.lang-toggle {
  display: flex; border: 1px solid var(--g4); border-radius: 20px;
  overflow: hidden;
}
.lang-btn {
  padding: 0.3rem 0.7rem; font-family: var(--fd); font-size: 0.72rem;
  font-weight: 600; background: transparent; color: var(--lt); transition: var(--transition);
}
.lang-btn.active { background: var(--y); color: var(--d); }
.nav-cta {
  background: var(--y); color: var(--d);
  padding: 0.5rem 1.3rem;
  font-family: var(--fd); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,210,0,0.2);
}

/* ─── HAMBURGER ─────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px; background: var(--y);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.mobile-menu {
  display: none; flex-direction: column; gap: 1.2rem;
  position: fixed; top: 62px; left: 0; width: 100%;
  background: var(--d); padding: 2rem 4%; z-index: 999;
  border-bottom: 1px solid var(--g3);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--fd); font-weight: 500; font-size: 1rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--lt);
}
.mobile-menu a:hover { color: var(--y); }

/* ─── SCROLL TOP ─────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--g4); background: rgba(10,10,10,0.9);
  color: var(--y); display: none; align-items: center; justify-content: center;
  z-index: 998; transition: var(--transition);
}
.scroll-top:hover { border-color: var(--y); background: rgba(255,210,0,0.08); }
.scroll-top.visible { display: flex; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 6% 6rem;
  position: relative; overflow: hidden;
}
.hero-video {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.hero-short { min-height: 60vh; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,210,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,210,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.5;
  z-index: 2;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,210,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,210,0,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3; max-width: 900px;
}
.hero-content.centered {
  text-align: center; margin: 0 auto;
}
.hero-tag {
  font-family: var(--fd); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--y);
  margin-bottom: 1.3rem;
}
.hero-tag-center { justify-content: center; display: flex; }
.hero h1 {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.96; text-transform: uppercase;
  margin-bottom: 1.3rem; color: var(--y);
}
.hero h1.smaller { font-size: clamp(2.2rem, 5vw, 4rem); }
.hero-desc {
  font-size: 1.02rem; line-height: 1.65; color: var(--mt);
  max-width: 580px; margin-bottom: 2rem; font-style: italic;
}
.hero-desc.normal { font-style: normal; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.divider {
  width: 50px; height: 3px; background: var(--y);
  margin: 1.2rem 0;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-y {
  display: inline-block; background: var(--y); color: var(--d);
  padding: 0.75rem 2rem;
  font-family: var(--fd); font-weight: 700; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-y:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,210,0,0.22);
}
.btn-o {
  display: inline-block; background: transparent; color: var(--lt);
  padding: 0.75rem 2rem; border: 2px solid var(--g4);
  font-family: var(--fd); font-weight: 700; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: var(--transition);
}
.btn-o:hover { border-color: var(--y); color: var(--y); }

/* ─── STATS STRIP ────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--g1);
}
.stat {
  padding: 2.5rem 1.5rem; text-align: center;
  border: 1px solid var(--g3);
}
.stat-num {
  font-family: var(--fd); font-weight: 800;
  font-size: 2.8rem; color: var(--y);
  line-height: 1; letter-spacing: 0.04em;
}
.stat-num sup { font-size: 1.1rem; vertical-align: super; }
.stat-label {
  font-family: var(--fd); font-size: 0.73rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--mt); margin-top: 0.4rem;
}

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: 5rem 6%; }
.section-dark { background: var(--g1); }
.section-center { text-align: center; }
.stag {
  font-family: var(--fd); font-weight: 600; font-size: 0.73rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--mt); margin-bottom: 0.8rem;
}
.stitle {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase; color: var(--y);
  line-height: 1.05; margin-bottom: 0.8rem;
}
.stitle-white { color: var(--lt); }
.sdesc {
  color: var(--mt); font-size: 0.93rem;
  line-height: 1.65; max-width: 640px;
}
.sdesc-c { margin-left: auto; margin-right: auto; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--radius); padding: 2rem 1.6rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.card:hover { border-color: var(--y); transform: translateY(-4px); }

/* Card with background image */
.card-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.82) 50%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 0;
}
.card-img > * {
  position: relative;
  z-index: 1;
}
.card-img:hover { border-color: var(--y); }

.card-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--y); border-radius: var(--radius-sm);
  color: var(--y); margin-bottom: 1.2rem;
}
.card h3 {
  font-family: var(--fd); font-weight: 700; font-size: 1.12rem;
  text-transform: uppercase; margin-bottom: 0.6rem;
}
.card p { color: var(--mt); font-size: 0.84rem; line-height: 1.55; }
.card-horiz {
  display: flex; gap: 1.2rem; align-items: flex-start; text-align: left;
}
.card-horiz .card-icon { flex-shrink: 0; margin-bottom: 0; }
.card-horiz-accent {
  border-left: 3px solid var(--y);
}
.card-center {
  text-align: center; padding-top: 2.5rem; padding-bottom: 2.5rem;
  background: linear-gradient(180deg, var(--g2), var(--g1));
}
.card-center .card-icon { margin: 0 auto 1rem; }
.card-precision {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; min-height: 220px;
}
.card-precision .big-num {
  font-family: var(--fd); font-weight: 800;
  font-size: 3rem; color: var(--y);
}
.card-precision .big-num span { font-size: 1rem; }
.card-precision .sublabel {
  color: var(--mt); font-size: 0.85rem; margin-top: 0.3rem;
}

/* ─── GRIDS ──────────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
.g6 { grid-template-columns: repeat(6, 1fr); }
.grid-narrow { max-width: 1100px; margin: 0 auto; }
.grid-wide { max-width: 1200px; margin: 0 auto; }

/* ─── TAGS ───────────────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tag {
  padding: 0.3rem 0.7rem; border: 1px solid var(--y);
  color: var(--y); font-family: var(--fd); font-size: 0.68rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; border-radius: var(--radius-xs);
}

/* ─── SUCCESS STORIES ────────────────────────────────────── */
.success-card {
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--radius); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  text-align: left;
}
.stars { color: var(--y); font-size: 0.85rem; letter-spacing: 2px; }
.badge {
  display: inline-block; font-family: var(--fd); font-size: 0.63rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem; border-radius: var(--radius-xs);
  width: fit-content;
}
.badge-ch { background: var(--y-dim); color: var(--y); }
.badge-sol {
  background: var(--y-dim); color: var(--y);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.quote {
  color: var(--mt); font-size: 0.8rem;
  line-height: 1.5; font-style: italic;
}
.client-row {
  display: flex; align-items: center; gap: 0.8rem;
  margin-top: auto; padding-top: 0.8rem;
  border-top: 1px solid var(--g3);
}
.client-logo {
  width: 36px; height: 36px; background: var(--g3);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-family: var(--fd);
  font-weight: 800; font-size: 0.55rem; color: var(--y);
  flex-shrink: 0;
}
.client-info h4 { font-family: var(--fd); font-weight: 700; font-size: 0.82rem; }
.client-info p { font-size: 0.68rem; color: var(--mt); }

/* ─── CLIENTS CAROUSEL ───────────────────────────────────── */
.clients-wrap {
  display: flex; gap: 1.5rem; justify-content: center;
  align-items: center; flex-wrap: wrap; padding: 2rem 0;
}
.client-card {
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--radius); padding: 2rem 2.5rem;
  font-family: var(--fd); font-weight: 800; font-size: 1rem;
  text-transform: uppercase; color: var(--mt);
  letter-spacing: 0.05em; transition: var(--transition);
  text-align: center;
}
.client-card:hover { border-color: var(--y); color: var(--y); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-box {
  background: var(--g1); border-radius: 16px;
  padding: 3rem; margin: 0 6% 4rem;
}
.contact-embed {
  background: #fff; border-radius: var(--radius);
  padding: 2.5rem; text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem;
}
.contact-embed h3 {
  font-family: var(--fd); font-weight: 700; color: var(--d); font-size: 1.1rem;
}
.contact-embed p { color: #666; font-size: 0.9rem; }
.email-card {
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--radius); padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem;
}
.email-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--y-dim); color: var(--y);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.email-card h4 {
  font-family: var(--fd); font-weight: 700;
  font-size: 0.88rem; text-transform: uppercase;
}
.email-card p { color: var(--y); font-size: 0.85rem; }

/* ─── ABOUT SPLIT ────────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.about-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 350px; display: flex; align-items: flex-end; padding: 1.5rem;
  background: linear-gradient(135deg, var(--g3), var(--g2));
}
.about-img-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 800;
  font-size: 6rem; color: rgba(255,210,0,0.06);
}
.about-badge {
  position: relative; z-index: 1;
  background: var(--y); color: var(--d);
  font-family: var(--fd); font-weight: 700; font-size: 0.73rem;
  text-transform: uppercase; padding: 0.5rem 1rem;
  border-radius: 6px; display: inline-flex;
  align-items: center; gap: 0.4rem;
}

/* ─── TIMELINE ───────────────────────────────────────────── */
.timeline-card {
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--radius); padding: 1.8rem;
}
.timeline-card .year {
  font-family: var(--fd); font-weight: 600;
  font-size: 0.8rem; color: var(--y); letter-spacing: 0.05em;
}
.timeline-card .company {
  font-family: var(--fd); font-weight: 700; font-size: 0.68rem;
  color: var(--y); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 0.15rem;
}
.timeline-card h3 {
  font-family: var(--fd); font-weight: 700;
  font-size: 1rem; margin-top: 0.6rem;
}
.timeline-card p {
  color: var(--mt); font-size: 0.82rem;
  line-height: 1.5; margin-top: 0.4rem;
}

/* ─── SERVICE LIST ───────────────────────────────────────── */
.svc-list { display: flex; flex-direction: column; gap: 0.55rem; }
.svc-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.75rem 1rem; background: var(--g2);
  border: 1px solid var(--g3); border-radius: var(--radius-sm);
  font-size: 0.87rem;
}
.svc-dot {
  width: 8px; height: 8px; background: var(--y);
  border-radius: 50%; flex-shrink: 0;
}

/* ─── PROCESS CARDS ──────────────────────────────────────── */
.process-card {
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition);
}
.process-card:hover { border-color: var(--y); }
.process-img {
  height: 180px;
  background: linear-gradient(135deg, var(--g3), var(--g2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-weight: 800;
  font-size: 2rem; color: var(--g4);
  overflow: hidden;
  position: relative;
}
/* SVG illustration styling inside process cards */
.process-img svg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.process-img img { width: 100%; height: 100%; object-fit: cover; }
.process-body { padding: 1.5rem; text-align: left; }
.process-num {
  font-family: var(--fd); font-weight: 600;
  font-size: 0.8rem; color: var(--y);
}
.process-card h3 {
  font-family: var(--fd); font-weight: 800;
  font-size: 1.1rem; text-transform: uppercase;
  margin-top: 0.3rem; margin-bottom: 0.6rem;
}
.process-card p {
  color: var(--mt); font-size: 0.82rem; line-height: 1.5;
}

/* ─── CAPABILITY STRIP ───────────────────────────────────── */
.cap-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.cap-item {
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--radius); padding: 1.5rem 1rem;
  text-align: center; transition: var(--transition);
}
.cap-item:hover { border-color: var(--y); }
.cap-icon {
  width: 42px; height: 42px; border: 1px solid var(--y);
  border-radius: var(--radius-sm); color: var(--y);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.8rem;
}
.cap-item span {
  font-family: var(--fd); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--lt);
}

/* ─── MANUFACTURER CARDS ─────────────────────────────────── */
.mfg-card {
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--radius); padding: 1.5rem;
  text-align: center; transition: var(--transition);
}
.mfg-card:hover { border-color: var(--y); }
.mfg-logo {
  width: 50px; height: 50px; background: var(--g3);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 0.8rem; font-family: var(--fd);
  font-weight: 700; font-size: 0.55rem; color: var(--mt);
}
.mfg-card h4 {
  font-family: var(--fd); font-weight: 700;
  font-size: 1rem; margin-bottom: 0.5rem;
}
.mfg-card p {
  color: var(--mt); font-size: 0.78rem; line-height: 1.5;
}

/* ─── LOGO SLIDER (infinite scroll) ──────────────────────── */
.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: logoScroll 35s linear infinite;
}
.logo-slide {
  flex-shrink: 0;
  width: 140px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.5;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.logo-slide:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
.logo-slide img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* ─── SERVICE SHOWCASE (interactive hover) ───────────────── */
.svc-showcase {
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.svc-showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.35) 100%
  );
  z-index: 0;
}
.svc-showcase-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 6%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.svc-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.svc-tile {
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  color: rgba(255,255,255,0.5);
}
.svc-tile svg { stroke: rgba(255,255,255,0.4); transition: stroke 0.3s ease; }
.svc-tile span {
  font-family: var(--fd); font-weight: 600;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.svc-tile-plus {
  position: absolute; bottom: 12px; right: 0; left: 0;
  text-align: center;
  font-family: var(--fd); font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s ease, transform 0.3s ease;
}
.svc-tile.active .svc-tile-plus {
  color: var(--y);
  transform: rotate(45deg);
}
.svc-tile:hover,
.svc-tile.active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,210,0,0.4);
}
.svc-tile:hover svg,
.svc-tile.active svg { stroke: var(--y); }
.svc-tile:hover span,
.svc-tile.active span { color: var(--lt); }

.svc-showcase-detail {
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 3rem;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.svc-detail-panel {
  display: none;
}
.svc-detail-panel.active {
  display: block;
}
.svc-detail-panel .svc-detail-tag {
  font-family: var(--fd); font-weight: 800;
  font-size: 1rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--y);
  margin-bottom: 0.6rem;
}
.svc-detail-panel h3 {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: var(--lt); margin-bottom: 1rem;
}
.svc-detail-panel p {
  color: var(--mt); font-size: 0.95rem;
  line-height: 1.75; max-width: 480px;
}

/* Responsive */
@media (max-width: 768px) {
  .svc-showcase { min-height: auto; }
  .svc-showcase-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 5%;
  }
  .svc-showcase-grid {
    justify-content: center;
    justify-items: center;
  }
  .svc-tile { width: 140px; height: 140px; }
  .svc-showcase-detail { min-height: auto; padding: 2rem; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--g1);
  border-top: 1px solid var(--g3);
  padding: 3rem 6% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 0.8rem;
}
.footer-brand .nav-logo {
  display: inline-flex; width: fit-content;
}
.footer-brand p {
  color: var(--mt); font-size: 0.85rem;
  line-height: 1.6; max-width: 320px;
}
.footer-col h4 {
  font-family: var(--fd); font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--y);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: var(--mt); font-size: 0.85rem;
  margin-bottom: 0.6rem; transition: color var(--transition);
}
.footer-col a:hover { color: var(--y); }
.footer-col p {
  color: var(--mt); font-size: 0.85rem;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--g3);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
  color: var(--mt); font-size: 0.75rem;
}
.footer-bottom a {
  color: var(--y); font-size: 0.75rem;
  font-family: var(--fd); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--lt); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── SPACER ─────────────────────────────────────────────── */
.spacer-sm { height: 1.5rem; }
.spacer-md { height: 2.5rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .g3, .g5, .g6, .cap-strip { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .g2, .g3, .g5, .g6, .cap-strip { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 7rem 5% 3rem; }
  .section { padding: 3.5rem 5%; }
  .contact-box { margin: 0 4% 3rem; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .clients-wrap { flex-direction: column; }
}
