/* ============================================
   TGS Uzbekistan — PREMIUM Design System v2
   Cinematic, dark-first, editorial typography
   ============================================ */

:root {
  /* Deep premium palette */
  --c-bg: #06090b;
  --c-bg-2: #0a0e11;
  --c-bg-3: #11171b;
  --c-bg-4: #181f24;
  --c-surface-warm: #f4ebdc;
  --c-cream: #f6efe1;
  --c-ink: #06090b;
  --c-ink-soft: rgba(6,9,11,0.7);
  --c-line-dark: rgba(255,255,255,0.08);
  --c-line-2: rgba(255,255,255,0.14);
  --c-text-mute: rgba(255,255,255,0.55);
  --c-text-soft: rgba(255,255,255,0.78);

  /* Premium accents */
  --c-gold: #d4a04a;
  --c-gold-2: #e6c182;
  --c-gold-3: #b8842c;
  --c-teal: #3aa39d;
  --c-teal-2: #6ec9c1;
  --c-deep-teal: #0a3a3e;
  --c-copper: #b86a3a;

  /* Glass */
  --glass-bg: rgba(255,255,255,0.04);
  --glass-bg-2: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.1);
  --glass-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);

  /* Type */
  --f-display: "Newsreader", "Georgia", serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px; --s-11: 192px;

  /* Radii */
  --r-sm: 6px; --r-md: 14px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --dur-1: 220ms;
  --dur-2: 520ms;
  --dur-3: 900ms;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--c-bg);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 980px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: none; border: 0; background: none; color: inherit; }
@media (max-width: 980px) { button { cursor: pointer; } }

::selection { background: var(--c-gold); color: var(--c-ink); }

/* Subtle film grain over the entire page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

/* CUSTOM CURSOR */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transition: width var(--dur-1) var(--ease), height var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--c-gold); }
@media (max-width: 980px) { .cursor-dot, .cursor-ring { display: none; } }

.display { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; text-wrap: balance; }
.eyebrow {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-gold);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--c-gold);
}

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--s-7); }
@media (max-width: 720px) { .container { padding: 0 var(--s-5); } }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-5) 0;
  transition: background var(--dur-2) var(--ease), backdrop-filter var(--dur-2) var(--ease), padding var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 9, 11, 0.7);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  padding: var(--s-3) 0;
  border-bottom-color: var(--c-line-dark);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); }

.logo { display: flex; align-items: center; gap: var(--s-3); color: #fff; font-family: var(--f-display); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; }
.logo-mark { width: 38px; height: 38px; position: relative; }
.logo-text { display: flex; align-items: baseline; gap: 10px; }
.logo-text .uz {
  font-family: var(--f-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(212,160,74,0.4);
  border-radius: var(--r-sm);
}

.nav-links { display: flex; align-items: center; gap: var(--s-7); }
.nav-link {
  color: rgba(255,255,255,0.65);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-1) var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--c-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-2) var(--ease);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: var(--s-4); }

.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-pill);
  padding: 3px;
  font-family: var(--f-mono);
  font-size: 11px;
}
.lang-btn {
  padding: 7px 13px;
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all var(--dur-1) var(--ease);
}
.lang-btn.active { background: var(--c-gold); color: var(--c-ink); }

.mobile-toggle { display: none; }
@media (max-width: 980px) {
  .nav-links, .lang-switcher { display: none; }
  .mobile-toggle { display: flex; flex-direction: column; gap: 5px; width: 28px; padding: 8px 0; }
  .mobile-toggle span { height: 1.5px; background: #fff; transition: all var(--dur-1) var(--ease); }
  .nav.mobile-open .mobile-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.mobile-open .mobile-toggle span:nth-child(2) { opacity: 0; }
  .nav.mobile-open .mobile-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav.mobile-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-bg);
    padding: var(--s-6) var(--s-5);
    gap: var(--s-5);
    border-top: 1px solid var(--c-line-dark);
  }
  .nav.mobile-open .lang-switcher { display: flex; margin-top: var(--s-4); }
}

/* ============================================
   BUTTONS — premium magnetic
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--dur-2) var(--ease), background var(--dur-2) var(--ease), color var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-arrow {
  width: 14px; height: 14px;
  transition: transform var(--dur-2) var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--c-gold);
  color: var(--c-ink);
  box-shadow: 0 12px 30px -12px rgba(212,160,74,0.6);
}
.btn-primary:hover { background: var(--c-gold-2); transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(212,160,74,0.7); }

.btn-ghost-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost-light:hover { border-color: var(--c-gold); color: var(--c-gold); }

.btn-outline-gold {
  background: transparent; color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn-outline-gold:hover { background: var(--c-gold); color: var(--c-ink); }

/* ============================================
   PAGES
   ============================================ */
