/* ==============================================================
   PSST.mn — Single Page Magazine Layout
   Үндсэн стандарт CSS
   ----------------------------------------------------------------
   Брэнд өнгө:
     PSST Blue   #003399   — Үндсэн
     PSST Dark   #242021   — Текст, dark section
     PSST Teal   #00C4C1   — Accent
     White       #FFFFFF   — Дэвсгэр
   Фонт:
     Гарчиг   — Manrope (Google Fonts) — модерн, геометр, хүчтэй
     Үндсэн   — Inter (Google Fonts) — хамгийн уншигдсан screen фонт
     Fallback — Arial, Helvetica, sans-serif
   ============================================================== */

/* =================== ROOT VARIABLES =================== */
:root {
  /* Brand colors */
  --psst-blue:        #003399;
  --psst-blue-dark:   #002277;
  --psst-blue-light:  #1A4DB3;
  --psst-dark:        #242021;
  --psst-teal:        #00C4C1;
  --psst-teal-light:  #33D1CE;
  --psst-white:       #FFFFFF;

  /* Neutral grays */
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;

  /* Typography */
  --font-primary:   'Manrope', 'Inter', Arial, sans-serif;
  --font-secondary: 'Inter', Arial, Helvetica, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --section-y:     96px;
  --section-y-sm:  64px;

  /* Effects */
  --shadow-card-hover: 0 12px 32px rgba(0, 51, 153, 0.15);
  --shadow-teal-hover: 0 12px 32px rgba(0, 196, 193, 0.20);
  --transition: 0.25s ease;
}

/* =================== RESET =================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }
body {
  font-family: var(--font-secondary);
  color: var(--psst-dark);
  background: var(--psst-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--psst-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--psst-teal); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); line-height: 1.15; }

/* =================== CONTAINER =================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =================== HEADER =================== */
.site-header {
  background: var(--psst-white);
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo img { height: 42px; width: auto; }
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  color: var(--psst-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
}
.site-nav a.active { color: var(--psst-blue); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0; right: 0;
  height: 3px;
  background: var(--psst-teal);
}
.site-nav a:hover { color: var(--psst-blue); }

/* =================== HERO (FULL SCREEN) =================== */
.hero {
  position: relative;
  min-height: 75vh;
  background-color: var(--psst-blue);
  background-image: linear-gradient(135deg, var(--psst-blue) 0%, var(--psst-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--psst-white);
  overflow: hidden;
}
.hero.hero-with-image {
  background-image:
    linear-gradient(110deg, rgba(0,30,90,0.92) 0%, rgba(0,51,153,0.78) 35%, rgba(36,32,33,0.55) 65%, rgba(0,0,0,0.75) 100%),
    url('assets/hero-equipment.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.hero.hero-with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.55) 0%, transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero.hero-with-image .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-right: auto;
  margin-left: max(48px, 8vw);
  max-width: 720px;
}
.hero.hero-with-image .hero-tag {
  background: rgba(0, 196, 193, 0.18);
  border: 1px solid rgba(0, 196, 193, 0.55);
  padding: 8px 18px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #00C4C1;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero.hero-with-image h1 {
  color: #fff;
  text-shadow:
    0 4px 24px rgba(0, 0, 0, 0.85),
    0 2px 8px rgba(0, 0, 0, 0.95),
    0 0 60px rgba(0, 30, 90, 0.6);
  letter-spacing: 1px;
}
.hero.hero-with-image .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}
/* Video hero үед .hero-ын background-pattern-ыг хасна */
.hero.hero-video-bg {
  background-image: linear-gradient(135deg, var(--psst-blue) 0%, var(--psst-teal) 100%) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.hero-content {
  max-width: 720px;
  text-align: left;
  margin-right: auto;
  margin-left: max(48px, 8vw);
  padding: 0 16px 0 0;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero-subtitle {
  font-size: 18px;
  opacity: 0.95;
  max-width: 640px;
  margin: 0;
  font-weight: 300;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-hint::after {
  content: '↓';
  display: block;
  margin-top: 8px;
  font-size: 20px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* =================== SECTION (COMMON) =================== */
.section { padding: var(--section-y) 24px; }
.section-alt  { background: var(--gray-50); }
.section-dark {
  background: var(--psst-dark);
  color: var(--psst-white);
}
.section-dark h2,
.section-dark h3 { color: var(--psst-white); }
.section-dark .section-eyebrow { color: var(--psst-teal); }
.section-dark .section-title   { color: var(--psst-white); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-eyebrow {
  color: var(--psst-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--psst-dark);
}
.section-link {
  color: var(--psst-blue);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid var(--psst-teal);
  padding-bottom: 4px;
}
.section-link:hover { color: var(--psst-teal); }
.section-link-teal {
  color: var(--psst-teal);
  border-color: var(--psst-teal);
}
.section-intro {
  color: var(--gray-500);
  font-size: 15px;
  max-width: 640px;
}

/* =================== NEWS GRID =================== */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
.news-card {
  background: var(--psst-white);
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--psst-blue);
}
.news-card-image {
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  flex-shrink: 0;
}
.news-image-blue { background-image: linear-gradient(135deg, var(--psst-blue), var(--psst-blue-light)); }
.news-image-teal { background-image: linear-gradient(135deg, var(--psst-teal), var(--psst-teal-light)); }
.news-image-dark { background-image: linear-gradient(135deg, var(--psst-dark), #3a3437); }
.image-placeholder { font-style: italic; }

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--psst-teal);
  color: var(--psst-white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
}

.news-card-body { padding: 24px; flex: 1; }
.news-card-body.small { padding: 16px 20px; }
.news-date {
  color: var(--gray-500);
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 600;
}
.news-card-body h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--psst-dark);
  transition: color var(--transition);
}
.news-card-body.small h3 { font-size: 15px; margin-bottom: 6px; }
.news-card:hover h3 { color: var(--psst-blue); }
.news-excerpt { color: var(--gray-500); font-size: 14px; }
.news-card-body.small .news-excerpt { font-size: 12px; }
.read-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--psst-blue);
  font-size: 13px;
  font-weight: 700;
}

.news-grid-small {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.news-card-small .news-card-image {
  aspect-ratio: 16/8;
  font-size: 11px;
}

/* =================== MEDIA / VIDEO GRID =================== */
.media-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}
.video-card {
  background: var(--psst-dark);
  border: 1px solid rgba(0,196,193,0.2);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.video-card a {
  display: block;
  color: inherit;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: var(--psst-teal);
  box-shadow: var(--shadow-teal-hover);
}
.video-thumb {
  aspect-ratio: 16/9;
  background: #1a1717;
  background-image: linear-gradient(135deg, #1a1717, #2a2426);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.play-btn {
  width: 72px;
  height: 72px;
  background: var(--psst-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  box-shadow: 0 8px 24px rgba(0,196,193,0.4);
}
.video-card:hover .play-btn { transform: scale(1.1); }
.play-btn::before {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--psst-white);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}
.video-card-small .play-btn { width: 48px; height: 48px; }
.video-card-small .play-btn::before {
  border-left: 12px solid var(--psst-white);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.video-meta {
  padding: 20px 24px;
  color: var(--psst-white);
}
.video-card-small .video-meta { padding: 14px 18px; }
.video-meta h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--psst-white);
  margin-bottom: 4px;
}
.video-card-small .video-meta h3 { font-size: 14px; }
.video-meta p { color: rgba(255,255,255,0.6); font-size: 12px; }

.video-side {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

/* =================== DOWNLOADS =================== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.download-card {
  background: var(--psst-white);
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.download-card:hover {
  transform: translateY(-3px);
  border-color: var(--psst-blue);
  box-shadow: var(--shadow-card-hover);
}
.file-icon {
  width: 56px;
  height: 72px;
  background: var(--psst-blue);
  color: var(--psst-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}
.file-icon-zip { background: var(--psst-teal); }
.file-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: var(--psst-white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.download-card h3 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--psst-dark);
}
.download-card .meta {
  color: var(--gray-500);
  font-size: 12px;
  margin-bottom: 20px;
  flex: 1;
}
.download-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--psst-blue);
  color: var(--psst-white) !important;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  text-decoration: none;
}
.download-btn:hover {
  background: var(--psst-blue-dark);
  color: var(--psst-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,51,153,0.3);
}

.iso-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding: 20px;
  background: var(--psst-white);
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}
.iso-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
}
.iso-row strong { font-size: 13px; }
.iso-row span { color: var(--gray-500); font-size: 11px; flex: 1; }
.iso-row .download-btn { padding: 6px 14px; font-size: 11px; }

/* =================== SOCIAL CARDS =================== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.social-card {
  aspect-ratio: 1;
  background-image: linear-gradient(135deg, var(--psst-blue), var(--psst-teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--psst-white);
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
  transition: transform var(--transition);
}
.social-card:nth-child(2) { background-image: linear-gradient(135deg, var(--psst-teal), var(--psst-blue-light)); }
.social-card:nth-child(3) { background-image: linear-gradient(135deg, var(--psst-dark), var(--psst-blue)); }
.social-card:nth-child(4) { background-image: linear-gradient(135deg, var(--psst-blue-light), var(--psst-teal)); }
.social-card:hover {
  transform: translateY(-4px) scale(1.02);
  color: var(--psst-white);
}
.social-letter { color: var(--psst-white); }

/* =================== FOOTER =================== */
.site-footer {
  background: var(--psst-dark);
  color: var(--psst-white);
  padding: 64px 24px 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  color: var(--psst-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--psst-white);
  opacity: 0.85;
  font-size: 13px;
}
.footer-col ul li a:hover { color: var(--psst-teal); opacity: 1; }

.footer-contact {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact strong { color: var(--psst-teal); }
.footer-contact a { color: var(--psst-white); }
.footer-contact a:hover { color: var(--psst-teal); }

.footer-logo img {
  background: var(--psst-white);
  padding: 12px 16px;
  border-radius: 6px;
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--psst-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--psst-white);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.social-icon:hover {
  background: var(--psst-teal);
  color: var(--psst-dark);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,196,193,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.7;
}

/* =================== MOBILE RESPONSIVE =================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .site-nav { font-size: 11px; gap: 12px; flex-wrap: wrap; }
  .site-nav a.active::after { bottom: -8px; }

  .hero { min-height: 60vh; }
  .hero h1 { font-size: 42px; }
  .hero-subtitle { font-size: 15px; }

  .section { padding: var(--section-y-sm) 20px; }
  .section-title { font-size: 28px; }
  .section-header { flex-direction: column; align-items: flex-start; }

  .news-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .iso-strip { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 22px; }
}

/* ==============================================================
   HOME PAGE — Нүүр хуудасны нэмэлт CSS
   ============================================================== */

/* Hero accent (ХҮЧ — Teal) */
.hero-accent { color: var(--psst-teal); }

/* Hero buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--psst-blue) !important;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.btn-primary:hover {
  background: var(--psst-teal);
  color: var(--psst-white) !important;
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: var(--psst-white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.70);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--psst-blue) !important;
  border-color: transparent;
}
.btn-small {
  padding: 8px 18px;
  font-size: 12px;
  background: var(--psst-blue);
  color: var(--psst-white) !important;
  border-radius: 6px;
}
.btn-small:hover {
  background: var(--psst-blue-dark);
  color: var(--psst-white) !important;
  transform: translateY(-1px);
}

/* ===== FLOATING STATS BAR ===== */
.stats-bar-wrapper {
  position: relative;
  margin-top: -60px;
  z-index: 5;
  padding: 0 24px;
}
.stats-bar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 20px 60px rgba(0, 51, 153, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
}
.stat-item {
  text-align: center;
  padding: 16px;
  border-left: 1px solid #E5E7EB;
}
.stat-item:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 900;
  color: var(--psst-blue);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.stat-num-teal { color: var(--psst-teal); }
.stat-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-pad-top { padding-top: 64px; }
.section-pad-sm { padding-top: 64px; padding-bottom: 64px; }

/* ===== EQUIPMENT SECTION (Техник тоног) ===== */
.equip-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(0, 196, 193, 0.20);
  border-radius: 12px;
}
.equip-stat {
  text-align: center;
  padding: 12px 8px;
  border-left: 1px solid rgba(0, 196, 193, 0.15);
}
.equip-stat:first-child { border-left: none; }
.equip-stat-num {
  font-family: var(--font-primary);
  font-size: 38px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.equip-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Equipment cards grid — BENTO LAYOUT (3 col, 2 row) */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}
.equip-grid > .equip-card:nth-child(1) {
  grid-column: span 4;
  grid-row: span 2;
  aspect-ratio: auto;
}
.equip-grid > .equip-card:nth-child(2),
.equip-grid > .equip-card:nth-child(3) {
  grid-column: span 2;
  aspect-ratio: auto;
}
.equip-grid > .equip-card:nth-child(4),
.equip-grid > .equip-card:nth-child(5) {
  grid-column: span 3;
  aspect-ratio: auto;
}
.equip-card:nth-child(1) .equip-card-num { font-size: 84px; }
.equip-card:nth-child(1) .equip-card-body h3 { font-size: 28px; line-height: 1.15; }
.equip-card:nth-child(1) .equip-card-body p { font-size: 14px; max-width: 520px; }
.equip-card {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--psst-white) !important;
  cursor: pointer;
  background-color: #0c1a3a;
  background-size: 70% auto, cover;
  background-position: 130% 60%, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: luminosity, normal;
  background-image:
    url('assets/equipment/cat395.jpg'),
    linear-gradient(135deg, #003399 0%, #1a1a2e 60%, #000 100%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 196, 193, 0.10);
}
.equip-card-2 {
  background-image:
    url('assets/equipment/dth145.jpg'),
    linear-gradient(135deg, #003399 0%, #1a1a2e 60%, #000 100%);
}
.equip-card-3 {
  background-image:
    url('assets/equipment/cat-c9.jpg'),
    linear-gradient(135deg, #00504b 0%, #1a1a2e 60%, #000 100%);
}
.equip-card-4 {
  background-image:
    url('assets/equipment/landcruiser78.jpg'),
    linear-gradient(135deg, #1a3d8f 0%, #1a1a2e 60%, #000 100%);
}
.equip-card-5 {
  background-image:
    url('assets/equipment/cat988gc.jpg'),
    linear-gradient(135deg, #002266 0%, #1a1a2e 60%, #000 100%);
}
.equip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 196, 193, 0.30);
  border-color: rgba(0, 196, 193, 0.40);
  color: var(--psst-white) !important;
}
.equip-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,30,80,0.85) 0%, rgba(0,30,80,0.55) 45%, rgba(0,0,0,0.20) 75%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.equip-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 28px;
}
.equip-card-num {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 900;
  color: rgba(255,255,255,0.35);
  -webkit-text-stroke: 1px rgba(0, 196, 193, 0.7);
  line-height: 1;
  letter-spacing: -1px;
  transition: color 0.4s ease;
}
.equip-card:hover .equip-card-num {
  color: var(--psst-teal);
}
.equip-card-body h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--psst-white);
  margin-bottom: 8px;
}
.equip-card-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 14px;
}
.equip-card-count {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 196, 193, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 196, 193, 0.45);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 0.5px;
}
.equip-card:hover .equip-card-count {
  background: var(--psst-teal);
  color: var(--psst-dark);
  border-color: var(--psst-teal);
}

/* Equipment brand chips inside cards */
.equip-brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.equip-brand-chip {
  display: inline-block;
  padding: 3px 9px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Equipment marquee — auto-scrolling brand strip */
.equip-marquee {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 196, 193, 0.20);
  border-bottom: 1px solid rgba(0, 196, 193, 0.20);
  background:
    linear-gradient(90deg, rgba(36,32,33,0.95) 0%, transparent 8%, transparent 92%, rgba(36,32,33,0.95) 100%);
}
.equip-marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: equip-scroll 40s linear infinite;
}
.equip-marquee:hover .equip-marquee-track { animation-play-state: paused; }
.equip-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px 6px 8px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0, 196, 193, 0.25);
  border-radius: 100px;
  height: 64px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.equip-marquee-item:hover {
  background: #fff;
  border-color: var(--psst-teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 196, 193, 0.35);
}
.equip-marquee-item img {
  width: 60px;
  height: 50px;
  object-fit: contain;
  border-radius: 100px;
}
.equip-marquee-item span {
  font-size: 13px;
  font-weight: 800;
  color: var(--psst-blue);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
@keyframes equip-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile */
@media (max-width: 1024px) {
  .equip-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .equip-stat { border-left: none; }
  .equip-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, auto);
  }
  .equip-grid > .equip-card:nth-child(1),
  .equip-grid > .equip-card:nth-child(2),
  .equip-grid > .equip-card:nth-child(3),
  .equip-grid > .equip-card:nth-child(4),
  .equip-grid > .equip-card:nth-child(5) {
    grid-column: span 1;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .equip-stat-num { font-size: 28px; }
  .equip-card { aspect-ratio: 4/3; }
  .equip-card-num { font-size: 32px; }
  .equip-card-body h3 { font-size: 18px; }
  .equip-card:nth-child(1) .equip-card-num { font-size: 56px; }
  .equip-card:nth-child(1) .equip-card-body h3 { font-size: 22px; }
}

