/* ===== Norstech Subsea Network Indonesia — Site Stylesheet ===== */
:root {
  /* ── Norstech brand blue — clean & light ── */
  --deep:       #16223d;  /* deep navy (footer / hero) */
  --navy-950:   #16223d;
  --navy-900:   #1c2c4d;
  --navy-800:   #263961;
  --navy-700:   #2f4978;
  --brand-50:   #eef3fb;  /* light brand tint */
  --brand-100:  #dce7f6;
  --ocean-500:  #3b5ea6;  /* primary brand royal blue (logo) */
  --ocean-400:  #4f72bd;  /* lighter brand */
  --accent:     #4f72bd;  /* accent = brand blue */
  --cyan-300:   #8fb3e8;  /* light blue highlight (on dark) */
  --white:      #ffffff;
  --gray-50:    #f8fafd;
  --gray-100:   #f1f4f9;
  --gray-200:   #e7ecf3;
  --gray-300:   #dde3ec;
  --gray-400:   #b4bdcc;
  --gray-500:   #6b7589;
  --gray-600:   #4a5468;
  --gray-700:   #333c4d;
  --text-dark:  #1a2440;
  --radius:     8px;
  --radius-lg:  16px;
  --container:  1240px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11', 'ss01';
}

::selection { background: var(--accent); color: #fff; }

h1, h2, h3, h4 { text-wrap: balance; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== Buttons ===== */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 0;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* color-sweep fill: sits behind the label (negative z-index) so raw text nodes
   don't need to be wrapped in a span to stay above it */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
}
.btn:hover::after { transform: scaleX(1); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn svg { transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.btn:hover svg { transform: translateX(5px); }

.btn-primary { background: var(--ocean-500); color: var(--white); box-shadow: 0 6px 18px rgba(59,94,166,0.25); }
.btn-primary::after { background: var(--navy-900); }
.btn-primary:hover { box-shadow: 0 14px 32px rgba(28,44,77,0.38); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 6px 18px rgba(79,114,189,0.28); }
.btn-accent::after { background: var(--ocean-500); }
.btn-accent:hover { box-shadow: 0 14px 32px rgba(59,94,166,0.35); }
.btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline::after { background: var(--white); }
.btn-outline:hover { border-color: var(--white); color: var(--navy-900); }
.btn-dark-outline { border-color: var(--gray-300); color: var(--navy-900); }
.btn-dark-outline::after { background: var(--navy-900); }
.btn-dark-outline:hover { border-color: var(--navy-900); color: var(--white); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark::after { background: var(--ocean-500); }
.btn-dark:hover { box-shadow: 0 14px 32px rgba(28,44,77,0.35); }
.btn-dark svg { width: 16px; height: 16px; }

/* ===== Site header (topbar-info + navbar, one fixed stack) ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

/* ── Topbar-info: contact bar shown only at the very top of the page, collapses away on scroll ── */
.topbar-info {
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px); color: rgba(255,255,255,0.8);
  font-size: 12.5px; overflow: hidden;
  max-height: 40px; padding: 9px 0;
  transition: max-height var(--transition), opacity var(--transition), padding var(--transition);
}
.site-header.scrolled .topbar-info { max-height: 0; padding: 0; opacity: 0; }
.topbar-info .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-info-left { display: flex; align-items: center; gap: 24px; }
.topbar-info a { display: inline-flex; align-items: center; gap: 7px; color: inherit; transition: color var(--transition); }
.topbar-info a:hover { color: var(--white); }
.topbar-info svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-info-right { display: flex; align-items: center; }
.topbar-info-socials { display: flex; align-items: center; gap: 16px; }
.topbar-info-socials a { display: flex; color: inherit; transition: color var(--transition); }
.topbar-info-socials a:hover { color: var(--white); }
.topbar-info-socials svg { width: 15px; height: 15px; }
@media (max-width: 920px) { .topbar-info { display: none; } }

/* ===== Navbar (solid light by default) ===== */
.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--gray-200);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 14px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; }
.navbar-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.navbar-brand:hover .navbar-logo { opacity: 0.85; }
/* show the dark logo by default, white logo only over the dark hero */
.navbar-logo--white { display: none; }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a {
  color: var(--navy-900);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.navbar-links a:hover { color: var(--ocean-500); }
.navbar-links a.active { color: var(--ocean-500); }
.navbar-links a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--ocean-500);
}
.navbar-toggle { display: none; background: none; border: none; color: var(--navy-900); font-size: 26px; cursor: pointer; }

/* ── Navbar dropdown submenus (parent/child menu items from CMS) ── */
.navbar-item-dropdown { position: relative; }
.navbar-item-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.navbar-dropdown-caret { width: 12px; height: 12px; flex-shrink: 0; transition: transform var(--transition); }
.navbar-item-dropdown:hover .navbar-dropdown-caret { transform: rotate(180deg); }
.navbar-dropdown-menu {
  position: absolute; top: calc(100% + 20px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200); border-top: 3px solid var(--ocean-500);
  min-width: 240px; box-shadow: 0 20px 40px rgba(26,36,64,0.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1100;
}
.navbar-item-dropdown:hover .navbar-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.navbar-dropdown-menu li { margin: 0; }
.navbar-dropdown-menu li + li { border-top: 1px solid var(--gray-100); }
.navbar-dropdown-menu a {
  display: block; padding: 13px 20px;
  color: var(--navy-900); font-weight: 600; font-size: 13.5px; letter-spacing: 0.2px;
  transition: background var(--transition), color var(--transition);
}
.navbar-dropdown-menu a:hover { background: var(--gray-100); color: var(--ocean-500); }
.navbar-dropdown-menu a.active { background: var(--brand-50); color: var(--ocean-500); }

/* ── Transparent overlay variant (homepage hero only) ── */
.navbar-overlay { background: #00000050; backdrop-filter: none; box-shadow: none; padding: 20px 0; }
.navbar-overlay .navbar-links a { color: var(--white); }
.navbar-overlay .navbar-links a:hover,
.navbar-overlay .navbar-links a.active { color: var(--white); }
.navbar-overlay .navbar-links a.active::after { background: var(--white); }
/* the dropdown panel itself is always a solid white box, regardless of the transparent overlay navbar above it */
.navbar-overlay .navbar-dropdown-menu a { color: var(--navy-900); }
.navbar-overlay .navbar-dropdown-menu a:hover { color: var(--ocean-500); }
.navbar-overlay .navbar-dropdown-menu a.active { color: var(--ocean-500); }
.navbar-overlay:not(.scrolled) .navbar-logo--dark { display: none; }
.navbar-overlay:not(.scrolled) .navbar-logo--white { display: block; }
.navbar-overlay .navbar-toggle { color: var(--white); }
/* once scrolled, the overlay nav becomes solid like the default */
.navbar-overlay.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--gray-200); padding: 14px 0; }
.navbar-overlay.scrolled .navbar-links a { color: var(--navy-900); }
.navbar-overlay.scrolled .navbar-links a:hover,
.navbar-overlay.scrolled .navbar-links a.active { color: var(--ocean-500); }
.navbar-overlay.scrolled .navbar-links a.active::after { background: var(--ocean-500); }
.navbar-overlay.scrolled .navbar-toggle { color: var(--navy-900); }

/* language switcher */
.navbar-lang { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center;
  background: none; border: none; cursor: pointer;
  color: var(--navy-900); padding: 6px;
  transition: color var(--transition);
}
.lang-toggle:hover { color: var(--ocean-500); }
.lang-globe { width: 21px; height: 21px; }
/* white style when navbar is an overlay over the hero */
.navbar-overlay:not(.scrolled) .lang-toggle { color: var(--white); }
/* flag image inside the dropdown */
.lang-flag-img {
  width: 22px; height: 15px; flex-shrink: 0;
  border-radius: 2px; border: 1px solid var(--gray-200);
  display: block;
}
.lang-menu {
  position: absolute; top: calc(100% + 30px); right: 0;
  background: #00000050; border: 1px solid #00000050;
  border-radius: 10px; padding: 6px; min-width: 152px;
  box-shadow: 0 14px 34px rgba(26,36,64,0.14);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1100;
}
.navbar-lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
/* globe darkens when the dropdown is open (even over the hero) */
.navbar-overlay .navbar-lang.open .lang-toggle,
.navbar-lang.open .lang-toggle { color: #16223d; }
.lang-menu li { margin: 0; }
.lang-menu a {
  display: flex; align-items: center; gap: 11px; padding: 9px 12px; border-radius: 6px;
  color: var(--navy-900); font-weight: 500; font-size: 14px; transition: background var(--transition), color var(--transition);
}
.lang-menu a:hover { background: var(--gray-100); color: var(--navy-900); }
.lang-menu a.active { color: var(--ocean-500); font-weight: 700; }

@media (max-width: 920px) {
  .lang-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: 0; margin-top: 8px; }
  .navbar-lang { width: 100%; }
}