.page { display: none; opacity: 0; }
.page.active { display: block; animation: pageFade 0.7s var(--ease) forwards; }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO — cinematic, full-bleed
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--c-bg);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 140px 0 var(--s-8);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shader-slot { position: absolute; inset: 0; z-index: 0; }
.hero-shader-slot + .hero-mesh { opacity: 0.4; }

/* === Mesh-gradient shader-style background === */
.hero-mesh {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(58,163,157,0.55) 0%, rgba(58,163,157,0) 60%),
    radial-gradient(50% 40% at 80% 20%, rgba(212,160,74,0.45) 0%, rgba(212,160,74,0) 60%),
    radial-gradient(70% 60% at 75% 75%, rgba(13,58,68,0.7) 0%, rgba(13,58,68,0) 65%),
    radial-gradient(45% 40% at 30% 85%, rgba(232,200,150,0.25) 0%, rgba(232,200,150,0) 60%),
    radial-gradient(circle at 50% 50%, #0d3a44 0%, #0a1418 70%);
  filter: blur(40px) saturate(1.1);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
.hero-mesh-2 {
  position: absolute;
  inset: -10%;
  opacity: 0.6;
  background:
    radial-gradient(40% 35% at 60% 40%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(55% 45% at 25% 65%, rgba(74,176,166,0.35) 0%, rgba(74,176,166,0) 60%),
    radial-gradient(35% 30% at 85% 55%, rgba(216,166,87,0.3) 0%, rgba(216,166,87,0) 60%);
  filter: blur(60px);
  mix-blend-mode: screen;
  animation: meshDrift 26s ease-in-out -8s infinite alternate-reverse;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
@keyframes meshDrift {
  0%   { transform: translate(0,0) scale(1) rotate(0deg); }
  50%  { transform: translate(2%, -1%) scale(1.05) rotate(2deg); }
  100% { transform: translate(-2%, 2%) scale(1.1) rotate(-2deg); }
}

/* Legacy aurora kept as no-op for backward-compat */
.hero-aurora, .hero-aurora-2 { display: none; }
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px, -40px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow-row {
  display: flex; align-items: center; gap: var(--s-4);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: var(--s-7);
}
.hero-eyebrow-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 12px rgba(212,160,74,0.8);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero-eyebrow-row .gold { color: var(--c-gold); }

.hero-glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.hero-glass-badge::before {
  content: "";
  position: absolute;
  top: 0; left: 8px; right: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,176,166,0.6), transparent);
}

/* Pulsing badge — bottom-right indicator with rotating text */
.pulsing-badge {
  position: absolute;
  bottom: var(--s-7);
  right: var(--s-6);
  width: 120px; height: 120px;
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 880px) { .pulsing-badge { width: 90px; height: 90px; right: var(--s-4); bottom: var(--s-4); } }
.pulsing-badge-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%),
    conic-gradient(from 0deg, #4ab0a6, #d8a657, #3aa39d, #e8c896, #4ab0a6);
  filter: blur(0.5px);
  animation: pbSpin 6s linear infinite, pbPulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(74,176,166,0.6), 0 0 60px rgba(216,166,87,0.3);
}
@keyframes pbSpin { to { transform: rotate(360deg); } }
@keyframes pbPulse { 0%,100% { box-shadow: 0 0 30px rgba(74,176,166,0.6), 0 0 60px rgba(216,166,87,0.3); } 50% { box-shadow: 0 0 50px rgba(74,176,166,0.9), 0 0 90px rgba(216,166,87,0.5); } }
.pulsing-badge-text {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: pbRotate 22s linear infinite;
}
.pulsing-badge-text text {
  fill: rgba(255,255,255,0.7);
  font-family: var(--f-mono);
  font-size: 6.5px;
  letter-spacing: 0.18em;
}
@keyframes pbRotate { to { transform: rotate(360deg); } }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.hero-title .word { display: inline-block; overflow: hidden; padding: 0 0.04em 0.02em 0; vertical-align: top; }
.hero-title .word > span {
  display: inline-block;
  transform: translateY(105%);
  animation: heroRise 1.1s var(--ease) forwards;
}
.hero-title .word:nth-child(2) > span { animation-delay: 0.12s; }
.hero-title .word:nth-child(3) > span { animation-delay: 0.24s; }
.hero-title .accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--c-gold) 0%, var(--c-gold-2) 50%, var(--c-gold-3) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@keyframes heroRise { to { transform: translateY(0); } }