/* ===== SERVICES V2 — Magazine Overlay style ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card-v2 {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  background-color: var(--psst-blue);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--psst-white) !important;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 51, 153, 0.12);
  isolation: isolate;
}
.service-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}

/* Хэвтээ зурганд тохирсон mode — Image-г бүтнээр харуулна (crop үгүй) */
.service-card-v2.sv-contain {
  background-color: var(--psst-dark);
}
.service-card-v2.sv-contain::before {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--psst-dark);
}
.service-card-v2.sv-contain:hover::before {
  transform: scale(1.04);
}
.service-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 51, 153, 0.30);
  color: var(--psst-white) !important;
}
.service-card-v2:hover::before {
  transform: scale(1.08);
}

/* Gradient overlay — зөвхөн доод хэсэгт хар gradient (текстийн уншигдах нөхцөл) */
.sv-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0,0,0,0.50) 75%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  transition: background 0.4s ease;
  pointer-events: none;
}
.service-card-v2:hover .sv-overlay {
  background:
    linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.90) 100%);
}

/* Teal вариант (ижил, brand өнгөгүй) */
.service-card-v2.sv-teal .sv-overlay {
  background:
    linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0,0,0,0.50) 75%, rgba(0,0,0,0.85) 100%);
}
.service-card-v2.sv-teal:hover .sv-overlay {
  background:
    linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.90) 100%);
}

/* Контент: дугаар + текст */
.sv-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.sv-number {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 900;
  color: var(--psst-white);
  line-height: 1;
  letter-spacing: -1.5px;
  transition: color 0.4s ease, transform 0.4s ease;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.65),
    0 0 24px rgba(0, 0, 0, 0.45);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.95);
}
.service-card-v2:hover .sv-number {
  color: var(--psst-teal);
  transform: scale(1.08);
  -webkit-text-stroke-color: var(--psst-teal);
}
.service-card-v2.sv-teal .sv-number {
  color: var(--psst-teal);
  -webkit-text-stroke-color: var(--psst-teal);
}
.service-card-v2.sv-teal:hover .sv-number {
  color: var(--psst-white);
  -webkit-text-stroke-color: var(--psst-white);
}

.sv-meta {
  position: relative;
}
.sv-meta h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--psst-white);
  line-height: 1.25;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.40);
}
.sv-meta p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin-bottom: 12px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.40);
}
.sv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 100px;
  color: var(--psst-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.service-card-v2:hover .sv-link {
  background: var(--psst-teal);
  border-color: var(--psst-teal);
  transform: translateX(4px);
}
.service-card-v2.sv-teal:hover .sv-link {
  background: var(--psst-white);
  color: var(--psst-dark);
  border-color: var(--psst-white);
}

/* Mobile */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-v2 { aspect-ratio: 4/3; }
  .sv-number { font-size: 42px; }
  .sv-meta h3 { font-size: 18px; }
}

/* ===== Хуучин service-card (өмнөх дизайн — backwards compat) ===== */
.service-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow:
    0 8px 32px rgba(0, 51, 153, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 51, 153, 0.30);
  box-shadow: 0 16px 48px rgba(0, 51, 153, 0.15);
}

.service-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background-color: var(--psst-blue);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,51,153,0.45) 0%, rgba(0,51,153,0.25) 100%);
  transition: opacity var(--transition);
}
.service-card-overlay-teal {
  background: linear-gradient(135deg, rgba(0,196,193,0.45) 0%, rgba(0,196,193,0.25) 100%);
}
.service-card:hover .service-card-overlay {
  opacity: 0.6;
}

.service-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--psst-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow:
    0 4px 12px rgba(0, 51, 153, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  z-index: 2;
}
.service-card-icon.icon-teal {
  color: var(--psst-teal);
}

.service-card-body {
  padding: 24px 24px 28px;
  flex: 1;
}
.service-card-body h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--psst-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--transition);
}
.service-card:hover .service-card-body h3 {
  color: var(--psst-blue);
}
.service-card-body p {
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== SECTION HERO (Section дотор хэвтээ banner) ===== */
.section-hero {
  position: relative;
  min-height: 320px;
  background-color: var(--psst-blue);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 -24px;
}
.section-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,51,153,0.85) 0%, rgba(0,196,193,0.55) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.section-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 24px;
}
.section-hero-content .section-eyebrow {
  color: var(--psst-teal);
  margin-bottom: 12px;
}
.section-hero-content .section-title {
  color: var(--psst-white);
  font-size: 48px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .section-hero { min-height: 240px; }
  .section-hero-content { padding: 48px 20px; }
  .section-hero-content .section-title { font-size: 32px; }
}

/* ===== ABOUT INTRO (Зураг үгүй, зүүн талд шахмал) ===== */
.about-intro {
  max-width: 820px;
  padding: 16px 0 8px;
}
.about-intro .lead-text {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--psst-dark);
  border-left: 4px solid var(--psst-teal);
  padding-left: 28px;
  margin-bottom: 24px;
}
.about-intro .muted-text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-left: 28px;
}
.about-intro .inline-link {
  margin-left: 28px;
}

@media (max-width: 768px) {
  .about-intro .lead-text {
    font-size: 16px;
    padding-left: 18px;
    border-left-width: 3px;
  }
  .about-intro .muted-text {
    font-size: 14px;
    padding-left: 18px;
  }
  .about-intro .inline-link { margin-left: 18px; }
}

/* ===== TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.director-photo {
  aspect-ratio: 4/3;
  background-image: linear-gradient(135deg, var(--psst-blue), var(--psst-blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-style: italic;
}
.lead-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--psst-dark);
  margin-bottom: 20px;
  border-left: 3px solid var(--psst-teal);
  padding-left: 20px;
}
.muted-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.inline-link {
  display: inline-block;
  color: var(--psst-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--psst-teal);
  padding-bottom: 4px;
}
.inline-link:hover { color: var(--psst-teal); }

/* ===== CARD GRID 3 (Services) ===== */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.content-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 32px 28px;
  transition: all var(--transition);
  box-shadow:
    0 8px 32px rgba(0, 51, 153, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}
.content-card.has-media { padding: 0 0 24px; }
.card-media {
  position: relative;
  display: block;
  width: 100%;
  height: 180px;
  background: #f1f4f9;
  overflow: hidden;
  margin-bottom: 18px;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}
.content-card.has-media:hover .card-media img { transform: scale(1.05); }
.content-card.has-media h3,
.content-card.has-media p { padding: 0 22px; }
.section-dark .card-media { background: rgba(255,255,255,0.92); }
.content-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 51, 153, 0.30);
  box-shadow: 0 16px 48px rgba(0, 51, 153, 0.15);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--psst-blue);
  color: var(--psst-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.card-icon-teal { background: var(--psst-teal); }
.content-card h3 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
}
.content-card p {
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.6;
}
.section-dark .content-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--psst-white);
}
.section-dark .content-card h3 { color: var(--psst-white); }
.section-dark .content-card p { color: rgba(255,255,255,0.7); }
.section-dark .content-card:hover {
  background: rgba(0, 196, 193, 0.10);
  border-color: rgba(0, 196, 193, 0.35);
}

/* ===== EQUIPMENT SHOWCASE ===== */
.equipment-mini-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.equip-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,196,193,0.15);
  border-left: 3px solid rgba(0,196,193,0.70);
  border-radius: 0 6px 6px 0;
  transition: all var(--transition);
}
.equip-row:hover {
  background: rgba(0,196,193,0.08);
  border-left-color: var(--psst-teal);
}
.equip-row strong {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 900;
  color: var(--psst-teal);
  min-width: 32px;
}
.equip-row span {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.equipment-feature {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(0, 51, 153, 0.85), rgba(0, 196, 193, 0.65));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 51, 153, 0.25);
}
.equip-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--psst-teal);
  color: var(--psst-white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 4px;
}
.equip-name {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  font-style: italic;
}

