/* ============================================================
   Indo Container Lines — Landing Page Styles
   Design System: IMS Figma DS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Open+Sans:wght@400;600;700;800&display=swap');

/* ── Accessibility ─────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand */
  --orange-1: #f15a23;
  --orange-2: #f27d20;
  --orange-3: #c44b0c;
  --orange-4: #f7a555;
  --orange-5: #fce3cc;
  --blue-1:   #0b4d8a;
  --blue-2:   #1565c0;
  --blue-3:   #2980d9;
  --blue-4:   #5ba3e7;
  --blue-home:#e8f1fb;

  /* Neutral */
  --gray-10:  #f4f4f2;
  --gray-30:  #e2e1e1;
  --gray-50:  #c0bfbc;
  --gray-60:  #969390;
  --gray-80:  #616060;
  --gray-90:  #3c3c3c;
  --gray-100: #1e1e1e;

  /* Semantic */
  --primary:        var(--orange-1);
  --primary-hover:  var(--orange-3);
  --bg-app:         var(--gray-10);
  --bg-surface:     #ffffff;
  --fg-1:           var(--gray-100);
  --fg-2:           var(--gray-90);
  --fg-3:           var(--gray-80);
  --border-default: var(--gray-30);

  /* Status */
  --success: #00c853;
  --warning: #f59e0b;
  --danger:  #e53935;
  --info:    #2196f3;

  /* Spacing */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-nav: 0 4px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-cta: 0 4px 24px rgba(241,90,35,0.30);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  color: var(--fg-1);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg-1);
}

/* ── Navbar — Dynamic Island Style ─────────────────────────── */
.navbar-wrap {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1140px;
}

.navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-nav);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.99);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg-2);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--orange-5);
}

.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-cta.cta-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.btn {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 10px 22px;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(241,90,35,0.38);
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(196,75,12,0.82) 0%, rgba(241,90,35,0.72) 40%, rgba(242,125,32,0.62) 70%, rgba(247,165,85,0.45) 100%),
    url('assets/images/kapal5.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Layered background effects */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(41,128,217,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(241,90,35,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-top: -100px;
}

.hero-title .block {
  display: block;
}

.hero-subtitle {
  display: inline;
  color: var(--primary);
  background: white;
  padding: 2px 12px 4px 12px;
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 80px;
}

.btn-hero-primary {
  background: transparent;
  color: white;
  padding: 14px 30px;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.85);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-hero-primary:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-4);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  min-width: 152px;
  animation: float-3d 3s ease-in-out infinite;
}

.float-card-1 {
  z-index: 100;
  top: 20%;
  animation-delay: 0s;
}

.float-card-2 {
  top: 10%;
  right: 10%;
  animation-delay: 1s;
}

.float-card-3 {
  z-index: 100;
  bottom: 10%;
  left: 50%;
  animation-delay: 2s;
}

@keyframes float-3d {
  0%, 100% { transform: perspective(600px) rotateY(-32deg) rotateX(8deg) translateY(0); }
  50%       { transform: perspective(600px) rotateY(-32deg) rotateX(8deg) translateY(-8px); }
}

.float-card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.float-card-value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--fg-1);
}

.float-card-value.orange { color: var(--primary); }

/* ── Section Utilities ──────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--fg-1);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--fg-3);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Kontak Section ─────────────────────────────────────────── */
.contact-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.contact-photo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-photo-card {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: min(100%, 340px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.contact-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: var(--bg-app);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--gray-50);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  flex-shrink: 0;
}

.contact-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
  margin-bottom: 2px;
}

.contact-card-sub {
  font-size: 13px;
  color: var(--fg-3);
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-default);
  flex-wrap: wrap;
}

.contact-social-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.contact-social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.contact-social-btn:hover {
  border-color: var(--blue-2);
  color: var(--blue-2);
  background: var(--blue-home);
}

/* ── Lokasi Kami ─────────────────────────────────────────────── */

/* HQ Card */
.lokasi-hq {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--orange-2) 0%, var(--orange-4) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 32px;
  color: white;
}

.lokasi-hq-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lokasi-hq-body { flex: 1; }

.lokasi-hq-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.lokasi-badge-hq {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lokasi-city {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin: 0;
}

.lokasi-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.lokasi-maps-btn:hover { background: rgba(255,255,255,0.25); }

.lokasi-hq-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lokasi-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.lokasi-detail-row svg { flex-shrink: 0; margin-top: 2px; }

/* Branch Cards Grid */
.lokasi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.lokasi-grid .lokasi-card {
  flex: 0 0 calc(25% - 12px);
}

.lokasi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.lokasi-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--blue-3);
  transform: translateY(-2px);
}

.lokasi-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lokasi-card-pin {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-home);
  border: 1px solid var(--blue-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-2);
  flex-shrink: 0;
}

.lokasi-card-city {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--fg-1);
  margin: 0;
}

.lokasi-card-address {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.lokasi-card-contacts {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lokasi-card-contacts span {
  font-size: 12px;
  color: var(--fg-3);
}

.lokasi-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
}

.lokasi-card-link:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--gray-100);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 40px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-btn:hover {
  background: var(--orange-1);
  border-color: var(--orange-1);
  color: white;
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange-4); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

/* ── Perjalanan Kami ────────────────────────────────────────── */
.journey-section {
  background: var(--bg-surface);
}

.journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange-1), var(--blue-1));
  transform: translateX(-50%);
  opacity: 0.18;
}

.journey-item {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 72px;
}

