/* =============================================
   ApaAjaDigital — Design System
   Vanilla CSS · Light Theme
   ============================================= */

/* ===== SVG ICONS ===== */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}

.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* Icon inside card-icon containers */
.card-icon .icon,
.card-icon svg { width: 100%; height: 100%; }

/* Kontak icon accent */
.kontak-icon .icon { color: var(--brand-yellow); }

/* Usecase icon */
.usecase-icon .icon { color: var(--text-primary); }

/* Nilai icon */
.nilai-icon .icon { color: var(--brand-yellow); }

/* Footer contact icon alignment */
.footer-contact-item svg.icon { margin-top: 2px; flex-shrink: 0; }

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul, li { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  /* Base — warm off-white surfaces, near-black darks */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F0;
  --bg-tertiary: #EBEBEA;
  --bg-dark: #0F0F0F;
  --bg-dark-surface: #1A1A1A;

  /* Brand — Black × White × Yellow */
  --brand-primary: #0F0F0F;
  --brand-blue: #FFD600;      /* remapped: yellow is now the primary accent */
  --brand-yellow: #FFD600;
  --brand-lime: #FFD600;      /* remapped: single accent, no more lime */

  /* Text */
  --text-primary: #0F0F0F;
  --text-secondary: #3D3D3D;
  --text-muted: #7A7A7A;
  --text-on-dark: #FFFFFF;
  --text-on-dark-secondary: rgba(255, 255, 255, 0.58);

  /* Borders */
  --border-light: rgba(0, 0, 0, 0.07);
  --border-medium: rgba(0, 0, 0, 0.12);
  --border-dark: rgba(255, 255, 255, 0.10);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-glow-blue: 0 0 32px rgba(255, 214, 0, 0.32);
  --shadow-glow-yellow: 0 0 32px rgba(255, 214, 0, 0.32);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Spacing */
  --container: 1200px;
  --nav-height: 72px;
  --section-padding: 120px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  font-weight: 400;
}

h4 {
  font-family: var(--font-body);
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}

p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  font-weight: 400;
}

.text-small {
  font-size: 15px;
  line-height: 1.6;
}

.text-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ===== SPA PAGE SYSTEM ===== */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* Custom cursor & magnetic buttons REMOVED per client request */

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1160px;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-md);
}

.navbar.scrolled {
  top: 12px;
  height: 60px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.nav-link.active {
  color: var(--text-primary);
  font-weight: 700;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #0F0F0F;
  background: var(--brand-yellow);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #E8C200;
  box-shadow: var(--shadow-glow-yellow);
}

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: white;
  z-index: 999;
  padding: 96px 32px 40px;
  transition: right 0.4s var(--ease-out);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-drawer.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-link:hover { color: #0F0F0F; padding-left: 8px; }

.mobile-nav-cta {
  margin-top: 24px;
  display: inline-block;
  background: var(--brand-yellow);
  color: #0F0F0F;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.mobile-nav-cta:hover { transform: translateY(-2px); background: #E8C200; box-shadow: var(--shadow-glow-yellow); }

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0F0F0F;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label.on-dark { color: var(--brand-yellow); }

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-yellow);
  color: #0F0F0F;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #E8C200;
  box-shadow: var(--shadow-glow-yellow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-medium);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: var(--bg-tertiary);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-ghost.on-dark {
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost.on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #0F0F0F;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  transition: gap 0.2s;
}

.btn-link:hover { gap: 10px; }

/* ===== CARDS ===== */
.card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 214, 0, 0.15);
}

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

/* Glow card */
.glow-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 214, 0, 0.07), transparent 40%);
  transition: opacity 0.3s;
  pointer-events: none;
}

.glow-card:hover::before { opacity: 1; }
.glow-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

/* ===== REVEAL ANIMATION ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Hero elements: always visible — GSAP drives the entrance, not IntersectionObserver */
.hero .reveal-up,
.hero-ai-inner .reveal-up,
.hero-layanan-inner .reveal-up,
.hero-portfolio-inner .reveal-up,
.hero-tentang-inner .reveal-up,
.hero-kontak-inner .reveal-up {
  opacity: 1;
  transform: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-on-dark-secondary);
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 20px;
}

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

