/* ═══════════════════════════════════════════
   TECK LIFT — MAIN STYLESHEET
   Dark theme throughout
═══════════════════════════════════════════ */

:root {
  --black:        #0a0a0a;
  --dark:         #111111;
  --dark-2:       #1a1a1a;
  --grey:         #666666;
  --grey-light:   #999999;
  --white:        #ffffff;
  --white-dim:    rgba(255,255,255,0.7);
  --blue:         #1a5aff;
  --blue-dark:    #0f3acc;
  --blue-light:   #4d8dff;
  --cyan:         #3ddcff;
  --blue-glow:    rgba(26,90,255,0.15);
  --gradient-blue: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  --gradient-text: linear-gradient(100deg, var(--blue-light) 0%, var(--cyan) 40%, var(--blue-light) 80%);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --transition:   0.35s ease;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:   cubic-bezier(0.65, 0, 0.35, 1);
  --radius:       4px;
  --container:    1200px;
  --section-pad:  100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--blue); color: var(--white); }

/* Custom scrollbar */
html { scrollbar-color: #2a2a2a var(--black); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 10px; border: 2px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* Keyboard accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Gradient highlight text — used inside headings */
.text-gradient {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 7s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── CUSTOM CURSOR (desktop, fine pointer only) ── */
@media (hover: hover) and (pointer: fine) {
  .has-js, .has-js a, .has-js button, .has-js .gallery-item { cursor: none; }
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    will-change: transform;
  }
  .cursor-dot {
    width: 7px; height: 7px;
    background: var(--blue);
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.45);
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo),
                border-color 0.25s ease, background 0.25s ease, opacity 0.2s ease;
  }
  .cursor-ring.is-active {
    width: 58px; height: 58px;
    border-color: var(--blue);
    background: rgba(26,90,255,0.08);
  }
  .cursor-dot.is-hidden, .cursor-ring.is-hidden { opacity: 0; }
}

/* ── RIPPLE / CLICK FLARE ── */
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  opacity: 0.55;
  pointer-events: none;
  animation: rippleAnim 0.65s var(--ease-out-expo) forwards;
}
@keyframes rippleAnim {
  to { transform: scale(1); opacity: 0; }
}

/* ── PAGE TRANSITION OVERLAY ── */
.page-transition { display: none; }
.has-js .page-transition {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: bottom;
  background: linear-gradient(160deg, #0d1322 0%, var(--black) 55%, #0d1322 100%);
}
.has-js .page-transition.pt-anim { transition: transform 0.7s var(--ease-out-expo); }
.has-js .page-transition.pt-blocking { pointer-events: auto; }
.has-js .page-transition.pt-hidden { display: none; }
.pt-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-transition.pt-show-content .pt-content { opacity: 1; }
.pt-mark {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.pt-bar {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.pt-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40%;
  background: var(--gradient-blue);
  animation: ptBarSlide 1.1s ease-in-out infinite;
}
@keyframes ptBarSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--blue); }

/* Eyebrows that sit directly on a photo background need guaranteed contrast
   regardless of what's behind them — give them the same frosted pill + dot
   treatment as .hero-eyebrow instead of relying on flat blue text. */
.about-hero .eyebrow,
.contact-hero .eyebrow,
.cta-banner .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white);
  background: rgba(10,10,10,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 9px 18px;
  border-radius: 100px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.about-hero .eyebrow::before,
.contact-hero .eyebrow::before,
.cta-banner .eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 8px var(--blue-light);
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  background: var(--gradient-blue);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-position 0.5s var(--ease-out-expo), transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s ease;
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--blue-glow), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.btn-primary:active { transform: translateY(-1px) scale(0.97); }
.btn-primary span.arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out-expo);
}
.btn-primary:hover span.arrow { transform: translate(3px, -3px); }