/* ===== ISO BADGES ===== */
.iso-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.iso-badge {
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(0, 51, 153, 0.40);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
}
.iso-badge:hover {
  transform: translateY(-4px);
  border-color: var(--psst-blue);
  box-shadow: var(--shadow-card-hover);
}
.iso-badge-teal { border-color: rgba(0, 196, 193, 0.50); }
.iso-badge-teal:hover { border-color: var(--psst-teal); }
.iso-num {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.iso-badge-teal .iso-num { color: var(--psst-teal); }
.iso-year {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 16px;
}
.iso-desc {
  font-size: 14px;
  font-weight: 700;
  color: var(--psst-dark);
}

/* ===== PROJECT GRID ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 51, 153, 0.08);
}
.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 51, 153, 0.30);
  box-shadow: 0 16px 48px rgba(0, 51, 153, 0.15);
}
.project-image {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-style: italic;
}
.project-body { padding: 24px; }
.project-body h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.project-body p { color: var(--gray-500); font-size: 14px; }
.badge-inline {
  display: inline-block;
  background: var(--psst-teal);
  color: var(--psst-white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* ===== NEWS GRID — explicit (hero нь section-alt-аас inherit байх) ===== */
.news-grid-small {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.news-card-small .news-card-image {
  aspect-ratio: 16/8;
  font-size: 11px;
}

/* ===== CAREER PERKS ===== */
.career-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.perk {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 196, 193, 0.20);
  border-radius: 10px;
  transition: all var(--transition);
}
.perk:hover {
  background: rgba(0, 196, 193, 0.10);
  border-color: rgba(0, 196, 193, 0.45);
  transform: translateY(-3px);
}
.perk-num {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--psst-teal);
  line-height: 1;
  margin-bottom: 12px;
}
.perk strong {
  display: block;
  font-size: 17px;
  color: var(--psst-white);
  margin-bottom: 6px;
}
.perk span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ===== PARTNER STRIP ===== */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.partner-mini {
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  color: var(--gray-700);
  letter-spacing: 1px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0, 51, 153, 0.06);
}
.partner-mini:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 51, 153, 0.30);
  color: var(--psst-blue);
  transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background-image: linear-gradient(135deg, var(--psst-blue) 0%, var(--psst-teal) 100%);
  padding: 96px 24px;
  text-align: center;
  color: var(--psst-white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.20), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15), transparent 40%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--psst-white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.cta-section p {
  font-size: 16px;
  opacity: 0.95;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cta-section .hero-actions {
  justify-content: center;
  margin-top: 0;
}

/* ===== FOOTER additions ===== */
.site-footer {
  background: var(--psst-dark);
  color: var(--psst-white);
  padding: 64px 24px 24px;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.footer-col h4 {
  color: var(--psst-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--psst-white);
  opacity: 0.85;
  font-size: 13px;
}
.footer-col ul li a:hover { color: var(--psst-teal); opacity: 1; }
.footer-contact {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact strong { color: var(--psst-teal); }
.footer-contact a { color: var(--psst-white); }
.footer-contact a:hover { color: var(--psst-teal); }
.footer-logo img {
  background: var(--psst-white);
  padding: 12px 16px;
  border-radius: 6px;
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

/* ===== HEADER glassmorphism ===== */
.site-header {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 51, 153, 0.08);
}

/* ===== Section glass background tint ===== */
.section-alt {
  background:
    radial-gradient(circle at 10% 20%, rgba(0,51,153,0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,196,193,0.08) 0%, transparent 40%),
    var(--gray-50);
}
.section-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(0,196,193,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0,51,153,0.18) 0%, transparent 50%),
    var(--psst-dark);
}

/* ===== Section link glass pill ===== */
.section-link {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(0, 51, 153, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 51, 153, 0.15);
  border-radius: 100px;
  color: var(--psst-blue);
  font-size: 13px;
  font-weight: 700;
}
.section-link:hover {
  background: rgba(0, 51, 153, 0.15);
  border-color: rgba(0, 196, 193, 0.50);
  transform: translateX(4px);
  color: var(--psst-blue);
}
.section-link-teal {
  background: rgba(0, 196, 193, 0.10);
  border: 1px solid rgba(0, 196, 193, 0.30);
  color: var(--psst-teal);
}
.section-link-teal:hover {
  background: rgba(0, 196, 193, 0.20);
  border-color: var(--psst-teal);
  color: var(--psst-teal);
}

/* ===== MOBILE — нэмэлт responsive ===== */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }
  .stat-item { border-left: none; }
  .iso-badges { grid-template-columns: 1fr; }
  .career-perks { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .stats-bar-wrapper { margin-top: -40px; padding: 0 20px; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 16px; }
  .stat-num { font-size: 32px; }
  .stat-lbl { font-size: 10px; }
  .lead-text { font-size: 15px; padding-left: 14px; }
  .iso-badges { grid-template-columns: 1fr; gap: 16px; }
  .iso-badge { padding: 28px 20px; }
  .career-perks { grid-template-columns: 1fr; gap: 16px; }
  .cta-section { padding: 64px 24px; }
  .cta-section h2 { font-size: 28px; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .project-grid { grid-template-columns: 1fr; }
  .partner-mini { font-size: 11px; padding: 10px 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

/* ==============================================================
   HERO VIDEO BACKGROUND — ХАЛДАХГҮЙ FALLBACK STACK
   ============================================================== */

/* Hero сонин нь видеоны parent — Background-уудаас давах тул шилжүүлэв */
.hero-video-bg {
  position: relative;
  overflow: hidden;
  background-color: var(--psst-blue);
  background-image: linear-gradient(135deg, var(--psst-blue) 0%, var(--psst-teal) 100%) !important;
}

/* Fallback зураг — Layer 1 (доор, видеогийн ард) */
.hero-fallback-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Видео — Layer 2 (fallback дээр) */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
  display: block;
  opacity: 1;
  visibility: visible;
  /* Grayscale (өнгөгүй) + бага зэрэг contrast */
  filter: grayscale(1) contrast(1.05) brightness(0.95);
  -webkit-filter: grayscale(1) contrast(1.05) brightness(0.95);
}
/* Видео ачаалагдсан үед fallback зураг ил харагдахгүй */
.hero-video[poster] + .hero-fallback-image {
  /* fallback зураг видеогийн ард үлдэнэ — видео load болоход харагдахгүй */
}

/* Overlay — Layer 3 (видео/зураг дээр, текстийн ард) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(135deg, rgba(0, 51, 153, 0.55) 0%, rgba(0, 196, 193, 0.35) 100%),
    linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

/* Контент — Layer 4 (хамгийн дээр) */
.hero-video-bg .hero-content {
  position: relative;
  z-index: 4;
}
.hero-video-bg .scroll-hint {
  z-index: 5;
}

/* .hero::before гэдэг pseudo нь Hero нар pattern background-ыг видеогийн дээр гаргахаас сэргийлэх */
.hero-video-bg::before {
  display: none !important;
}

/* Mobile-д видео ачаалал хүнд тул static gradient рүү буцаах сонголт */
@media (max-width: 768px) {
  .hero-video {
    object-position: center center;
  }
}

/* ============================================================
   EQUIPMENT PAGE — Filter Bar, Card icons, Marquee, Print
   ============================================================ */

/* ── Filter Bar (sticky under header) ─────────────────────── */
.equip-filter-bar {
  position: sticky;
  top: 64px; /* below header */
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 51, 153, 0.10);
  padding: 16px 0;
  box-shadow: 0 4px 24px rgba(0, 51, 153, 0.06);
}
.equip-filter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.equip-filter-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-right: 4px;
}
.equip-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.equip-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(0, 51, 153, 0.06);
  border: 1px solid rgba(0, 51, 153, 0.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--psst-blue);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.equip-filter-chip:hover {
  background: rgba(0, 51, 153, 0.12);
  border-color: rgba(0, 51, 153, 0.40);
}
.equip-filter-chip.active {
  background: var(--psst-blue);
  border-color: var(--psst-blue);
  color: #fff;
}
.equip-filter-chip .count {
  display: inline-block;
  padding: 1px 7px;
  background: rgba(0,0,0,0.10);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
}
.equip-filter-chip.active .count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.equip-filter-search {
  position: relative;
  margin-left: auto;
  min-width: 240px;
}
.equip-filter-search input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border: 1px solid rgba(0, 51, 153, 0.20);
  border-radius: 100px;
  background: #fff;
  font-family: var(--font-secondary);
  font-size: 13px;
  color: var(--psst-dark);
  transition: all var(--transition);
}
.equip-filter-search input:focus {
  outline: none;
  border-color: var(--psst-teal);
  box-shadow: 0 0 0 4px rgba(0, 196, 193, 0.15);
}
.equip-filter-search::before {
  content: '🔍';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Filter state: hidden cards/sections ──────────────────── */
.content-card.is-hidden { display: none; }
.section.is-empty-section { display: none; }

/* ── Section empty message ────────────────────────────────── */
.equip-no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-500);
}
.equip-no-results.is-shown { display: block; }
.equip-no-results h3 {
  font-family: var(--font-primary);
  color: var(--psst-blue);
  margin-bottom: 12px;
}

/* ── Card improvements: icon metrics + hover CTA ──────────── */
.content-card.has-media { position: relative; }
.content-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding: 0 22px;
}
.content-card .card-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(0, 51, 153, 0.07);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--psst-blue);
  letter-spacing: 0.3px;
}
.content-card .card-meta-pill .ico { font-size: 11px; opacity: 0.8; }
.section-dark .content-card .card-meta-pill {
  background: rgba(0, 196, 193, 0.15);
  color: rgba(255,255,255,0.95);
}

/* Hover CTA button */
.content-card .card-cta {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  background: var(--psst-teal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all var(--transition);
  box-shadow: 0 6px 16px rgba(0, 196, 193, 0.35);
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 3;
}
.content-card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ── Brand marquee on equipment page ──────────────────────── */
.equip-page-marquee {
  margin-top: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,51,153,0.05) 100%);
  padding: 32px 0 24px;
  border-top: 1px solid rgba(0, 51, 153, 0.10);
  overflow: hidden;
  position: relative;
}
.equip-page-marquee::before,
.equip-page-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.equip-page-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-50) 0%, transparent 100%);
}
.equip-page-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--gray-50) 0%, transparent 100%);
}
.equip-page-marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.equip-page-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: equip-scroll 60s linear infinite;
}
.equip-page-marquee:hover .equip-page-marquee-track { animation-play-state: paused; }
.equip-brand-tile {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 130px;
  padding: 14px 8px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.10);
  border-radius: 12px;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 51, 153, 0.04);
}
.equip-brand-tile:hover {
  border-color: var(--psst-teal);
  box-shadow: 0 8px 20px rgba(0, 196, 193, 0.20);
  transform: translateY(-2px);
}
.equip-brand-tile img {
  width: 90px;
  height: 60px;
  object-fit: contain;
}
.equip-brand-tile .name {
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-blue);
  letter-spacing: 0.3px;
  text-align: center;
  white-space: nowrap;
}

/* ── Print-friendly view ──────────────────────────────────── */
@media print {
  .site-header,
  .equip-filter-bar,
  .equip-page-marquee,
  .site-footer,
  .scroll-hint,
  .hero video,
  .card-cta {
    display: none !important;
  }
  body { background: #fff !important; color: #000 !important; }
  .hero {
    min-height: auto !important;
    padding: 24px 0 !important;
    background: #fff !important;
    color: #000 !important;
  }
  .hero h1 { color: #003399 !important; text-shadow: none !important; }
  .hero .hero-subtitle { color: #444 !important; text-shadow: none !important; }
  .section, .section-dark, .section-alt {
    background: #fff !important;
    color: #000 !important;
    padding: 16px 0 !important;
    page-break-inside: avoid;
  }
  .content-card {
    background: #fff !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    page-break-inside: avoid;
    color: #000 !important;
  }
  .content-card h3,
  .content-card p,
  .content-card .card-meta-pill,
  .section-title,
  .section-eyebrow { color: #000 !important; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .card-media { height: 120px !important; }
}

/* ── Mobile responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .equip-filter-bar { padding: 12px 0; top: 56px; }
  .equip-filter-inner { gap: 8px; }
  .equip-filter-search { min-width: 100%; order: -1; margin-left: 0; }
  .equip-filter-chip { font-size: 11px; padding: 6px 12px; }
}

/* ============================================================
   ABOUT PAGE — Director Greeting Block
   ============================================================ */
.director-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 16px;
}
.director-photo-frame {
  margin: 0;
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 12px 36px rgba(0, 51, 153, 0.18),
    0 2px 8px rgba(0, 51, 153, 0.08);
  background: #f5f7fa;
}
.director-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center top;
}
.director-photo-frame figcaption {
  padding: 16px 20px 20px;
  background: linear-gradient(135deg, var(--psst-blue), #1a4db3);
  color: #fff;
  text-align: left;
}
.director-photo-frame figcaption strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.director-photo-frame figcaption span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.director-message {
  font-size: 15px;
  line-height: 1.75;
  color: var(--psst-dark);
}
.director-message p { margin-bottom: 18px; }
.director-greeting {
  font-size: 18px !important;
  font-weight: 600;
  color: var(--psst-blue);
  border-left: 4px solid var(--psst-teal);
  padding-left: 18px;
  margin-bottom: 24px !important;
  line-height: 1.55 !important;
}
.director-signoff {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 51, 153, 0.15);
  color: var(--gray-500);
}
.director-signoff strong { color: var(--psst-blue); }

/* Mobile */
@media (max-width: 900px) {
  .director-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .director-photo-frame {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ============================================================
   ABOUT PAGE — Director Greeting Block
   ============================================================ */
.director-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 16px;
}
.director-photo-frame {
  margin: 0;
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 12px 36px rgba(0, 51, 153, 0.18),
    0 2px 8px rgba(0, 51, 153, 0.08);
  background: #f5f7fa;
}
.director-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center top;
}
.director-photo-frame figcaption {
  padding: 16px 20px 20px;
  background: linear-gradient(135deg, var(--psst-blue), #1a4db3);
  color: #fff;
  text-align: left;
}
.director-photo-frame figcaption strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.director-photo-frame figcaption span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.director-message {
  font-size: 15px;
  line-height: 1.75;
  color: var(--psst-dark);
}
.director-message p { margin-bottom: 18px; }
.director-greeting {
  font-size: 18px !important;
  font-weight: 600;
  color: var(--psst-blue);
  border-left: 4px solid var(--psst-teal);
  padding-left: 18px;
  margin-bottom: 24px !important;
  line-height: 1.55 !important;
}
.director-signoff {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 51, 153, 0.15);
  color: var(--gray-500);
}
.director-signoff strong { color: var(--psst-blue); }
@media (max-width: 900px) {
  .director-block { grid-template-columns: 1fr; gap: 32px; }
  .director-photo-frame { position: static; max-width: 320px; margin: 0 auto; }
}

/* ============================================================
   ABOUT PAGE — CEO Magazine-style Spread
   ============================================================ */
.ceo-section {
  position: relative;
  overflow: hidden;
}
.ceo-bg-pattern {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background:
    radial-gradient(circle at center, rgba(0, 196, 193, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.ceo-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px dashed rgba(0, 51, 153, 0.18);
  border-radius: 50%;
  animation: ceo-rot 90s linear infinite;
}
@keyframes ceo-rot {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.ceo-spread {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
  z-index: 1;
}

/* ── Portrait card (left) ─────────────────────────────────── */
.ceo-portrait-card {
  margin: 0;
  position: sticky;
  top: 100px;
}
.ceo-portrait-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 51, 153, 0.22),
    0 4px 12px rgba(0, 51, 153, 0.08);
}
.ceo-portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center top;
}
.ceo-portrait-year {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 14px;
  background: var(--psst-teal);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0, 196, 193, 0.40);
  z-index: 2;
}
.ceo-portrait-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-bottom: 80px solid var(--psst-teal);
  z-index: 1;
  opacity: 0.85;
}
/* old magazine caption removed — minimal version below takes effect */

/* ── Message (right) ──────────────────────────────────────── */
.ceo-message {
  position: relative;
  padding-top: 40px;
}
.ceo-quote-mark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: 'Georgia', serif;
  font-size: 280px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--psst-teal);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.ceo-greeting {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--psst-dark);
  margin-bottom: 28px;
  z-index: 1;
}
.ceo-dropcap {
  display: inline-block;
  float: left;
  font-family: var(--font-primary);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.85;
  color: var(--psst-blue);
  margin: 6px 12px 0 0;
  padding-right: 4px;
  border-right: 3px solid var(--psst-teal);
  padding-right: 14px;
}
.ceo-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--gray-700, #333);
  position: relative;
  z-index: 1;
}
.ceo-body p { margin-bottom: 18px; }
.ceo-body strong { color: var(--psst-blue); font-weight: 700; }
.ceo-body em { font-style: italic; color: var(--psst-dark); font-weight: 500; }