.footer-links a,
.footer-link-item {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-link-item:hover { color: var(--text-on-dark); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  margin-bottom: 12px;
}

.footer-contact-item a { color: inherit; transition: color 0.2s; }
.footer-contact-item a:hover { color: white; }

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

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-secondary);
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-text {
  font-size: 13px;
  color: var(--text-on-dark-secondary);
}

.footer-bottom-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}

/* =============================================
   BERANDA PAGE
   ============================================= */

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

/* Left column */
.hero-content {
  display: flex;
  flex-direction: column;
}

/* Right column */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.35);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.8); }
}

.hero-headline {
  color: var(--text-on-dark);
  margin-bottom: 28px;
}

.hero-headline span {
  display: block;
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--text-on-dark-secondary);
  max-width: 560px;
  margin-bottom: 44px;
}

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

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  color: var(--brand-yellow);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--text-on-dark-secondary);
  line-height: 1.4;
}

/* Layanan Preview Section */
.layanan-preview {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

/* =============================================
   LAYANAN CARDS — 5 kolom vertikal panjang
   ============================================= */

.lc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

/* Base card */
.lc-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s,
              border-color 0.3s;
}

.lc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  border-color: rgba(255, 214, 0, 0.3);
}

/* Icon container */
.lc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.lc-card:hover .lc-card-icon {
  background: rgba(255, 214, 0, 0.12);
}

/* Body */
.lc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.lc-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.lc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Feature pills */
.lc-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lc-feature {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lc-features--dark .lc-feature {
  color: rgba(255,255,255,0.55);
}

/* Price block — BESAR seperti pricelist */
.lc-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.lc-price-block--dark {
  border-top-color: rgba(255,255,255,0.1);
}

.lc-price-from {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lc-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.lc-price-rp {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
}

.lc-price-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* CTA button */
.lc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  width: 100%;
}

.lc-cta:hover {
  background: var(--brand-yellow);
  color: #0F0F0F;
  transform: translateY(-1px);
}

/* AI card — dark variant */
.lc-card--ai {
  background: linear-gradient(160deg, #0F0F0F 0%, #1a1a1a 100%);
  border-color: rgba(255, 214, 0, 0.18);
}

.lc-card--ai:hover {
  border-color: rgba(255, 214, 0, 0.45);
  box-shadow: 0 16px 48px rgba(255,214,0,0.12);
}

.lc-card-icon--ai {
  background: rgba(255, 214, 0, 0.1);
  color: var(--brand-yellow);
}

.lc-price-block .lc-price-num,
.lc-price-block--dark .lc-price-rp {
  color: var(--text-primary);
}

.lc-card--ai .lc-price-from { color: rgba(255,255,255,0.4); }
.lc-card--ai .lc-price-rp   { color: rgba(255,255,255,0.6); }
.lc-card--ai .lc-price-num  { color: #fff; }

.lc-cta--ai {
  background: var(--brand-yellow);
  color: #0F0F0F;
}

.lc-cta--ai:hover {
  background: #E8C200;
  box-shadow: 0 0 24px rgba(255,214,0,0.35);
}

/* ============================================
   GUARANTEE CARD — card tengah, highlight
   ============================================ */
.lc-card--guarantee {
  background: #0F0F0F;
  border-color: rgba(255, 214, 0, 0.22);
  cursor: default;
  align-items: center;
  padding: 32px 20px;
  gap: 0;
}

.lc-card--guarantee:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 214, 0, 0.5);
  box-shadow: 0 16px 48px rgba(255,214,0,0.12);
}

.lc-guarantee-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
}

.lc-guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.lc-guarantee-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin: 0;
}

.lc-guarantee-percent {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 72px);
  color: var(--brand-yellow);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 4px 0 0;
}

.lc-guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.lc-guarantee-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

.lc-guarantee-divider {
  width: 32px;
  height: 1px;
  background: rgba(255, 214, 0, 0.25);
  margin: 4px auto;
}

.lc-guarantee-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .lc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lc-card--guarantee {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .lc-grid {
    grid-template-columns: 1fr;
  }
  .lc-card--guarantee {
    grid-column: 1;
  }
  .lc-guarantee-percent { font-size: 56px; }
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  max-width: 600px;
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.layanan-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.layanan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 214, 0, 0.22);
}