/* ── PLACEHOLDER CARDS ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: #1e1e1e;
  border: 1.5px dashed rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.img-placeholder--dark {
  background: #141414;
  border-color: rgba(255,255,255,0.08);
}
.placeholder-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.placeholder-ratio {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.12);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.8);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-logo img { transition: transform 0.35s var(--ease-out-expo); }
.nav-logo:hover img { transform: scale(1.05); }
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 40px; }
.nav-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-blue);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  position: relative;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient-blue);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background-position 0.5s var(--ease-out-expo), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--blue-glow);
}
.nav-cta:active { transform: translateY(0) scale(0.96); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  padding: 0 40px;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease-out-expo), opacity 0.3s ease, padding 0.4s ease;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover { color: var(--white); padding-left: 6px; }
.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  padding: 20px 40px;
}
.mobile-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 12px 24px !important;
  border-radius: var(--radius);
  text-align: center;
  border: none !important;
  margin-top: 8px;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111 center center / cover no-repeat;
  overflow: hidden;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(26,90,255,0.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 100px;
}
.hero-content > * {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.8s var(--ease-out-expo) forwards;
}
.hero-content > .hero-eyebrow,
.hero-content > span.hero-eyebrow { animation-delay: 0.1s; }
.hero-content > .hero-heading { animation-delay: 0.22s; }
.hero-content > .hero-sub { animation-delay: 0.38s; }
.hero-content > .hero-actions { animation-delay: 0.52s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10,10,10,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 8px var(--blue-light);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin: 0 auto;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ════════════════════════════════════════
   LOGO MARQUEE
════════════════════════════════════════ */
.marquee-section {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-track {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 28px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0 56px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.marquee-item:last-child { border-right: none; }
.marquee-inner:hover { animation-play-state: paused; }

/* ════════════════════════════════════════
   ABOUT SNAPSHOT — DARK
════════════════════════════════════════ */
.about-snapshot {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.about-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-snapshot-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
}
.about-snapshot-image img { transition: transform 0.7s var(--ease-out-expo); }
.about-snapshot-image:hover img { transform: scale(1.06); }
.about-snapshot-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  z-index: 2;
}
.badge-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-snapshot-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.about-snapshot-content p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.snapshot-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat { text-align: left; }
.stat-row { display: flex; align-items: baseline; gap: 2px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
}
.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-light);
  margin-top: 6px;
}
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ════════════════════════════════════════
   SERVICES — DARK, 5 ITEMS + TRUST BADGE
   Image panel bottom-aligned to badge
════════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.services-header { margin-bottom: 60px; }
.services-header .eyebrow { color: var(--blue); }
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  max-width: 500px;
  line-height: 1.1;
}

/*
  KEY CHANGE:
  align-items: end — both columns align to their bottom edges.
  Left col bottom = bottom of trust badge.
  Right col bottom = bottom of image panel.
  Image panel keeps its own 4:5 aspect ratio — only its
  vertical position shifts upward to meet the badge baseline.
*/
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.services-left {
  display: flex;
  flex-direction: column;
}
.service-list { border-top: 1px solid rgba(255,255,255,0.1); }
.service-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 12px;
  margin: 0 -12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition);
}
.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-glow), transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 0;
}
.service-item:hover::before, .service-item.active::before { transform: translateX(0); }
.service-item:hover,
.service-item.active { border-bottom-color: rgba(255,255,255,0.4); }
.service-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  flex: 1;
  transition: color var(--transition), transform var(--transition);
}
.service-arrow {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition), transform var(--transition);
}
.service-item:hover .service-name,
.service-item.active .service-name { color: var(--white); transform: translateX(6px); }
.service-item.active .service-name { font-weight: 600; }
.service-item:hover .service-arrow,
.service-item.active .service-arrow {
  color: var(--blue-light);
  transform: rotate(-45deg) scale(1.2);
}

/* Trust badge — sits at bottom of left col */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding: 14px 20px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  width: fit-content;
}
.trust-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* Image panel — keeps 4:5, bottom aligns with trust badge */
.service-image-panel {
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.service-image-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.service-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}

/* ════════════════════════════════════════
   MISSION
════════════════════════════════════════ */
.mission {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.mission-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1.3;
  margin-bottom: 60px;
  max-width: 900px;
}
.mission-line {
  display: block;
  position: relative;
  transition: color 0.4s ease;
  cursor: default;
  padding: 4px 0;
}
.mission-line::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: rgba(26,90,255,0.12);
  transition: width 0.5s ease;
  pointer-events: none;
}
.mission-line:hover { color: var(--white); }
.mission-line:hover::after { width: 70%; }
.mission-images { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-img-wrap { aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; }
.mission-img-wrap img { transition: transform 0.7s var(--ease-out-expo); }
.mission-img-wrap:hover img { transform: scale(1.06); }

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats {
  padding: var(--section-pad) 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid { display: flex; align-items: flex-start; }
.stat-block { flex: 1; padding: 0 60px; }
.stat-block:first-child { padding-left: 0; }
.stat-block:last-child  { padding-right: 0; }
.stat-big-row { display: flex; align-items: baseline; gap: 4px; }
.stat-big-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-big-suffix {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--blue);
}
.stat-big-label {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 12px 0 8px;
}
.stat-block p { font-size: 14px; color: var(--grey-light); line-height: 1.6; max-width: 240px; }
.stat-divider-v {
  width: 1px; height: 140px;
  background: rgba(255,255,255,0.1);
  align-self: center;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: var(--dark-2);
  overflow: hidden;
}
.cta-bg-placeholder {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  border: 1.5px dashed rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(26,90,255,0.2) 0%, transparent 70%),
    linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}