@media (max-width: 920px) {
  .navbar-links {
    position: fixed;
    top: 64px; right: 0;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(26,36,64,0.1);
    flex-direction: column;
    width: 270px;
    height: calc(100vh - 64px);
    padding: 30px 26px;
    align-items: flex-start;
    gap: 22px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .navbar-links.open { transform: translateX(0); }
  .navbar-toggle { display: block; }
  /* mobile panel is always light → force dark links even in overlay mode */
  .navbar-links a,
  .navbar-overlay .navbar-links a { color: var(--navy-900); }
  .navbar-overlay:not(.scrolled) .lang-toggle,
  .navbar-overlay:not(.scrolled) .nav-search-btn { color: var(--navy-900); }

  /* dropdown submenus become static, always-expanded sub-lists in the mobile slide-out panel */
  .navbar-item-dropdown { width: 100%; }
  .navbar-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: transparent; border: none; padding: 0; margin: 10px 0 0 14px;
    min-width: 0; display: flex; flex-direction: column; gap: 14px;
  }
  .navbar-dropdown-menu li + li { border-top: none; }
  .navbar-dropdown-menu a { padding: 0; font-size: 14px; font-weight: 500; color: var(--gray-500); }
  .navbar-dropdown-menu a:hover { background: none; }
  .navbar-dropdown-menu a.active { background: none; color: var(--ocean-500); }
  .navbar-dropdown-caret { display: none; }
}

/* ═══════════════════════════════ HERO SLIDER ═══════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 82.5vh;
  min-height: 550px;
  overflow: hidden;
  color: var(--white);
  background: transparent;
  cursor: grab;
  user-select: none;
}
.hero-slider.dragging { cursor: grabbing; }

/* ── SVG animated background ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cable-svg {
  width: 100%;
  height: 100%;
}

/* cable wave animation */
.cable-main {
  animation: cableWave 8s ease-in-out infinite alternate;
  transform-origin: center 555px;
}
.cable-secondary {
  animation: cableWave 10s ease-in-out infinite alternate-reverse;
  transform-origin: center 635px;
}
@keyframes cableWave {
  0%   { transform: translateY(0); }
  100% { transform: translateY(12px); }
}

/* repeater lights blink */
.rep-light {
  animation: repBlink 3.2s ease-in-out infinite;
}
.rep-light:nth-child(2) { animation-delay: 0.6s; }
.rep-light:nth-child(3) { animation-delay: 1.2s; }
.rep-light:nth-child(4) { animation-delay: 1.8s; }
.rep-light:nth-child(5) { animation-delay: 2.4s; }
@keyframes repBlink {
  0%, 85%, 100% { opacity: 1; }
  90%            { opacity: 0.15; }
}

/* sonar pulse */
.sonar {
  animation: sonarPulse 4s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.sonar-2 { animation-delay: 1.3s; }
.sonar-3 { animation-delay: 2.6s; }
@keyframes sonarPulse {
  0%   { r: 8;  opacity: 0.7; }
  100% { r: 48; opacity: 0; }
}

/* bubbles rise */
.bubble { animation: bubbleRise 8s ease-in infinite; }
.b1 { animation-duration: 9s;  animation-delay: 0s; }
.b2 { animation-duration: 11s; animation-delay: 1.5s; }
.b3 { animation-duration: 7s;  animation-delay: 3s; }
.b4 { animation-duration: 10s; animation-delay: 0.8s; }
.b5 { animation-duration: 8s;  animation-delay: 2.2s; }
.b6 { animation-duration: 13s; animation-delay: 0.4s; }
.b7 { animation-duration: 9s;  animation-delay: 4s; }
.b8 { animation-duration: 11s; animation-delay: 1s; }
.b9 { animation-duration: 7s;  animation-delay: 3.5s; }
@keyframes bubbleRise {
  0%   { transform: translateY(0)    scale(1);   opacity: 0.6; }
  80%  { transform: translateY(-280px) scale(1.2); opacity: 0.4; }
  100% { transform: translateY(-340px) scale(1.4); opacity: 0; }
}

/* ── slide track ── */
.hero-track {
  position: static;
  width: 100%;
  height: 100%;
}

/* tsParticles ambient overlay — one persistent canvas across all slides.
   z-index:2 ties it with .hero-slide-inner (also 2), but since this element
   comes before .hero-track in the DOM, the text panel (nested deeper, later
   in paint order) still wins that tie and stays on top; .hero-scrim (z-index:1)
   is unambiguously behind it either way. */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-particles canvas { display: block; }

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  /* CMS background image — no fill color so the full image shows */
  background-color: transparent;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
/* plain (no image) slides use a brand gradient */
.hero-slide--plain { background-image: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--ocean-500) 130%); }

/* readability scrim over the image */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15,22,40,0.85) 0%, rgba(15,22,40,0.6) 38%, rgba(15,22,40,0.25) 68%, rgba(15,22,40,0.1) 100%),
    linear-gradient(180deg, rgba(10,16,30,0.45) 0%, transparent 30%, transparent 65%, rgba(10,16,30,0.55) 100%);
}

/* text overlay */
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 70px;
}
.hero-text {
  max-width: 600px;
}

@media (max-width: 960px) {
  .hero-slide-inner { padding-top: 90px; }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3,10,22,0.92) 0%, rgba(3,10,22,0.78) 60%, rgba(3,10,22,0.55) 100%),
      linear-gradient(180deg, rgba(2,8,18,0.7) 0%, transparent 30%, rgba(2,8,18,0.6) 100%);
  }
}

/* ── slide typography ── */
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan-300);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s 0.1s ease, transform 0.6s 0.1s ease;
}
.hero-slide.active .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.25s ease, transform 0.6s 0.25s ease;
}
.hero-slide.active .hero-h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-accent { color: var(--cyan-300); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(215, 221, 227, 0.88);
  max-width: 600px;
  margin-bottom: 38px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s 0.38s ease, transform 0.6s 0.38s ease;
}
.hero-slide.active .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s 0.5s ease, transform 0.6s 0.5s ease;
}
.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ── arrows ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(6px);
}
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow:hover { background: var(--ocean-500); border-color: var(--accent); }
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* ── dots ── */
.hero-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: var(--cyan-300);
  width: 26px;
  border-radius: 4px;
}

/* ── progress bar ── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
}
.hero-progress-bar {
  height: 100%;
  background: var(--ocean-400);
  width: 0%;
  transition: width linear;
}

/* ── scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 44px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: scrollHintBob 2.5s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 18px; height: 18px; }
@keyframes scrollHintBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@media (max-width: 768px) {
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-scroll-hint { display: none; }
  .hero-slide-inner { padding-top: 100px; }
}

/* ═══════════════ SIEMENS-STYLE HERO (panel + bottom controls) ═══════════════ */
.hero-siemens .hero-slide { align-items: flex-end; }
.hero-siemens .hero-slide-inner { padding-top: 0; padding-bottom: 118px; }
.hero-siemens .hero-scrim {
  /* transparent so the slide image shows fully */
  background: transparent;
}

/* content panel — same dark grid+scrim treatment as .tagline-band (via .grid-scrim-bg),
   just card-sized instead of full-width */
.hero-panel {
  max-width: 560px;
  padding: 36px 40px 38px;
  border-radius: 4px;
  box-shadow: 0 30px 64px rgba(16, 22, 40, 0.4);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s 0.12s cubic-bezier(0.4,0,0.2,1), transform 0.6s 0.12s cubic-bezier(0.4,0,0.2,1);
}
.hero-siemens .hero-slide.active .hero-panel { opacity: 1; transform: none; }
.hero-panel-bar { position: absolute; z-index: 1; top: 0; left: 0; width: 64px; height: 5px; background: var(--cyan-300); }
.hero-panel .hero-h1 {
  position: relative; z-index: 1;
  font-size: clamp(1.7rem, 3.1vw, 2.7rem);
  line-height: 1.14; letter-spacing: -1px; font-weight: 800;
  color: var(--white); margin-bottom: 14px;
  opacity: 1; transform: none; transition: none;
}
.hero-panel .hero-sub {
  position: relative; z-index: 1;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  color: rgba(255,255,255,0.78); line-height: 1.6; margin-bottom: 26px; max-width: none;
  opacity: 1; transform: none; transition: none;
}
.hero-panel-link {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 15px; color: var(--cyan-300);
  transition: gap var(--transition), color var(--transition);
}
.hero-panel-link svg { width: 22px; height: 22px; }
.hero-panel-link:hover { color: var(--white); gap: 18px; }

/* bottom control bar */
.hero-controls { position: absolute; left: 0; right: 0; bottom: 0; z-index: 10; }
.hero-controls-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 28px;
}
.hero-pagination { display: flex; align-items: center; gap: 24px; }
.hero-pagination .hero-dot {
  background: none; border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center;
}
.hero-num {
  position: relative;
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.7); padding-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
  transition: color var(--transition);
}
.hero-pagination .hero-dot:hover .hero-num { color: #fff; }
.hero-pagination .hero-dot.active .hero-num { color: #fff; }
.hero-num::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width var(--transition);
}
.hero-pagination .hero-dot.active .hero-num::after { width: 100%; }

.hero-nav { display: flex; gap: 10px; }
.hero-siemens .hero-arrow {
  position: static; transform: none;
  width: 46px; height: 46px; border-radius: 0;
  background: rgba(15,22,40,0.28); border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.hero-siemens .hero-arrow:hover { background: #fff; border-color: #fff; color: var(--navy-900); }
.hero-siemens .hero-progress { background: rgba(255,255,255,0.18); }

@media (max-width: 768px) {
  .hero-panel { max-width: none; padding: 24px 22px 26px; }
  .hero-siemens .hero-slide-inner { padding-bottom: 94px; }
  .hero-pagination { gap: 16px; }
  .hero-siemens .hero-arrow { width: 40px; height: 40px; }
}

.page-hero {
  position: relative;
  padding: 150px 0 66px;
  background: linear-gradient(180deg, var(--brand-50) 0%, var(--white) 100%);
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; color: var(--navy-900); }
.page-hero p { color: var(--gray-500); max-width: 700px; font-size: 1.12rem; line-height: 1.7; }

/* ── page-hero with a CMS background image ── */
.page-hero--image {
  padding: 190px 0 70px;
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  border-bottom: none;
  color: #fff;
}
.page-hero--image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,20,38,0.82) 0%, rgba(12,20,38,0.55) 45%, rgba(12,20,38,0.3) 100%),
    linear-gradient(180deg, rgba(12,20,38,0.35) 0%, transparent 40%, rgba(12,20,38,0.4) 100%);
}
.page-hero--image > .container { position: relative; z-index: 1; }
.page-hero--image h1 { color: #fff; }
.page-hero--image p { color: rgba(255,255,255,0.82); }
.page-hero--image .breadcrumb a { color: rgba(255,255,255,0.9); }
.page-hero--image .breadcrumb a:hover { color: #fff; }
.page-hero--image .breadcrumb-sep { color: rgba(255,255,255,0.5); }
.page-hero--image .breadcrumb-current { color: rgba(255,255,255,0.75); }
.page-hero--image .news-detail-meta { color: rgba(255,255,255,0.8); }
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ocean-500);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--navy-900); }
.breadcrumb-home { width: 15px; height: 15px; }
.breadcrumb-sep { color: var(--gray-400); font-size: 16px; line-height: 1; }
.breadcrumb-current { color: var(--gray-500); }

