/* ============================================================
   RUMBIATRACK — LANDING PAGE PITCHING (Bahasa Melayu)
   Warna selaras logo: Navy #1b2c6b · Gold #c9a227 · Cream #f5f3ef
   KiCX'26 · Kolej Komuniti Beaufort, Sabah
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --navy:        #1b2c6b;
  --navy-dark:   #0f1a45;
  --navy-light:  rgba(27, 44, 107, 0.08);
  --gold:        #c9a227;
  --gold-light:  rgba(201, 162, 39, 0.15);
  --gold-dark:   #a88318;
  --cyan:        #06b6d4;
  --emerald:     #10b981;

  --bg-page:     #f6f4ef;
  --bg-card:     #ffffff;
  --border:      rgba(27, 44, 107, 0.12);
  --border-gold: rgba(201, 162, 39, 0.4);

  --text-main:   #171b34;
  --text-body:   #3d4258;
  --text-muted:  #6b7280;
  --on-dark:     #f4f2ea;
  --on-dark-muted: rgba(244, 242, 234, 0.72);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  --shadow-sm: 0 4px 16px rgba(27, 44, 107, 0.08);
  --shadow-md: 0 12px 32px rgba(27, 44, 107, 0.12);
  --shadow-lg: 0 24px 60px rgba(27, 44, 107, 0.18);
  --shadow-gold: 0 10px 30px rgba(201, 162, 39, 0.3);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Reusable bits ───────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--gold-dark);
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 40px);
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.section-heading .accent { color: var(--gold); }
.section-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin-top: 14px;
}
.section-head-center .section-heading::after { margin-left: auto; margin-right: auto; }
.section-sub {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }
section { padding: 88px 0; position: relative; }
section.tight { padding: 64px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 26px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,162,39,0.4); }
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--on-dark);
  border: 1.5px solid rgba(244,242,234,0.35);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 26px rgba(27,44,107,0.28);
}
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-dark); }
.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost-navy:hover { background: var(--navy-light); }

/* ── Top nav ─────────────────────────────────────────────── */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(246, 244, 239, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.landing-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.landing-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.landing-brand span {
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.landing-brand span em {
  font-style: normal;
  color: var(--gold-dark);
}

.landing-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-body);
  white-space: nowrap;
}
.landing-links a {
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.landing-links a:hover {
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.12);
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-cta .btn {
  padding: 10px 18px;
  font-size: 13px;
  white-space: nowrap;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(27, 44, 107, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px 10px;
  transition: all 0.2s ease;
}
.nav-burger:hover {
  background: rgba(27, 44, 107, 0.12);
}
.nav-burger span {
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

@media (max-width: 1024px) {
  .nav-burger {
    display: flex;
  }
  .landing-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246, 244, 239, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }
  .landing-links.mobile-open {
    display: flex;
  }
  .landing-links a {
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    font-size: 14.5px;
  }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 90px;
  background: radial-gradient(ellipse at 15% 10%, rgba(201,162,39,0.14) 0%, transparent 45%),
              radial-gradient(ellipse at 90% 20%, rgba(27,44,107,0.10) 0%, transparent 50%),
              var(--bg-page);
  text-align: center;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}
.hero-blob-1 { width: 340px; height: 340px; top: -120px; left: -100px; background: var(--gold); }
.hero-blob-2 { width: 300px; height: 300px; bottom: -100px; right: -80px; background: var(--navy); opacity: 0.25; }

/* Hero dengan gambar latar (gaya hospitaliti antarabangsa) */
.hero.hero-photo {
  background-image:
    linear-gradient(180deg, rgba(15,26,69,0.90) 0%, rgba(27,44,107,0.82) 45%, rgba(15,26,69,0.96) 100%),
    var(--hero-photo-src, url('./assets/rumbia_restaurant.png'));
  background-size: cover;
  background-position: center 30%;
}
.hero.hero-photo .hero-blob { display: none; }
.hero.hero-photo .hero-badge {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(201,162,39,0.55);
  backdrop-filter: blur(6px);
}
.hero.hero-photo .hero-title {
  background: linear-gradient(135deg, #ffffff 15%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero.hero-photo .hero-tagline { color: #fff; }
.hero.hero-photo .hero-subtitle { color: var(--gold); }
.hero.hero-photo .hero-desc { color: rgba(255,255,255,0.82); }
.hero.hero-photo .hero-stat-pill {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.24);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero.hero-photo .gateway-footer { color: var(--on-dark-muted); }

.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 24px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(42px, 8vw, 82px);
  letter-spacing: -1.5px;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy) 20%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 15.5px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 34px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ── Video section ───────────────────────────────────────── */
.video-section { background: var(--bg-page); }
.video-frame-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--navy-dark);
}
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #23306e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--on-dark);
}
.video-placeholder iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 0 0 14px rgba(201,162,39,0.18);
  transition: var(--transition);
}
.video-placeholder:hover .video-play-btn { transform: scale(1.08); }
.video-caption {
  position: absolute;
  bottom: 20px; left: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--on-dark-muted);
}
.video-cta { text-align: center; margin-top: 26px; }