.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: end;
  margin-top: var(--s-9);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 880px) { .hero-bottom { grid-template-columns: 1fr; gap: var(--s-5); } }

.hero-sub {
  font-size: 19px;
  line-height: 1.45;
  color: var(--c-text-soft);
  max-width: 580px;
  text-wrap: pretty;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 880px) { .hero-ctas { justify-content: flex-start; } }

/* Hero ticker */
.hero-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
  padding: var(--s-4) 0;
  margin-top: var(--s-7);
  overflow: hidden;
  display: flex;
  gap: var(--s-7);
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}
.hero-ticker-track {
  display: inline-flex; gap: var(--s-7);
  animation: ticker 50s linear infinite;
  flex-shrink: 0;
}
.hero-ticker-track > span { display: inline-flex; align-items: center; gap: 14px; }
.hero-ticker-track > span::after { content: "◆"; color: var(--c-gold); font-size: 8px; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-scroll-cue {
  display: none;
  position: absolute;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 3;
}
.hero-scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   STATS — premium counter row
   ============================================ */
.stats {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
  color: #fff;
  padding: var(--s-9) 0;
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding-left: var(--s-5);
  padding-right: var(--s-5);
  padding-top: var(--s-3);
}
.stat:not(:first-child) {
  border-left: 1px solid var(--c-line-2);
}
.stat-n {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  padding-top: 0.1em;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.55) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.stat-l {
  margin-top: var(--s-4);
  font-size: 13px;
  color: var(--c-text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--f-mono);
  max-width: 220px;
}

/* ============================================
   SECTION SHELL
   ============================================ */
.section { padding: var(--s-10) 0; position: relative; }
.section-light { background: var(--c-cream); color: var(--c-ink); }
.section-light .eyebrow { color: var(--c-gold-3); }
.section-light .eyebrow::before { background: var(--c-gold-3); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-7);
  margin-bottom: var(--s-9);
  align-items: end;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: var(--s-5); margin-bottom: var(--s-7); }
}
.section-head-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: var(--s-4) 0 0;
  text-wrap: balance;
}
.section-head-sub {
  font-size: 19px;
  color: var(--c-text-mute);
  max-width: 560px;
  text-wrap: pretty;
  line-height: 1.45;
}
.section-light .section-head-sub { color: var(--c-ink-soft); }

/* ============================================
   SERVICES GRID — premium cards
   ============================================ */
.services-section { background: var(--c-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.services-grid-5 { grid-template-columns: repeat(5, 1fr); }
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) { .services-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px) {
  .services-grid, .services-grid-5, .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid, .services-grid-5, .services-grid-4 { grid-template-columns: 1fr; }
}

.svc-group-head {
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-2);
}
.svc-group-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.svc-group-rule { flex: 1; height: 1px; background: var(--c-line-dark); }
.svc-group-count {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-text-soft);
}

.service-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-md);
  padding: var(--s-7) var(--s-6) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(212,160,74,0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-2) var(--ease);
  pointer-events: none;
}
.service-card:hover {
  background: var(--c-bg-3);
  border-color: rgba(212,160,74,0.3);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-card .icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold);
}
.service-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.service-card p {
  color: var(--c-text-mute);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.service-card .more {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
  transition: gap var(--dur-2) var(--ease), color var(--dur-2) var(--ease);
}
.service-card:hover .more { gap: 16px; color: var(--c-gold); }

/* ============================================
   WHY US — premium feature row
   ============================================ */
.why-section { background: var(--c-bg-2); position: relative; overflow: hidden; }
.why-section::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  right: -300px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(58,163,157,0.15) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  position: relative;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line-2);
}
.why-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-gold);
  letter-spacing: 0.18em;
}
.why-item h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.why-item p {
  color: var(--c-text-mute);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-section, .sectors-section { background: var(--c-bg); }

/* SECTORS — industry vertical grid (distinct from news row list) */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line-dark);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 1100px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .sectors-grid { grid-template-columns: 1fr; } }