/* Signature card */
.ceo-signature {
  margin-top: 36px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(0, 196, 193, 0.08), rgba(0, 51, 153, 0.04));
  border-left: 4px solid var(--psst-teal);
  border-radius: 0 8px 8px 0;
  position: relative;
  z-index: 1;
}
.ceo-signature-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 6px;
}
.ceo-signature-name {
  display: block;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.ceo-signature-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--psst-teal);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 900px) {
  .ceo-spread {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ceo-portrait-card {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }
  .ceo-quote-mark { font-size: 180px; top: -20px; }
  .ceo-greeting { font-size: 18px; }
  .ceo-dropcap { font-size: 56px; }
}

/* ============================================================
   ABOUT PAGE — CEO Greeting (MINIMAL override)
   ============================================================ */
/* Override / disable older decorative rules */
.ceo-bg-pattern { display: none !important; }
.ceo-portrait-year,
.ceo-portrait-corner,
.ceo-quote-mark,
.ceo-dropcap { display: none !important; }

.ceo-section {
  position: relative;
  overflow: visible;
}

.ceo-spread {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 8px;
}

.ceo-portrait-card {
  margin: 0;
  position: sticky;
  top: 100px;
}
.ceo-portrait-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 51, 153, 0.10);
  background: #f5f7fa;
}
.ceo-portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center top;
}
.ceo-portrait-caption {
  margin-top: 14px;
  padding: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  text-align: left;
}
.ceo-portrait-caption strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--psst-dark);
  letter-spacing: 0.1px;
  margin-bottom: 2px;
}
.ceo-portrait-caption span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.2px;
}
.ceo-portrait-caption em { display: none; }

.ceo-message {
  padding-top: 0;
  position: static;
}
.ceo-greeting {
  font-size: 18px !important;
  font-weight: 500;
  line-height: 1.55 !important;
  color: var(--psst-dark);
  margin-bottom: 24px !important;
  padding: 0 !important;
  border: none !important;
}
.ceo-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700, #444);
}
.ceo-body p {
  margin-bottom: 16px;
}
.ceo-body strong,
.ceo-body em { color: inherit; font-style: normal; font-weight: 400; }

.ceo-signature {
  margin-top: 28px;
  padding: 0;
  background: none;
  border: none;
}
.ceo-signature-label {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.ceo-signature-name {
  display: block;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--psst-blue);
  letter-spacing: 0.2px;
}
.ceo-signature-title { display: none; }

@media (max-width: 900px) {
  .ceo-spread {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ceo-portrait-card {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* About page hero — uses hero-about.png with teal-dominant gradient */
.hero.hero-about {
  background-image:
    linear-gradient(115deg,
      rgba(0, 60, 75, 0.85) 0%,
      rgba(0, 120, 130, 0.55) 30%,
      rgba(0, 196, 193, 0.30) 55%,
      rgba(36, 32, 33, 0.55) 80%,
      rgba(0, 0, 0, 0.78) 100%),
    url('assets/hero-about.png');
  background-color: #002a35;
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ============================================================
   ABOUT PAGE — Mission / Vision / Values (sunset hero style)
   ============================================================ */
.mission-section {
  position: relative;
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  background-color: #0a0e1a;
  color: #fff;
  isolation: isolate;
  display: flex;
  align-items: stretch;
}
.mission-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/mission-bg.png');
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}
.mission-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,14,26,0.10) 0%,
      rgba(10,14,26,0.20) 35%,
      rgba(10,14,26,0.60) 55%,
      rgba(10,14,26,0.85) 75%,
      rgba(10,14,26,0.95) 100%);
  z-index: 1;
}
.mission-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 340px;
  padding-bottom: 56px;
}

/* ── Vision + Mission rows (top of content area) ─────────── */
.mission-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 64px;
  max-width: 1100px;
}
.mission-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: center;
}
.mission-label {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  text-align: left;
}
.mission-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 820px;
  margin: 0;
}

/* ── Values block (bottom) ────────────────────────────────── */
.values-block {
  margin-top: 12px;
}
.values-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
  margin: 0 0 20px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.20);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
}
.value-item {
  padding: 0;
}
.value-item h4 {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.25;
  min-height: 32px;
}
.value-item p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 1200px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .mission-section { min-height: auto; }
  .mission-content { padding-top: 260px; padding-bottom: 40px; }
  .mission-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mission-label { font-size: 18px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .value-item h4 { min-height: 0; }
}

/* ============================================================
   ABOUT PAGE — History Timeline (vertical)
   ============================================================ */
.history-section {
  position: relative;
}
.history-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.history-stats {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.history-stat-num {
  font-family: var(--font-primary);
  font-size: 56px;
  font-weight: 900;
  color: var(--psst-teal);
  line-height: 0.9;
  letter-spacing: -2px;
}
.history-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
}

/* ── Timeline list ────────────────────────────────────────── */
.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 130px;
  top: 12px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    var(--psst-teal) 0%,
    rgba(0, 196, 193, 0.50) 50%,
    rgba(0, 51, 153, 0.30) 100%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 40px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
  transition: all var(--transition);
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-year {
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -1px;
  line-height: 1;
  text-align: right;
  padding-top: 4px;
}

.timeline-marker {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-marker::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid var(--psst-teal);
  border-radius: 50%;
  z-index: 2;
  position: relative;
  box-shadow: 0 0 0 4px rgba(0, 196, 193, 0.15);
  transition: all var(--transition);
}

.timeline-item:hover .timeline-marker::before {
  background: var(--psst-teal);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(0, 196, 193, 0.25);
}

.timeline-body {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 10px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 51, 153, 0.05);
  transition: all var(--transition);
}
.timeline-item:hover .timeline-body {
  transform: translateY(-2px);
  border-color: rgba(0, 196, 193, 0.40);
  box-shadow: 0 12px 32px rgba(0, 51, 153, 0.10);
}
.timeline-body h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 800;
  color: var(--psst-blue);
  margin: 0 0 8px 0;
  letter-spacing: 0.2px;
}
.timeline-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-700, #444);
  margin: 0 0 12px 0;
}
.timeline-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 196, 193, 0.15);
  border: 1px solid rgba(0, 196, 193, 0.30);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Current/active item */
.timeline-item-current .timeline-marker::before {
  background: var(--psst-teal);
  box-shadow:
    0 0 0 6px rgba(0, 196, 193, 0.25),
    0 0 0 12px rgba(0, 196, 193, 0.10);
  animation: pulse-marker 2.5s ease-in-out infinite;
}
.timeline-item-current .timeline-body {
  background: linear-gradient(135deg, rgba(0, 196, 193, 0.10), rgba(0, 51, 153, 0.06));
  border-color: rgba(0, 196, 193, 0.40);
}
.timeline-item-current .timeline-year {
  color: var(--psst-teal);
}
.timeline-item-current .timeline-tag {
  background: var(--psst-teal);
  color: #fff;
  border-color: var(--psst-teal);
}
@keyframes pulse-marker {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(0, 196, 193, 0.25),
      0 0 0 12px rgba(0, 196, 193, 0.10);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(0, 196, 193, 0.30),
      0 0 0 18px rgba(0, 196, 193, 0.05);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .history-section .section-header { flex-direction: column; align-items: flex-start; }
  .history-stat-num { font-size: 44px; }
  .timeline::before { left: 12px; }
  .timeline-item {
    grid-template-columns: 28px 1fr;
    gap: 16px;
  }
  .timeline-year {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 24px;
    padding-top: 0;
    margin-bottom: 4px;
  }
  .timeline-marker {
    width: 28px;
    grid-column: 1;
  }
  .timeline-body {
    grid-column: 2;
    padding: 16px 18px;
  }
}

/* ============================================================
   ABOUT PAGE — Capacity Section (brand gradient background)
   ============================================================ */
.capacity-section {
  position: relative;
  overflow: hidden;
  /* Override section-dark with PSST Blue → teal-tinted gradient */
  background:
    linear-gradient(135deg,
      var(--psst-blue) 0%,
      #002a6e 25%,
      #001f4a 55%,
      #001a3a 80%,
      #00253a 100%) !important;
  color: #fff;
}
/* Soft teal glow top-right */
.capacity-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 196, 193, 0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Soft blue glow bottom-left */
.capacity-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 77, 179, 0.30) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.capacity-section > .container { position: relative; z-index: 1; }
.capacity-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  margin: 0 0 48px 0;
}

/* ── Top highlight stats row ──────────────────────────────── */
.capacity-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 56px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}
.cap-highlight {
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
}
.cap-highlight:last-child { border-right: none; }
.cap-highlight-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.cap-highlight-num sup {
  font-size: 32px;
  color: var(--psst-teal);
  vertical-align: top;
  margin-left: 2px;
}
.cap-highlight-lbl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.70);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.cap-highlight-teal .cap-highlight-num { color: var(--psst-teal); }

/* ── Capability detail cards (4 columns) ──────────────────── */
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.capacity-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 196, 193, 0.15);
  border-radius: 10px;
  padding: 24px 22px;
  transition: all var(--transition);
}
.capacity-card:hover {
  background: rgba(0, 196, 193, 0.08);
  border-color: rgba(0, 196, 193, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 51, 153, 0.20);
}
.cap-card-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.cap-card-no {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -0.5px;
}
.cap-card-head h3 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.cap-card-list {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.cap-card-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
}
.cap-card-list li:last-child { border-bottom: none; }
.cap-card-list li span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}
.cap-card-list li strong {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.cap-card-list li strong sup {
  font-size: 11px;
  vertical-align: top;
}
.cap-card-foot {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-style: italic;
}

/* Responsive */
@media (max-width: 1100px) {
  .capacity-highlights { grid-template-columns: repeat(2, 1fr); }
  .cap-highlight { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 20px; }
  .cap-highlight:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.10); }
  .cap-highlight:nth-last-child(-n+2) { border-bottom: none; }
  .capacity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .capacity-highlights { grid-template-columns: 1fr; }
  .cap-highlight { border-right: none !important; }
  .cap-highlight-num { font-size: 48px; }
  .capacity-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE — Mission/Vision/Values REFINED
   ============================================================ */

/* Label wrap with number, label, accent rule */
.mission-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.mission-label-num {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--psst-teal);
  letter-spacing: 3px;
  line-height: 1;
}
.mission-label-rule {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--psst-teal);
  margin-top: 6px;
  border-radius: 2px;
}

/* Mission text with cleaner padding */
.mission-text {
  padding-top: 4px;
}

/* ── Values header (title + counter chip) ─────────────────── */
.values-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.20);
}
.values-header .values-title {
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.values-counter {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 196, 193, 0.15);
  border: 1px solid rgba(0, 196, 193, 0.45);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Value items with numbers ─────────────────────────────── */
.value-item {
  padding: 0;
  position: relative;
  transition: all var(--transition);
  cursor: default;
}
.value-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.value-item:hover .value-num { opacity: 1; }
.value-item h4 {
  position: relative;
  transition: color var(--transition);
}
.value-item h4::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--psst-teal);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: all var(--transition);
}
.value-item:hover h4::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Mobile */
@media (max-width: 768px) {
  .mission-label-wrap { gap: 8px; }
  .mission-label-num { font-size: 11px; letter-spacing: 2px; }
  .mission-label-rule { width: 32px; height: 2px; }
  .values-header { flex-direction: row; align-items: center; }
  .values-counter { font-size: 10px; padding: 4px 10px; }
}

/* ============================================================
   FOOTER — Modern multi-section design
   ============================================================ */

/* Override base footer */
.site-footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f1424 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 0 !important;
  margin-top: 0;
}

/* CTA strip at top of footer */
.footer-cta {
  background: linear-gradient(135deg, var(--psst-blue) 0%, #002a6e 60%, #001f4a 100%);
  border-bottom: 1px solid rgba(0, 196, 193, 0.30);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 196, 193, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-cta-text { flex: 1; min-width: 280px; }
.footer-cta-text h3 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}
.footer-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 540px;
  line-height: 1.55;
}
.footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--psst-teal);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 8px 20px rgba(0, 196, 193, 0.30);
}
.footer-cta-btn:hover {
  background: #00a8a5;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 196, 193, 0.45);
}
.footer-cta-btn .arrow { font-size: 16px; transition: transform var(--transition); }
.footer-cta-btn:hover .arrow { transform: translateX(4px); }
.footer-cta-btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
.footer-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.10);
}

/* Main 4 columns */
.footer-main {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 56px;
  padding: 56px 0 40px;
}

/* Brand column */
.footer-brand-logo {
  width: 110px;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-tagline {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--psst-teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 22px 0;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social .social-icon:hover {
  background: var(--psst-teal);
  border-color: var(--psst-teal);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer columns */
.site-footer .footer-col h4 {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 196, 193, 0.30);
  position: relative;
}
.site-footer .footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 1px;
  background: var(--psst-teal);
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col ul li {
  margin: 0;
  padding: 7px 0;
}
.site-footer .footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  padding-left: 0;
}
.site-footer .footer-col ul li a:hover {
  color: var(--psst-teal);
  padding-left: 8px;
}

/* Contact list with labels */
.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px !important;
  padding: 0 !important;
}
.footer-contact-list .contact-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--psst-teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-contact-list a,
.footer-contact-list span:not(.contact-label) {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1.5;
  padding-left: 0 !important;
}
.footer-contact-list a:hover { color: var(--psst-teal); padding-left: 0 !important; }