/* ===== Sections ===== */
section { padding: 112px 0; }
/* Project detail: sits right under a header image, so skip the top gap to keep it close. */
.section-light--tight { padding-top: 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--gray-50); }
.news-carousel-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 50%, #f8fafc 100%);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.section-dark { background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 100%); color: var(--white); }

.section-head { max-width: 740px; margin-bottom: 60px; }
.section-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Norstech', sans-serif;
  font-size: 13px; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ocean-500);
  margin-bottom: 18px;
}
.section-tag::before { content: ''; order: 1; width: 28px; height: 2px; background: currentColor; }
.section-dark .section-tag { color: var(--cyan-300); }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
.section-head p { margin-top: 18px; color: var(--gray-500); font-size: 1.08rem; line-height: 1.7; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* ── Client logo carousel ── */
.client-carousel { position: relative; display: flex; align-items: center; gap: 16px; }
.client-carousel-track {
  --client-visible: 5;
  --client-gap: 32px;
  display: flex; gap: var(--client-gap); overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; padding: 4px 2px 12px; flex: 1;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  cursor: grab; user-select: none;
}
.client-carousel-track::-webkit-scrollbar { display: none; }
.client-carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.client-carousel-track.dragging .client-carousel-item { pointer-events: none; }
.client-carousel-item {
  flex: 0 0 auto;
  width: calc((100% - (var(--client-visible) - 1) * var(--client-gap)) / var(--client-visible));
  min-width: 130px; height: 110px; scroll-snap-align: start;
  display: flex; align-items: center; justify-content: center;
  padding: 12px; transition: transform var(--transition);
}
.client-carousel-item:hover { transform: translateY(-3px); }
.client-carousel-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.client-carousel-name { font-weight: 700; color: var(--navy-900); text-align: center; font-size: 0.95rem; }
.client-carousel-arrow {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--gray-300); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: var(--transition);
}
.client-carousel-arrow:hover { background: var(--ocean-500); border-color: var(--ocean-500); color: #fff; }
.client-carousel-arrow svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .client-carousel-track { --client-visible: 2; }
  .client-carousel-item { min-width: 130px; height: 90px; padding: 12px; }
  .client-carousel-arrow { display: none; }
}

/* ── Service / Product / News carousels (drag/touch only, no arrows, loop through all items) ──
   Share one rule block since all three are visually identical bleed-carousels of .card-plain items. */
.service-carousel, .product-carousel, .news-carousel { position: relative; }
.service-carousel-track,
.product-carousel-track,
.news-carousel-track {
  display: flex; gap: 28px; overflow-x: auto; scroll-behavior: smooth;
  /* padding-left is set by JS (alignBleedCarousel in main.js) to exactly match the .container edge above it;
     no scroll-snap here on purpose — snap-align was overriding scrollLeft:0 and skipping past this padding */
  padding: 4px 24px 12px 24px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  cursor: grab; user-select: none;
}
.service-carousel-track::-webkit-scrollbar,
.product-carousel-track::-webkit-scrollbar,
.news-carousel-track::-webkit-scrollbar { display: none; }
.service-carousel-track.dragging,
.product-carousel-track.dragging,
.news-carousel-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.service-carousel-track.dragging .service-carousel-item,
.product-carousel-track.dragging .product-carousel-item,
.news-carousel-track.dragging .news-carousel-item { pointer-events: none; }
.service-carousel-item, .product-carousel-item, .news-carousel-item { flex: 0 0 auto; width: 300px; }
@media (max-width: 700px) {
  .service-carousel-item, .product-carousel-item, .news-carousel-item { width: 250px; }
}

.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 60px; }
.section-head-row .section-head { margin-bottom: 0; }
@media (max-width: 700px) { .section-head-row { margin-bottom: 36px; } }

/* products grid sits without a .container wrapper (full width) */
.section-light > .grid { padding-left: 24px; padding-right: 24px; }

/* ===== Shared dark grid+scrim background — navy gradient + drifting checkered
   grid + soft glow + 50% black scrim. Used by .tagline-band (full section) and
   .hero-panel (the hero slide card) so both share one exact visual treatment,
   each just at its own size. ===== */
.grid-scrim-bg {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-700) 140%);
}
/* checkered grid texture (graph-paper style), drifting slowly for a subtle sense of motion —
   inset -32px (one full cell) so the drift never reveals an edge; the parent's own
   overflow:hidden clips the overscan */
.grid-scrim-bg::before {
  content: '';
  position: absolute; inset: -32px;
  background-image:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: gridDrift 20s linear infinite;
}
/* black 50% scrim (dims the grid+base gradient), with the soft glow drawn on top of it */
.grid-scrim-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-color: rgba(0,0,0,0.5);
  background-image: radial-gradient(ellipse 60% 70% at 50% 40%, rgba(143,179,232,0.22), transparent 70%);
}
@keyframes gridDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(32px, 32px); }
}
@media (prefers-reduced-motion: reduce) {
  .grid-scrim-bg::before { animation: none; }
}

/* ===== Big tagline band (below hero) — dark, bold, uppercase ===== */
/* 17.5vh here + hero's 82.5vh = exactly 100vh, so hero + tagline together fill one screen */
.tagline-band {
  height: 17.5vh; min-height: 140px;
  /* .container below already self-centers horizontally via margin:0 auto,
     so only align-items is needed here — combining it with justify-content:center
     on this vh-sized flex container triggers a rendering-engine bug in some
     environments that makes the box balloon to an unrelated size, so it's
     deliberately omitted */
  display: flex; align-items: center;
  text-align: center;
}
.grid-scrim-bg > .container { position: relative; z-index: 1; }
.tagline-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--cyan-300); margin-bottom: 24px;
}
.tagline-eyebrow::before, .tagline-eyebrow::after { content: ''; width: 28px; height: 2px; background: currentColor; }
.tagline-big {
  font-family: 'Courier Prime', 'Courier New', monospace;
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  font-weight: 700; line-height: 1.25; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white); max-width: 1080px; margin: 0 auto;
  text-wrap: balance;
}
.tagline-highlight {
  display: block;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 800; letter-spacing: 3px; color: var(--cyan-300);
  line-height: 1.1;
}
.tagline-sub {
  display: block;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,0.85);
  margin-top: 10px;
}

/* ===== Grids & Cards ===== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--ocean-500);
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.card:hover::before { width: 100%; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(26, 36, 64, 0.09); border-color: var(--ocean-400); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-50);
  color: var(--ocean-500);
  border-radius: 50%;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 22px;
  transition: var(--transition);
}
.card-icon svg { width: 24px; height: 24px; }
.card:hover .card-icon { background: var(--ocean-500); color: var(--white); }

/* ── Homepage overview section ── */
.overview-grid { align-items: center; gap: 64px; }
.overview-text p { color: var(--gray-700); font-size: 1.02rem; line-height: 1.85; text-align: justify; margin-bottom: 20px; }
.overview-text p:last-child { margin-bottom: 0; }
.overview-text .overview-lead { font-size: 1.14rem; font-weight: 500; color: var(--navy-900); }
.overview-media { position: relative; aspect-ratio: 3 / 4; border: 1px solid var(--gray-200); box-shadow: 0 24px 54px rgba(26,36,64,0.14); overflow: hidden; }
.overview-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .overview-media { aspect-ratio: 16 / 10; } }
@media (max-width: 640px) { .overview-grid { gap: 32px; } }
/* full-bleed image at the top of a card */
.card.has-media { display: flex; flex-direction: column; }
.card-media {
  position: relative;
  display: block;
  margin: -32px -32px 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-media img,
.card-media video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.card.has-media:hover .card-media img { transform: scale(1.05); }
.section-dark .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: rgba(255,255,255,0.72); }
.section-dark .card-icon { background: rgba(255,255,255,0.1); color: var(--white); }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; color: var(--navy-900); }
.card p { color: var(--gray-500); font-size: 0.96rem; line-height: 1.65; }
.card a.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; color: var(--ocean-500); font-weight: 700; font-size: 14px; }
.card.has-media a.card-link { margin-top: auto; padding-top: 20px; }
.card a.card-link:hover { gap: 11px; color: var(--navy-900); }
.section-dark .card a.card-link { color: var(--cyan-300); }