/* ── Problem: before / after ─────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.problem-card {
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border: 1px solid var(--border);
}
.problem-card.before { background: #fdf1ee; border-color: rgba(185,28,28,0.22); }
.problem-card.after { background: #eefaf3; border-color: rgba(16,185,129,0.28); }
.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 18px;
}
.problem-card.before h3 { color: #b91c1c; }
.problem-card.after h3 { color: #047857; }
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.problem-list li:last-child { border-bottom: none; }
.problem-list .ico { flex: none; font-size: 16px; }

/* ── Transformation ──────────────────────────────────────── */
.transform-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--on-dark);
}
.transform-section .section-heading { color: #fff; }
.transform-section .section-sub { color: var(--on-dark-muted); margin-left: auto; margin-right: auto; }

.transform-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.transform-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  text-align: center;
  min-width: 190px;
}
.transform-step .ico { font-size: 26px; margin-bottom: 8px; }
.transform-step .lbl { font-weight: 800; font-size: 14px; }
.transform-arrow { font-size: 22px; color: var(--gold); }

.transform-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.transform-stat {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 30px 20px;
}
.transform-stat .lbl { font-size: 13.5px; color: var(--on-dark-muted); margin-top: 16px; font-weight: 600; }

/* Cincin peratusan (chart) — dilukis dengan conic-gradient */
.ring-chart {
  --pct: 0;
  width: 128px; height: 128px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  background: conic-gradient(var(--gold) calc(var(--pct) * 1%), rgba(255,255,255,0.14) 0);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.ring-chart::before {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.08);
}
.ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}

/* ── Feature cards grid ──────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.feature-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16.5px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 13.8px; color: var(--text-muted); }

/* ── AI section ──────────────────────────────────────────── */
.ai-section { background: linear-gradient(180deg, #fdf9ef 0%, var(--bg-page) 100%); }
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ai-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--gold-light);
}
.ai-card .tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  position: relative;
}
.ai-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; position: relative; }
.ai-card p { font-size: 14px; color: var(--text-body); position: relative; }

/* ── Pilot Test / Maklum Balas Pengalaman Pertama ───────────── */
.pilot-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}
.pilot-stat-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  box-shadow: var(--shadow-sm);
}
.pilot-stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--gold-dark);
}
.pilot-stat-card .lbl {
  font-size: 12.3px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
  line-height: 1.4;
}
.pilot-insight-box {
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}
.pilot-source-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ── Actual usage stats ──────────────────────────────────── */
.usage-section { background: var(--navy-dark); color: var(--on-dark); }
.usage-section .section-heading { color: #fff; }
.usage-section .section-sub { color: var(--on-dark-muted); }
.usage-flex {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.usage-copy p { font-size: 15px; color: var(--on-dark-muted); margin-bottom: 26px; }
.usage-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.usage-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 22px;
}
.usage-stat-card .num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 800; color: var(--gold); }
.usage-stat-card .lbl { font-size: 12.5px; color: var(--on-dark-muted); margin-top: 4px; font-weight: 600; }
.usage-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.4);
  color: #6ee7b7;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.usage-live-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #34d399;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.25);
}

/* ── Equipment showcase ──────────────────────────────────── */
.equip-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.equip-chip {
  font-size: 12.5px; font-weight: 700; color: var(--navy);
  background: var(--navy-light); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 999px;
}
.equip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.equip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 12px 14px;
  text-align: center;
  transition: var(--transition);
}
.equip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.equip-card img { width: 100%; height: 78px; object-fit: contain; margin-bottom: 10px; }
.equip-card span { font-size: 12px; font-weight: 700; color: var(--text-body); }

