/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #14171f;
  --white:     #ffffff;
  --slate:     #5b6270;
  --slate-lt:  #919aaa;
  --surface:   #f6f7f9;
  --border:    #e8e9ed;
  --accent:    #0057b8;
  --accent-dk: #004499;
  --accent-lt: #e8f0fb;
  --red:       #c8102e;
  --nav-h:     72px;

  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body  { background: var(--white); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a     { text-decoration: none; color: inherit; }
img   { display: block; max-width: 100%; }
ul    { list-style: none; }


/* ════════════════════════════
   HEADER & NAVIGATION
   ════════════════════════════ */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent);
  flex-shrink: 0;
}

.logo span {
  color: var(--red);
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  height: 100%;
  align-items: center;
}

.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 0 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
}

.nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--muted);
  transition: color .15s, background .15s;
}

.dropdown a:hover {
  color: var(--accent);
  background: var(--accent-lt);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-contact {
  padding: 8px 20px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}

.btn-contact:hover {
  background: var(--accent-dk);
}

.lang-switcher {
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}

.lang-switcher:hover {
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  animation: slideDown .25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}

.mobile-nav-links li a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}

.mobile-nav-links li a:hover {
  color: var(--accent);
}

.mobile-cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */
/* .breadcrumb-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 13px 0; }
.breadcrumb {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate-lt);
}
.breadcrumb a { color: var(--slate); font-weight: 500; transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { font-size: 11px; }
.breadcrumb .current { color: var(--ink); font-weight: 600; } */

/* ═══════════════════════════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  height: 320px;
  background: linear-gradient(140deg, #0a1628 0%, #0d2a5e 55%, #1a3a7a 100%);
  display: flex; align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 70% 50%, rgba(0,87,184,.32) 0%, transparent 70%),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.018) 60px, rgba(255,255,255,.018) 61px),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.018) 60px, rgba(255,255,255,.018) 61px);
  pointer-events: none;
}
.hero-dots { position: absolute; inset: 0; pointer-events: none; }
.hero-dots span {
  position: absolute; border-radius: 50%;
  background: rgba(0,150,255,.5);
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity: .35; }
  50%      { transform: scale(1.7); opacity: .85; }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #ffc72c;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: #ffc72c; }
.hero-title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: #fff; letter-spacing: -.5px; margin-bottom: 14px; line-height: 1.1; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,.65); max-width: 560px; }

/* ═══════════════════════════════════════════════════════
   STICKY SECTION TABS
   ═══════════════════════════════════════════════════════ */
.section-tabs {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 90;
}
.section-tabs-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
}
.section-tabs-inner::-webkit-scrollbar { display: none; }
.stab {
  display: flex; align-items: center; gap: 9px;
  padding: 18px 24px;
  font-size: 14px; font-weight: 600; color: var(--slate);
  border-bottom: 2px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.stab svg { width: 16px; height: 16px; flex-shrink: 0; }
.stab:hover { color: var(--ink); }
.stab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   SECTION WRAPPER
   ═══════════════════════════════════════════════════════ */
.service-section { padding: 80px 0; }
.service-section.alt { background: var(--surface); }
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); background: #ffc72c;
  padding: 5px 14px 5px 10px; border-radius: 100px; margin-bottom: 16px;
}
.sec-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.sec-title { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; letter-spacing: -.4px; margin-bottom: 12px; }
.sec-sub { font-size: 15.5px; color: var(--slate); max-width: 620px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   PAGE 1 — OVERSEAS SERVICE
   ═══════════════════════════════════════════════════════ */
#page1 {
  position: relative; overflow: hidden;
}

/* World map SVG container */
.world-map-wrap {
  position: relative;
  background: linear-gradient(160deg, #0a1628 0%, #0d2a5e 100%);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
  padding: 48px 32px 32px;
}
.world-map-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 0, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 0, transparent 60px);
  pointer-events: none;
}

.world-map-title {
  position: relative; z-index: 1;
  text-align: center;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 32px;
}

.world-map-svg-wrap {
  position: relative; z-index: 1;
  aspect-ratio: 960/440;
  overflow: hidden;
}

/* World outline map via inline SVG paths */
.world-svg { width: 100%; height: 100%; }