/* flat, borderless media card (services / products teasers) */
.card-plain {
  display: flex; flex-direction: column; height: 100%;
  background: transparent; border: none; box-shadow: none; padding: 0;
  transition: transform 0.35s ease;
}
.card-plain:hover { transform: translateY(-8px); }
.card-plain .card-media {
  position: relative;
  display: block; margin: 0 0 24px; padding: 0;
  aspect-ratio: 4 / 3; overflow: hidden; border-radius: 0; background: var(--gray-100);
  transition: box-shadow 0.35s ease;
}
.card-plain:hover .card-media { box-shadow: 0 24px 44px rgba(26, 36, 64, 0.2); }
.card-plain .card-media img,
.card-plain .card-media video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.card-plain:hover .card-media img,
.card-plain:hover .card-media video { transform: scale(1.08); }

/* play-icon badge overlaid on a product's cover video (card thumbnails + slider) */
.media-play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(15,22,40,0.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(2px); pointer-events: none;
}
.media-play-badge svg { width: 22px; height: 22px; margin-left: 2px; }
.card-plain h3 {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.3px; line-height: 1.3;
  color: var(--navy-900); margin-bottom: 14px;
  min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-plain p {
  color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; margin: 0;
  min-height: 5.1em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-plain-footer { margin-top: auto; padding-top: 22px; }
.card-plain-footer::before { content: ''; display: block; height: 1px; background: var(--gray-200); margin-bottom: 18px; }
.card-plain-footer a.card-link-plain {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-700);
}
.card-plain-footer a.card-link-plain:hover { gap: 14px; color: var(--ocean-500); }

/* ===== About page: sticky section sidebar ===== */
.about-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.about-sidebar { position: sticky; top: 110px; }
.about-sidebar-nav { display: flex; flex-direction: column; gap: 4px; border-left: 2px solid var(--gray-200); }
.about-sidebar-nav a {
  padding: 10px 18px; margin-left: -2px; border-left: 2px solid transparent;
  color: var(--gray-500); font-size: 0.9rem; font-weight: 600; transition: var(--transition);
}
.about-sidebar-nav a:hover { color: var(--navy-900); }
.about-sidebar-nav a.active {
  color: var(--ocean-500); border-left-color: var(--ocean-500);
  background: var(--brand-50); border-radius: 0 6px 6px 0;
}

/* "Other members" quick-switch list appended below the nav on a board member's detail page */
.about-sidebar-members { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.about-sidebar-members-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 12px; padding: 0 18px;
}
.about-sidebar-member {
  display: flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 6px;
  transition: var(--transition);
}
.about-sidebar-member:hover { background: var(--gray-50); }
.about-sidebar-member.active { background: var(--brand-50); }
.about-sidebar-member-photo {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-800), var(--ocean-500));
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.about-sidebar-member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-sidebar-member-name {
  font-size: 0.85rem; font-weight: 600; color: var(--gray-600);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.about-sidebar-member.active .about-sidebar-member-name { color: var(--ocean-500); font-weight: 700; }

.about-section { scroll-margin-top: 110px; }
.about-section + .about-section { margin-top: 80px; padding-top: 56px; border-top: 1px solid var(--gray-200); }
@media (max-width: 980px) {
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-sidebar { position: static; }
  .about-sidebar-nav {
    flex-direction: row; flex-wrap: wrap; gap: 8px 4px;
    border-left: none; border-bottom: 1px solid var(--gray-200); padding-bottom: 16px;
  }
  .about-sidebar-nav a { border-left: none; border-bottom: 2px solid transparent; margin-left: 0; }
  .about-sidebar-nav a.active { border-radius: 6px; border-bottom-color: var(--ocean-500); }
}

/* Norstech wordmark, sitting above the values grid */
.values-center-badge {
  width: 300px; margin: 0 auto 2.5em;
  display: flex; align-items: center; justify-content: center;
}
.values-center-badge img { width: 100%; height: 96px; object-fit: contain; display: block; }
@media (max-width: 980px) {
  .values-center-badge { margin: 0 auto 28px; }
}

/* centered, modern variant of .section-head (no leading dash on the eyebrow tag) */
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .section-tag { align-items: center; }
.section-head--center .section-tag::before { display: none; }

/* Each card's big letter is the first letter of its title — spelled out in
   grid reading order (4 cols x 2 rows) the 8 cards read N-O-R-S-T-E-C-H. */
.value-card {
  position: relative; text-align: center; background: var(--white);
  border: 1px solid transparent; border-radius: 0;
  padding: 28px 24px; transition: var(--transition); height: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(26,36,64,0.08); border-color: var(--ocean-400); }
.value-letter {
  width: 52px; height: 52px; flex-shrink: 0;
  color: #3e62ae; font-size: 1.7rem; font-family: 'Norstech', sans-serif; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.value-card h3 {
  font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; line-height: 1.3; width: 100%;
  min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.value-card p {
  color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; width: 100%;
  min-height: 4.8em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Certification detail page (About > Sertifikasi) */
.cert-detail-group + .cert-detail-group { margin-top: 40px; }
.cert-detail-group-title {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--ocean-500); margin-bottom: 16px;
}
.cert-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cert-detail-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px;
  background: var(--white); transition: var(--transition);
}
.cert-detail-card:hover { box-shadow: 0 14px 34px rgba(26,36,64,0.08); border-color: var(--ocean-400); }
.cert-detail-card-badge {
  width: 56px; height: 56px; border-radius: 8px; margin-bottom: 14px;
  background-color: var(--navy-900); background-size: cover; background-position: center;
}
.cert-detail-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.cert-detail-card-subtitle { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ocean-500); margin-bottom: 12px; }
.cert-detail-card-scope { font-size: 0.88rem; line-height: 1.6; color: var(--gray-500); margin-bottom: 14px; }
.cert-detail-card-meta { display: flex; flex-direction: column; gap: 4px; font-size: 0.78rem; color: var(--gray-500); padding-top: 12px; border-top: 1px solid var(--gray-200); }
.cert-detail-card-meta strong { color: var(--text-dark); }
.cert-detail-card-pdf {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  background: none; border: none; padding: 0; cursor: pointer; font-family: inherit;
  color: var(--ocean-500); font-size: 0.82rem; font-weight: 700; transition: var(--transition);
}
.cert-detail-card-pdf svg { width: 15px; height: 15px; flex-shrink: 0; }
.cert-detail-card-pdf:hover { color: var(--navy-900); }
@media (max-width: 900px) { .cert-detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cert-detail-grid { grid-template-columns: 1fr; } }

/* Vision statement panel — a boxed pull-quote above the Mission grid */
.vision-panel {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px 48px 48px; text-align: center;
}
.vision-quote-mark {
  display: block; font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-size: 4.5rem; line-height: 1; color: var(--ocean-500); opacity: 0.35;
}
.vision-panel-text {
  font-size: 1.25rem; line-height: 1.8; color: var(--gray-700);
  max-width: 760px; margin: 0 auto; font-weight: 500; font-style: italic;
}
@media (max-width: 640px) {
  .vision-panel { padding: 16px 28px 32px; }
  .vision-quote-mark { font-size: 3.4rem; }
  .vision-panel-text { font-size: 1.08rem; }
}

/* Mission points — plain numbered list, no cards */
.mission-list { list-style: none; margin: 0; padding: 0; }
.mission-list li { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--gray-200); }
.mission-list li:first-child { padding-top: 0; }
.mission-list li:last-child { border-bottom: none; padding-bottom: 0; }
.mission-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-800), var(--ocean-500));
  color: var(--white); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.mission-list h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.mission-list p { color: var(--gray-500); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* ===== Board / Team ===== */
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-800), var(--ocean-500));
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 2rem; font-weight: 800;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .position { color: var(--ocean-500); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }

/* Premium board profile: gradient ring-framed photo, uppercase position pill,
   solid pill CTA — refined but still restrained (no new brand colors).
   Static (no hover-lift): this is a browsing grid, not a clickable teaser card,
   so the generic .card hover-grow is disabled in favour of a permanent accent. */
.team-card--premium {
  padding: 44px 32px 36px; position: relative; overflow: hidden;
  box-shadow: 0 6px 24px rgba(26, 36, 64, 0.06); border-radius: 0;
}
.team-card--premium::before { width: 100%; background: linear-gradient(90deg, var(--ocean-400), var(--navy-800)); }
.team-card--premium:hover {
  transform: none; box-shadow: 0 6px 24px rgba(26, 36, 64, 0.06); border-color: var(--gray-200);
}
.team-card--premium .team-photo-ring {
  width: 184px; height: 184px; margin: 0 auto 22px; border-radius: 50%; padding: 6px;
  background: linear-gradient(160deg, var(--ocean-400), var(--navy-800));
  box-shadow: 0 12px 28px rgba(26, 36, 64, 0.2);
}
.team-card--premium .team-photo-ring .team-photo,
.team-card--premium .team-photo-img {
  width: 100%; height: 100%; margin: 0; border-radius: 50%;
  border: 4px solid var(--white); display: block; object-fit: cover;
}
.team-card--premium .team-photo-ring .team-photo { font-size: 2.6rem; }
.team-card--premium h3 { font-size: 1.28rem; letter-spacing: -0.2px; margin-bottom: 8px; }
.team-card--premium .position {
  display: inline-block; background: var(--brand-50); color: var(--ocean-500);
  padding: 5px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px;
}
.team-card--premium a.card-link {
  margin-top: 0; padding: 10px 26px; border-top: none; border-radius: 100px;
  width: auto; justify-content: center; font-weight: 700; font-size: 0.82rem;
  background: var(--navy-800); color: var(--white); transition: var(--transition);
}
.team-card--premium a.card-link:hover { gap: 6px; background: var(--ocean-500); color: var(--white); }