.sector-card {
  background: var(--c-bg);
  padding: var(--s-5) var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 280px;
  position: relative;
  transition: background 0.4s ease;
}
.sector-card:hover { background: var(--c-bg-2); }
.sector-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: var(--s-3);
}
.sector-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-gold);
}
.sector-icon { width: 44px; height: 44px; color: var(--c-teal); flex-shrink: 0; }
.sector-icon svg { width: 100%; height: 100%; }
.sector-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}
.sector-desc {
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.sector-services {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-line-dark);
}
.sector-chip {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--c-line-dark);
  border-radius: 99px;
  color: var(--c-text-soft);
}

.projects-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 980px) { .projects-layout { grid-template-columns: 1fr; } }

.projects-list { display: flex; flex-direction: column; border-top: 1px solid var(--c-line-dark); }
.project-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--s-5);
  padding: var(--s-6) var(--s-5);
  margin: 0 calc(var(--s-5) * -1);
  border-bottom: 1px solid var(--c-line-dark);
  align-items: start;
  cursor: none;
  transition: background var(--dur-2) var(--ease);
  position: relative;
}
.project-row:hover { background: var(--c-bg-2); }
.project-row .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-gold);
  letter-spacing: 0.18em;
  padding-top: 4px;
}
.project-row h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-2);
  color: #fff;
}
.project-row .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-mute);
  margin-bottom: var(--s-3);
}
.project-row .desc { color: var(--c-text-soft); font-size: 15px; max-width: 560px; line-height: 1.55; }
.project-row .arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-line-2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-2) var(--ease);
  flex-shrink: 0;
}
.project-row:hover .arrow {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-ink);
  transform: rotate(-45deg);
}

.filters { display: flex; gap: 8px; margin-bottom: var(--s-6); flex-wrap: wrap; }
.filter-pill {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid var(--c-line-dark);
  background: transparent;
  color: var(--c-text-mute);
  transition: all var(--dur-1) var(--ease);
}
.filter-pill.active { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.filter-pill:hover:not(.active) { color: #fff; border-color: var(--c-line-2); }

/* MAP */
.map-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%);
  border: 1px solid var(--c-line-dark);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-5);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 620px;
  box-shadow: var(--glass-shadow);
}
.map-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--s-4);
}
.map-card-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.map-svg { flex: 1; width: 100%; }
.map-svg .uz-shape { fill: rgba(255,255,255,0.03); stroke: var(--c-line-2); stroke-width: 1; }
.map-pin { cursor: none; transition: transform var(--dur-2) var(--ease); }
.map-pin .pin-ring {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 1.5;
  opacity: 0.4;
  animation: pinRipple 2.4s ease-out infinite;
}
.map-pin .pin-dot { fill: var(--c-gold); }
.map-pin.hot .pin-dot { fill: var(--c-teal-2); }
.map-pin:hover { transform: scale(1.4); }
@keyframes pinRipple {
  0% { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-legend {
  display: flex; gap: var(--s-5);
  margin-top: var(--s-4);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-mute);
}
.map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.map-legend .swatch { width: 8px; height: 8px; border-radius: 50%; }

/* Leaflet integration — dark theme */
.map-leaflet-wrap {
  position: relative;
  background: #0a1418;
  overflow: hidden;
  min-height: 460px;
}
.map-leaflet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.leaflet-container {
  background: #0a1418 !important;
  font-family: var(--f-sans);
  outline: none;
}
.leaflet-control-zoom {
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: none !important;
  background: rgba(10,20,24,0.85) !important;
  backdrop-filter: blur(6px);
}
.leaflet-control-zoom a {
  background: transparent !important;
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.1) !important;
  font-family: var(--f-sans);
  font-weight: 300;
}
.leaflet-control-zoom a:hover {
  background: rgba(216,166,87,0.15) !important;
  color: var(--c-gold) !important;
}
.leaflet-control-attribution {
  background: rgba(10,20,24,0.7) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 9px !important;
  padding: 1px 6px !important;
}
.leaflet-control-attribution a { color: rgba(216,166,87,0.7) !important; }
.tgs-tip {
  background: #0a1418 !important;
  border: 1px solid rgba(216,166,87,0.4) !important;
  color: #fff !important;
  font-family: var(--f-mono) !important;
  font-size: 10.5px !important;
  letter-spacing: 0.04em !important;
  border-radius: 3px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  padding: 6px 10px !important;
}
.tgs-tip::before { display: none !important; }
.tgs-tip strong { color: var(--c-gold); font-weight: 500; }
.tgs-uz-pin { position: relative; }
.tgs-uz-pin .dot {
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  background: #d8a657;
  border: 2px solid #0a1418;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(216,166,87,0.7);
}
.tgs-uz-pin .ring {
  position: absolute; top: 50%; left: 50%;
  width: 28px; height: 28px;
  margin: -14px 0 0 -14px;
  border: 1.5px solid #d8a657;
  border-radius: 50%;
  animation: uzPulse 2.4s ease-out infinite;
}
@keyframes uzPulse {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Interactive global map */
.map-card-global { display: flex; flex-direction: column; }
.map-region-filter {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0 var(--s-4) var(--s-3);
  border-bottom: 1px solid var(--c-line-dark);
}
.map-region-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--c-line-dark);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur-2) var(--ease);
}
.map-region-pill:hover { color: #fff; border-color: rgba(216,166,87,0.4); }
.map-region-pill.active {
  background: var(--c-gold); color: var(--c-ink);
  border-color: var(--c-gold);
}
.map-region-pill-n {
  font-size: 9px; opacity: 0.7;
  padding: 1px 5px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.map-region-pill.active .map-region-pill-n { background: rgba(0,0,0,0.18); opacity: 0.9; }

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 0;
  flex: 1;
  min-height: 460px;
}
.map-side {
  border-left: 1px solid var(--c-line-dark);
  padding: var(--s-3) var(--s-4);
  display: flex; flex-direction: column;
  min-height: 0;
}
.map-side-eyebrow {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}
.map-side-list { display: flex; flex-direction: column; min-height: 0; flex: 1; }
.map-side-scroll {
  overflow-y: auto;
  max-height: 320px;
  margin-right: -8px; padding-right: 8px;
}
.map-side-scroll::-webkit-scrollbar { width: 4px; }
.map-side-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.map-side-row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 8px 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  font-family: var(--f-sans);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  transition: color var(--dur-1) var(--ease);
}
.map-side-row:hover { color: var(--c-gold); }
.map-side-row-h {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  padding: 2px 6px;
  border: 1px solid var(--c-line-dark);
  border-radius: 3px;
}
.map-side-row:hover .map-side-row-h { border-color: var(--c-gold); color: var(--c-gold); }