.layanan-card.featured {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  border-color: transparent;
}

.layanan-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  transition: background 0.2s;
}

.layanan-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.08);
}

.card-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.layanan-card.featured .card-title { color: white; }

.card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.layanan-card.featured .card-desc { color: var(--text-on-dark-secondary); }

.card-price {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #0F0F0F;
  font-weight: 600;
}

.layanan-card.featured .card-price { color: var(--brand-lime); }

.guarantee-bar {
  text-align: center;
  padding: 20px 32px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
}

.guarantee-bar strong { color: var(--text-primary); }

/* Trust Bar Ticker */
.trust-bar {
  background: var(--bg-dark);
  padding: 24px 0;
  overflow: hidden;
}

.ticker-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ticker-row {
  overflow: hidden;
  width: 100%;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker-left 32s linear infinite;
}

.ticker-inner.reverse {
  animation: ticker-right 38s linear infinite;
}

.ticker-track {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
  align-items: center;
  padding-right: 40px;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-item.highlighted {
  color: rgba(255, 214, 0, 0.75);
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  font-size: 10px;
}

@keyframes ticker-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* =============================================
   AI SYSTEM PAGE
   ============================================= */

.hero-ai {
  min-height: 88vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  position: relative;
  overflow: hidden;
}

.hero-ai::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-ai-inner {
  padding: 80px 0 100px;
  max-width: 740px;
}

.hero-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 214, 0, 0.12);
  border: 1px solid rgba(255, 214, 0, 0.22);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-lime);
}

/* AI Capabilities Section */
.ai-kapabilitas {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.ai-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 214, 0, 0.15);
}

.ai-card-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: #0F0F0F;
  margin-bottom: 16px;
  opacity: 0.28;
}

.ai-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.ai-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.ai-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--bg-secondary);
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}

/* Use Cases Section */
.ai-usecases {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.usecase-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.usecase-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.usecase-industry {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0F0F0F;
  opacity: 0.5;
  margin-bottom: 10px;
}

.usecase-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.usecase-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* =============================================
   LAYANAN & HARGA PAGE
   ============================================= */

.hero-layanan {
  background: var(--bg-dark);
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  position: relative;
  overflow: hidden;
}

.hero-layanan::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-secondary);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-layanan-inner { padding: 80px 0 120px; }

/* Pricing Cards */
.pricing-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.pricing-card.popular {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 1px var(--brand-blue), var(--shadow-lg);
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0F0F0F;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 214, 0, 0.09);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-feature::before {
  content: '✓';
  color: #0F0F0F;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}

/* AI Package Section */
.ai-package-section {
  padding: var(--section-padding) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.ai-package-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.ai-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 40px 0 48px;
}

.tier-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.tier-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.tier-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-lime);
  margin-bottom: 12px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.tier-desc {
  font-size: 12px;
  color: var(--text-on-dark-secondary);
  line-height: 1.5;
}

/* Maintenance Section */
.maintenance-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.maintenance-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.maintenance-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.maintenance-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.maintenance-price {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 32px);
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1;
}

.maintenance-interval {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Guarantee Callout */
.guarantee-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 50%, #1A1A1A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: white;
  margin-bottom: 20px;
}

.guarantee-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-bullets {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.guarantee-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.guarantee-bullet::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* =============================================
   PORTOFOLIO PAGE
   ============================================= */

.hero-portfolio {
  background: var(--bg-dark);
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
}

.hero-portfolio-inner { padding: 80px 0 100px; }

.portfolio-cases {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.case-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.case-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--bg-tertiary);
  color: #0F0F0F;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.case-meta-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
}

.case-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2px;
}

.case-meta-value {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.case-result {
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.09), #F0FFF0);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.case-result-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.case-quote {
  border-left: 3px solid var(--brand-blue);
  padding-left: 16px;
}

.case-quote-text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}

.case-quote-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--brand-yellow);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================
   TENTANG PAGE
   ============================================= */

.hero-tentang {
  background: var(--bg-dark);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  position: relative;
  overflow: hidden;
}