/* ===== Board member detail page ===== */
.board-detail-profile {
  display: flex; align-items: flex-start; gap: 32px;
  padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--gray-200);
}
.board-detail-photo {
  width: 168px; height: 168px; flex-shrink: 0; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--white); box-shadow: 0 12px 28px rgba(26, 36, 64, 0.2);
  background: linear-gradient(160deg, var(--navy-800), var(--ocean-500));
}
.board-detail-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.board-detail-info h2 { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 10px; }
.board-detail-info .position {
  display: inline-block; background: var(--brand-50); color: var(--ocean-500);
  padding: 6px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.board-detail-meta { list-style: none; margin: 18px 0 0; display: flex; flex-direction: column; gap: 8px; }
.board-detail-meta li { display: flex; gap: 10px; font-size: 0.92rem; }
.board-detail-meta .label { color: var(--gray-500); font-weight: 600; min-width: 100px; flex-shrink: 0; }
.board-detail-meta .value { color: var(--gray-700); }
@media (max-width: 640px) {
  .board-detail-profile { flex-direction: column; align-items: center; text-align: center; }
  .board-detail-meta li { justify-content: center; }
}

/* Skill / Course / Experience / Project list inside each bio tab panel.
   Skill & Course: tidy 2-column checklist (no chronology to show).
   Experience & Project: connected vertical timeline with a date pill per entry
   (sorted newest-first server-side; "Sekarang" for entries still ongoing). */
.board-detail-timeline { list-style: none; margin: 0; padding: 0; }

.board-detail-timeline--plain { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 32px; }
.board-detail-timeline--plain li { position: relative; padding-left: 20px; }
.board-detail-timeline--plain li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; background: var(--ocean-500); transform: rotate(45deg);
}
.board-detail-timeline--plain .desc { color: var(--gray-700); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 640px) { .board-detail-timeline--plain { grid-template-columns: 1fr; } }

.board-detail-timeline--dated li {
  position: relative; border-left: 2px solid var(--gray-200); padding: 0 0 28px 26px; margin-left: 5px;
}
.board-detail-timeline--dated li:last-child { border-left-color: transparent; padding-bottom: 0; }
.board-detail-timeline--dated li::before {
  content: ''; position: absolute; left: -7px; top: 2px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--ocean-500);
  box-shadow: 0 0 0 3px var(--white);
}
.board-detail-timeline--dated .dates {
  display: inline-block; background: var(--brand-50); color: var(--ocean-500);
  padding: 3px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.03em; margin-bottom: 8px;
}
.board-detail-timeline--dated .desc { display: block; color: var(--gray-700); font-size: 0.98rem; line-height: 1.55; }

/* ===== Tables (specs/legal) ===== */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--gray-300); }
.spec-table th { color: var(--gray-500); font-weight: 600; width: 220px; }

.equipment-card pre, .doc-meta { white-space: pre-wrap; font-family: inherit; }

/* ===== Timeline (projects listing) ===== */
.project-timeline { position: relative; max-width: 920px; margin: 0 auto; }
.project-timeline::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.project-timeline-year {
  font-style: italic; font-weight: 800; font-size: 1.5rem; color: var(--navy-900);
  padding-left: 48px; margin-bottom: 20px;
}
.project-timeline-year:not(:first-child) { margin-top: 8px; }
.project-timeline-item { position: relative; padding-bottom: 36px; padding-left: 48px; box-sizing: border-box; }
.project-timeline-item:last-child { padding-bottom: 0; }
.project-timeline-row { display: flex; align-items: center; gap: 26px; }
.project-timeline-dot {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%; box-sizing: border-box;
  background: var(--white); border: 3px solid var(--ocean-500);
  box-shadow: 0 0 0 4px var(--brand-50);
}

/* Alternating left/right layout — kicks in once there's room for two columns */
@media (min-width: 961px) {
  .project-timeline { max-width: 1000px; }
  .project-timeline::before { left: 50%; margin-left: -1px; }
  .project-timeline-year { text-align: center; padding-left: 0; }
  .project-timeline-item { width: 50%; padding-left: 0; padding-bottom: 44px; }
  .project-timeline-item--right { margin-left: 50%; }
  .project-timeline-item--left .project-timeline-row { flex-direction: row-reverse; }
  .project-timeline-item--left .project-timeline-dot { margin-right: -11px; }
  .project-timeline-item--right .project-timeline-dot { margin-left: -11px; }
}
.project-timeline-card {
  display: flex; gap: 24px; background: var(--white); flex: 1; min-width: 0;
  border: 1px solid var(--gray-200); border-radius: 0;
  padding: 22px; transition: var(--transition);
}
.project-timeline-card:hover {
  box-shadow: 0 14px 34px rgba(26, 36, 64, 0.1); border-color: var(--ocean-400); transform: translateY(-3px);
}
.project-timeline-thumb {
  flex: 0 0 180px; aspect-ratio: 4 / 3; border-radius: 0; overflow: hidden; display: block; background: var(--gray-100);
}
.project-timeline-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.project-timeline-card:hover .project-timeline-thumb img { transform: scale(1.06); }
.project-timeline-body { flex: 1; min-width: 0; }
.project-timeline-date {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--ocean-500); background: var(--brand-50); padding: 4px 12px; border-radius: 100px; margin-bottom: 10px;
}
.project-timeline-body h3 {
  font-size: 1.2rem; line-height: 1.3; margin-bottom: 8px;
  min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.project-timeline-clients {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px;
  min-height: 24px; max-height: 24px; overflow: hidden;
}
.project-timeline-clients .tag-pill { margin-bottom: 0; font-size: 11px; padding: 3px 10px; }
.project-timeline-body p {
  color: var(--gray-500); font-size: 0.94rem; line-height: 1.65; margin-bottom: 12px;
  min-height: 3.3em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 640px) {
  .project-timeline-card { flex-direction: column; }
  .project-timeline-thumb { flex: none; width: 100%; aspect-ratio: 16 / 9; }
}

/* ===== Cable map link-out card (Home overview + Project detail) —
   submarinecablemap.com blocks iframe embedding (X-Frame-Options), so this
   links out to the real interactive map in a new tab instead of faking an embed. ===== */
.cable-map-card {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 24px;
  background-color: var(--navy-900); background-size: cover; background-position: center;
  color: var(--white); padding: 32px; margin-top: 40px;
}
.cable-map-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,20,38,0.9) 0%, rgba(12,20,38,0.72) 55%, rgba(12,20,38,0.5) 100%);
}
.cable-map-card-icon, .cable-map-card-body { position: relative; z-index: 1; }
.cable-map-card-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
}
.cable-map-card-icon svg { width: 26px; height: 26px; }
.cable-map-card-body h3 { font-size: 1.15rem; margin-bottom: 6px; color: var(--white); }
.cable-map-card-body p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 14px; max-width: 480px; }
.cable-map-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.4px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 4px; transition: var(--transition);
}
.cable-map-card-link svg { width: 14px; height: 14px; }
.cable-map-card-link:hover { gap: 12px; border-color: var(--white); }
@media (max-width: 560px) {
  .cable-map-card { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ===== Stats ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-num { font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 800; color: var(--accent); letter-spacing: -1.5px; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.66); font-size: 0.92rem; margin-top: 10px; }
.section-dark .stat-item, .stat-item { padding-left: 18px; border-left: 2px solid rgba(143,179,232,0.5); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Forms ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  font-size: 15px; font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--ocean-500); }
textarea.form-control { resize: vertical; min-height: 140px; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 24px; font-size: 14px; }
.alert-success { background: #e3f7ee; color: #1c7a4f; border: 1px solid #b8e6cc; }
.alert-error { background: #fdeaea; color: #ad2727; border: 1px solid #f4c0c0; }
.req { color: #d64545; }
.form-control.is-invalid { border-color: #ad2727; background: #fff7f7; }
.field-error { display: block; color: #ad2727; font-size: 0.8rem; margin-top: 6px; }
.field-hint { color: var(--gray-500); font-size: 0.8rem; margin: 6px 0 0; }

/* ===== Contact page ===== */
/* These are static content panels, not clickable teasers — drop the generic
   .card hover lift/shadow-grow (it implies clickability) and keep a fixed
   accent underline under each title instead. */
.contact-form-card,
.contact-info-card {
  box-shadow: 0 4px 24px rgba(26, 36, 64, 0.05);
}
.contact-form-card:hover,
.contact-info-card:hover {
  transform: none;
  box-shadow: 0 4px 24px rgba(26, 36, 64, 0.05);
  border-color: var(--gray-200);
}
.contact-form-card:hover::before,
.contact-info-card:hover::before {
  width: 0;
}
.contact-form-card > h3,
.contact-info-card > h3 {
  padding-bottom: 14px;
  margin-bottom: 22px;
  position: relative;
}
.contact-form-card > h3::after,
.contact-info-card > h3::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--ocean-500);
}
.contact-required-note { color: var(--gray-500); font-size: 0.88rem; margin: -10px 0 20px; }
.captcha-box {
  text-align: center; font-family: 'Courier New', Courier, monospace; font-weight: 700;
  font-size: 1.15rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ocean-500);
  background: var(--gray-100); border: 1.5px dashed var(--gray-300); border-radius: 6px;
  padding: 10px 12px; margin: 8px 0 12px;
}
.captcha-input { text-align: center; letter-spacing: 1px; }
.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand-50); color: var(--ocean-500);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-item strong {
  display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px;
}
.contact-info-item p { color: var(--gray-700); font-size: 0.96rem; line-height: 1.6; margin: 0; }
.contact-info-item p.contact-info-value--strong { font-size: 1.12rem; font-weight: 700; color: var(--navy-900); }

/* simple underline tabs switching between multiple CMS-managed office locations */
.office-tabs { margin-bottom: 22px; }
.office-tabs-nav { display: flex; flex-wrap: wrap; gap: 4px 18px; border-bottom: 1px solid var(--gray-200); margin-bottom: 18px; }
.office-tab-btn {
  background: none; border: none; cursor: pointer; padding: 0 0 10px; margin-bottom: -1px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--gray-500);
  border-bottom: 2px solid transparent; transition: var(--transition);
}
.office-tab-btn:hover { color: var(--navy-900); }
.office-tab-btn.is-active { color: var(--ocean-500); border-bottom-color: var(--ocean-500); }
.office-tab-panel { display: none; }
.office-tab-panel.is-active { display: block; }

