/* ══════════════════════════════════════════
   PT PANDAWA MITRA INDONESIA — STYLESHEET
   Design: Navy Gold — Refined Corporate
   ══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --navy: #0c1f4a;
  --navy-deep: #081535;
  --navy-mid: #152d6b;
  --navy-light: #1e3d8a;
  --gold: #c8a84b;
  --gold-light: #e6c96a;
  --gold-pale: #f5e9c4;
  --cream: #faf8f3;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5a6480;
  --border: #dde3f0;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(12, 31, 74, 0.1);
  --shadow-lg: 0 12px 48px rgba(12, 31, 74, 0.18);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ─── Utility ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.mt-2 {
  margin-top: 2rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 168, 75, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(200, 168, 75, 0.25);
  margin-bottom: 20px;
}
.section-tag.light {
  color: var(--gold-light);
  background: rgba(230, 201, 106, 0.15);
  border-color: rgba(230, 201, 106, 0.3);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.light {
  color: var(--white);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-desc.light {
  color: rgba(255, 255, 255, 0.75);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc {
  margin: 0 auto;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 75, 0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.4s ease;
}
.navbar.scrolled {
  background: rgba(8, 21, 53, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  color: var(--gold);
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-mark.sm {
  width: 32px;
  height: 32px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-deep);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu.open {
  display: flex;
}
.mobile-link {
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}
.mobile-link:last-child {
  border-bottom: none;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    140deg,
    var(--navy-deep) 0%,
    var(--navy) 50%,
    var(--navy-mid) 100%
  );
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 80px 80px;
  gap: 60px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(200, 168, 75, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(30, 61, 138, 0.4) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.015) 60px,
      rgba(255, 255, 255, 0.015) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.015) 60px,
      rgba(255, 255, 255, 0.015) 61px
    );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.line-wrap {
  display: block;
  overflow: hidden;
}
.animate-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUpLine 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.line-wrap:nth-child(1) .animate-line {
  animation-delay: 0.4s;
}
.line-wrap:nth-child(2) .animate-line {
  animation-delay: 0.55s;
}
.line-wrap:nth-child(3) .animate-line {
  animation-delay: 0.7s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.animate-fade {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  animation-delay: 0.9s;
}
.hero-desc strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation-delay: 1.05s;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  animation-delay: 1.2s;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle-bg {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 75, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-circle-bg::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 75, 0.1);
}
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  min-width: 280px;
  opacity: 0;
  transform: translateX(40px);
}
.card-1 {
  animation: slideInCard 0.7s ease 1.1s forwards;
}
.card-2 {
  animation: slideInCard 0.7s ease 1.3s forwards;
  margin-left: 40px;
}
.card-3 {
  animation: slideInCard 0.7s ease 1.5s forwards;
}
.card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.card-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeSlideUp 1s ease 2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ════════════════════════════════════════
   TENTANG
   ════════════════════════════════════════ */
.tentang {
  padding: 100px 0;
  background: var(--white);
}
.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.tentang-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.tentang-body strong {
  color: var(--text);
}
.tentang-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.hi-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.visi-misi-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vm-section {
  padding: 36px 36px 32px;
}
.vm-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--white);
}
.vm-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.vm-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}
.vm-text em {
  color: var(--gold-light);
  font-style: italic;
}
.vm-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 36px;
}
.misi-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.misi-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   LAYANAN
   ════════════════════════════════════════ */
.layanan {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.layanan-bg-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 168, 75, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.layanan-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.layanan-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i) * 0.08s);
}
.layanan-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 168, 75, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.layanan-card.featured-card {
  background: rgba(200, 168, 75, 0.1);
  border-color: rgba(200, 168, 75, 0.3);
}
.lc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.lc-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  margin-bottom: -12px;
}
.lc-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}
.layanan-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.layanan-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.lc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lc-list li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 14px;
  position: relative;
}
.lc-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ════════════════════════════════════════
   PROSES
   ════════════════════════════════════════ */
.proses {
  padding: 100px 0;
  background: var(--cream);
}
.proses-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.proses-flow::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(200, 168, 75, 0.3));
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.fs-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.fs-bubble.final {
  background: var(--navy);
  border-color: var(--gold);
}
.fs-bubble.final .fs-num {
  color: var(--gold);
  font-size: 1.5rem;
}
.flow-step:hover .fs-bubble {
  border-color: var(--gold);
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 31, 74, 0.2);
}
.flow-step:hover .fs-num {
  color: var(--gold);
}
.fs-num {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.3s;
}
.fs-content {
  padding: 0 4px;
}
.fs-content h4 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.fs-content p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   ORGANISASI
   ════════════════════════════════════════ */
.organisasi {
  padding: 100px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.org-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(200, 168, 75, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.org-levels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.org-level {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.org-level-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.org-connector-v {
  width: 2px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(200, 168, 75, 0.4),
    rgba(200, 168, 75, 0.1)
  );
  margin: 0;
}
.org-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.org-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  min-width: 160px;
  transition: var(--transition);
}
.org-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 168, 75, 0.3);
  transform: translateY(-4px);
}
.org-card.highlight-card {
  background: rgba(200, 168, 75, 0.08);
  border-color: rgba(200, 168, 75, 0.25);
}
.org-card.divisi-card {
  min-width: 200px;
}
.oc-div-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.oc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.oc-avatar.gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.oc-avatar.sm {
  width: 44px;
  height: 44px;
  font-size: 0.75rem;
}
.oc-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
}
.oc-role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

