/* ═══════════════════════════════════════════════════════
   BELACOMMS — Design System
   Starlink-inspired minimalism × Elevator Tech
═══════════════════════════════════════════════════════ */

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

:root {
  --black:     #010306;
  --dark:      #05090f;
  --dark2:     #090f1a;
  --dark3:     #0d1520;
  --dark4:     #111d2b;
  --blue:      #2563EB;
  --blue2:     #3B82F6;
  --blue3:     #60A5FA;
  --blue-dim:  rgba(37,99,235,0.12);
  --blue-glow: rgba(37,99,235,0.20);
  --white:     #ffffff;
  --gray:      #7a8fa8;
  --gray2:     #3d5066;
  --border:    rgba(255,255,255,0.06);
  --border2:   rgba(255,255,255,0.10);
  --font-head: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Inter', sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── STARS ── */
#stars {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.45;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(1,3,6,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(1,3,6,0.96);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 34px; width: auto; background: #fff; border-radius: 5px; padding: 3px 8px; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 1.2rem; height: 68px;
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--white); }
.nav-links > li > a svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: rgba(5,9,15,0.98);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
  min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: all 0.2s var(--ease-out);
  backdrop-filter: blur(20px);
}
.nav-links > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.6rem 0.9rem; border-radius: 5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--blue-dim); color: var(--blue3); }
.nav-dropdown a .dd-icon { color: var(--blue2); flex-shrink: 0; }

.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 0.55rem 1.35rem; border-radius: 5px;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none; text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--blue2); box-shadow: 0 0 24px var(--blue-glow); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(1,3,6,0.99); backdrop-filter: blur(20px);
  z-index: 999; padding: 2rem;
  display: none; flex-direction: column; gap: 0.25rem;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 500;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--blue3); }
.nav-mobile .mobile-section-label {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--blue3);
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.5rem 0 0.5rem; display: block;
}
.nav-mobile .nav-cta { margin-top: 1.5rem; text-align: center; padding: 0.9rem; }

/* ══════════════════════════════════
   PAGE HERO (shared)
══════════════════════════════════ */
.page-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; z-index: 1; padding: 0 2rem;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(1,3,6,0.88) 0%, rgba(1,3,6,0.72) 40%, rgba(1,3,6,0.90) 100%),
    linear-gradient(to right, rgba(1,3,6,0.4) 0%, transparent 50%, rgba(1,3,6,0.4) 100%);
}
.page-hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 10%, transparent 100%);
}

.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.28);
  border-radius: 20px; padding: 0.38rem 1rem;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue3);
  margin-bottom: 1.75rem;
}
.page-hero-badge .pulse {
  width: 6px; height: 6px; background: var(--blue2); border-radius: 50%;
  animation: pulse 2s infinite; box-shadow: 0 0 6px var(--blue2);
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.025em;
  max-width: 900px; margin: 0 auto 1.5rem;
}
.page-hero h1 em { font-style: normal; color: var(--blue3); }
.page-hero h1 strong { display: block; }

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem; color: rgba(255,255,255,0.5);
  max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.75; font-weight: 300;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 2rem; border-radius: 5px;
  font-family: var(--font-head); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s var(--ease);
  cursor: pointer; border: none;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,0.35); }
.btn-secondary { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.18); }
.btn-secondary:hover { border-color: var(--blue2); color: var(--blue3); }
.btn-sm { padding: 0.55rem 1.35rem; font-size: 0.78rem; }

/* ══════════════════════════════════
   SECTION BASE
══════════════════════════════════ */
section { position: relative; z-index: 1; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue3);
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 18px; height: 1px; background: var(--blue2); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
}
.section-title .accent { color: var(--blue3); }

.section-sub {
  color: rgba(255,255,255,0.42); font-size: 0.95rem;
  line-height: 1.78; font-weight: 300; max-width: 540px; margin-top: 1rem;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker { background: var(--blue); padding: 0.55rem 0; overflow: hidden; position: relative; z-index: 2; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 40s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.92); font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0 2rem;
}
.ticker-item span { opacity: 0.4; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.stat-cell {
  background: var(--dark); padding: 2.5rem 2rem; text-align: center;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.stat-cell::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.stat-cell:hover { background: var(--dark2); }
.stat-cell:hover::after { transform: scaleX(1); }
.stat-num { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 700; color: var(--blue3); display: block; margin-bottom: 0.5rem; line-height: 1; }
.stat-unit { font-size: 0.6em; color: rgba(255,255,255,0.3); }
.stat-label { font-size: 0.73rem; color: rgba(255,255,255,0.35); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

/* ══════════════════════════════════
   SERVICES GRID (Homepage)
══════════════════════════════════ */
.services-section { padding: 8rem 0; background: linear-gradient(180deg, var(--black), var(--dark)); }
.services-header { margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }

.service-card {
  background: var(--dark); padding: 2.75rem 2.5rem;
  position: relative; overflow: hidden; transition: all 0.35s var(--ease);
  text-decoration: none; color: inherit; display: block;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(37,99,235,0.06), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { background: var(--dark2); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-card-num { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(96,165,250,0.35); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; display: block; }
.service-card-icon { width: 44px; height: 44px; color: var(--blue2); margin-bottom: 1.5rem; }
.service-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.service-card p { color: rgba(255,255,255,0.38); font-size: 0.87rem; line-height: 1.72; font-weight: 300; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.5rem; color: var(--blue3); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; transition: gap 0.2s; }
.service-card:hover .service-card-link { gap: 10px; }
.service-card-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════
   IMAGE + TEXT SPLIT SECTIONS
══════════════════════════════════ */
.split-section { padding: 7rem 0; }
.split-section.dark-bg { background: var(--dark); }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }

.split-image {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.8); }
.split-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), transparent 60%);
}
.split-image-overlay {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(1,3,6,0.9); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.9rem 1.2rem; backdrop-filter: blur(8px);
}
.split-image-overlay .ov-label { font-family: var(--font-mono); font-size: 0.62rem; color: var(--blue3); letter-spacing: 0.15em; text-transform: uppercase; }
.split-image-overlay .ov-value { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-top: 0.2rem; }