/* full-bleed map section, flush against the page header/hero above it —
   supports multiple categorized pins when locations are managed in the CMS. */
.map-footprint { margin-top: 0; }
.map-footprint-frame { position: relative; min-height: 720px; }
.map-footprint-frame iframe,
.map-footprint-frame #footprintMap { width: 100%; height: 100%; min-height: 720px; border: 0; display: block; }
.footprint-legend {
  position: absolute; left: 12px; bottom: 12px; z-index: 1000;
  background: rgba(255,255,255,0.95); border-radius: 6px; padding: 10px 14px;
  display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 0.8rem; color: var(--gray-700);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12); max-width: calc(100% - 24px);
}
.footprint-legend-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.footprint-legend-item .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
@media (max-width: 900px) {
  .map-footprint-frame,
  .map-footprint-frame iframe,
  .map-footprint-frame #footprintMap { min-height: 420px; }
}

/* Norstech-branded map pin (favicon badge + colored ring/pointer per category) */
.map-pin-icon { background: none; border: none; }
.map-pin {
  width: 40px; height: 40px; box-sizing: border-box;
  background: #fff; border-radius: 10px; border: 3px solid var(--ocean-500);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25); overflow: hidden;
}
.map-pin img { width: 100%; height: 100%; object-fit: contain; padding: 3px; box-sizing: border-box; }
.map-pin-arrow {
  width: 0; height: 0; margin: -2px auto 0;
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-top: 10px solid var(--ocean-500);
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.15));
}

/* ===== Footer (Tenaris-style: link columns + minimal bright bottom bar) ===== */
.footer {
  background: var(--gray-50);
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
}

.footer-columns { display: flex; align-items: flex-start; gap: 56px; flex-wrap: wrap; padding: 64px 0 16px; }

.footer-col-cta { flex: 1 1 260px; max-width: 300px; display: flex; flex-direction: column; gap: 36px; }
.footer-cta h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.footer-cta p { font-size: 0.86rem; line-height: 1.6; color: var(--gray-500); margin-bottom: 18px; }
.footer-cta-btn { display: inline-flex; align-items: stretch; border: 1px solid var(--gray-300); transition: var(--transition); }
.footer-cta-btn .label { display: flex; align-items: center; padding: 11px 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy-900); }
.footer-cta-btn .arrow { display: flex; align-items: center; padding: 0 14px; border-left: 1px solid var(--gray-300); color: var(--navy-900); }
.footer-cta-btn .arrow svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.footer-cta-btn:hover { border-color: var(--ocean-500); background: var(--white); }
.footer-cta-btn:hover .arrow svg { transform: translateX(3px); }

.footer-col-divider { width: 1px; align-self: stretch; background: var(--gray-200); flex-shrink: 0; }

.footer-col { flex: 1 1 200px; }
.footer-col h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin-bottom: 22px; }
.footer-col-list { display: flex; flex-direction: column; gap: 16px; }
.footer-col-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--gray-500); transition: color var(--transition);
}
.footer-col-list a svg { width: 13px; height: 13px; opacity: 0.55; flex-shrink: 0; transition: transform 0.2s ease, opacity 0.2s ease; }
.footer-col-list a:hover { color: var(--ocean-500); }
.footer-col-list a:hover svg { transform: translateX(3px); opacity: 1; }

.footer-col-list-lg a { font-size: 1rem; text-transform: none; letter-spacing: 0; font-weight: 700; color: var(--navy-900); }
.footer-col-list-lg a:hover { color: var(--ocean-500); }
.footer-col-list-lg a svg { opacity: 0.7; }

@media (max-width: 900px) {
  .footer-col-divider { display: none; }
}
@media (max-width: 700px) {
  .footer-columns { gap: 36px; padding: 48px 0 8px; }
  .footer-col-cta, .footer-col { flex-basis: 100%; max-width: none; }
}

.section-certs { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 1em 0; }
.footer-certs { padding: 0.4em 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-certs-label {
  display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #000000; margin-bottom: 8px;
}
.footer-certs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; width: 100%; }
.footer-cert-card {
  position: relative; display: flex; align-items: flex-end;
  min-height: 130px; padding: 16px; border-radius: var(--radius);
  background-color: var(--navy-900); background-size: cover; background-position: center;
  overflow: hidden; text-align: left; transition: var(--transition);
}
.footer-cert-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26, 36, 64, 0.14); }
.footer-cert-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,48,0.15) 0%, rgba(11,20,38,0.85) 100%);
}
.footer-cert-card-text { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 2px; }
.footer-cert-card-text strong { font-size: 0.95rem; font-weight: 800; color: var(--white); }
.footer-cert-card-text span { font-size: 0.76rem; color: rgba(255,255,255,0.75); }
@media (max-width: 900px) { .footer-certs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-certs-grid { grid-template-columns: 1fr; } }

.footer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
}
.footer-social { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: color var(--transition);
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover { color: var(--ocean-500); }

.footer-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3px; text-transform: uppercase;
  color: var(--gray-500); transition: color var(--transition);
}
.footer-links a:hover { color: var(--ocean-500); }

.footer-copyright {
  font-size: 0.72rem; color: var(--gray-500);
  margin-left: auto; white-space: nowrap;
}

.footer-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.footer-logo { height: 26px; width: auto; }

@media (max-width: 900px) {
  .footer-copyright { margin-left: 0; order: 3; width: 100%; white-space: normal; }
  .footer-brand { order: 4; }
}
@media (max-width: 560px) {
  .footer-row { justify-content: center; text-align: center; padding: 24px 0; }
  .footer-links { justify-content: center; gap: 16px; }
  .footer-copyright { text-align: center; }
}

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 2500;
  height: 54px; padding: 0 20px 0 16px; border-radius: 100px;
  background: #25D366; color: #fff;
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.2px; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.whatsapp-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-float:hover { transform: scale(1.04); box-shadow: 0 10px 28px rgba(37,211,102,0.55); color: #fff; }
.whatsapp-float.is-hidden { opacity: 0; transform: scale(0.7) translateY(10px); pointer-events: none; }
@media (max-width: 560px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .whatsapp-float svg { width: 27px; height: 27px; }
  .whatsapp-float-text { display: none; }
}

/* ── Scroll-to-top button, stacked above the WhatsApp banner ── */
.scroll-top-btn {
  position: fixed; right: 24px; bottom: 90px; z-index: 2500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(26,36,64,0.3);
  opacity: 0; visibility: hidden; transform: scale(0.7) translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}
.scroll-top-btn.is-visible { opacity: 1; visibility: visible; transform: scale(1) translateY(0); }
.scroll-top-btn.is-hidden { opacity: 0; visibility: hidden; transform: scale(0.7) translateY(10px); pointer-events: none; }
.scroll-top-btn:hover { background: var(--ocean-500); }
.scroll-top-btn svg { width: 20px; height: 20px; }
@media (max-width: 560px) {
  .scroll-top-btn { right: 16px; bottom: 78px; width: 42px; height: 42px; }
}

/* ===== Misc ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.tag-pill {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  background: var(--brand-50); color: var(--ocean-500);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 12px;
}
.tag-pill--link { transition: var(--transition); }
.tag-pill--link:hover { background: var(--ocean-500); color: var(--white); }

/* ===== Project detail: linked services / equipment ===== */
.project-related-block { margin: 28px 0; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.project-related-block h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy-900); margin-bottom: 14px; }
.project-related-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.project-related-tags .tag-pill { margin-bottom: 0; border-radius: 8px; }

.whitespace-pre { white-space: pre-line; }
.career-meta { margin-bottom: 4px; }
.career-info { color: var(--gray-500); font-size: 0.92rem; margin-top: 4px; }