/* ── Workflow steps ──────────────────────────────────────── */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  padding-top: 14px;
}
.workflow-steps::before {
  content: '';
  position: absolute;
  top: 15px; left: 9%; right: 9%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 15px);
  z-index: 0;
}
.workflow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.workflow-step .num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  border: 2px solid var(--gold);
  z-index: 2;
}
.workflow-step .ico { font-size: 26px; margin: 10px 0 10px; }
.workflow-step h4 { font-size: 13.5px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.workflow-step p { font-size: 12px; color: var(--text-muted); }

/* ── Kaedah Penghasilan (proses pembangunan) ────────────────── */
.process-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  padding-top: 14px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 15px; left: 11%; right: 11%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 15px);
  z-index: 0;
}
.process-step {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step .num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  border: 2px solid var(--gold);
  z-index: 2;
}
.process-step .ico { font-size: 26px; margin: 10px 0 10px; }
.process-step h4 { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.process-step p { font-size: 12.3px; color: var(--text-muted); line-height: 1.55; }

/* ── TVET section ────────────────────────────────────────── */
.tvet-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tvet-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.tvet-copy p { font-size: 15px; color: var(--text-body); margin-bottom: 16px; }
.tvet-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.tvet-tag {
  font-size: 12px; font-weight: 700; color: var(--navy);
  background: var(--navy-light); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 999px;
}
.tvet-outlets { display: flex; flex-direction: column; gap: 16px; }
.tvet-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
}
.tvet-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.tvet-photo-caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(15,26,69,0.94) 0%, rgba(15,26,69,0.35) 65%, transparent 100%);
  padding: 34px 18px 14px;
  color: #fff;
}
.tvet-photo-caption h4 { font-size: 14.5px; font-weight: 800; margin-bottom: 3px; }
.tvet-photo-caption p { font-size: 11.8px; color: rgba(255,255,255,0.86); }