.hero-tentang::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-tentang-inner { padding: 80px 0 100px; }

/* Prinsip Section */
.prinsip-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.prinsip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.prinsip-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.prinsip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.prinsip-number {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255, 214, 0, 0.09);
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}

.prinsip-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.prinsip-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Nilai Section */
.nilai-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.nilai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.nilai-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
}

.nilai-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: white; }

.nilai-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.nilai-card:hover .nilai-icon { background: var(--bg-secondary); }

.nilai-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.nilai-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Proses Timeline */
.proses-section {
  padding: var(--section-padding) 0;
  background: var(--bg-dark);
}

.proses-timeline {
  max-width: 680px;
  margin: 56px auto 0;
  position: relative;
}

.proses-line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.proses-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, var(--brand-yellow), #0F0F0F);
  height: 0%;
  transition: height 1.2s var(--ease-out);
}

.proses-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 44px;
  position: relative;
}

.proses-step:last-child { margin-bottom: 0; }

.proses-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.proses-step.active .proses-dot {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
}

.proses-content { padding-top: 12px; }

.proses-step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
}

.proses-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}

.proses-step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-on-dark-secondary);
}

/* =============================================
   KONTAK PAGE
   ============================================= */

.hero-kontak {
  background: var(--bg-dark);
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
}

.hero-kontak-inner { padding: 80px 0 100px; }

.kontak-methods {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.kontak-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.kontak-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
}

.kontak-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 214, 0, 0.15);
}

.kontak-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.kontak-method-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.kontak-method-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.kontak-method-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.kontak-method-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  margin-top: 10px;
}

.kontak-method-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}

/* Contact Form */
.form-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.form-info-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.form-info-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.form-guarantee {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border-left: 4px solid var(--brand-blue);
}

.form-guarantee-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.form-guarantee strong { color: var(--text-primary); }

.contact-form {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.09);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238896AB'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 48px;
  cursor: pointer;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--brand-yellow);
  color: #0F0F0F;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.form-submit:hover { transform: translateY(-3px); background: #E8C200; box-shadow: var(--shadow-glow-yellow); }

/* Guarantee Reminder */
.kontak-guarantee {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
}

.kontak-guarantee-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: white;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  :root {
    --section-padding: 90px;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-tiers { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-info-title { font-size: 28px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px;
  }

  .navbar { top: 12px; width: calc(100% - 32px); padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  h1 { font-size: clamp(34px, 9vw, 52px); }
  h2 { font-size: clamp(26px, 7vw, 40px); }

  .hero-inner {
    padding: 60px 0 80px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right { justify-content: flex-start; }
  .hero-stats {
    flex-direction: row;
    width: 100%;
  }
  .stat-item {
    flex: 1;
    padding: 20px 16px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }

  .layanan-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-tiers { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .maintenance-grid { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .prinsip-grid { grid-template-columns: 1fr; }
  .nilai-grid { grid-template-columns: 1fr; }
  .kontak-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-tagline { display: none; }

  .guarantee-bullets { flex-direction: column; align-items: center; gap: 16px; }
  .usecase-card { flex-direction: column; }
}

@media (max-width: 480px) {
  :root { --section-padding: 56px; }

  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: 1fr; }

  .ai-tiers { grid-template-columns: 1fr 1fr; }
  .mobile-drawer { width: 100%; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.color-blue { color: var(--brand-blue); }
.color-muted { color: var(--text-muted); }
.color-on-dark { color: var(--text-on-dark); }
.color-on-dark-secondary { color: var(--text-on-dark-secondary); }
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }
.section-intro { max-width: 640px; margin-bottom: 60px; }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }
.delay-5 { transition-delay: 0.25s; }
.delay-6 { transition-delay: 0.3s; }

/* =============================================
   PHASE 2 — PRICING V2 SHOWSTOPPER
   ============================================= */

.pricing-section-v2 {
  padding: 140px 0;
  background: var(--bg-secondary);
}

.pricing-section-v2 .section-header {
  text-align: center;
  margin-bottom: 0;
}

.pricing-section-v2 .section-label {
  justify-content: center;
}

.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 64px;
}

/* Base card */
.pricing-card-v2 {
  background: white;
  border-radius: 28px;
  padding: 44px 40px 40px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
}

.pricing-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 214, 0, 0.20);
}

/* Popular card — gradient border: Yellow → Black */
.pricing-card-v2--popular {
  background:
    linear-gradient(#FFFEF5, #FFFCE0) padding-box,
    linear-gradient(140deg, #FFD600 0%, #0F0F0F 100%) border-box;
  border: 2px solid transparent;
  transform: translateY(-16px);
  box-shadow: 0 28px 80px rgba(255, 214, 0, 0.18);
  padding-top: 52px;
}

.pricing-card-v2--popular:hover {
  transform: translateY(-24px);
  box-shadow: 0 36px 80px rgba(255, 214, 0, 0.26);
}

/* Popular badge */
.pricing-badge-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-yellow);
  color: #0F0F0F;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255, 214, 0, 0.42);
}

/* Card icon */
.pricing-card-icon-v2 {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.pricing-card-v2--popular .pricing-card-icon-v2 {
  background: rgba(255, 214, 0, 0.09);
}

/* Card name */
.pricing-name-v2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

/* Client share hint */
.pricing-client-share {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--brand-blue);
  opacity: 0.8;
  margin-bottom: 12px;
  display: block;
}

/* Value prop */
.pricing-value-prop {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 28px;
}

/* Price block */
.pricing-price-block {
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-from-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-currency-v2 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #0F0F0F;
  margin-top: 12px;
}

.pricing-number-v2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 54px);
  color: #0F0F0F;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-renewal-v2 {
  font-size: 12px;
  color: var(--text-muted);
}