/* ═══════════════════════════════ SEARCH ═══════════════════════════════ */
.navbar-search { display: flex; align-items: center; }
.nav-search-btn {
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--navy-900); display: flex; align-items: center;
  transition: color var(--transition);
}
.nav-search-btn svg { width: 20px; height: 20px; }
.nav-search-btn:hover { color: var(--ocean-500); }
.navbar-overlay:not(.scrolled) .nav-search-btn { color: #fff; }

.search-modal { position: fixed; inset: 0; z-index: 3000; display: flex; justify-content: center; align-items: flex-start; }
.search-modal[hidden] { display: none; }
.search-backdrop { position: absolute; inset: 0; background: rgba(15,22,40,0.55); backdrop-filter: blur(4px); }
.search-dialog {
  position: relative; z-index: 1;
  width: 100%; height: 100%; margin-top: 0;
  background: #fff; border-radius: 0; overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,22,40,0.4);
  opacity: 0; transform: translateY(-14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: flex; flex-direction: column;
}
.search-modal.show .search-dialog { opacity: 1; transform: none; }
.search-bar { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--gray-200); flex-shrink: 0; }
.search-bar-ico { width: 22px; height: 22px; color: var(--gray-500); flex-shrink: 0; }
.search-input { flex: 1; border: none; outline: none; background: transparent; font-size: 1.1rem; font-family: inherit; color: var(--text-dark); }
.search-close { background: var(--gray-100); border: none; width: 34px; height: 34px; border-radius: 8px; cursor: pointer; color: var(--gray-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.search-close svg { width: 18px; height: 18px; }
.search-close:hover { background: var(--gray-200); }
.search-body { flex: 1; overflow-y: auto; }
.search-hint, .search-loading, .search-empty { padding: 26px; text-align: center; color: var(--gray-500); font-size: 0.9rem; }
.search-result { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--gray-100); transition: background 0.15s ease; }
.search-result:last-child { border-bottom: none; }
.search-result:hover, .search-result:focus { background: var(--brand-50); outline: none; }
.search-badge {
  flex-shrink: 0; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--ocean-500); background: var(--brand-50); border: 1px solid var(--brand-100);
  padding: 4px 10px; border-radius: 100px; min-width: 78px; text-align: center;
}
.search-result-txt { min-width: 0; }
.search-result-title { font-weight: 600; color: var(--navy-900); font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-snippet { font-size: 0.84rem; color: var(--gray-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.search-open { overflow: hidden; }
@media (max-width: 920px) {
  .navbar-overlay:not(.scrolled) .nav-search-btn { color: var(--navy-900); }
  .search-badge { min-width: 64px; }
}

/* ═══════════════════════════════ COOKIE BANNER ═══════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 2000;
  background: var(--white);
  border: 1px solid #00000050;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 50px rgba(26, 36, 64, 0.18);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.cookie-copy { flex: 1; }
.cookie-copy strong { display: block; font-size: 0.98rem; color: var(--navy-900); margin-bottom: 4px; }
.cookie-copy p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.55; margin: 0; max-width: 760px; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 11px 24px; font-size: 14px; white-space: nowrap; }

@media (max-width: 720px) {
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px 20px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .cookie-btn { flex: 1; justify-content: center; }
}

/* ── Rich text (WYSIWYG output) ── */
.rich-content { line-height: 1.8; text-align: justify; }
.rich-content p { margin-bottom: 1em; }
.rich-content h1, .rich-content h2, .rich-content h3, .rich-content h4 { margin: 1.4em 0 0.6em; line-height: 1.3; font-weight: 700; }
.rich-content h1 { font-size: 1.8rem; }
.rich-content h2 { font-size: 1.5rem; }
.rich-content h3 { font-size: 1.25rem; }
.rich-content ul, .rich-content ol { margin: 0 0 1em 1.4em; }
.rich-content li { margin-bottom: 0.4em; }
.rich-content a { color: var(--ocean-500); text-decoration: underline; }
.rich-content blockquote { border-left: 3px solid var(--ocean-500); padding: 4px 0 4px 18px; margin: 1em 0; color: var(--gray-500); font-style: italic; }
.rich-content img { border-radius: 6px; margin: 1em 0; }

/* ── Spec comparison table (e.g. product description "vs other solutions") ── */
.rich-content .spec-table-wrap { overflow-x: auto; margin: 1.5em 0; }
.rich-content table.spec-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 0.92rem; }
.rich-content table.spec-table th, .rich-content table.spec-table td { border: 1px solid var(--gray-300); padding: 10px 14px; text-align: center; vertical-align: middle; }
.rich-content table.spec-table thead th { background: var(--gray-100); font-weight: 700; color: var(--navy-900); }
.rich-content table.spec-table td:nth-child(2) { text-align: left; font-weight: 600; color: var(--navy-900); }
.rich-content table.spec-table .spec-highlight { background: var(--ocean-500); color: #fff; font-weight: 700; }
.rich-content table.spec-table thead th.spec-highlight { background: var(--navy-900); }

/* ── Product image slider (main photo + thumbnail rail on the right) ── */
.product-slider { display: flex; gap: 20px; margin-bottom: 36px; align-items: center; }
.product-slider-main-wrap { position: relative; flex: 1; min-width: 0; }
.product-slider-main {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  border-radius: 8px; overflow: hidden; background: var(--gray-100);
  cursor: grab; user-select: none;
}
.product-slider-main:active { cursor: grabbing; }
.product-slider-main img { width: 100%; height: 100%; object-fit: contain; background: #fff; pointer-events: none; }
video.product-slider-main { cursor: auto; }
video.product-slider-main::-webkit-media-controls { width: 100%; height: 100%; object-fit: contain; }
video.product-slider-main { width: 100%; height: 100%; object-fit: contain; background: #000; }

/* bottom-left "01 / 04" counter badge, same dark-scrim treatment as the home hero slider —
   hidden while a video slide is active so it doesn't sit on top of the native player controls */
.product-slider-main-wrap.is-video .product-slider-scrim,
.product-slider-main-wrap.is-video .product-slider-controls { display: none; }
.product-slider-scrim {
  position: absolute; left: 0; right: 0; bottom: 0; height: 40%; z-index: 1;
  background: linear-gradient(to top, rgba(15,22,40,0.55), rgba(15,22,40,0));
  border-radius: 0 0 8px 8px; pointer-events: none;
}
.product-slider-controls {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: 0 16px 14px;
}
.product-slider-counter {
  display: flex; align-items: baseline; gap: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.product-slider-counter-sep,
.product-slider-counter-total { color: rgba(255,255,255,0.65); }
.product-slider-thumbs {
  /* max-height is JS-synced to the main photo's rendered height: with few
     thumbnails the column just shrinks to content and .product-slider's
     align-items: center keeps it vertically centered; with more thumbnails
     than fit, it hits the cap and becomes a vertically scrollable rail. */
  display: flex; flex-direction: column; gap: 10px;
  width: 96px; flex-shrink: 0; overflow-y: auto; overflow-x: hidden;
}
.product-slider-thumb {
  position: relative;
  display: block; width: 96px; height: 96px; flex: 0 0 96px; padding: 0;
  border: 2px solid transparent; border-radius: 8px; overflow: hidden;
  cursor: pointer; background: var(--gray-100); transition: border-color 0.15s ease;
}
.product-slider-thumb img,
.product-slider-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.product-slider-thumb .media-play-badge { width: 32px; height: 32px; }
.product-slider-thumb .media-play-badge svg { width: 14px; height: 14px; }
.product-slider-thumb:hover { border-color: var(--gray-300); }
.product-slider-thumb.active { border-color: var(--ocean-500); }
@media (max-width: 700px) {
  .product-slider { flex-direction: column; }
  .product-slider-main { width: 100%; }
  .product-slider-thumbs { flex-direction: row; width: 100%; height: auto; overflow-x: auto; overflow-y: visible; }
  .product-slider-thumb { width: 96px; height: 96px; flex: 0 0 96px; }
}
.rich-content strong { font-weight: 700; }

/* ── FAQ accordion ── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-size: 1.02rem; font-weight: 700; color: var(--navy-900);
}
.faq-caret { width: 20px; height: 20px; flex-shrink: 0; color: var(--gray-500); transition: transform var(--transition); }
.faq-item.is-open .faq-caret { transform: rotate(180deg); color: var(--ocean-500); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 24px 22px; color: var(--gray-600); line-height: 1.7; }

/* ── Datasheet preview card + modal (product detail page) ── */
.datasheet-card {
  display: flex; align-items: center; gap: 20px; width: 100%;
  margin-top: 32px; padding: 22px 26px; max-width: 560px;
  background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius);
  font: inherit; text-align: left; text-decoration: none; cursor: pointer;
  transition: var(--transition);
}
.datasheet-card:hover {
  border-color: var(--ocean-500); background: #fff;
  box-shadow: 0 12px 28px rgba(15,22,40,0.1); transform: translateY(-2px);
}
.datasheet-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 10px;
  background: linear-gradient(135deg, var(--ocean-500), var(--navy-900));
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.datasheet-icon svg { width: 26px; height: 26px; }
.datasheet-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.datasheet-info strong { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); }
.datasheet-info span { font-size: 0.86rem; color: var(--gray-500); }
.datasheet-arrow {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--ocean-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.datasheet-arrow svg { width: 18px; height: 18px; }
.datasheet-card:hover .datasheet-arrow { background: var(--navy-900); transform: translateY(2px); }
@media (max-width: 560px) {
  .datasheet-card { max-width: 100%; padding: 18px; gap: 14px; }
  .datasheet-icon { width: 44px; height: 44px; }
  .datasheet-icon svg { width: 22px; height: 22px; }
}
body.pdf-modal-open { overflow: hidden; }
.pdf-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(15,22,40,0.7);
  z-index: 2000; align-items: center; justify-content: center; padding: 24px;
}
.pdf-modal-overlay.is-open { display: flex; }
.pdf-modal {
  background: #fff; border-radius: var(--radius);
  width: 100%; max-width: 900px;
  height: 85vh; height: 85dvh; max-height: 820px;
  display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.pdf-modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid var(--gray-200); flex-shrink: 0;
}
.pdf-modal-head strong {
  font-size: 0.95rem; color: var(--navy-900); min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pdf-modal-head-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pdf-modal-download-btn {
  display: inline-flex; align-items: center; padding: 8px 16px;
  border-radius: 4px; background: var(--gray-100); border: 1px solid var(--gray-300);
  color: var(--navy-900); font-weight: 700; font-size: 13px; text-decoration: none;
  transition: var(--transition); white-space: nowrap;
}
.pdf-modal-download-btn:hover { background: var(--ocean-500); border-color: var(--ocean-500); color: #fff; }
.pdf-modal-close {
  background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer;
  color: var(--gray-500); padding: 0 4px; flex-shrink: 0;
}
.pdf-modal-close:hover { color: var(--navy-900); }
.pdf-modal-body { flex: 1; min-height: 0; }
.pdf-modal-body iframe { width: 100%; height: 100%; border: none; display: block; }

/* tablet: modal shrinks with viewport but still floats with margin */
@media (max-width: 960px) {
  .pdf-modal { max-width: 100%; }
}
/* mobile: go edge-to-edge and fill the true visible viewport (100dvh avoids
   mobile browser toolbars clipping the bottom of a plain 100vh modal) */
@media (max-width: 700px) {
  .pdf-modal-overlay { padding: 0; }
  .pdf-modal { height: 100vh; height: 100dvh; max-height: none; border-radius: 0; }
  .pdf-modal-head { padding: 12px 14px; }
  .pdf-modal-head strong { font-size: 0.85rem; }
  .pdf-modal-download-btn { padding: 7px 12px; font-size: 12px; }
}
@media (max-width: 360px) {
  .pdf-modal-head-actions { gap: 6px; }
  .pdf-modal-download-btn { padding: 6px 10px; }
}

/* ═══════════════════════════════ NEWS ═══════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26,36,64,0.09); border-color: var(--ocean-400); }

.news-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-media img { transform: scale(1.06); }
.news-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--navy-800), var(--ocean-500));
  color: rgba(255,255,255,0.55);
}
.news-card-placeholder svg { width: 64px; height: 64px; }

.news-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-card-date {
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ocean-500); margin-bottom: 10px;
}
.news-card-body h3 { font-size: 1.15rem; line-height: 1.35; margin-bottom: 10px; }
.news-card-body h3 a { color: var(--text-dark); transition: color var(--transition); }
.news-card-body h3 a:hover { color: var(--ocean-500); }
.news-card-body p { color: var(--gray-500); font-size: 0.94rem; flex: 1; }
.news-card-body .card-link { margin-top: 16px; }

.news-empty { text-align: center; padding: 60px 0; color: var(--gray-500); }

/* load-more (shared by news / services / products listing pages) */
.loadmore-wrap, .news-loadmore-wrap { text-align: center; margin-top: 48px; }
.loadmore-btn, .news-loadmore { min-width: 220px; justify-content: center; }
.loadmore-btn[disabled], .news-loadmore[disabled] { opacity: 0.75; cursor: default; }
.loadmore-btn[hidden], .news-loadmore[hidden] { display: none; }
.btn-spinner { display: inline-flex; align-items: center; }
.btn-spinner[hidden] { display: none; }
.btn-spinner svg { width: 20px; height: 20px; }
.spin { animation: spin 0.8s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.loadmore-end, .news-end { margin-top: 18px; color: var(--gray-500); font-size: 0.9rem; letter-spacing: 0.5px; }

/* news detail */
.news-detail { display: grid; grid-template-columns: 1fr 300px; gap: 12px; align-items: start; }
@media (max-width: 900px) { .news-detail { grid-template-columns: 1fr; } }
.news-detail-meta { display: flex; gap: 8px; flex-wrap: wrap; color: var(--gray-300); font-size: 0.95rem; }
.news-detail-hero { width: 100%; border-radius: 8px; margin-bottom: 28px; }
.news-detail-lead { font-size: 1.18rem; font-weight: 500; color: var(--gray-700); margin-bottom: 24px; line-height: 1.6; max-width: 780px; }
.news-detail-body {
  color: var(--gray-700); font-size: 1.05rem; line-height: 1.8;
  /* max-width: 780px; */
  padding: 0;
}

/* Small client credit row under a project's description — logo + name only, no link */
.project-clients-strip {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid var(--gray-200);
}
.project-client-chip { display: flex; align-items: center; gap: 10px; }
.project-client-chip img {
  width: 36px; height: 36px; object-fit: contain; background: var(--white);
  border: 1px solid var(--gray-200); padding: 4px; flex-shrink: 0;
}
.project-client-chip span { font-size: 0.85rem; font-weight: 600; color: var(--navy-900); }

.news-detail-aside { position: sticky; top: 100px; }
.news-detail-aside h4 {
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--navy-900); margin-bottom: 14px;
}
.aside-block { background: var(--gray-50); border: 1px solid var(--gray-200); padding: 20px 22px; margin-bottom: 16px; border-radius: 8px; }
.aside-block:last-child { margin-bottom: 0; }
.project-sidebar-dates {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  color: var(--ocean-500); background: var(--brand-50); padding: 6px 14px; border-radius: 100px;
}
.cable-map-sidebar-name { font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; }
.cable-map-sidebar-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ocean-500); font-weight: 700; font-size: 0.82rem; transition: var(--transition);
}
.cable-map-sidebar-link svg { width: 13px; height: 13px; }
.cable-map-sidebar-link:hover { gap: 10px; color: var(--navy-900); }
.news-recent li { margin-bottom: 18px; }
.news-recent a { display: block; }
.news-recent-date { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--ocean-500); margin-bottom: 4px; }
.news-recent-title { display: block; font-size: 0.95rem; color: var(--text-dark); line-height: 1.4; transition: color var(--transition); }
.news-recent a:hover .news-recent-title { color: var(--ocean-500); }

/* ===== Structure Organisasi (Organization Structure) ===== */
.org-image-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 36, 64, 0.06);
  margin-bottom: 48px;
}
.org-image-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
  gap: 12px;
}
.org-image-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}
.org-image-title svg { width: 20px; height: 20px; color: var(--ocean-500); }
.org-image-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ocean-500);
  background: var(--brand-50);
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.org-image-btn svg { width: 14px; height: 14px; }
.org-image-btn:hover { background: var(--ocean-500); color: var(--white); }
.org-image-wrapper {
  padding: 24px;
  background: var(--white);
  display: flex;
  justify-content: center;
  overflow: auto;
}
.org-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.org-chart-tree {
  margin: 32px 0 56px;
}
.org-level {
  position: relative;
}
.org-level--1 {
  display: flex;
  justify-content: center;
}
.org-node {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(26, 36, 64, 0.05);
  position: relative;
  transition: var(--transition);
}
.org-node:hover {
  box-shadow: 0 16px 36px rgba(26, 36, 64, 0.09);
  border-color: var(--ocean-400);
  transform: translateY(-3px);
}
.org-node-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--brand-50);
  color: var(--ocean-500);
  margin-bottom: 12px;
}
.org-node-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 4px;
}
.org-node-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-500);
  margin-bottom: 12px;
}
.org-node-desc {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.6;
}

