/* ══════════════════════════════════
   HERO  (mobile-first)
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__gradient {
  position: absolute; inset: 0;
  background:
    /* Dark curtain — keeps text legible over the globe atmosphere */
    linear-gradient(to right,
      rgba(11,11,11,1)    0%,
      rgba(11,11,11,.95) 22%,
      rgba(11,11,11,.72) 42%,
      rgba(11,11,11,.20) 64%,
      transparent        80%
    ),
    /* Top + bottom vignette */
    linear-gradient(to bottom, rgba(11,11,11,.5) 0%, transparent 18%),
    linear-gradient(to top,    rgba(11,11,11,.6) 0%, transparent 20%),
    /* Subtle red atmospheric glow — globe region */
    radial-gradient(ellipse 62% 60% at 72% 48%, rgba(255,42,42,.055) 0%, transparent 70%);
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 80% at 38% 50%, black 10%, transparent 75%);
}

/* ── Globe environment + network overlay ────────────────────── */
.hero__globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center; /* keep globe visible at all widths */
  pointer-events: none;
  user-select: none;
}
/* On wide screens the default composition works perfectly */
@media (min-width: 1280px) {
  .hero__globe { object-position: center center; }
}
/* On mobile: darken more so text stays readable over the globe */
@media (max-width: 767px) {
  .hero__gradient {
    background:
      linear-gradient(rgba(11,11,11,.88), rgba(11,11,11,.80)),
      radial-gradient(ellipse 100% 60% at 60% 50%, rgba(255,42,42,.05) 0%, transparent 70%);
  }
}


.hero__content {
  position: relative; z-index: 1;
  padding-top: 60px;
  padding-bottom: 80px;
  width: 100%;
}

/* Mobile: align to top so there's no giant empty space above content */
@media (max-width: 640px) {
  .hero {
    align-items: flex-start;
    min-height: calc(100svh - var(--nav-h));
    min-height: calc(100vh  - var(--nav-h));
  }
  .hero__content { padding-top: 36px; padding-bottom: 56px; }
}

.hero__title {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -.025em;
  margin: 10px 0 20px;
  max-width: 720px;
}
.hero__title .accent { color: var(--accent); }

.hero__desc {
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media (min-width: 768px) { .hero__scroll { display: flex; } }

.hero__scroll span {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.35; transform:scaleY(.75); }
  50%      { opacity:1;   transform:scaleY(1); }
}

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 28px 16px;
  background: var(--bg-2);
  cursor: default;
  transition: background .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: transform .3s var(--ease);
}
.stat-card:hover { background: var(--bg-3); }
.stat-card:hover::before { transform: translateX(-50%) scaleX(1); }

.stat-card__value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-card__label {
  font-size: clamp(.7rem, 1.5vw, .8rem);
  color: var(--text-muted);
  text-align: center;
  letter-spacing: .04em;
  line-height: 1.3;
}

/* ══════════════════════════════════
   ABOUT PREVIEW
══════════════════════════════════ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-preview { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.about-preview__visual { display: none; }
@media (min-width: 900px) { .about-preview__visual { display: block; } }

/* ── Photo grid — about preview ─────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 210px 155px;
  gap: 8px;
}
.photo-grid__cell {
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  contain: layout style paint;
}
.photo-grid__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.8);
  transition: transform .45s var(--ease), filter .35s var(--ease);
  will-change: transform, filter;
}
.photo-grid__cell:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}
.photo-grid__cell--tall { grid-row: span 2; }
/* Dark tint overlay — matches site palette, fades on hover */
.photo-grid__cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,11,11,.35) 0%, transparent 60%);
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.photo-grid__cell:hover::after { opacity: 0; }


/* ══════════════════════════════════
   SERVICES PREVIEW
══════════════════════════════════ */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.services-header__link { display: none; }
@media (min-width: 768px) {
  .services-header { margin-bottom: 52px; }
  .services-header__link { display: inline-flex; }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); gap: 24px; } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0, rgba(255,42,42,.06), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.service-card:hover::after { opacity: 1; }

.service-card__line { width: 32px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 20px; }
.service-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.service-card__desc  { font-size: .875rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 24px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--accent);
  transition: gap .22s var(--ease);
}
.service-card__link:hover { gap: 10px; }