.cta-play {
  position: relative;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.cta-play::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  opacity: 0;
  animation: ctaPulse 2.2s ease-out infinite;
}
@keyframes ctaPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.cta-play:hover { border-color: var(--blue); background: var(--blue-glow); transform: scale(1.06); }
.cta-play:active { transform: scale(0.94); }
.cta-play span { position: relative; z-index: 1; }
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 560px;
  line-height: 1.15;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 40px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--grey-light); line-height: 1.8; max-width: 280px; }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; color: var(--grey-light); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; color: var(--grey-light); margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: var(--grey-light); transition: color var(--transition); }
.footer-contact a:hover { color: var(--blue); }
.footer-address { margin-top: 16px !important; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: var(--grey);
}
.footer-bottom a { color: var(--blue); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 991px) {
  :root { --section-pad: 70px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-snapshot-grid,
  .services-grid,
  .mission-images,
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-image-panel { display: none; }
  .stats-grid { flex-direction: column; gap: 48px; }
  .stat-block { padding: 0; }
  .stat-divider-v { display: none; }
  .cta-content { flex-direction: column; gap: 32px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .hero-heading { font-size: 44px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .snapshot-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-badge { flex-direction: column; border-radius: 12px; width: 100%; }
}

/* ════════════════════════════════════════
   CONTACT PAGE STYLES
════════════════════════════════════════ */

/* ── CONTACT HERO ── */
.contact-hero {
  position: relative;
  background: var(--dark);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 50% 15%, rgba(26,90,255,0.2) 0%, transparent 70%),
    rgba(0,0,0,0.6);
  z-index: 1;
}

.contact-hero .hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-top: 8px;
}

/* ── CONTACT INFO BAR ── */
.contact-info-bar {
  background: var(--black);
  padding: 0;
  border: none;
  position: relative;
  z-index: 10;
}
.info-bar-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--dark-2);
  padding: 40px 60px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.04);
  transform: translateY(-50%);
  margin-bottom: -60px;
  position: relative;
}
.info-block {
  flex: 1;
  min-width: 250px;
  text-align: center;
}
.info-label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.info-value {
  display: block;
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

/* ── CONTACT SPLIT SECTION ── */
.contact-split {
  background: var(--black);
  padding: 100px 0;
}
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 480px;
}
.support-items {
  display: flex;
  flex-direction: column;
}
.support-item {
  display: flex;
  flex-direction: column;
}
.support-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.support-icon-box {
  width: 48px;
  height: 48px;
  background: var(--dark-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease-out-expo), border-color var(--transition), background var(--transition);
}
.support-item:hover .support-icon-box {
  transform: scale(1.08) rotate(-4deg);
  border-color: var(--blue);
  background: var(--blue-glow);
}
.support-item-header h3 {
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.support-item-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 400px;
  margin: 0;
}
.support-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 32px 0;
  max-width: 480px;
}

/* ── CONTACT FORM ── */
.contact-form-wrapper {
  background: #141414;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}
.form-heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14px;
  color: var(--grey-light);
  margin-bottom: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}
.input-group::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gradient-blue);
  transition: width 0.4s var(--ease-out-expo);
}
.input-group:focus-within::after { width: 100%; }
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 14px 0;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  width: 100%;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: transparent;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: rgba(255,255,255,0.55);
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--blue);
  cursor: pointer;
}
.checkbox-group label {
  font-size: 14px;
  color: var(--grey-light);
  cursor: pointer;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  cursor: pointer;
  border: none;
}

/* ── RESPONSIVE TWEAKS FOR CONTACT ── */
@media (max-width: 900px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .info-bar-grid {
    flex-direction: column;
    gap: 40px;
    transform: none;
    margin-bottom: 0;
    margin-top: -40px;
  }
  .info-divider {
    width: 100%;
    height: 1px;
  }
  .contact-form-wrapper {
    padding: 32px 24px;
  }
}

/* ════════════════════════════════════════
   ABOUT PAGE STYLES
════════════════════════════════════════ */

/* ── ABOUT HERO ── */
.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 50% 15%, rgba(26,90,255,0.2) 0%, transparent 70%),
    rgba(0,0,0,0.7);
  z-index: 1;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-top: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ABOUT FOUNDATIONS ── */