/* Service location pins */
.svc-pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  cursor: default;
  z-index: 10;
}
.pin-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: #ffc72c;
  border: 2px solid rgba(255,255,255,.6);
  box-shadow: 0 0 0 0 rgba(255,199,44,.4);
  animation: pinRipple 2.2s ease-out infinite;
}
@keyframes pinRipple {
  0%   { box-shadow: 0 0 0 0 rgba(255,199,44,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(255,199,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,199,44,0); }
}
.pin-label {
  margin-top: 7px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11.5px; font-weight: 700;
  color: #fff; white-space: nowrap;
  text-align: center;
}
.pin-sub {
  font-size: 10px; color: rgba(255,199,44,.9); font-weight: 600;
  margin-top: 3px;
}

/* Route lines */
.route-line { stroke: rgba(255,199,44,.3); stroke-width: 1.5; stroke-dasharray: 5 4; fill: none; animation: dashFlow 3s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -100; } }

/* Pinpoint cards row — 6 kota Indonesia (3 × 2) */
.svc-locations-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  position: relative; z-index: 1;
}
.svc-loc-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 20px 18px;
  transition: background .2s, border-color .2s;
}
.svc-loc-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,199,44,.35); }
.slc-flag { font-size: 28px; margin-bottom: 10px; line-height: 1; }
.slc-city { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.slc-country { font-size: 12.5px; color: rgba(255,255,255,.5); }
.slc-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  background: rgba(255,199,44,.15);
  border: 1px solid rgba(255,199,44,.3);
  border-radius: 100px;
  font-size: 10.5px; font-weight: 700;
  color: #ffc72c;
  text-transform: uppercase; letter-spacing: .04em;
}

/* Global presence strip */
.global-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.gs-item {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  transition: transform .2s, box-shadow .2s;
}
.gs-item:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.07); }
.gs-num {
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -.5px; color: var(--accent);
  display: block; margin-bottom: 4px;
}
.gs-label { font-size: 13px; color: var(--slate); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   PAGE 2 — SERVICE SYSTEMS
   ═══════════════════════════════════════════════════════ */
#page2 {
  position: relative; overflow: hidden;
}
.svc-systems-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(150deg, #0a1628, #0d2a5e);
}
.svc-systems-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 0, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 0, transparent 80px);
}
#page2 .section-wrap { position: relative; z-index: 1; }
#page2 .sec-eyebrow { color: var(--ink); }
#page2 .sec-title { color: #fff; }
#page2 .sec-sub { color: rgba(255,255,255,.6); }

.svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.svc-stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: background .2s, border-color .2s, transform .2s;
  position: relative; overflow: hidden;
}
.svc-stat-card:hover { background: rgba(255,255,255,.11); border-color: rgba(255,199,44,.3); transform: translateY(-4px); }
.svc-stat-card::before {
  content: '';
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,199,44,.12), transparent 70%);
  pointer-events: none;
}
.ssc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,199,44,.12);
  border: 1px solid rgba(255,199,44,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: #ffc72c;
}
.ssc-icon svg { width: 28px; height: 28px; }
.ssc-num {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900; letter-spacing: -1px;
  color: #ffc72c; display: block;
  margin-bottom: 4px; line-height: 1;
}
.ssc-unit { font-size: 18px; font-weight: 700; color: rgba(255,255,255,.5); }
.ssc-label { font-size: 13.5px; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 6px; }

/* Service pillars below stats */
.svc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.svc-pillar {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px;
  display: flex; gap: 16px;
  transition: background .2s, border-color .2s;
}
.svc-pillar:hover { background: rgba(255,255,255,.1); border-color: rgba(255,199,44,.2); }
.sp-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,199,44,.12); border: 1px solid rgba(255,199,44,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #ffc72c;
}
.sp-icon svg { width: 20px; height: 20px; }
.sp-body h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sp-body p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   PAGE 3 — VIDEOS
   ═══════════════════════════════════════════════════════ */
#page3 {  
  position: relative; overflow: hidden;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.video-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.09); border-color: transparent; }