.map-side-detail { position: relative; }
.map-side-close {
  position: absolute; top: -4px; right: -4px;
  width: 24px; height: 24px;
  border: 1px solid var(--c-line-dark);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 18px; line-height: 1;
  border-radius: 50%;
  cursor: pointer;
}
.map-side-close:hover { color: #fff; border-color: var(--c-gold); }
.map-side-country {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 var(--s-3);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.map-side-stat {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: var(--s-3);
}
.map-side-stat-n {
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--c-gold);
  font-weight: 400;
  line-height: 1;
}
.map-side-stat-l {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
}
.map-side-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--s-3);
}
.map-side-meta span { color: var(--c-text-soft); }
.map-side-note {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-side { border-left: none; border-top: 1px solid var(--c-line-dark); }
  .map-side-scroll { max-height: 240px; }
}

/* ============================================
   NEWS
   ============================================ */
.news-section { background: var(--c-bg-2); }

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
@media (max-width: 880px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  display: flex; flex-direction: column;
  background: var(--c-bg-3);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
  cursor: none;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,74,0.3);
}
.news-card-image {
  aspect-ratio: 16/9;
  background: var(--c-bg-2);
  position: relative;
  overflow: hidden;
}
.news-card-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
}
.news-card-body { padding: var(--s-5) var(--s-6) var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.news-card-meta {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
.news-tag {
  padding: 5px 11px;
  background: rgba(212,160,74,0.15);
  color: var(--c-gold);
  border: 1px solid rgba(212,160,74,0.3);
  border-radius: var(--r-pill);
  letter-spacing: 0.1em;
  font-size: 10px;
}
.news-card-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  flex: 1;
  color: #fff;
}
.news-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-gold);
}
.news-illus { width: 100%; height: 100%; }

/* News page grid */
.news-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 980px) { .news-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-page-grid { grid-template-columns: 1fr; } }

/* ============================================
   ABOUT
   ============================================ */
.about-hero {
  padding-top: 200px;
  padding-bottom: var(--s-9);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 20%, rgba(58,163,157,0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212,160,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.about-hero-inner { position: relative; display: grid; gap: var(--s-7); max-width: 1200px; }
.about-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: var(--s-4) 0 0;
  text-wrap: balance;
}
.about-lede {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  color: var(--c-text-soft);
  max-width: 900px;
  text-wrap: pretty;
}
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); margin-top: var(--s-6); }
@media (max-width: 880px) { .about-body { grid-template-columns: 1fr; } }
.about-body p { font-size: 16px; color: var(--c-text-mute); line-height: 1.7; }