/* Delivery badge */
.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.05);
  color: #0F0F0F;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 214, 0, 0.12);
  letter-spacing: 0.01em;
}

/* Feature list */
.pricing-features-v2 {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.pricing-feature-v2 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-check {
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: var(--brand-blue);
  margin-top: 1px;
  line-height: 1;
}

/* CTA buttons */
.pricing-cta-v2 {
  width: 100%;
  padding: 17px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  border: 1.5px solid var(--border-medium);
  border-radius: 100px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.pricing-cta-v2:hover {
  background: var(--text-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.pricing-cta-v2--popular {
  background: var(--brand-yellow);
  color: #0F0F0F;
  border-color: transparent;
  font-size: 13.5px;
}

.pricing-cta-v2--popular:hover {
  background: #E8C200;
  color: #0F0F0F;
  box-shadow: var(--shadow-glow-yellow);
  transform: translateY(-2px);
}

/* =============================================
   AI TIER TABLE
   ============================================= */

.ai-pkg-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ai-tier-table {
  margin: 0 0 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
}

.tier-table thead tr {
  background: rgba(255, 255, 255, 0.04);
}

.tier-table thead th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 500;
}

.tier-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.tier-table tbody tr:last-child { border-bottom: none; }

.tier-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.tier-row--highlight {
  background: rgba(255, 214, 0, 0.08) !important;
}

.tier-table tbody td {
  padding: 22px 24px;
  vertical-align: middle;
}

.tier-td-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: white;
  white-space: nowrap;
}

.tier-td-desc {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  line-height: 1.5;
}

.tier-td-price {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--brand-lime);
  white-space: nowrap;
}

.tier-td-price--custom {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 214, 0, 0.75);
}

.tier-cta-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}

.tier-cta-btn:hover {
  background: rgba(255, 214, 0, 0.24);
  border-color: rgba(255, 214, 0, 0.55);
  color: white;
}

.ai-pkg-footer {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.ai-pkg-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   MAINTENANCE RECOMMENDED CARD
   ============================================= */

.maintenance-card--recommended {
  border: 1.5px solid rgba(255, 214, 0, 0.24) !important;
  box-shadow: 0 8px 48px rgba(255, 214, 0, 0.10) !important;
  transform: translateY(-10px);
}

.maintenance-card--recommended:hover {
  transform: translateY(-14px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
}

.maintenance-recommended-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 214, 0, 0.09);
  color: var(--brand-blue);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 214, 0, 0.14);
}

/* =============================================
   GUARANTEE SECTION V2
   ============================================= */