/* Hours */
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-hours li {
  display: flex !important;
  justify-content: space-between !important;
  padding: 6px 0 !important;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
  font-size: 12.5px;
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours span { color: rgba(255,255,255,0.65); padding-left: 0 !important; }
.footer-hours strong {
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
}
.footer-hours .off strong { color: var(--psst-teal); }

/* Certifications pills */
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cert-pill {
  display: inline-block;
  padding: 5px 11px;
  background: rgba(0, 196, 193, 0.15);
  border: 1px solid rgba(0, 196, 193, 0.40);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--psst-teal);
  letter-spacing: 0.3px;
}

/* Bottom bar */
.footer-bottom-wrap {
  background: rgba(0, 0, 0, 0.30);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom strong { color: rgba(255, 255, 255, 0.85); font-weight: 700; }
.footer-tagline-bottom { color: rgba(0, 196, 193, 0.85) !important; font-weight: 500; }
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 12px;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--psst-teal); }

/* Mobile responsive */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 40px 0 30px; }
}
@media (max-width: 640px) {
  .footer-cta { padding: 32px 0; }
  .footer-cta-text h3 { font-size: 22px; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-btn { flex: 1; justify-content: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   FOOTER — Social SVG icons (real brand logos)
   ============================================================ */
.footer-social .social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}

/* Brand-specific hover colors */
.footer-social .social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
}
.footer-social .social-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
}
.footer-social .social-yt:hover {
  background: #FF0000;
  border-color: #FF0000;
}
.footer-social .social-li:hover {
  background: #0A66C2;
  border-color: #0A66C2;
}

/* Services page hero — uses hero-services.png */
.hero.hero-services {
  background-image:
    linear-gradient(115deg,
      rgba(0,30,90,0.85) 0%,
      rgba(0,51,153,0.55) 35%,
      rgba(36,32,33,0.40) 65%,
      rgba(0,0,0,0.72) 100%),
    url('assets/hero-services.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: var(--psst-blue);
}

/* ============================================================
   SERVICES PAGE — Alternating image+text rows
   ============================================================ */

/* Intro section */
.services-intro-section {
  padding: 64px 0 32px;
}
.services-intro-text {
  font-size: 19px;
  line-height: 1.65;
  color: var(--psst-dark);
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}
.services-intro-text strong {
  color: var(--psst-blue);
  font-weight: 700;
}
.services-quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-quick-nav li { margin: 0; }
.services-quick-nav a {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 196, 193, 0.08);
  border: 1px solid rgba(0, 196, 193, 0.25);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--psst-blue);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.services-quick-nav a:hover {
  background: var(--psst-teal);
  border-color: var(--psst-teal);
  color: #fff;
  transform: translateY(-2px);
}

/* Service section — image + text 2-col row */
.service-section {
  padding: 72px 0;
  scroll-margin-top: 90px;
}
.service-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-reverse .service-row {
  direction: rtl;
}
.service-reverse .service-row > * {
  direction: ltr;
}

/* Service image */
.service-media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 51, 153, 0.18);
  aspect-ratio: 4/3;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-section:hover .service-media img {
  transform: scale(1.04);
}
.service-num {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--psst-teal);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 900;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 196, 193, 0.45);
  letter-spacing: -0.5px;
}

/* Service text */
.service-text .section-eyebrow {
  margin-bottom: 14px;
}
.service-text h2 {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--psst-blue);
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.section-dark .service-text h2 { color: #fff; }
.service-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700, #444);
  margin: 0 0 24px 0;
}
.section-dark .service-lead { color: rgba(255,255,255,0.85); }

/* Bullets list */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-bullets li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--psst-dark);
  border-bottom: 1px solid rgba(0, 51, 153, 0.08);
  transition: padding-left var(--transition);
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--psst-teal);
  transition: width var(--transition);
}
.service-bullets li:hover {
  padding-left: 32px;
}
.service-bullets li:hover::before {
  width: 18px;
}
.service-bullets li:last-child { border-bottom: none; }
.section-dark .service-bullets li {
  color: rgba(255,255,255,0.88);
  border-bottom-color: rgba(255,255,255,0.10);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .service-section { padding: 48px 0; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-reverse .service-row { direction: ltr; }
  .service-text h2 { font-size: 24px; }
  .service-num { width: 44px; height: 44px; font-size: 18px; }
}

/* Sustainability page hero — green/teal-leaning gradient (eco theme) */
.hero.hero-sustainability {
  background-image:
    linear-gradient(115deg,
      rgba(0, 60, 75, 0.85) 0%,
      rgba(0, 120, 110, 0.55) 30%,
      rgba(0, 196, 193, 0.30) 55%,
      rgba(36, 32, 33, 0.50) 80%,
      rgba(0, 0, 0, 0.72) 100%),
    url('assets/hero-sustainability.png');
  background-size: cover, cover;
  background-position: center, center 0%;
  background-repeat: no-repeat, no-repeat;
  background-color: #002a35;
}

/* ============================================================
   SUSTAINABILITY PAGE — ESG framework + pillars
   ============================================================ */

/* ESG intro */
.esg-intro-section {
  padding: 64px 0 32px;
}
.esg-intro-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--psst-dark);
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}
.esg-intro-text strong { color: var(--psst-teal); font-weight: 700; }

.esg-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.esg-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  background: #fff;
  border: 1px solid rgba(0, 196, 193, 0.20);
  border-radius: 10px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(0, 51, 153, 0.04);
}
.esg-pillar:hover {
  border-color: var(--psst-teal);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 196, 193, 0.18);
}
.esg-pillar-letter {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -2px;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
}
.esg-pillar div { display: flex; flex-direction: column; gap: 2px; }
.esg-pillar strong {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  color: var(--psst-blue);
  letter-spacing: 1.5px;
}
.esg-pillar span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}

/* Sustainability section common */
.sustainability-section {
  scroll-margin-top: 90px;
}

/* ── Safety stats row ─────────────────────────────────────── */
.safety-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.safety-stat {
  padding: 28px 22px;
  background: rgba(0, 51, 153, 0.04);
  border-left: 4px solid var(--psst-blue);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.safety-stat-teal {
  background: rgba(0, 196, 193, 0.06);
  border-left-color: var(--psst-teal);
}
.safety-stat-num {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 900;
  color: var(--psst-blue);
  line-height: 1;
  letter-spacing: -1px;
}
.safety-stat-teal .safety-stat-num { color: var(--psst-teal); }
.safety-stat-num sup { font-size: 24px; vertical-align: top; }
.safety-stat-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--psst-dark);
  margin-top: 4px;
}
.safety-stat-note {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Safety pillars */
.safety-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pillar-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 10px;
  transition: all var(--transition);
}
.pillar-row:hover {
  border-color: rgba(0, 196, 193, 0.40);
  box-shadow: 0 12px 28px rgba(0, 51, 153, 0.08);
}
.pillar-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.pillar-text h4 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 800;
  color: var(--psst-blue);
  margin: 0 0 6px 0;
}
.pillar-text p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-700, #444);
  margin: 0;
}

/* ── Environment metrics + cards ──────────────────────────── */
.env-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.env-metric {
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(0, 196, 193, 0.10), rgba(0, 51, 153, 0.05));
  border: 1px solid rgba(0, 196, 193, 0.25);
  border-radius: 12px;
  text-align: center;
}
.env-metric-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 900;
  color: var(--psst-teal);
  line-height: 1;
  letter-spacing: -1.5px;
}
.env-metric-num sup { font-size: 26px; vertical-align: top; }
.env-metric-lbl {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--psst-dark);
  margin-top: 10px;
}
.env-metric-note {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 4px;
}

.env-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.env-card {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 10px;
  border-top: 3px solid var(--psst-teal);
  transition: all var(--transition);
}
.env-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 51, 153, 0.10);
}
.env-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.env-card h3 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 800;
  color: var(--psst-blue);
  margin: 0 0 10px 0;
}
.env-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-700, #444);
  margin: 0;
}

/* ── ISO badges section ───────────────────────────────────── */
.iso-section .section-header {
  align-items: flex-end;
}
.iso-since {
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 2px;
}
.iso-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.iso-badge-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 196, 193, 0.25);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.iso-badge-card:hover {
  background: rgba(0, 196, 193, 0.08);
  border-color: var(--psst-teal);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 196, 193, 0.20);
}

.iso-badge-ring {
  width: 140px;
  height: 140px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 4px solid var(--psst-teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 196, 193, 0.10);
  position: relative;
}
.iso-badge-ring::before {
  content: 'ISO';
  position: absolute;
  top: 16px;
  font-size: 10px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 2px;
}
.iso-ring-green { border-color: #2eb872; background: rgba(46, 184, 114, 0.10); }
.iso-ring-green::before { color: #2eb872; }
.iso-ring-orange { border-color: #f39c12; background: rgba(243, 156, 18, 0.10); }
.iso-ring-orange::before { color: #f39c12; }

.iso-badge-num {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.iso-badge-year {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  letter-spacing: 1px;
}
.iso-badge-card h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
}
.iso-badge-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px 0;
}
.iso-badge-status {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 196, 193, 0.20);
  border: 1px solid var(--psst-teal);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 0.5px;
}

/* ── Social impact ────────────────────────────────────────── */
.social-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 48px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 51, 153, 0.15);
  border-bottom: 1px solid rgba(0, 51, 153, 0.15);
}
.impact-stat {
  text-align: center;
  padding: 12px;
  border-left: 1px solid rgba(0, 51, 153, 0.10);
}
.impact-stat:first-child { border-left: none; }
.impact-stat-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 900;
  color: var(--psst-teal);
  line-height: 1;
  letter-spacing: -1px;
}
.impact-stat-num sup { font-size: 22px; vertical-align: top; }
.impact-stat-lbl {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--psst-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .esg-pillars { grid-template-columns: repeat(2, 1fr); }
  .safety-stats { grid-template-columns: repeat(2, 1fr); }
  .safety-pillars { grid-template-columns: 1fr; }
  .env-metrics { grid-template-columns: 1fr; }
  .env-grid { grid-template-columns: repeat(2, 1fr); }
  .iso-badges { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .social-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-stat:nth-child(3) { border-left: none; }
}
@media (max-width: 600px) {
  .esg-pillars { grid-template-columns: 1fr; }
  .safety-stats { grid-template-columns: 1fr; }
  .env-grid { grid-template-columns: 1fr; }
  .social-impact-grid { grid-template-columns: 1fr; gap: 12px; }
  .impact-stat { border-left: none !important; border-top: 1px solid rgba(0,51,153,0.10); padding-top: 16px; }
  .impact-stat:first-child { border-top: none; padding-top: 0; }
}

/* ============================================================
   ANIMATIONS — Floating, Bounce, Pulse, Entrance
   ============================================================ */

/* ── Bouncing scroll hint ─────────────────────────────────── */
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50%      { transform: translateY(10px); opacity: 1; }
}
.scroll-hint {
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ── Floating ISO badges ──────────────────────────────────── */
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.iso-badge-ring {
  animation: float-soft 4s ease-in-out infinite;
}
.iso-badge-card:nth-child(2) .iso-badge-ring { animation-delay: 0.6s; }
.iso-badge-card:nth-child(3) .iso-badge-ring { animation-delay: 1.2s; }

/* ── Floating ESG pillar letters ──────────────────────────── */
@keyframes float-letter {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-4px) scale(1.04); }
}
.esg-pillar:hover .esg-pillar-letter {
  animation: float-letter 1.2s ease-in-out infinite;
}

/* ── Pulse glow on CTA buttons ────────────────────────────── */
@keyframes pulse-teal {
  0%, 100% { box-shadow: 0 8px 20px rgba(0, 196, 193, 0.30); }
  50%      { box-shadow: 0 8px 28px rgba(0, 196, 193, 0.55), 0 0 0 4px rgba(0, 196, 193, 0.15); }
}
.footer-cta-btn:not(.footer-cta-btn-outline) {
  animation: pulse-teal 2.5s ease-in-out infinite;
}
.footer-cta-btn:not(.footer-cta-btn-outline):hover {
  animation: none; /* hover takes over */
}

/* ── Entrance fade-up for hero h1 ─────────────────────────── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .hero-tag {
  animation: fade-up 0.8s ease-out 0.1s both;
}
.hero h1 {
  animation: fade-up 0.9s ease-out 0.25s both;
}
.hero .hero-subtitle {
  animation: fade-up 0.9s ease-out 0.45s both;
}
.hero .hero-actions {
  animation: fade-up 0.9s ease-out 0.6s both;
}

/* ── Big stat numbers entrance ────────────────────────────── */
@keyframes count-pop {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.safety-stat-num,
.env-metric-num,
.impact-stat-num,
.cap-highlight-num,
.history-stat-num,
.stat-num {
  animation: count-pop 0.9s ease-out both;
}

/* ── Timeline marker pulse intensify (current item) ───────── */
/* Already exists but let's make it smoother */
@keyframes pulse-marker-soft {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(0, 196, 193, 0.25),
      0 0 0 10px rgba(0, 196, 193, 0.10);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(0, 196, 193, 0.35),
      0 0 0 16px rgba(0, 196, 193, 0.05);
    transform: scale(1.08);
  }
}

/* ── Subtle floating for value-num (sustainability values) ─ */
.value-num,
.cap-card-no {
  display: inline-block;
  transition: transform var(--transition);
}
.value-item:hover .value-num,
.capacity-card:hover .cap-card-no {
  transform: translateY(-3px);
}

/* ── Service number badge bounce ──────────────────────────── */
@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.service-section:hover .service-num {
  animation: badge-bounce 1.4s ease-in-out infinite;
}