/* Values — premium cards with gradient */
.values-section { background: var(--c-bg-2); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: linear-gradient(180deg, var(--c-bg-3) 0%, var(--c-bg-2) 100%);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-md);
  padding: var(--s-7);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.value-card::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  right: -60px; top: -60px;
  background: radial-gradient(circle, rgba(212,160,74,0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.value-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-gold);
  letter-spacing: 0.18em;
  margin-bottom: var(--s-5);
}
.value-card h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-4);
}
.value-card p { color: var(--c-text-mute); font-size: 15px; margin: 0; line-height: 1.55; flex: 1; }

/* Team */
.team-section { background: var(--c-bg); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { display: flex; flex-direction: column; gap: var(--s-3); }
.team-portrait {
  aspect-ratio: 4/5;
  background: var(--c-bg-2);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--c-line-dark);
}
.team-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  color: #fff;
}
.team-role {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-gold);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--c-bg); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s-9); }
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; gap: var(--s-7); } }

.contact-info { display: flex; flex-direction: column; gap: var(--s-6); }
.info-block { padding-bottom: var(--s-5); border-bottom: 1px solid var(--c-line-dark); }
.info-block .label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}
.info-block .value {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #fff;
}

.form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full { grid-column: span 2; }
.form-row label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-mute);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--c-bg-2);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: var(--f-sans);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color var(--dur-1) var(--ease);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--c-gold); }
.form-submit { grid-column: span 2; margin-top: var(--s-3); }
@media (max-width: 720px) {
  .form { grid-template-columns: 1fr; gap: var(--s-3); }
  .form-row.full,
  .form-submit { grid-column: span 1; }
}
.form-success {
  grid-column: span 2;
  padding: var(--s-4);
  background: rgba(58,163,157,0.1);
  border: 1px solid var(--c-teal);
  color: var(--c-teal-2);
  border-radius: var(--r-sm);
  font-size: 14px;
  display: none;
}
.form-success.show { display: block; }

/* ============================================
   CTA Banner — premium
   ============================================ */
.cta-banner {
  background: var(--c-bg-2);
  color: #fff;
  padding: var(--s-10) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--c-line-dark);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 80% 50%, rgba(212,160,74,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 600px 300px at 20% 100%, rgba(58,163,157,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: var(--s-7);
  align-items: center;
  position: relative;
}
@media (max-width: 880px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}
.cta-sub { color: var(--c-text-soft); font-size: 18px; max-width: 600px; margin: 0; line-height: 1.45; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-bg);
  color: var(--c-text-soft);
  padding: var(--s-10) 0 var(--s-5);
  border-top: 1px solid var(--c-line-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--c-line-dark);
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-brand .footer-tag { margin-top: var(--s-4); font-size: 14px; color: var(--c-text-mute); max-width: 280px; line-height: 1.5; }
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin: 0 0 var(--s-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a { font-size: 14px; color: var(--c-text-soft); transition: color var(--dur-1) var(--ease); }
.footer-col a:hover { color: var(--c-gold); }

/* Big footer logotype */
.footer-mega {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 10.5vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  padding: var(--s-8) 0 var(--s-3);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--s-5);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-text-mute);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.footer-legal-links { display: flex; gap: var(--s-5); flex-wrap: wrap; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page-hero {
  background: var(--c-bg);
  color: #fff;
  padding-top: 200px;
  padding-bottom: var(--s-7);
  position: relative;
  overflow: hidden;
}
.services-detail { padding-top: var(--s-7); }
.services-detail .service-detail-row { padding: var(--s-6) 0; }
.services-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(58,163,157,0.2) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(212,160,74,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.services-detail {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line-dark);
}
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-7);
  padding: var(--s-9) 0;
  align-items: start;
  border-bottom: 1px solid var(--c-line-dark);
}
@media (max-width: 880px) { .service-detail-row { grid-template-columns: 1fr; gap: var(--s-4); } .service-detail-side { position: static !important; top: auto !important; } }
.service-detail-side {
  display: flex; flex-direction: column; gap: var(--s-4);
  position: sticky;
  top: 120px;
}
.service-detail-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}
.service-detail-icon { width: 88px; height: 88px; color: var(--c-gold); }
.service-detail-side h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
}
.service-detail-body p { font-size: 18px; line-height: 1.55; color: var(--c-text-soft); }
.service-detail-body ul { list-style: none; padding: 0; margin: var(--s-5) 0 0; display: grid; gap: var(--s-3); }
.service-detail-body li {
  display: flex; gap: var(--s-3); align-items: baseline;
  font-size: 16px; color: var(--c-text-soft);
  padding: var(--s-3) 0; border-top: 1px solid var(--c-line-dark);
  position: relative;
}
.service-detail-body li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-gold); flex-shrink: 0;
  transform: translateY(-2px);
}
/* News detail */
.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: var(--s-4); transition: color 0.2s;
}
.back-link:hover { color: var(--c-gold); }
.back-link svg { width: 14px; height: 14px; }
.news-detail-meta {
  display: flex; gap: var(--s-3); align-items: center;
  font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: var(--s-3);
}
.news-detail-hero {
  aspect-ratio: 16 / 7; width: 100%; overflow: hidden;
  border-radius: 4px; margin-bottom: var(--s-7);
  background: var(--c-bg-soft);
}
.news-detail-hero > svg { width: 100%; height: 100%; }
.news-detail-body {
  max-width: 760px; margin: 0 auto;
  font-size: 19px; line-height: 1.75; color: var(--c-text);
}
.news-detail-body p { margin: 0 0 var(--s-4) 0; }