/* RACI */
.raci-section {
  margin-top: 70px;
  width: 100%;
}
.raci-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 28px;
  font-weight: 600;
}
.raci-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.raci-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.raci-table th {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.raci-table th:first-child {
  text-align: left;
}
.raci-table td {
  padding: 12px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.raci-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--white);
}
.raci-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}
.badge.r {
  background: rgba(200, 168, 75, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(200, 168, 75, 0.3);
}
.badge.a {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.badge.c {
  background: rgba(167, 243, 208, 0.1);
  color: #6ee7b7;
  border: 1px solid rgba(167, 243, 208, 0.2);
}
.badge.i {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.raci-legend {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.raci-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ════════════════════════════════════════
   MENGAPA
   ════════════════════════════════════════ */
.mengapa {
  padding: 100px 0;
  background: var(--white);
}
.mengapa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mengapa-left .section-desc {
  margin: 12px 0 0;
}
.mengapa-left p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}
.mengapa-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.keunggulan-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ki-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.keunggulan-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
}
.keunggulan-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   KONTAK
   ════════════════════════════════════════ */
.kontak {
  padding: 100px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.kontak-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 0% 50%,
    rgba(200, 168, 75, 0.06) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.kontak-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.kontak-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}
.kontak-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ki-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ki-icon-sm {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: rgba(200, 168, 75, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ki-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ki-val {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* Form */
.kontak-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group select option {
  background: var(--navy);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 75, 0.35);
}
.form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: #060e20;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 12px;
}
.footer-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.8;
  text-decoration: none;
  margin-bottom: 14px;
  transition: opacity 0.2s;
}
.footer-website:hover {
  opacity: 1;
}
.kontak-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.kontak-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer-doc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.06em;
  font-family: monospace;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.footer-contact-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.footer-contact-info a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-contact-info a:hover {
  color: var(--gold-light);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-col li a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ════════════════════════════════════════
   TOAST
   ════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(200, 168, 75, 0.4);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 360px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUpLine {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInCard {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.15);
  }
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
/* ── TABLET ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 80px;
  }
  .hero-visual {
    display: none;
  }
  .tentang-grid,
  .mengapa-grid,
  .kontak-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .layanan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proses-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .proses-flow::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Org chart tablet */
  .org-cards.komisaris,
  .org-cards.direksi {
    flex-wrap: wrap;
    gap: 16px;
  }
  .org-card {
    min-width: 140px;
    padding: 20px 16px;
  }
  .oc-name {
    white-space: normal;
    font-size: 0.82rem;
  }
}

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  /* NAV */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-inner {
    padding: 0 20px;
  }

  /* HERO */
  .hero {
    padding: 100px 20px 60px;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat {
    min-width: 80px;
  }

  /* SECTIONS */
  .layanan-grid {
    grid-template-columns: 1fr;
  }
  .proses-flow {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .kontak-form {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .tentang-highlights {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.9rem;
  }

  /* ─── STRUKTUR ORGANISASI MOBILE ─── */
  .organisasi {
    padding: 60px 0;
  }
  .organisasi .container {
    padding: 0 16px;
  }

  .org-levels {
    gap: 0;
  }

  /* Level wrapper */
  .org-level {
    gap: 12px;
    width: 100%;
  }
  .org-level-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    background: rgba(200, 168, 75, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(200, 168, 75, 0.2);
  }

  /* Cards stacking */
  .org-cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  .org-cards.komisaris {
    flex-direction: column;
  }
  .org-cards.direksi {
    flex-direction: column;
  }
  .org-cards.divisi {
    flex-direction: column;
  }

  /* Each card full width on mobile */
  .org-card {
    width: 100%;
    max-width: 340px;
    min-width: unset;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
  .org-card.divisi-card {
    min-width: unset;
    width: 100%;
    max-width: 340px;
  }
  .oc-div-tag {
    margin-bottom: 4px;
    font-size: 0.6rem;
  }
  .oc-avatar {
    flex-shrink: 0;
    margin: 0;
  }
  .oc-name {
    white-space: normal;
    font-size: 0.875rem;
    margin-bottom: 2px;
  }
  .oc-role {
    font-size: 0.72rem;
  }

  /* Divisi cards: keep div-tag above the flex row */
  .org-card.divisi-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .org-card.divisi-card .oc-div-tag {
    margin-bottom: 8px;
  }
  .org-card.divisi-card .oc-avatar {
    margin: 0 auto 8px;
  }

  /* Connector lines */
  .org-connector-v {
    height: 28px;
  }

  /* ─── RACI TABLE MOBILE ─── */
  .raci-section {
    margin-top: 48px;
  }
  .raci-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 0 4px;
  }
  .raci-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
  }
  .raci-table {
    min-width: 480px;
    font-size: 0.8rem;
  }
  .raci-table th {
    padding: 10px 12px;
    font-size: 0.72rem;
  }
  .raci-table td {
    padding: 10px 12px;
  }
  .raci-legend {
    gap: 14px;
    font-size: 0.75rem;
  }
  .badge {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  /* KONTAK */
  .kontak-info {
    gap: 16px;
  }
  .ki-item {
    gap: 12px;
  }
}

/* ── SMALL MOBILE ─────────────────────────────────────── */
@media (max-width: 480px) {
  /* HERO */
  .hero {
    padding: 90px 16px 50px;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 14px;
  }
  .stat-divider {
    width: 50px;
    height: 1px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* FLOW */
  .proses-flow {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-grid {
    gap: 24px;
  }

  /* LAYANAN CARD */
  .layanan-card {
    padding: 28px 20px;
  }

  /* SECTION HEADINGS */
  .section-title {
    font-size: 1.7rem;
  }
  .section-desc {
    font-size: 0.9rem;
  }
  .container {
    padding: 0 16px;
  }

  /* ORG MOBILE SMALL */
  .org-card {
    max-width: 100%;
  }
  .raci-section {
    margin-top: 36px;
  }
}