.about-foundations {
  background: var(--dark);
  padding: 100px 0;
}
.about-foundations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.foundations-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-top: 8px;
  margin-bottom: 24px;
}
.foundations-desc {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.6;
  margin-bottom: 40px;
}
.foundations-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-icon {
  display: inline-block;
  font-size: 20px;
  color: var(--blue);
  line-height: 1;
  transition: transform 0.4s var(--ease-out-expo);
}
.feature-item:hover .feature-icon { transform: scale(1.25) rotate(10deg); }
.feature-text h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-text p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.6;
}
.foundations-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.foundations-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.foundations-img-wrap:hover img { transform: scale(1.06); }

/* ── ABOUT SERVICES GRID ── */
.about-services {
  background: var(--black);
  padding: 100px 0;
}
.services-center-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.services-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-top: 8px;
}
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  position: relative;
  background: var(--dark-2);
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: var(--gradient-blue);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.service-card:hover::before { opacity: 1; }
.sc-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(26,90,255,0.18), rgba(26,90,255,0.04));
  border: 1px solid rgba(26,90,255,0.22);
  color: var(--blue-light);
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-out-expo), background 0.4s ease, border-color 0.4s ease;
}
.sc-icon svg { width: 26px; height: 26px; display: block; }
.service-card:hover .sc-icon {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(145deg, rgba(26,90,255,0.32), rgba(61,220,255,0.1));
  border-color: var(--blue);
}
.sc-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.sc-desc {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── ABOUT FAQ ── */
.faq-section {
  background: var(--dark);
  padding: 100px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 22px 26px;
  transition: border-color var(--transition), background var(--transition);
}
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue-light);
  background: var(--blue-glow);
  border-radius: 50%;
  transition: transform 0.35s var(--ease-out-expo), background var(--transition);
}
.faq-item[open] summary::after { transform: rotate(135deg); background: var(--gradient-blue); color: var(--white); }
.faq-item p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── ABOUT WORKERS SUPPORT ── */
.about-workers {
  background: var(--dark);
  padding: 100px 0;
}
.workers-header {
  margin-bottom: 60px;
}
.workers-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 600px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.workers-desc {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.6;
  max-width: 600px;
}
.workers-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.workers-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.workers-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.workers-img-wrap:hover img {
  transform: scale(1.04);
}

/* ════════════════════════════════════════
   GALLERY PAGE STYLES
════════════════════════════════════════ */

.gallery-section {
  background: var(--dark);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--dark-2);
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%), rgba(10,10,10,0.15);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item::before {
  content: '+';
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
  transition: opacity 0.3s ease, transform 0.4s var(--ease-out-expo);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover::before { opacity: 1; transform: scale(1) rotate(0deg); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Feature a few larger tiles for visual rhythm — spans are exact multiples
   of grid-auto-rows so no leftover gap appears beside them. */
.gallery-item:nth-child(1),
.gallery-item:nth-child(11),
.gallery-item:nth-child(20),
.gallery-item:nth-child(31) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(6),
.gallery-item:nth-child(25),
.gallery-item:nth-child(37) {
  grid-column: span 2;
  grid-row: span 1;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,5,5,0.94);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open { display: flex; }
.lightbox.is-visible { opacity: 1; }
.lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.35s ease;
}
.lightbox.is-visible .lightbox-img { transform: scale(1); opacity: 1; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-display);
  transition: transform 0.3s var(--ease-out-expo), color var(--transition), background var(--transition);
}
.lightbox-close:hover { transform: rotate(90deg); color: var(--white); background: var(--blue); border-color: var(--blue); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  color: var(--white);
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.25s var(--ease-out-expo);
}
.lightbox-nav:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-50%) scale(1.1); }
.lightbox-nav:active { transform: translateY(-50%) scale(0.92); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11),
  .gallery-item:nth-child(20),
  .gallery-item:nth-child(25),
  .gallery-item:nth-child(31),
  .gallery-item:nth-child(37) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .lightbox-nav { width: 42px; height: 42px; font-size: 22px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { width: 40px; height: 40px; font-size: 22px; top: 12px; right: 12px; }
}

/* ── RESPONSIVE TWEAKS FOR ABOUT ── */
@media (max-width: 900px) {
  .about-foundations-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .foundations-features {
    grid-template-columns: 1fr;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  .workers-images {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════════
   HERO COMPANY NAME — added per client request
════════════════════════════════════════ */
.hero-company-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0.9;
}