/* Service detail page */
.service-detail-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (max-width: 880px) { .service-detail-hero-grid { grid-template-columns: 1fr; } }
.service-detail-icon-big {
  width: 220px; height: 220px;
  color: var(--c-gold);
  opacity: 0.85;
  margin-left: auto;
}
.service-detail-icon-big svg { width: 100%; height: 100%; }
.svc-detail-points {
  max-width: 980px; margin: 0 auto;
}
.svc-detail-points-head {
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.svc-detail-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
}
.svc-detail-list li {
  display: grid; grid-template-columns: 80px 1fr;
  gap: var(--s-4); align-items: baseline;
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-line-dark);
  font-size: 22px; color: #fff;
  font-family: var(--f-display);
}
.svc-detail-list li:last-child { border-bottom: 1px solid var(--c-line-dark); }
.svc-detail-list-n {
  font-family: var(--f-mono); font-size: 12px; color: var(--c-gold);
  letter-spacing: 0.12em;
}
.svc-detail-cta {
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--s-5); align-items: center;
  padding: var(--s-6) 0;
}
@media (max-width: 760px) { .svc-detail-cta { grid-template-columns: 1fr; } }

/* Service detail — extended sections */
.svc-overview-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: var(--s-6);
  align-items: start;
}
.svc-overview-section { padding: var(--s-7) 0 !important; }
.svc-challenges-section, .svc-outcomes-section { padding: var(--s-7) 0 !important; }
.svc-method-section { padding: var(--s-7) 0 !important; }
.svc-for-section { padding: var(--s-7) 0 !important; }
.svc-related-section { padding: var(--s-7) 0 !important; }
.svc-cta-section { padding: var(--s-7) 0 !important; }
.svc-overview-side { position: sticky; top: 120px; }
.svc-overview-body { display: grid; gap: var(--s-4); max-width: 720px; }
.svc-overview-body p {
  font-size: 16px; line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.svc-overview-body p:first-child {
  font-size: 18px; line-height: 1.5;
  color: rgba(255,255,255,0.92);
  font-weight: 300; letter-spacing: -0.005em;
}
@media (max-width: 960px) {
  .svc-overview-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .svc-overview-side { position: static !important; top: auto !important; }
}

.svc-method-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--c-line-dark);
  border-left: 1px solid var(--c-line-dark);
}
.svc-method-step {
  padding: var(--s-5) var(--s-4);
  border-right: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
  background: var(--c-bg-soft);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: background 0.4s ease;
}
.svc-method-step:hover { background: rgba(255,255,255,0.02); }
.svc-method-step-n {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.16em; color: var(--c-gold);
}
.svc-method-step h3 {
  font-family: var(--f-display); font-size: 20px;
  font-weight: 400; line-height: 1.2;
  color: #fff; margin: 0; letter-spacing: -0.01em;
}
.svc-method-step p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.65); margin: 0;
}
@media (max-width: 1100px) { .svc-method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-method-grid { grid-template-columns: 1fr; } }