.journey-img-wrap {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.journey-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.journey-img-wrap:hover img {
  transform: scale(1.04);
}

.journey-center {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.journey-dot {
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--orange-1);
}

.journey-text {
  flex: 1;
  padding-left: 32px;
}

/* Even items: flip image to right, text to left */
.journey-item:nth-child(even) .journey-img-wrap { order: 3; padding-left: 0; }
.journey-item:nth-child(even) .journey-center   { order: 2; }
.journey-item:nth-child(even) .journey-text     { order: 1; padding-left: 0; padding-right: 32px; text-align: right; }

.journey-year {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--primary);
  background: var(--orange-5);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.journey-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--fg-1);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.journey-desc {
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.75;
}

/* ── Platform IMS Section ───────────────────────────────────── */
.platform-section {
  background: var(--bg-surface);
  overflow: hidden;
}

.platform-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.platform-copy .section-title { margin-bottom: 14px; }

.platform-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 36px;
}

.platform-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  strong {
    color: var(--primary);
  }
}

.platform-feat-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.platform-features strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 2px;
}

.platform-features span {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}

.btn-platform-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: all 0.25s ease;
}

.btn-platform-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(241,90,35,0.42);
}

/* MacBook card stack */
.platform-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.macbook-stack-wrap {
  position: relative;
  width: 100%;
  padding-right: 14%;
  padding-bottom: 9%;
}

.macbook-stack {
  position: relative;
  width: 100%;
}

/* First slide stays in flow → sets container height */
.macbook-slide {
  width: 100%;
  background: transparent;
  overflow: visible;
  transition: transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.4s ease;
  position: relative;
}

/* Slides 2 & 3 overlay on top via absolute */
.macbook-slide + .macbook-slide {
  position: absolute;
  top: 0;
  left: 0;
}

.macbook-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.stack-arrow {
  position: absolute;
  bottom: 45%;
  right: 20%;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cta);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.stack-arrow:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}

/* ── Photo Strip ────────────────────────────────────────────── */
.photo-strip-outer {
  overflow: hidden;
  background: var(--bg-app);
  padding: 32px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.photo-strip {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: strip-scroll 50s linear infinite;
  padding: 0 7px;
}

.photo-strip:hover {
  animation-play-state: paused;
}

.photo-strip img {
  height: 180px;
  width: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Scroll Animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ── Mobile Hamburger ───────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-1);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Tentang Kami ───────────────────────────────────────────── */
/* About — full-width banner */
.about-banner {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  min-height: 380px;
}

.about-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* gradient: hitam atas → transparan bawah */
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(196,75,12,0.92) 0%,
    rgba(241,90,35,0.65) 45%,
    transparent 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 44px;
}

.about-vm {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.about-vm-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
}

.about-vm-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-align: center;
}

.about-visi .about-vm-label { color: var(--blue-4); }
.about-misi .about-vm-label { color: var(--orange-4); }

.about-vm-text {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
  text-align: center;
}

.about-values-title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-1);
  margin: 8px 0 0;
}

/* Values Showcase — slideshow + tabs */
.values-showcase {
  width: 100%;
}

.values-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-90);
  margin-bottom: 12px;
}

.values-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.values-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.values-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.values-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.values-slide-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.values-slide-name {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.values-slide-right {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 78% 145% at 2% 50%,
    transparent 0%,
    rgba(193, 72, 11, 0.25) 20%,
    rgba(193, 72, 11, 0.88) 100%
  );
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 36px 40px 36px 65%;
}

.values-slide-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin: 0;
}

/* Tab list */
.values-tabs {
  display: flex;
  gap: 8px;
}

.values-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.values-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.values-tab.active::after {
  animation: values-progress 4s linear forwards;
}

@keyframes values-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.values-tab:hover {
  border-color: var(--orange-4);
}

.values-tab.active {
  border-color: var(--primary);
  background: var(--orange-5);
}

.values-tab-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}

.values-tab.active .values-tab-num {
  color: var(--primary);
}

.values-tab-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-2);
  text-align: center;
  line-height: 1.3;
}

.values-tab.active .values-tab-name {
  color: var(--primary);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .platform-inner { grid-template-columns: 1fr; gap: 40px; }
  .platform-mockup { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-banner { aspect-ratio: 16 / 9; min-height: 300px; }
  .about-banner-overlay { padding: 28px 32px; }
  .about-vm { flex-direction: column; }
  .values-tabs { flex-wrap: wrap; }
  .values-tab { flex: 0 0 calc(25% - 6px); }
  .lokasi-grid .lokasi-card { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 768px) {
  .navbar-wrap { width: calc(100% - 32px); top: 14px; }
  .navbar { padding: 12px 20px; border-radius: var(--radius-md); }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 24px; }

  .lokasi-hq { flex-direction: column; padding: 28px 24px; }
  .lokasi-hq-top { flex-direction: column; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .lokasi-grid .lokasi-card { flex: 0 0 100%; }
  .contact-photo-card { aspect-ratio: 1 / 1; width: min(100%, 260px); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .journey-timeline::before { display: none; }
  .journey-item { flex-direction: column; gap: 20px; margin-bottom: 48px; }
  .journey-item:nth-child(even) .journey-img-wrap,
  .journey-item:nth-child(even) .journey-center,
  .journey-item:nth-child(even) .journey-text { order: unset; padding: 0; text-align: left; }
  .journey-text { padding-left: 0; }
  .journey-center { display: none; }
  .journey-img-wrap { width: 100%; }
  .values-preview { aspect-ratio: 4 / 3; }
  .values-tabs { flex-wrap: wrap; }
  .values-tab { flex: 0 0 calc(33.33% - 6px); }

  /* About banner — mobile */
  .about-banner { aspect-ratio: 4 / 3; min-height: 280px; }
  .about-banner-overlay { padding: 20px 20px; }
  .about-vm { flex-direction: column; gap: 12px; }
  .about-vm-card { padding: 0; gap: 10px; }
}