.vc-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, #1a1d28, #0d2a5e);
}
/* Fake thumbnail background variations */
.vc-thumb-1 { background: linear-gradient(135deg, #1a1d28, #0d2a5e); }
.vc-thumb-2 { background: linear-gradient(135deg, #0a1628, #21242f); }
.vc-thumb-3 { background: linear-gradient(135deg, #1f2330, #14171f); }
.vc-thumb-4 { background: linear-gradient(135deg, #0d2a5e, #21242f); }
.vc-thumb-5 { background: linear-gradient(135deg, #262a37, #0a1628); }
.vc-thumb-6 { background: linear-gradient(135deg, #14171f, #1a3a7a); }

.vc-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(255,255,255,.03) 12px, rgba(255,255,255,.03) 13px);
}

/* LED panel decorative grid on thumb */
.vc-led-grid {
  position: absolute; inset: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  opacity: .5;
}
.vc-led-cell {
  border-radius: 2px;
  background: rgba(255,255,255,.04);
}
.vc-led-cell.lit { background: rgba(255,199,44,.25); }
.vc-led-cell.lit-b { background: rgba(0,150,255,.2); }

/* Play button */
.vc-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.video-card:hover .vc-play { background: rgba(255,199,44,.85); border-color: #ffc72c; transform: translate(-50%,-50%) scale(1.08); }
.vc-play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }

/* Duration badge */
.vc-duration {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  background: rgba(0,0,0,.65); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 5px;
  font-variant-numeric: tabular-nums;
}

/* Category label */
.vc-cat {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(0,87,184,.85);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .04em;
}

.vc-body { padding: 18px 20px 20px; }
.vc-date { font-size: 12px; color: var(--slate-lt); font-weight: 500; margin-bottom: 7px; }
.vc-title { font-size: 15.5px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.vc-desc { font-size: 13px; color: var(--slate); line-height: 1.55; }

/* Video modal overlay */
.video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,15,25,.92);
  align-items: center; justify-content: center;
  padding: 24px;
}
.video-modal.open { display: flex; }
.vm-box {
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  max-width: 860px; width: 100%;
  position: relative;
  animation: vmIn .25s ease;
}
@keyframes vmIn { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.vm-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .15s;
}
.vm-close:hover { background: rgba(255,255,255,.22); }
.vm-close svg { width: 16px; height: 16px; }
.vm-video-wrap {
  aspect-ratio: 16/9;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.vm-video-mock {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a1628, #1a3a7a);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
}
.vm-play-big {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,199,44,.2);
  border: 2px solid rgba(255,199,44,.5);
  display: flex; align-items: center; justify-content: center;
  color: #ffc72c;
}
.vm-play-big svg { width: 36px; height: 36px; margin-left: 5px; }
.vm-video-label { font-size: 14px; color: rgba(255,255,255,.6); }
.vm-info { padding: 20px 24px 24px; }
.vm-info h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.vm-info p { font-size: 13px; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════ */
.cta-band-section { padding: 80px 0; background: var(--surface); }
.cta-band {
  background: var(--ink);
  border-radius: 22px;
  padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,87,184,.25), transparent 65%);
  pointer-events: none;
}
.cta-band-text { position: relative; z-index: 1; }
.cta-band-text h3 { font-size: clamp(20px, 2.8vw, 26px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-band-text p { font-size: 14.5px; color: rgba(255,255,255,.6); }
.cta-band-actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost-light { background: transparent; border: 1.5px solid rgba(255,255,255,.3); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer { background: #0a1628; color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: #ffc72c; }
.footer-brand .logo-mark { background: #ffc72c; }
.footer-brand .logo-mark::before, .footer-brand .logo-mark::after { background: #0a1628; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-brand-contact { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.fbc-item { display: flex; gap: 9px; font-size: 13px; align-items: flex-start; }
.fbc-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; color: #ffc72c; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 24px 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: #fff; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.footer-socials a:hover { background: #ffc72c; color: #0a1628; }
.footer-socials svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATION
   ═══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
/* ── Map city tooltip on hover ── */
.map-city-tooltip {
  position: absolute;
  background: rgba(10,22,40,.9);
  border: 1px solid rgba(255,199,44,.4);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #ffc72c;
  pointer-events: none;
  white-space: nowrap;
  z-index: 20;
  transform: translate(-50%, -130%);
  display: none;
}
.world-map-svg-wrap:hover .map-city-tooltip { display: block; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-actions .btn:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-pillars { grid-template-columns: 1fr; }
  .global-strip { grid-template-columns: repeat(2, 1fr); }
  .svc-locations-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { height: 240px; }
  .service-section { padding: 52px 0; }
  .videos-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .world-map-wrap { padding: 28px 16px 24px; }
  .svc-stats-grid { grid-template-columns: 1fr 1fr; }
  .svc-locations-row { grid-template-columns: repeat(2, 1fr); }
  /* Peta Indonesia: hide beberapa label teks di layar kecil supaya tidak tumpang tindih */
  .world-svg text { font-size: 7.5px; }
}
@media (max-width: 560px) {
  .global-strip { grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .svc-locations-row { grid-template-columns: 1fr 1fr; }
  .world-map-svg-wrap { aspect-ratio: 960/480; }
}