/* ── Card lift with smooth ease (general improvement) ─────── */
.content-card,
.capacity-card,
.env-card,
.iso-badge-card,
.equip-card,
.service-section .service-media {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

/* ── Reduce motion preference ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   SCROLL REVEAL — Fade-up entrance for elements in viewport
   (paired with assets/scroll-reveal.js)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion (also handled in JS) */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   PARALLAX — Slight scale-up to avoid empty edges when translating
   (paired with assets/parallax.js)
   ============================================================ */
.mission-bg,
.parallax-bg {
  /* Scale up so parallax translate doesn't reveal empty edges */
  height: 130%;
  top: -15%;
  bottom: -15%;
  transition: transform 0.05s linear;
}

/* Section needs overflow hidden so over-scaled bg doesn't leak */
.mission-section,
.parallax-host {
  overflow: hidden;
}

/* On hero-with-image: background-attachment fallback for mobile */
@media (max-width: 767px) {
  .hero.hero-with-image {
    /* on mobile, no parallax */
    background-attachment: scroll !important;
  }
}

/* ============================================================
   WORD-BY-WORD ANIMATION (paired with assets/word-animate.js)
   ============================================================ */
.word-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition: none;
}
/* Animate words once parent has .words-ready class */
.words-ready .word-anim {
  animation: word-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--word-i, 0) * 0.08s + 0.1s);
}
@keyframes word-fade-up {
  0% {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Override the hero h1 fade-up from earlier — words animate instead */
.hero h1 {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.hero .hero-tag,
.hero .hero-subtitle {
  /* Keep their own fade-up; word animation overlays */
}

@media (prefers-reduced-motion: reduce) {
  .word-anim {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* ============================================================
   PROJECTS PAGE — Hero + featured projects + map + process
   ============================================================ */

/* ── Hero — projects (gradient-only, no image) ────────────── */
.hero.hero-projects {
  background:
    radial-gradient(ellipse at top right, rgba(0, 196, 193, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0, 51, 153, 0.40) 0%, transparent 60%),
    linear-gradient(135deg, #001a3a 0%, #002a6e 40%, #003399 70%, #002a5e 100%);
  position: relative;
  overflow: hidden;
}
.hero-projects-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 80px),
    repeating-linear-gradient(-45deg, rgba(0, 196, 193, 0.04) 0 1px, transparent 1px 60px);
  pointer-events: none;
  z-index: 0;
}
.hero-projects .hero-content { position: relative; z-index: 1; }

.hero-projects-meta {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-projects-meta > div {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.hero-projects-meta strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -1px;
  margin-bottom: 4px;
  line-height: 1;
}

/* ── Stats strip section ──────────────────────────────────── */
.section-stats-projects {
  padding: 56px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
  border-bottom: 1px solid rgba(0, 51, 153, 0.08);
}
.proj-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proj-stat {
  text-align: center;
  padding: 12px 18px;
  border-right: 1px solid rgba(0, 51, 153, 0.10);
  transition: transform var(--transition);
}
.proj-stat:last-child { border-right: none; }
.proj-stat:hover { transform: translateY(-3px); }
.proj-stat-num {
  font-family: var(--font-primary);
  font-size: 56px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}
.proj-stat-num span {
  color: var(--psst-teal);
  font-size: 32px;
  vertical-align: top;
  margin-left: 2px;
}
.proj-stat-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Section header with lead text ────────────────────────── */
.section-header .section-lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0;
  text-align: right;
}

/* ── Project feature row (magazine style) ─────────────────── */
.project-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0, 51, 153, 0.08);
}
.project-feature:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.project-feature-reverse {
  direction: rtl;
}
.project-feature-reverse > * { direction: ltr; }

/* Visual side */
.project-feature-visual {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}
.project-feature-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 51, 153, 0.20);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
}
.project-feature-num {
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -3px;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Status badge in image corner */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.status-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-active { color: var(--psst-blue); }
.status-active::before {
  background: var(--psst-teal);
  box-shadow: 0 0 0 3px rgba(0, 196, 193, 0.35);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.status-done { color: var(--gray-700); }
.status-done::before { background: var(--gray-500); }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 196, 193, 0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 196, 193, 0.15); }
}

/* Floating metric chip */
.project-feature-floater {
  position: absolute;
  bottom: -28px;
  right: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 12px 36px rgba(0, 51, 153, 0.22);
  border: 1px solid rgba(0, 51, 153, 0.06);
  text-align: center;
  z-index: 2;
  min-width: 130px;
}
.project-feature-reverse .project-feature-floater {
  right: auto;
  left: -20px;
}
.floater-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.floater-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Background per project */
.proj-img-erdenet {
  background: linear-gradient(135deg, #003399 0%, #1A4DB3 40%, #00C4C1 100%);
}
.proj-img-tsagaan {
  background: linear-gradient(135deg, #00646e 0%, #007a82 40%, #00C4C1 100%);
}
.proj-img-tavan {
  background: linear-gradient(135deg, #242021 0%, #3a3437 40%, #5a5050 100%);
}
.proj-img-oyu {
  background: linear-gradient(135deg, #002277 0%, #003399 50%, #1A4DB3 100%);
}

/* Body side */
.project-feature-body {
  padding: 16px 0;
}
.project-meta {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--psst-teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}
.project-feature-body h3 {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 18px 0;
}
.project-lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray-700, #444);
  margin: 0 0 28px 0;
}

/* Project stats inline */
.project-stats {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 51, 153, 0.10);
  border-bottom: 1px solid rgba(0, 51, 153, 0.10);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.3px;
}
.project-stats li strong {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -1px;
  line-height: 1;
}

/* Tags */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-tags span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 196, 193, 0.08);
  border: 1px solid rgba(0, 196, 193, 0.30);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--psst-blue);
  letter-spacing: 0.3px;
}

/* ── Map section (Mongolia SVG) ───────────────────────────── */
.map-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 12px 36px rgba(0, 51, 153, 0.08);
  border: 1px solid rgba(0, 51, 153, 0.06);
}
.mongolia-map {
  width: 100%;
  height: auto;
  display: block;
}
.map-pin circle {
  transition: all var(--transition);
  cursor: pointer;
}
.map-pin:hover circle:nth-child(2) {
  r: 9;
}
.map-pin-active circle:first-child {
  animation: pulse-pin 2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulse-pin {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%      { opacity: 0.05; transform: scale(1.6); }
}

.map-legend-modern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 51, 153, 0.10);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700, #444);
}
.map-legend-modern > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-legend-modern .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.map-legend-modern .dot-blue { background: var(--psst-blue); }
.map-legend-modern .dot-teal { background: var(--psst-teal); }
.map-legend-modern .dot-hq { background: var(--psst-dark); border-radius: 2px; }
.map-legend-modern .dot-plan { background: transparent; border: 2px solid var(--gray-500); }

/* ── Process horizontal timeline ──────────────────────────── */
.process-horizontal {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 12px;
  padding-top: 40px;
}
.process-line {
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--psst-teal) 0%,
    rgba(0, 196, 193, 0.50) 50%,
    rgba(0, 51, 153, 0.40) 100%);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--psst-dark);
  border: 3px solid var(--psst-teal);
  border-radius: 50%;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -0.5px;
  transition: all var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--psst-teal);
  color: var(--psst-dark);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 196, 193, 0.35);
}
.process-step h3 {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
  letter-spacing: 0.2px;
}
.process-step p {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  padding: 0 8px;
}

/* ── Partners grid ────────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.partner-pill {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.10);
  border-radius: 10px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.partner-pill:hover {
  border-color: var(--psst-teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 51, 153, 0.10);
}
.partner-pill strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.partner-pill span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.3px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .proj-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .proj-stat:nth-child(2) { border-right: none; }
  .proj-stat:nth-child(odd) { border-right: 1px solid rgba(0, 51, 153, 0.10); }
  .proj-stat-num { font-size: 44px; }
  .project-feature { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; padding-bottom: 56px; }
  .project-feature-reverse { direction: ltr; }
  .project-feature-floater { right: 20px; left: auto !important; bottom: -22px; }
  .project-feature-body h3 { font-size: 26px; }
  .process-horizontal { grid-template-columns: repeat(2, 1fr); gap: 32px; padding-top: 12px; }
  .process-line { display: none; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .proj-stats { grid-template-columns: 1fr; gap: 16px; }
  .proj-stat { border-right: none !important; border-bottom: 1px solid rgba(0, 51, 153, 0.10); padding-bottom: 16px; }
  .proj-stat:last-child { border-bottom: none; }
  .hero-projects-meta { gap: 20px; }
  .hero-projects-meta strong { font-size: 26px; }
  .section-header .section-lead { text-align: left; }
  .project-feature-body h3 { font-size: 22px; }
  .project-stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .project-stats li strong { font-size: 22px; }
  .process-horizontal { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .map-wrap { padding: 18px; }
  .map-legend-modern { gap: 14px; font-size: 12px; }
}

/* ============================================================
   PROJECTS PAGE — Interactive Mongolia aimag map
   ============================================================ */
.aimag-map-section {
  padding: 72px 0;
}

.aimag-map-spread {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 12px;
}

/* ── Map container (left) ─────────────────────────────────── */
.aimag-map-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0.95) 100%);
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(0, 51, 153, 0.08);
  min-height: 460px;
  position: relative;
}
.aimag-map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 1px;
}

/* The SVG itself */
.mn-aimag-map {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
}

/* Individual aimag paths */
.aimag {
  fill: #E5E7EB;
  stroke: #fff;
  stroke-width: 0.8;
  transition: fill 0.25s ease, stroke 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  transform-origin: center;
  transform-box: fill-box;
}
.aimag:hover {
  fill: #B8C6DC;
  stroke: var(--psst-teal);
  stroke-width: 1.2;
}
.aimag:focus {
  outline: none;
}

/* Aimags with projects — colored fill */
.aimag.has-projects {
  fill: rgba(0, 51, 153, 0.55);
}
.aimag.has-projects:hover {
  fill: var(--psst-teal);
}

/* Active selection */
.aimag.active {
  fill: var(--psst-teal) !important;
  stroke: var(--psst-blue);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 12px rgba(0, 196, 193, 0.55));
}

/* ── Info panel (right) ───────────────────────────────────── */
.aimag-info-panel {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(0, 51, 153, 0.08);
  min-height: 460px;
}

.aimag-info-eyebrow {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.aimag-info-default h3 {
  font-family: var(--font-primary);
  font-size: 38px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0 0 22px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 51, 153, 0.10);
}
.aimag-info-default h3 span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--psst-teal);
  letter-spacing: 0;
  margin-top: 6px;
}

.aimag-info-lead {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  margin: 0 0 14px 0;
  letter-spacing: 0.3px;
}

.aimag-top-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}
.aimag-top-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 51, 153, 0.10);
  font-size: 13px;
}
.aimag-top-list li:last-child { border-bottom: none; }
.aimag-top-list strong {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--psst-dark);
  letter-spacing: -0.1px;
}
.aimag-top-list span {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 800;
  color: var(--psst-teal);
  white-space: nowrap;
}

.aimag-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  margin: 0;
  padding: 12px 14px;
  background: rgba(0, 196, 193, 0.06);
  border: 1px dashed rgba(0, 196, 193, 0.30);
  border-radius: 10px;
}
.aimag-hint-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--psst-teal);
  box-shadow: 0 0 0 4px rgba(0, 196, 193, 0.20);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

/* Detail panel (after aimag selected) */
.aimag-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(0, 196, 193, 0.08);
  border: 1px solid rgba(0, 196, 193, 0.30);
  border-radius: 100px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  color: var(--psst-blue);
  cursor: pointer;
  transition: all var(--transition);
}
.aimag-back-btn:hover {
  background: var(--psst-teal);
  border-color: var(--psst-teal);
  color: #fff;
}
.aimag-back-btn span { font-size: 14px; line-height: 1; }

.aimag-info-detail h3 {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 6px 0;
}
.aimag-detail-count {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 51, 153, 0.10);
}

.aimag-projects-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 6px;
}
.aimag-projects-list::-webkit-scrollbar { width: 5px; }
.aimag-projects-list::-webkit-scrollbar-thumb {
  background: rgba(0, 51, 153, 0.20);
  border-radius: 4px;
}

.aimag-project-item {
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid rgba(0, 51, 153, 0.06);
  border-radius: 10px;
  transition: all var(--transition);
}
.aimag-project-item:hover {
  background: #fff;
  border-color: rgba(0, 196, 193, 0.40);
  transform: translateX(3px);
}
.aimag-project-item .api-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.aimag-project-item .api-cat {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.aimag-project-item .api-year {
  font-family: var(--font-primary);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 0.3px;
}
.aimag-project-item strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--psst-blue);
  letter-spacing: -0.1px;
  margin-bottom: 4px;
  line-height: 1.25;
}
.aimag-project-item .api-desc {
  display: block;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--gray-700, #444);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .aimag-map-spread { grid-template-columns: 1fr; gap: 24px; }
  .aimag-info-panel { position: static; min-height: auto; }
  .aimag-info-default h3 { font-size: 32px; }
  .aimag-projects-list { max-height: 400px; }
}
@media (max-width: 600px) {
  .aimag-map-section { padding: 56px 0; }
  .aimag-map-container, .aimag-info-panel { padding: 18px; }
  .aimag-info-default h3 { font-size: 26px; }
  .aimag-info-detail h3 { font-size: 22px; }
}

/* ============================================================
   PROJECTS PAGE — Categorized real project list (psst.mn)
   ============================================================ */

.project-category {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Category header with big number + meta */
.cat-header {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 51, 153, 0.10);
}
.cat-num {
  font-family: var(--font-primary);
  font-size: 88px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--psst-teal);
  letter-spacing: -3px;
  -webkit-text-stroke: 1px var(--psst-teal);
  text-stroke: 1px var(--psst-teal);
  background: linear-gradient(135deg, var(--psst-teal) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.95;
}
.cat-meta h2 {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 8px 0 14px 0;
}
.cat-meta p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700, #444);
  max-width: 760px;
  margin: 0;
}