/* ══════════════════════════════════
   FEATURE LIST
══════════════════════════════════ */
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.feature-item .fi-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--blue2); margin-top: 1px; }
.feature-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; }
.feature-item strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ══════════════════════════════════
   TECH SPECS TABLE
══════════════════════════════════ */
.specs-table { display: grid; gap: 1px; background: var(--border); border-radius: 6px; overflow: hidden; }
.spec-row { background: var(--dark); padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.spec-row:hover { background: var(--dark2); }
.spec-key { font-size: 0.78rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.spec-val { font-family: var(--font-mono); font-size: 0.85rem; color: var(--blue3); font-weight: 700; }

/* ══════════════════════════════════
   GRID CARDS (Why / Benefits)
══════════════════════════════════ */
.cards-section { padding: 7rem 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.card {
  padding: 2.25rem; border: 1px solid var(--border); border-radius: 6px;
  background: rgba(255,255,255,0.012); transition: all 0.35s var(--ease); position: relative;
}
.card::after { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--blue); transition: height 0.35s var(--ease); border-radius: 2px; }
.card:hover { border-color: rgba(37,99,235,0.22); transform: translateY(-4px); background: rgba(37,99,235,0.03); }
.card:hover::after { height: 100%; }
.card-icon { width: 40px; height: 40px; color: var(--blue2); margin-bottom: 1.25rem; }
.card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { color: rgba(255,255,255,0.38); font-size: 0.85rem; line-height: 1.68; font-weight: 300; }

/* ══════════════════════════════════
   PARTNER / LOGO STRIP
══════════════════════════════════ */
.partners-section { padding: 5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-label { text-align: center; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 2.5rem; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
.partner-logo { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.18); transition: color 0.2s; }
.partner-logo:hover { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-section { padding: 9rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(37,99,235,0.06), transparent 65%); pointer-events: none; }
.cta-section h2 { font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 1.25rem; }
.cta-section h2 span { color: var(--blue3); }
.cta-section p { color: rgba(255,255,255,0.42); font-size: 0.98rem; line-height: 1.75; max-width: 520px; margin: 0 auto 2.5rem; }

/* ══════════════════════════════════
   SERVICE PAGE SPECIFIC
══════════════════════════════════ */
.service-hero-badge-line { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.75rem; }
.service-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.22); border-radius: 20px; padding: 0.3rem 0.85rem; font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue3); }

.service-intro { padding: 7rem 0; background: var(--dark); }
.service-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.service-intro-text .lead { font-size: 1.1rem; color: rgba(255,255,255,0.72); line-height: 1.78; font-weight: 300; margin-top: 1.5rem; }
.service-intro-text p { color: rgba(255,255,255,0.45); font-size: 0.92rem; line-height: 1.78; margin-top: 1rem; }

.service-features-grid { display: grid; gap: 1px; background: var(--border); margin-top: 3rem; }
.service-feature-row { background: var(--dark2); padding: 1.5rem 2rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: background 0.2s; }
.service-feature-row:hover { background: var(--dark3); }
.sfr-icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--blue2); margin-top: 2px; }
.sfr-text strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; }
.sfr-text p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ══════════════════════════════════
   BREADCRUMB
══════════════════════════════════ */
.breadcrumb { padding: 1.25rem 3rem; background: var(--dark); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; font-family: var(--font-mono); letter-spacing: 0.05em; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue3); }
.breadcrumb span { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.breadcrumb .current { color: rgba(255,255,255,0.6); font-size: 0.78rem; font-family: var(--font-mono); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-top { padding: 4rem 3rem 3rem; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer-brand img { height: 30px; width: auto; background: rgba(255,255,255,0.12); border-radius: 4px; padding: 3px 7px; object-fit: contain; }
.footer-brand p { color: rgba(255,255,255,0.3); font-size: 0.83rem; line-height: 1.65; margin-top: 1rem; max-width: 260px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.85rem; padding: 0.3rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue3); }
.footer-bottom { padding: 1.5rem 3rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: rgba(255,255,255,0.18); font-size: 0.75rem; letter-spacing: 0.05em; }
.footer-badges { display: flex; align-items: center; gap: 1.5rem; }
.footer-badge { font-family: var(--font-mono); font-size: 0.6rem; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.1); padding: 0.25rem 0.65rem; border-radius: 3px; }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in { opacity: 0; transition: opacity 0.9s var(--ease-out); }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-right { opacity: 0; transform: translateX(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.is-visible { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 1.5rem; }
  .page-hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .split-inner, .service-intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .split-inner.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .breadcrumb { padding: 1rem 1.5rem; }
}