.svc-for-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s-7);
  align-items: start;
}
.svc-for-chips { display: flex; flex-direction: column; gap: var(--s-3); }
.svc-for-chip {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--c-line-dark);
  background: rgba(255,255,255,0.015);
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.svc-for-chip:hover {
  border-color: var(--c-gold);
  background: rgba(212,175,55,0.04);
}
.svc-for-chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-gold); flex-shrink: 0;
}
@media (max-width: 960px) { .svc-for-grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.svc-for-section { padding: var(--s-9) 0 !important; }
.svc-for-title {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15;
  letter-spacing: -0.015em; margin: 12px 0 0; max-width: 380px;
}
.svc-for-chip { font-size: 15px; }
.svc-method-section { padding-bottom: var(--s-8) !important; }

/* Service-list "Batafsil" link */
.svc-detail-more {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: var(--s-5); cursor: pointer;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-gold);
  padding-bottom: 6px; border-bottom: 1px solid rgba(212,175,55,0.3);
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
  width: fit-content;
}
.svc-detail-more:hover {
  color: #fff; gap: 14px;
  border-bottom-color: #fff;
}
.svc-detail-more-arrow { width: 14px; height: 14px; display: inline-flex; }
.svc-detail-more-arrow svg { width: 100%; height: 100%; }

/* Compact CTA + related titles on service detail */
.svc-cta-title, .svc-related-title {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 2.8vw, 40px); line-height: 1.15;
  letter-spacing: -0.015em;
}

/* Page heros */
.page-hero { padding-top: 200px; padding-bottom: var(--s-9); background: var(--c-bg); position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(58,163,157,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(212,160,74,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: var(--s-4) 0 0;
  max-width: 1100px;
  text-wrap: balance;
}
.page-hero .lede { margin-top: var(--s-5); font-size: 19px; color: var(--c-text-soft); max-width: 720px; text-wrap: pretty; line-height: 1.5; }


/* === Footer enrichment === */
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: end;
  padding: var(--s-7) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--s-7);
}
.footer-newsletter-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 12px;
  max-width: 540px;
  color: rgba(255,255,255,0.9);
}
.footer-news-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
}
.footer-news-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--f-sans);
  font-size: 14px;
  outline: none;
}
.footer-news-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-news-form button {
  background: var(--c-gold);
  color: var(--c-bg);
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  height: 44px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14px;
  cursor: none;
  white-space: nowrap;
}
.footer-news-form button:hover { background: var(--c-gold-2); }
@media (max-width: 880px) {
  .footer-newsletter { grid-template-columns: 1fr; gap: var(--s-4); }
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  margin: 16px 0 24px;
}
.footer-affil { display: flex; flex-direction: column; gap: 10px; }
.footer-affil-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.footer-affil-list { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-affil-chip {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
}
.footer-social { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.footer-social-list { display: flex; gap: 10px; }
.footer-social-list a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
  transition: all var(--dur-2) var(--ease);
  cursor: none;
}
.footer-social-list a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}


/* Push Company & Contact columns to the right */
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--s-6); }
.footer-col-right { justify-self: end; min-width: 180px; }
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-col-right { justify-self: start; }
}


/* Service detail — challenges + outcomes */
.svc-twocol {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--s-6);
  align-items: start;
}
@media (max-width: 980px) {
  .svc-twocol { grid-template-columns: 1fr; gap: var(--s-4); }
}
.svc-twocol-side .section-head-title { max-width: 320px; }

/* Tighter section heads on service detail page */
.svc-overview-section .section-head-title,
.svc-challenges-section .section-head-title,
.svc-outcomes-section .section-head-title,
.svc-method-section .section-head-title,
.svc-for-section .section-head-title,
.svc-related-section .section-head-title {
  font-size: clamp(26px, 2.6vw, 36px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.015em !important;
  margin-top: 12px !important;
}
.svc-cta-title { font-size: clamp(24px, 2.4vw, 32px) !important; }

.svc-challenges-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--s-3);
}
.svc-challenges-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-3);
  align-items: baseline;
  padding: var(--s-3) 0;
  border-top: 1px solid var(--c-line-dark);
}
.svc-challenges-list li:last-child { border-bottom: 1px solid var(--c-line-dark); }
.svc-challenges-n {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--c-gold);
}
.svc-challenges-t {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  color: #fff;
}

.svc-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 980px) {
  .svc-outcomes-grid { grid-template-columns: 1fr; }
}
.svc-outcome-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-line-dark);
  border-radius: 18px;
  padding: var(--s-4);
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .3s, transform .3s;
}
.svc-outcome-card:hover { border-color: var(--c-gold); transform: translateY(-2px); }
.svc-outcome-n {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--c-gold);
  margin-bottom: var(--s-4);
}
.svc-outcome-t {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
}