/* Dark variant */
.project-category-dark .cat-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.project-category-dark .cat-meta h2 { color: #fff; }
.project-category-dark .cat-meta p { color: rgba(255, 255, 255, 0.75); }
.project-category-dark .cat-num {
  -webkit-text-stroke: 1px rgba(0, 196, 193, 0.55);
}

/* Project grid (real data — 3 cols) */
.project-grid-real {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card-real {
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 10px;
  padding: 22px 22px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-card-real::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--psst-teal);
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card-real:hover {
  border-color: rgba(0, 196, 193, 0.40);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 51, 153, 0.10);
}
.project-card-real:hover::before {
  opacity: 1;
}

.project-card-real header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 51, 153, 0.12);
}
.pc-year {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 0.5px;
}
.pc-loc {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-500);
  text-align: right;
  letter-spacing: 0.2px;
}
.project-card-real h3 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 800;
  color: var(--psst-blue);
  margin: 0;
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.project-card-real p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-700, #444);
  margin: 0;
}

/* Dark variant card */
.project-category-dark .project-card-real {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 196, 193, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.project-category-dark .project-card-real:hover {
  background: rgba(0, 196, 193, 0.06);
  border-color: rgba(0, 196, 193, 0.50);
}
.project-category-dark .project-card-real h3 { color: #fff; }
.project-category-dark .project-card-real p { color: rgba(255, 255, 255, 0.78); }
.project-category-dark .pc-loc { color: rgba(255, 255, 255, 0.55); }
.project-category-dark .project-card-real header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .project-grid-real { grid-template-columns: repeat(2, 1fr); }
  .cat-header { grid-template-columns: 80px 1fr; gap: 24px; }
  .cat-num { font-size: 64px; }
  .cat-meta h2 { font-size: 24px; }
}
@media (max-width: 600px) {
  .project-grid-real { grid-template-columns: 1fr; }
  .project-category { padding-top: 56px; padding-bottom: 56px; }
  .cat-header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
  .cat-num { font-size: 56px; }
  .cat-meta h2 { font-size: 22px; margin-top: 4px; }
  .project-card-real header { flex-wrap: wrap; }
  .pc-loc { text-align: left; }
}

/* ============================================================
   INDEX PAGE — Projects bento showcase (05) NEW DESIGN
   ============================================================ */

.projects-showcase-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* ── Asymmetric header (split left/right) ─────────────────── */
.projects-showcase-header {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 51, 153, 0.10);
}
.ps-header-left .section-eyebrow {
  margin-bottom: 10px;
}
.ps-header-left .section-title {
  margin-bottom: 18px;
}
.ps-header-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700, #444);
  margin: 0;
  max-width: 540px;
}
.ps-header-lead strong {
  color: var(--psst-blue);
  font-weight: 700;
}

/* Stats trio */
.ps-header-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ps-stat {
  padding: 18px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 51, 153, 0.08);
  text-align: center;
  transition: all var(--transition);
}
.ps-stat:hover {
  border-color: rgba(0, 196, 193, 0.40);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 51, 153, 0.08);
}
.ps-stat-num {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 900;
  color: var(--psst-blue);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.ps-stat-num span {
  color: var(--psst-teal);
  font-size: 22px;
  vertical-align: top;
}
.ps-stat-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
}

/* ── Bento layout: 1 hero + 4 small (12-col grid) ─────────── */
.ps-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: minmax(280px, auto) minmax(280px, auto);
  gap: 14px;
  margin-bottom: 32px;
}

/* Hero card spans 6 cols, 2 rows */
.ps-card-hero {
  grid-column: span 6;
  grid-row: span 2;
  position: relative;
  min-height: 540px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
}
.ps-card-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0, 51, 153, 0.30);
}

/* Hero background gradient (per project) */
.ps-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ps-bg-erdenes {
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 196, 193, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(0, 51, 153, 0.55) 0%, transparent 60%),
    linear-gradient(135deg, #001a3a 0%, #002a6e 40%, #003a8a 80%, #002255 100%);
}
.ps-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 80px),
    repeating-linear-gradient(-45deg, rgba(0, 196, 193, 0.04) 0 1px, transparent 1px 60px);
  pointer-events: none;
}
.ps-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.70) 100%);
  z-index: 1;
}
.ps-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top row: category + year */
.ps-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ps-cat-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.ps-cat-construction { color: #fff; }
.ps-year-badge {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 100px;
}

/* Bottom block */
.ps-card-bottom {
  padding-top: 24px;
}
.ps-card-eyebrow {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}
.ps-card-hero h3 {
  font-family: var(--font-primary);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 14px 0;
}
.ps-card-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px 0;
  max-width: 460px;
}
.ps-card-hero .ps-card-desc strong {
  color: var(--psst-teal);
  font-weight: 700;
}
.ps-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.ps-meta-pin {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.3px;
}
.ps-card-arrow {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--psst-teal);
  transition: transform var(--transition);
}
.ps-card:hover .ps-card-arrow {
  transform: translateX(6px);
}

/* Small cards — span 3 cols each */
.ps-card-small {
  grid-column: span 3;
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 51, 153, 0.08);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ps-card-small:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 196, 193, 0.45);
  box-shadow: 0 16px 36px rgba(0, 51, 153, 0.14);
}
.ps-card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1;
}
.ps-stripe-consulting { background: linear-gradient(90deg, #003399, #00C4C1); }
.ps-stripe-design     { background: linear-gradient(90deg, #1A4DB3, #4dd8d5); }
.ps-stripe-construction { background: linear-gradient(90deg, #00646e, #00C4C1); }
.ps-stripe-mining     { background: linear-gradient(90deg, #00C4C1, #003399); }

.ps-card-small-content {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ps-card-small .ps-card-top {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 51, 153, 0.12);
}
.ps-card-small .ps-cat-badge {
  background: rgba(0, 196, 193, 0.10);
  border: 1px solid rgba(0, 196, 193, 0.30);
  color: var(--psst-blue);
  backdrop-filter: none;
  font-size: 10.5px;
}
.ps-cat-consulting { color: var(--psst-blue); }
.ps-cat-design     { color: var(--psst-blue); }
.ps-cat-mining     { color: var(--psst-blue); }
.ps-year-big {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -0.5px;
  line-height: 1;
}
.ps-card-small h3 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 800;
  color: var(--psst-blue);
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.ps-card-small .ps-card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-700, #444);
  margin: 0 0 14px 0;
  max-width: none;
  flex: 1;
}
.ps-card-small .ps-card-meta {
  padding-top: 10px;
  border-top: 1px solid rgba(0, 51, 153, 0.06);
  margin-top: auto;
}
.ps-card-small .ps-meta-pin {
  color: var(--gray-500);
  font-size: 11.5px;
}

/* ── Bottom category chips strip ──────────────────────────── */
.ps-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid rgba(0, 51, 153, 0.10);
  box-shadow: 0 4px 14px rgba(0, 51, 153, 0.04);
}
.ps-cat-title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 6px 0 0;
}
.ps-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 196, 193, 0.06);
  border: 1px solid rgba(0, 196, 193, 0.25);
  border-radius: 100px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--psst-blue);
  transition: all var(--transition);
}
.ps-cat-chip:hover {
  background: var(--psst-teal);
  border-color: var(--psst-teal);
  color: #fff;
  transform: translateY(-1px);
}
.ps-chip-num {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -0.3px;
  transition: color var(--transition);
}
.ps-chip-num small {
  font-size: 10px;
  font-weight: 700;
  vertical-align: top;
}
.ps-cat-chip:hover .ps-chip-num { color: #fff; }
.ps-chip-lbl { color: inherit; }

.ps-all-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--psst-blue);
  text-decoration: none;
  padding: 8px 14px;
  transition: all var(--transition);
}
.ps-all-link:hover {
  color: var(--psst-teal);
}
.ps-all-link .arrow {
  font-size: 16px;
  transition: transform var(--transition);
}
.ps-all-link:hover .arrow {
  transform: translateX(4px);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .projects-showcase-header { grid-template-columns: 1fr; gap: 28px; }
  .ps-header-stats { max-width: 480px; }
}
@media (max-width: 900px) {
  .ps-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .ps-card-hero {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 380px;
  }
  .ps-card-small { grid-column: span 1; }
  .ps-card-hero h3 { font-size: 28px; }
}
@media (max-width: 600px) {
  .projects-showcase-section { padding-top: 56px; padding-bottom: 56px; }
  .ps-header-stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .ps-stat { padding: 14px 8px; }
  .ps-stat-num { font-size: 26px; }
  .ps-stat-lbl { font-size: 9.5px; }
  .ps-bento { grid-template-columns: 1fr; }
  .ps-card-hero, .ps-card-small { grid-column: span 1; }
  .ps-card-hero { min-height: 320px; }
  .ps-card-hero h3 { font-size: 24px; }
  .ps-card-content { padding: 22px; }
  .ps-categories {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 18px;
  }
  .ps-all-link { margin-left: 0; margin-top: 8px; justify-content: center; }
  .ps-cat-chip { justify-content: space-between; }
}

/* Keep old class names as fallback (in case other code references them) */
.index-proj-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 40px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 51, 153, 0.10);
  border-bottom: 1px solid rgba(0, 51, 153, 0.10);
}
.index-proj-stats > div {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(0, 51, 153, 0.10);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.index-proj-stats > div:last-child { border-right: none; }
.index-proj-stats strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 46px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: none;
}
.index-proj-stats strong span {
  color: var(--psst-teal);
  font-size: 26px;
  vertical-align: top;
}

/* 4 category cards 2x2 grid */
.index-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.index-cat-card {
  display: flex;
  flex-direction: column;
  padding: 30px 30px 28px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  isolation: isolate;
}
.index-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at top right, rgba(0, 196, 193, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  transition: all var(--transition);
}
.index-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 196, 193, 0.45);
  box-shadow: 0 20px 48px rgba(0, 51, 153, 0.14);
}
.index-cat-card:hover::before {
  background: radial-gradient(circle at top right, rgba(0, 196, 193, 0.22) 0%, transparent 70%);
}

.cat-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 51, 153, 0.08);
}
.cat-card-eyebrow {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cat-card-count {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 900;
  color: var(--psst-blue);
  line-height: 1;
  letter-spacing: -2px;
  transition: color var(--transition);
}
.cat-card-count span {
  color: var(--psst-teal);
  font-size: 26px;
  vertical-align: top;
}
.index-cat-card:hover .cat-card-count {
  color: var(--psst-teal);
}

.index-cat-card h3 {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 900;
  color: var(--psst-blue);
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.index-cat-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700, #444);
  margin: 0 0 18px 0;
}

.cat-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.cat-card-tags span {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(0, 196, 193, 0.08);
  border: 1px solid rgba(0, 196, 193, 0.30);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--psst-blue);
  letter-spacing: 0.3px;
}

.cat-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 51, 153, 0.12);
}
.cat-card-client {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.2px;
  flex: 1;
}
.cat-card-arrow {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--psst-teal);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.index-cat-card:hover .cat-card-arrow {
  transform: translateX(6px);
}

/* Accent variant (last card — slightly different look) */
.index-cat-card-accent {
  background: linear-gradient(135deg, rgba(0, 196, 193, 0.06) 0%, rgba(0, 51, 153, 0.04) 100%);
  border-color: rgba(0, 196, 193, 0.25);
}

/* Bottom CTA */
.index-cat-cta {
  text-align: center;
  margin-top: 8px;
}
.cat-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--psst-blue);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(0, 51, 153, 0.25);
  transition: all var(--transition);
}
.cat-cta-btn:hover {
  background: var(--psst-teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 196, 193, 0.40);
}
.cat-cta-btn .arrow { transition: transform var(--transition); font-size: 18px; }
.cat-cta-btn:hover .arrow { transform: translateX(6px); }

/* Responsive */
@media (max-width: 1024px) {
  .index-proj-stats { grid-template-columns: repeat(2, 1fr); }
  .index-proj-stats > div:nth-child(2) { border-right: none; }
  .index-proj-stats > div:nth-child(1),
  .index-proj-stats > div:nth-child(3) {
    border-right: 1px solid rgba(0, 51, 153, 0.10);
  }
  .index-proj-stats > div { padding-bottom: 12px; }
  .index-proj-stats strong { font-size: 36px; }
  .index-cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .index-cat-card { padding: 24px; }
  .index-cat-card h3 { font-size: 19px; }
  .cat-card-count { font-size: 36px; }
}
@media (max-width: 600px) {
  .index-proj-stats { grid-template-columns: 1fr 1fr; gap: 16px 0; padding: 18px 0; }
  .index-proj-stats strong { font-size: 30px; }
  .index-proj-stats > div { padding: 8px; font-size: 10.5px; }
  .cat-card-head { flex-wrap: wrap; }
  .cat-card-foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cat-cta-btn { padding: 14px 24px; font-size: 14px; }
}

/* ============================================================
   NEWS PAGE — YouTube video section (Section 02)
   ============================================================ */
.yt-spread {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 12px;
}

/* ── LEFT: native HTML5 video player (plays directly on page) */
.yt-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  margin-bottom: 22px;
  transition: all 0.4s ease;
}
.yt-video-frame:hover {
  box-shadow: 0 24px 60px rgba(0, 196, 193, 0.20), 0 20px 50px rgba(0, 0, 0, 0.50);
}
.yt-native-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Pulse dot on featured tag */
.yt-tag-brand {
  background: rgba(0, 196, 193, 0.18);
  border-color: rgba(0, 196, 193, 0.50);
  color: var(--psst-teal);
}
.yt-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--psst-teal);
  box-shadow: 0 0 0 3px rgba(0, 196, 193, 0.30);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.yt-featured-meta {
  padding: 0 4px;
}
.yt-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(255, 0, 0, 0.14);
  border: 1px solid rgba(255, 0, 0, 0.40);
  border-radius: 100px;
  color: #FF4444;
  font-family: var(--font-primary);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
}
.yt-featured-meta h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 10px 0;
}
.yt-featured-meta p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 540px;
}

/* ── RIGHT: channel CTA + upcoming list ───────────────────── */
.yt-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Channel CTA card — red gradient */
.yt-channel-card {
  display: block;
  text-decoration: none;
  padding: 24px 22px 22px;
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 60%, #990000 100%);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.yt-channel-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.yt-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(255, 0, 0, 0.40);
  color: #fff;
}