.guarantee-section-v2 {
  padding: 120px 0;
  background: linear-gradient(140deg, #0A0A0A 0%, #0F0F0F 55%, #1A1A1A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-section-v2::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.guarantee-section-v2::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,245,106,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.guarantee-shield-icon {
  font-size: 60px;
  margin-bottom: 28px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.18));
}

.guarantee-title-v2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.guarantee-sub-v2 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.guarantee-bullets-v2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.guarantee-bullet-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.guarantee-bullet-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.guarantee-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 44px;
  max-width: 460px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */

.wa-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.38);
  z-index: 900;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  font-size: 26px;
  text-decoration: none;
  line-height: 1;
}

.wa-float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.48);
}

/* =============================================
   MOBILE STICKY CTA
   ============================================= */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  z-index: 899;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.07);
}

.mobile-sticky-inner {
  width: 100%;
  padding: 16px;
  background: var(--brand-yellow);
  color: #0F0F0F;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.mobile-sticky-inner:active {
  background: #E8C200;
  transform: scale(0.98);
}

/* =============================================
   PHASE 2 — RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .pricing-grid-v2 {
    gap: 20px;
  }

  .pricing-number-v2 {
    font-size: clamp(36px, 4vw, 48px);
  }

  .pricing-card-v2--popular {
    transform: translateY(-8px);
  }

  .pricing-card-v2--popular:hover {
    transform: translateY(-14px);
  }
}

@media (max-width: 1024px) {
  .pricing-grid-v2 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-v2--popular {
    transform: none;
  }

  .pricing-card-v2--popular:hover {
    transform: translateY(-8px);
  }

  .ai-tier-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tier-table {
    min-width: 600px;
  }
}

@media (max-width: 768px) {
  .pricing-section-v2 {
    padding: var(--section-padding) 0;
  }

  .pricing-grid-v2 {
    max-width: 100%;
    gap: 20px;
  }

  .guarantee-bullets-v2 {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .guarantee-section-v2 {
    padding: 80px 0;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .wa-float-btn {
    bottom: 84px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .maintenance-card--recommended {
    transform: none;
  }

  .maintenance-card--recommended:hover {
    transform: translateY(-5px) !important;
  }
}

/* =============================================
   PARALLAX & EXPERIENCE ENHANCEMENTS
   ============================================= */

/* Hero parallax container — GSAP drives y on .hero-inner */
.hero-inner {
  will-change: transform;
}

/* Hero canvas parallax layer */
.hero-canvas {
  will-change: transform;
}

/* Staggered reveal delays — more granular */
.delay-0  { transition-delay: 0ms; }
.delay-1  { transition-delay: 80ms; }
.delay-2  { transition-delay: 160ms; }
.delay-3  { transition-delay: 240ms; }
.delay-4  { transition-delay: 320ms; }
.delay-5  { transition-delay: 400ms; }

/* 3D tilt container */
.layanan-card,
.ai-card,
.pricing-card-v2,
.case-card,
.usecase-card,
.kontak-card {
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}

/* ===== DECORATIVE DOT GRID (light sections) ===== */
.layanan-preview,
.pricing-section-v2,
.portfolio-cases {
  position: relative;
}

.layanan-preview::before,
.pricing-section-v2::before,
.portfolio-cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 14, 12, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.layanan-preview > *,
.pricing-section-v2 > *,
.portfolio-cases > * {
  position: relative;
  z-index: 1;
}

/* ===== IMPROVED HERO GRADIENT ===== */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
  z-index: 1;
}

/* ===== ANIMATED SECTION LABEL LINE ===== */
.section-label--animated::before {
  animation: label-line-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: left center;
}

@keyframes label-line-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ===== IMPROVED CARD ICON ===== */
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--text-primary);
  transition: background 0.25s, color 0.25s;
}

.layanan-card:hover .card-icon {
  background: rgba(255, 214, 0, 0.12);
  color: var(--text-primary);
}

.layanan-card.featured .card-icon {
  background: rgba(255, 214, 0, 0.12);
  color: var(--brand-yellow);
}

/* ===== PRICING CARD ICON ===== */
.pricing-card-icon-v2 {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--text-secondary);
  transition: background 0.2s, color 0.2s;
}