/* ── Sustainability / SDG ────────────────────────────────── */
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sdg-card {
  border-radius: var(--radius-md);
  padding: 26px 22px;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.sdg-card.sdg4  { background: linear-gradient(135deg,#c5192d,#e04a5c); }
.sdg-card.sdg9  { background: linear-gradient(135deg,#fd6925,#ff8a4c); }
.sdg-card.sdg12 { background: linear-gradient(135deg,#bf8b2e,#dba940); }
.sdg-card.sdg13 { background: linear-gradient(135deg,#3f7e44,#5fa864); }
.sdg-card .tag { font-size: 12px; font-weight: 800; opacity: 0.85; margin-bottom: 8px; }
.sdg-card h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 10px; }
.sdg-card p { font-size: 13px; opacity: 0.92; }

/* ── Ecosystem ───────────────────────────────────────────── */
.ecosystem-wrap { display: flex; justify-content: center; }
.ecosystem-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 780px;
}
.eco-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.eco-node .ico { font-size: 22px; margin-bottom: 8px; }
.eco-node h4 { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.eco-node p { font-size: 11.5px; color: var(--text-muted); }
.eco-center {
  grid-column: 2;
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--gold);
}
.eco-center h4 { color: var(--gold); font-size: 15px; }
.eco-center p { color: var(--on-dark-muted); }

/* ── Future roadmap ──────────────────────────────────────── */
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.future-card {
  display: flex; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.future-card .ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-light); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.future-card h4 { font-size: 14.5px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.future-card p { font-size: 13px; color: var(--text-muted); }

/* ── Team ────────────────────────────────────────────────── */
.team-section { background: var(--bg-card); border-top: 1px solid var(--border); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  text-align: center;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 18px;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.team-avatar {
  width: 74px; height: 74px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  margin: 0 auto 14px;
  border: 2.5px solid var(--gold);
}
.team-card h4 { font-size: 14.5px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.team-card p { font-size: 12px; color: var(--text-muted); }
.team-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 34px;
}

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #2a3a7f 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta .hero-blob-1 { top: -140px; right: -100px; left: auto; }
.final-cta .hero-blob-2 { bottom: -140px; left: -100px; right: auto; }
.final-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}
.final-cta p { font-size: 15px; color: var(--on-dark-muted); margin-bottom: 36px; }
.final-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Footer ──────────────────────────────────────────────── */
.landing-footer {
  background: var(--navy-dark);
  color: var(--on-dark-muted);
  padding: 50px 0 26px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--gold); }
.footer-brand span { font-weight: 800; color: #fff; font-size: 15.5px; }
.footer-desc { font-size: 12.8px; max-width: 300px; margin-top: 10px; }
.footer-links { display: flex; gap: 46px; flex-wrap: wrap; }
.footer-col h5 { font-size: 12.5px; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: 0.4px; }
.footer-col a, .footer-col span { display: block; font-size: 12.8px; margin-bottom: 9px; color: var(--on-dark-muted); }
.footer-col a:hover { color: var(--gold); }
.footer-sdg-row { display: flex; gap: 8px; margin-top: 6px; }
.footer-sdg-row span {
  font-size: 10.5px; font-weight: 800; padding: 3px 9px; border-radius: 6px;
  background: rgba(255,255,255,0.08); margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 12px;
}

/* ── Gateway / laman pemilihan (index.html) ─────────────────── */
.gateway-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.gateway-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gateway-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: left;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.gateway-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-gold); }
.gateway-card .ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 4px;
}
.gateway-card-logo-wrap {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #ffffff;
  border: 2px solid var(--border-gold);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.gateway-card:hover .gateway-card-logo-wrap {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
  border-color: var(--gold);
}
.gateway-card-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.gateway-card.is-app .ico { background: var(--navy-light); }
.gateway-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); }
.gateway-card p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 6px; }
.gateway-card .gateway-go {
  font-size: 13px; font-weight: 800; color: var(--gold-dark);
  display: flex; align-items: center; gap: 6px;
}
.gateway-footer {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 34px;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .gateway-choices { grid-template-columns: 1fr; }
}

/* ── Shortcut Pembentangan (titik nombor terapung di kiri skrin) ─── */
.side-shortcut-nav {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  max-height: 78vh;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 4px 2px;
}
.side-shortcut-nav::-webkit-scrollbar { display: none; }

.side-shortcut-item {
  position: relative;
  display: flex;
  align-items: center;
}
.side-shortcut-num {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.side-shortcut-item:hover .side-shortcut-num,
.side-shortcut-item.active .side-shortcut-num {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}
.side-shortcut-label {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.side-shortcut-item:hover .side-shortcut-label,
.side-shortcut-item.active .side-shortcut-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 1180px) {
  .side-shortcut-nav { display: none; }
}

/* ── Toast ───────────────────────────────────────────────── */
.landing-toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-dark);
  color: #fff;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.landing-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Reveal-on-scroll ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .landing-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 24px 18px;
  }
  .landing-links.mobile-open { display: flex; }
  .landing-links a { padding: 9px 0; width: 100%; }
  .nav-burger { display: flex; }
  .problem-grid, .ai-grid, .usage-flex, .tvet-flex { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .transform-stats { grid-template-columns: 1fr; }
  .pilot-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: repeat(3, 1fr); }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps::before { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .future-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-diagram { grid-template-columns: repeat(2, 1fr); }
  .eco-center { grid-column: span 2; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pilot-stats-grid { grid-template-columns: 1fr; }
  .transform-flow { flex-direction: column; }
  .transform-arrow { transform: rotate(90deg); }
  .infographic-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   INFOGRAFIK METODOLOGI & SKRIP PEMBENTANGAN
══════════════════════════════════════════════════════════ */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.info-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(27, 44, 107, 0.15);
  border-color: var(--gold);
}

.info-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 26, 69, 0.85);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.info-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f1a45;
  position: relative;
}

.info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-card:hover .info-img {
  transform: scale(1.05);
}

.info-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.info-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.info-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #253982);
  color: var(--gold);
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold);
}

.info-card-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.info-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.info-bullets {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}

.info-bullets li {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Kotak Skrip Pembentangan Pelajar */
.student-script-box {
  background: linear-gradient(135deg, #1b2c6b 0%, #0f1a45 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(27, 44, 107, 0.25);
  position: relative;
  overflow: hidden;
}

.student-script-box::before {
  content: "🎙️";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 100px;
  opacity: 0.08;
  pointer-events: none;
}

.script-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.script-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.5);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  width: fit-content;
}

.script-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.script-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0;
}