.yt-channel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.yt-channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.yt-channel-tag {
  display: block;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
}
.yt-channel-head strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.yt-channel-card > p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 18px 0;
  position: relative;
  z-index: 1;
}

.yt-subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: #fff;
  border-radius: 100px;
  color: #FF0000;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}
.yt-channel-card:hover .yt-subscribe-btn {
  transform: scale(1.04);
}
.yt-sub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #FF0000;
  color: #fff;
  border-radius: 4px;
  font-size: 10px;
  padding-left: 1px;
}

/* Upcoming videos teaser */
.yt-coming-soon {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}
.yt-coming-soon h4 {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.yt-coming-soon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yt-coming-soon li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.yt-cs-num {
  color: var(--psst-teal);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.7;
}
.yt-coming-soon li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.yt-coming-soon strong {
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.1px;
  line-height: 1.3;
}
.yt-coming-soon span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .yt-spread { grid-template-columns: 1fr; gap: 24px; }
  .yt-featured-meta h3 { font-size: 20px; }
}
@media (max-width: 600px) {
  .yt-channel-card { padding: 20px; }
  .yt-channel-head strong { font-size: 17px; }
}

/* ============================================================
   NEWS PAGE — Facebook live feed (branded social card)
   ============================================================ */

.fb-spread {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 36px;
  align-items: start;
  margin-top: 12px;
}

/* ── Left side: branded info column ───────────────────────── */
.fb-side {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Brand identity card — gradient FB blue */
.fb-side-card {
  position: relative;
  padding: 26px 26px 24px;
  background: linear-gradient(135deg, #1877F2 0%, #1465D8 70%, #0F4DAB 100%);
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(24, 119, 242, 0.25);
}
.fb-side-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.fb-side-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 196, 193, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

.fb-side-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.fb-side-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.fb-side-meta {
  flex: 1;
}
.fb-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 6px;
}
.fb-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.25);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.fb-side-meta h3 {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 2px 0;
  letter-spacing: -0.3px;
  color: #fff;
  line-height: 1.1;
}
.fb-side-meta p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.fb-side-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 22px 0;
  position: relative;
  z-index: 1;
}

/* Follow button on card — white pill on blue */
.fb-side-card .fb-follow-btn {
  background: #fff;
  color: #1877F2 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}
.fb-side-card .fb-follow-btn:hover {
  background: #f5f8ff;
  color: #1877F2;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* Generic .fb-follow-btn (also used elsewhere) */
.fb-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #1877F2;
  color: #fff !important;
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.fb-follow-btn .arrow {
  transition: transform var(--transition);
  font-size: 16px;
}
.fb-follow-btn:hover .arrow { transform: translateX(4px); }

/* Other socials section */
.fb-side-socials {
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 14px;
}
.fb-socials-label {
  font-family: var(--font-primary);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}
.fb-socials-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fb-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--gray-50);
  border: 1px solid rgba(0, 51, 153, 0.06);
  border-radius: 10px;
  text-decoration: none;
  color: var(--psst-dark);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: all var(--transition);
}
.fb-social-link svg {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: color var(--transition);
}
.fb-social-link:hover {
  transform: translateX(4px);
  border-color: currentColor;
  background: #fff;
}
.fb-social-yt:hover { color: #FF0000; }
.fb-social-yt:hover svg { color: #FF0000; }
.fb-social-ig:hover { color: #E1306C; }
.fb-social-ig:hover svg { color: #E1306C; }
.fb-social-li:hover { color: #0A66C2; }
.fb-social-li:hover svg { color: #0A66C2; }

/* Hint footer */
.fb-side-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--gray-500);
  padding: 12px 14px;
  background: rgba(0, 196, 193, 0.04);
  border: 1px dashed rgba(0, 196, 193, 0.30);
  border-radius: 10px;
  margin: 0;
}
.fb-hint-icon {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.2;
}

/* ── Right side: Facebook embed frame ─────────────────────── */
.fb-embed {
  position: relative;
}
.fb-embed-frame {
  position: relative;
  padding: 12px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 51, 153, 0.08);
  box-shadow: 0 16px 40px rgba(0, 51, 153, 0.10);
  overflow: hidden;
  /* Gradient accent line on top */
}
.fb-embed-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1877F2 0%, #00C4C1 50%, #003399 100%);
}
.fb-embed-frame iframe {
  border-radius: 10px !important;
  overflow: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .fb-spread {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fb-side {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .fb-side-card { flex: 1 1 320px; }
  .fb-side-socials { flex: 1 1 240px; }
  .fb-side-hint { flex: 1 1 100%; }
  .fb-embed-frame { max-width: 540px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .fb-side { flex-direction: column; }
  .fb-side-card { padding: 22px; }
  .fb-side-meta h3 { font-size: 18px; }
  .fb-embed-frame { padding: 8px; }
}

/* ============================================================
   INDEX HERO — Minimal ISO logo row (clean, no container)
   ============================================================ */
.hero-iso-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  animation: fade-up 0.9s ease-out 0.7s both;
}

.hero-iso-row img {
  height: 48px;
  width: auto;
  display: block;
  /* Dark navy logos → white for dark hero */
  filter: brightness(0) invert(1) opacity(0.55);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.hero-iso-row img:hover {
  filter: brightness(0) invert(1) opacity(0.95);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .hero-iso-row { gap: 20px; margin-top: 28px; }
  .hero-iso-row img { height: 40px; }
}
@media (max-width: 480px) {
  .hero-iso-row img { height: 34px; }
}

/* ============================================================
   CAREERS PAGE — Hero, pillars, HR policy, process, jobs
   ============================================================ */

/* Hero — careers (background photo + overlay) */
.hero.hero-careers {
  background-image:
    linear-gradient(115deg,
      rgba(0, 31, 74, 0.85) 0%,
      rgba(0, 51, 153, 0.55) 35%,
      rgba(0, 196, 193, 0.25) 65%,
      rgba(0, 0, 0, 0.72) 100%),
    url('assets/hero-careers.png');
  background-color: #001f4a;
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero-careers-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(0, 196, 193, 0.10) 0%, transparent 35%),
    radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.04) 0%, transparent 25%);
  pointer-events: none;
  z-index: 0;
}
.hero-careers .hero-content { position: relative; z-index: 1; }
.hero-careers-meta {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-careers-meta > div {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.hero-careers-meta strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -1px;
  margin-bottom: 4px;
  line-height: 1;
}

/* ── 3-pillar grid ─────────────────────────────────────────── */
.careers-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.career-pillar {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.career-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--psst-blue), var(--psst-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.career-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 196, 193, 0.40);
  box-shadow: 0 20px 40px rgba(0, 51, 153, 0.12);
}
.career-pillar:hover::before { transform: scaleX(1); }
.career-pillar-mid {
  background: linear-gradient(135deg, rgba(0, 196, 193, 0.06) 0%, rgba(0, 51, 153, 0.03) 100%);
  border-color: rgba(0, 196, 193, 0.20);
}

.pillar-num {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 800;
  color: var(--psst-teal);
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}
.career-pillar h3 {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -0.5px;
  margin: 0 0 8px 0;
  line-height: 1.15;
}
.pillar-sub {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--psst-teal);
  letter-spacing: 0.5px;
  margin: 0 0 18px 0;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(0, 196, 193, 0.30);
}
.pillar-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--gray-700, #444);
  margin: 0;
}

/* ── HR Policy section ─────────────────────────────────────── */
.hr-spread {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hr-quote-block {
  position: sticky;
  top: 100px;
}
.hr-quote {
  position: relative;
  background: linear-gradient(135deg, var(--psst-blue) 0%, #002a6e 60%, #001f4a 100%);
  color: #fff;
  border-radius: 14px;
  padding: 36px 32px 32px;
  margin: 0 0 24px 0;
  overflow: hidden;
}
.hr-quote::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 196, 193, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hr-quote-mark {
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: 900;
  color: var(--psst-teal);
  line-height: 0.6;
  display: block;
  margin-bottom: 6px;
  opacity: 0.85;
}
.hr-quote p {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}
.hr-quote p strong {
  color: var(--psst-teal);
  font-weight: 800;
}

.hr-team-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 51, 153, 0.14);
  aspect-ratio: 16/9;
  background: #f5f7fa;
}
.hr-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hr-team-image:hover img { transform: scale(1.04); }

/* 3 stacked policy cards */
.hr-policy-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hr-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 12px;
  transition: all var(--transition);
}
.hr-card:hover {
  border-color: rgba(0, 196, 193, 0.45);
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(0, 51, 153, 0.08);
}
.hr-card-num {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 900;
  color: var(--psst-teal);
  letter-spacing: -1.5px;
  line-height: 1;
  -webkit-text-stroke: 1px var(--psst-teal);
  background: linear-gradient(135deg, var(--psst-teal) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hr-card-body h3 {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -0.2px;
  margin: 0 0 8px 0;
}
.hr-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700, #444);
  margin: 0;
}

/* ── Job filter chips ──────────────────────────────────────── */
.job-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 51, 153, 0.08);
}
.job-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.15);
  border-radius: 100px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  color: var(--psst-blue);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.2px;
}
.job-chip:hover {
  background: rgba(0, 196, 193, 0.06);
  border-color: rgba(0, 196, 193, 0.45);
}
.job-chip-active {
  background: var(--psst-blue);
  border-color: var(--psst-blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 51, 153, 0.25);
}
.job-chip-active:hover {
  background: var(--psst-blue);
}

/* ── Job grid ──────────────────────────────────────────────── */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.job-card {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 22px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 196, 193, 0.45);
  box-shadow: 0 16px 36px rgba(0, 51, 153, 0.12);
}
.job-card[data-hidden="true"] {
  display: none;
}

.job-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.job-cat-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.job-cat-mining { background: rgba(0, 51, 153, 0.10); color: var(--psst-blue); }
.job-cat-eng    { background: rgba(0, 196, 193, 0.12); color: #008a87; }
.job-cat-ops    { background: rgba(243, 156, 18, 0.12); color: #b27214; }
.job-cat-office { background: rgba(120, 90, 200, 0.12); color: #5a3fa8; }

.job-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--psst-teal);
  letter-spacing: 0.3px;
}
.job-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--psst-teal);
  box-shadow: 0 0 0 3px rgba(0, 196, 193, 0.20);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.job-card h3 {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 900;
  color: var(--psst-blue);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 10px 0;
}
.job-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-700, #444);
  margin: 0 0 18px 0;
  flex: 1;
}

.job-meta {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 14px 0;
  border-top: 1px dashed rgba(0, 51, 153, 0.12);
  border-bottom: 1px dashed rgba(0, 51, 153, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.job-meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10.5px;
}
.job-meta li span {
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.job-meta li strong {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  color: var(--psst-blue);
  letter-spacing: -0.1px;
}

.job-apply {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 196, 193, 0.08);
  border: 1px solid rgba(0, 196, 193, 0.35);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--psst-blue);
  transition: all var(--transition);
}
.job-apply:hover {
  background: var(--psst-teal);
  border-color: var(--psst-teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 196, 193, 0.30);
}
.job-apply .arrow { transition: transform var(--transition); font-size: 16px; }
.job-apply:hover .arrow { transform: translateX(4px); }

/* ── Job CTA row ───────────────────────────────────────────── */
.job-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(0, 196, 193, 0.06) 0%, rgba(0, 51, 153, 0.04) 100%);
  border: 1px solid rgba(0, 196, 193, 0.25);
  border-radius: 100px;
  flex-wrap: wrap;
}
.job-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--psst-blue);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(0, 51, 153, 0.25);
  transition: all var(--transition);
}
.job-cta-btn:hover {
  background: var(--psst-teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 196, 193, 0.40);
  color: #fff;
}
.job-cta-btn .arrow { transition: transform var(--transition); font-size: 16px; }
.job-cta-btn:hover .arrow { transform: translateX(4px); }

.job-cta-note {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700, #444);
  margin: 0;
}
.job-cta-note a {
  color: var(--psst-blue);
  font-weight: 700;
  border-bottom: 1px dotted rgba(0, 51, 153, 0.45);
}
.job-cta-note a:hover {
  color: var(--psst-teal);
  border-bottom-color: var(--psst-teal);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .careers-pillars { grid-template-columns: 1fr; gap: 14px; }
  .hr-spread { grid-template-columns: 1fr; gap: 32px; }
  .hr-quote-block { position: static; }
  .job-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hero-careers-meta { gap: 20px; }
  .hero-careers-meta strong { font-size: 26px; }
  .career-pillar { padding: 24px 22px; }
  .career-pillar h3 { font-size: 22px; }
  .hr-quote { padding: 24px 22px 22px; }
  .hr-quote p { font-size: 16px; }
  .hr-card { grid-template-columns: 56px 1fr; gap: 14px; padding: 20px; }
  .hr-card-num { font-size: 28px; }
  .job-grid { grid-template-columns: 1fr; }
  .job-cta-row {
    flex-direction: column;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
  }
  .job-cta-btn { width: 100%; justify-content: center; }
  .job-filter { gap: 8px; }
  .job-chip { padding: 7px 14px; font-size: 12px; }
}

/* ============================================================
   PARTNER LOGO GRID (index page) — real psst.mn logos
   ============================================================ */
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid rgba(0, 51, 153, 0.08);
  border-radius: 10px;
  min-height: 110px;
  transition: all var(--transition);
  cursor: default;
}
.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter var(--transition), transform var(--transition);
}
.partner-logo:hover {
  border-color: rgba(0, 196, 193, 0.45);
  box-shadow: 0 12px 28px rgba(0, 51, 153, 0.10);
  transform: translateY(-3px);
}
.partner-logo:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 1024px) {
  .partner-logo-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .partner-logo { min-height: 96px; padding: 18px 16px; }
}
@media (max-width: 600px) {
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .partner-logo { min-height: 80px; padding: 16px 12px; }
  .partner-logo img { max-height: 44px; }
}