.pricing-card-v2--popular .pricing-card-icon-v2 {
  background: rgba(255, 214, 0, 0.14);
  color: var(--text-primary);
}

/* ===== KONTAK ICON IMPROVED ===== */
.kontak-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 214, 0, 0.10);
  border-radius: var(--radius-md);
  color: var(--brand-yellow);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.kontak-card:hover .kontak-icon {
  background: rgba(255, 214, 0, 0.18);
  transform: scale(1.06);
}

/* ===== USECASE ICON ===== */
.usecase-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  flex-shrink: 0;
  transition: background 0.2s;
}

.usecase-card:hover .usecase-icon {
  background: rgba(255, 214, 0, 0.10);
}

/* ===== NILAI ICON ===== */
.nilai-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.nilai-card:hover .nilai-icon {
  background: rgba(255, 214, 0, 0.12);
  color: var(--brand-yellow);
}

/* ===== WA FLOAT BUTTON — ICON VERSION ===== */
.wa-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-float-btn .icon {
  color: #0F0F0F;
  stroke-width: 2;
}

/* ===== FOOTER SOCIAL — ICON VERSION ===== */
.footer-social a .icon {
  width: 18px;
  height: 18px;
}

/* ===== MOBILE STICKY CTA — ICON VERSION ===== */
.mobile-sticky-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-sticky-inner .icon {
  color: #0F0F0F;
  stroke-width: 2;
}

/* ===== PARALLAX DEPTH LAYER ON DARK SECTIONS ===== */
.hero-ai,
.hero-layanan,
.hero-portfolio,
.hero-tentang,
.hero-kontak {
  overflow: hidden;
  position: relative;
}

.hero-ai::before,
.hero-layanan::before,
.hero-portfolio::before,
.hero-tentang::before,
.hero-kontak::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.045) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

/* ===== AI CARD ICON NUMBERS — REFINED ===== */
.ai-card-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-yellow);
  opacity: 0.7;
  margin-bottom: 12px;
}

/* =============================================
   PAGE TRANSITION OVERLAY
   ============================================= */
#pageTransitionOverlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease-out;
}

#pageTransitionOverlay.fade-out {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand-yellow);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Custom focus ring — yellow-keyed, visible on both light and dark */
:focus-visible {
  outline: 2.5px solid var(--brand-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================
   HERO GEOMETRIC VISUAL
   ============================================= */
.hero-geo-wrap {
  display: none;
}

.hero-geo-svg {
  width: 100%;
  height: 100%;
}

.geo-ring-spin {
  transform-origin: 260px 260px;
  animation: geo-spin 40s linear infinite;
}

@keyframes geo-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero-geo-wrap {
    width: 380px;
    height: 380px;
    right: -60px;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .hero-geo-wrap {
    display: none;
  }
}

/* Hero inner — no width restriction, full-width layout */

/* =============================================
   CARA KERJA SECTION
   ============================================= */
.cara-kerja-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.ck-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}

.ck-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 32px;
  position: relative;
}

.ck-step:first-child { padding-left: 0; }
.ck-step:last-child  { padding-right: 0; }

.ck-connector {
  width: 1px;
  height: 80px;
  margin-top: 36px;
  background: linear-gradient(to bottom, var(--brand-yellow), transparent);
  flex-shrink: 0;
  opacity: 0.25;
}

.ck-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-yellow);
}

.ck-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: background 0.25s, border-color 0.25s;
}

.ck-step:hover .ck-icon {
  background: rgba(255, 214, 0, 0.08);
  border-color: rgba(255, 214, 0, 0.2);
}

.ck-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.ck-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 280px;
}

.ck-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ck-guarantee {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .ck-grid {
    flex-direction: column;
    gap: 32px;
  }

  .ck-connector {
    width: 40px;
    height: 1px;
    margin-top: 0;
    background: linear-gradient(to right, var(--brand-yellow), transparent);
    align-self: flex-start;
    margin-left: 26px;
  }

  .ck-step {
    padding: 0;
  }

  .ck-desc { max-width: 100%; }
}

/* =============================================
   TESTIMONIAL AVATAR
   ============================================= */
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #c9a800 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin: 3px 0 0;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