.org-node--shareholders {
  max-width: 580px;
  text-align: center;
  border-top: 4px solid var(--navy-900);
}
.org-node--shareholders .org-node-badge {
  background: rgba(22, 34, 61, 0.08);
  color: var(--navy-900);
}

.org-connector-vertical {
  width: 2px;
  height: 36px;
  background: linear-gradient(180deg, var(--ocean-500), var(--cyan-300));
  margin: 0 auto;
  position: relative;
}
.org-connector-vertical::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean-500);
}

.org-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.org-node--commissioner {
  border-top: 4px solid var(--cyan-300);
}
.org-node--director {
  border-top: 4px solid var(--ocean-500);
}
.org-node-tasks {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.org-node-tasks li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 8px;
}
.org-node-tasks li:last-child { margin-bottom: 0; }
.org-node-tasks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ocean-500);
  font-weight: 800;
  font-size: 0.85rem;
}

.org-exec-duo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.org-exec-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 12px 16px;
}
.org-exec-box strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.org-exec-box span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.org-level--divisions {
  margin-top: 8px;
}
.org-divisions-header {
  text-align: center;
  margin-bottom: 24px;
}
.org-divisions-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ocean-500);
  margin-bottom: 4px;
}
.org-divisions-header h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-900);
}

.org-divisions-grid {
  gap: 20px;
}
.org-div-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(26, 36, 64, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.org-div-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 36, 64, 0.09);
  border-color: var(--ocean-400);
}
.org-div-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--ocean-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}
.org-div-icon svg { width: 22px; height: 22px; }
.org-div-card:hover .org-div-icon {
  background: var(--ocean-500);
  color: var(--white);
}
.org-div-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 4px;
}
.org-div-sub {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ocean-500);
  margin-bottom: 14px;
}
.org-div-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
}
.org-div-card ul li {
  position: relative;
  padding-left: 16px;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 6px;
}
.org-div-card ul li:last-child { margin-bottom: 0; }
.org-div-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ocean-500);
  font-weight: 800;
}

.org-principles {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
}
.org-principle-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  transition: var(--transition);
}
.org-principle-card:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 36, 64, 0.08);
  border-color: var(--ocean-400);
}
.org-principle-num {
  font-family: 'Norstech', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ocean-500);
  opacity: 0.4;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.org-principle-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.org-principle-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .org-split-grid { grid-template-columns: 1fr; }
  .org-divisions-grid { grid-template-columns: 1fr; }
}
