/* =============================================
   DIGI SOLUSI CREATIVE — LIGHT THEME
   ============================================= */

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

:root {
  --white:      #ffffff;
  --bg:         #f8f9fc;
  --bg2:        #f1f4f9;
  --navy:       #0f172a;
  --navy2:      #1e293b;
  --blue:       #2563eb;
  --blue-light: #eff6ff;
  --blue-mid:   #dbeafe;
  --text:       #1e293b;
  --text-2:     #475569;
  --text-3:     #94a3b8;
  --border:     #e2e8f0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --ff:         'Plus Jakarta Sans', sans-serif;
  --nav-h:      68px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

/* ---- UTILS ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.blue { color: var(--blue); }
.w-full { width: 100%; justify-content: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--ff);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  min-height: 48px; /* Android touch target */
  -webkit-tap-highlight-color: transparent;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn--primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}
.btn--secondary {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  border-color: #94a3b8;
  background: var(--bg);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.btn--white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--white-outline:hover { background: rgba(255,255,255,0.1); }

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ---- CURSOR GLOW ---- */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
/* Fallback: jika JS gagal (No-JS / error), semua reveal tetap terlihat */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: var(--announce-h, 0px); left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo img { height: 38px; width: auto; object-fit: contain; display: block; flex-shrink: 0; }
.nav__logo-text {
  font-family: var(--ff);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
.nav__logo-text strong {
  font-weight: 800;
  color: var(--blue);
}
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--navy); background: var(--bg); }
.nav__cta {
  background: var(--blue) !important;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(37,99,235,0.3);
  margin-left: 8px;
}
.nav__cta:hover { background: #1d4ed8 !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px 24px 24px;
  transform: translateY(-110%);
  transition: transform 0.32s var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  min-height: 48px; /* touch target minimum 48px */
  display: flex;
  align-items: center;
}
.mobile-menu a:hover,
.mobile-menu a:active { background: var(--blue-light); color: var(--blue); }

/* ============================================
   HERO — FULLSCREEN SLIDESHOW
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Slideshow layer */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slide-show 25s infinite;
  transform: scale(1);
}
/* 5 slides × 5s each = 25s total */
/* Each slide: visible 20% (5s), overlap 1s fade */
@keyframes slide-show {
  0%       { opacity: 0; transform: scale(1.04); }
  4%       { opacity: 1; transform: scale(1.02); }
  18%      { opacity: 1; transform: scale(1); }
  22%      { opacity: 0; transform: scale(1); }
  100%     { opacity: 0; transform: scale(1); }
}

/* Unsplash business/digital marketing photos */
.hero__slide--1 {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80');
  animation-delay: 0s;
}
.hero__slide--2 {
  background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80');
  animation-delay: 5s;
}
.hero__slide--3 {
  background-image: url('https://images.unsplash.com/photo-1611532736597-de2d4265fba3?auto=format&fit=crop&w=1920&q=80');
  animation-delay: 10s;
}
.hero__slide--4 {
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1920&q=80');
  animation-delay: 15s;
}
.hero__slide--5 {
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
  animation-delay: 20s;
}

/* Left gradient overlay agar teks terbaca */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(10,20,50,0.82) 0%,
    rgba(10,20,50,0.65) 45%,
    rgba(10,20,50,0.15) 70%,
    transparent 100%
  );
}

/* Override container centering inside hero */
.hero .container {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* Content */
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  min-height: calc(90vh - var(--nav-h));
  padding-top: var(--nav-h);
  padding-bottom: 48px;
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(96,165,250,0.4);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.3);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
  50% { box-shadow: 0 0 0 7px rgba(34,197,94,0.1); }
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero__title--accent { color: #60a5fa; }

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 500px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Outline button for over image */
.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--ff);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn--hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Stats strip */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero__stat { text-align: left; }
.hero__stat-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* Progress dots */
.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  transition: width 0.3s;
  animation: dot-active 25s infinite;
}
.hero__dot--1 { animation-delay: 0s; }
.hero__dot--2 { animation-delay: 5s; }
.hero__dot--3 { animation-delay: 10s; }
.hero__dot--4 { animation-delay: 15s; }
.hero__dot--5 { animation-delay: 20s; }
@keyframes dot-active {
  0%   { width: 6px;  background: rgba(255,255,255,0.35); }
  2%   { width: 22px; background: #fff; }
  18%  { width: 22px; background: #fff; }
  22%  { width: 6px;  background: rgba(255,255,255,0.35); }
  100% { width: 6px;  background: rgba(255,255,255,0.35); }
}

/* ============================================
   VISI & MISI
   ============================================ */
.vismis {
  padding: 64px 0;
  background: var(--bg);
}

/* Vision box */
.vismis__vision {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  border-radius: var(--radius-xl);
  padding: 44px 52px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.vismis__vision::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.vismis__vision::after {
  content: '"';
  position: absolute;
  bottom: -20px; left: 32px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.vismis__vision-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 20px;
}
.vismis__vision-label i { font-size: 16px; }
.vismis__vision-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.7;
  max-width: 820px;
  position: relative;
}
.vismis__vision-text strong { color: #fff; font-weight: 800; }

/* Misi label */
.vismis__misi-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  padding: 6px 16px;
  background: var(--blue-light);
  border-radius: 100px;
  border: 1px solid var(--blue-mid);
}
.vismis__misi-label i { font-size: 14px; }

/* Misi grid */
.vismis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vismis-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.vismis-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #c7d7f4;
}
.vismis-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid transparent;
  transition: transform 0.3s ease;
}
.vismis-card__icon i { font-size: 24px; line-height: 1; }
.vismis-card:hover .vismis-card__icon { transform: scale(1.12) rotate(-4deg); }
.vismis-card__icon--blue   { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.vismis-card__icon--orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.vismis-card__icon--purple { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.vismis-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.vismis-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  padding: 64px 0;
  background: var(--white);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.problem__text .eyebrow { display: block; }
.problem__text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.problem__text p {
  color: var(--text-2);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.problem__cards { display: flex; flex-direction: column; gap: 16px; }
.pcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.pcard:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(37,99,235,0.08);
  transform: translateX(4px);
}
.pcard__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.2s, color 0.2s;
}
.pcard__icon i { font-size: 20px; line-height: 1; }
.pcard__icon--blue   { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.pcard__icon--orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.pcard__icon--purple { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.pcard:hover .pcard__icon { filter: brightness(0.92); }
.pcard__num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.1em;
  background: var(--blue-light);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.pcard h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.pcard p { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 64px 0;
  background: var(--bg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: box-shadow 0.25s, border-color 0.25s;
  transform-style: preserve-3d;
  will-change: transform;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #c7d7f4;
}
.svc-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--bg2);
  color: var(--navy);
  border: 1.5px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.svc-card__icon-wrap i { font-size: 22px; line-height: 1; }
/* Colored icon variants */
.svc-card__icon-wrap--blue  { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.svc-card__icon-wrap--orange{ background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.svc-card__icon-wrap--purple{ background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.svc-card__icon-wrap--green { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.svc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.svc-card ul li {
  font-size: 0.8rem;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.svc-card ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--blue);
  font-weight: 900;
}
.svc-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}
.svc-link:hover { text-decoration: underline; }

/* Academy Featured Card */
.svc-academy {
  margin-top: 24px;
  background: linear-gradient(135deg, #fefce8 0%, #fffbeb 60%, #fef3c7 100%);
  border: 1.5px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.svc-academy::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.12);
  pointer-events: none;
}
.svc-academy::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 30%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.08);
  pointer-events: none;
}
.svc-academy:hover {
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.25);
  border-color: #f59e0b;
}
.svc-academy__badge {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.svc-academy__icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  color: #d97706;
  border: 1.5px solid #fcd34d;
  margin-bottom: 20px;
  font-size: 26px;
}
.svc-academy__icon-wrap i { font-size: 26px; line-height: 1; }
.svc-academy__left h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-academy__left p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.svc-academy__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-academy__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.svc-academy__feature-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #fcd34d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 18px;
}
.svc-academy__feature-icon i { font-size: 18px; line-height: 1; }
.svc-academy__feature strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.svc-academy__feature span {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
}
.svc-academy__stats {
  display: flex;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid #fde68a;
  margin-top: 4px;
}
.svc-academy__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-academy__stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #d97706;
  line-height: 1;
}
.svc-academy__stat-label {
  font-size: 0.75rem;
  color: var(--text-2);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 64px 0;
  background: var(--white);
}
.pricing__tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-2);
  font-family: var(--ff);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--navy); background: rgba(255,255,255,0.7); }
.tab-btn.active { background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }

.pricing__content { display: none; }
.pricing__content.active { display: block; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pbox {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pbox:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pbox--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08), var(--shadow-md);
}
.pbox--featured:hover { transform: translateY(-4px); }
.pbox__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pbox__tier {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pbox__price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.pbox__price span {
  font-size: 0.85rem;
  color: var(--text-3);
  font-weight: 500;
}
.pbox__platform {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pbox__list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pbox__list li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.pbox__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 800;
  font-size: 0.8rem;
}
.pbox__note {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 6px;
  padding: 5px 10px;
  text-align: center;
  margin-bottom: 20px;
}
.pbox__footnote {
  font-size: 0.73rem;
  color: var(--text-3);
  font-style: italic;
  margin-bottom: 16px;
}

/* ============================================
   BUNDLING
   ============================================ */
.bundling {
  padding: 64px 0;
  background: var(--bg);
}
.bundling__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.bcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.bcard--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08), var(--shadow-md);
}
.bcard__ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.bcard__top { margin-bottom: 24px; text-align: center; }
.bcard__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1.5px solid transparent;
  font-size: 0;
}
.bcard__icon i { font-size: 28px; line-height: 1; }
.bcard__icon--green { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.bcard__icon--blue  { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.bcard__icon--gold  { background: #fffbeb; color: #d97706; border-color: #fde68a; }
.bcard__tier {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.bcard__sub {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bcard__pricing { margin-bottom: 24px; }
.bcard__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.bcard__save {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.bcard__list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bcard__list li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.bcard__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 800;
  font-size: 0.8rem;
}

/* ============================================
   WHY
   ============================================ */
.why {
  padding: 64px 0;
  background: var(--white);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.wcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.wcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.wcard__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--bg2);
  color: var(--navy);
  border: 1.5px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.wcard__icon i { font-size: 22px; line-height: 1; }
.wcard__icon--blue   { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.wcard__icon--orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.wcard__icon--purple { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.wcard__icon--green  { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.wcard:hover .wcard__icon { filter: brightness(0.92); }
.wcard h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.wcard p { font-size: 0.86rem; color: var(--text-2); line-height: 1.65; }

/* COMPARISON */
.comparison { }
.comparison h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}
.comparison__wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--border); }
.comparison__wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--white);
}
.comparison__wrap th, .comparison__wrap td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison__wrap th {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg2);
}
.comparison__wrap th.col-us { color: var(--blue); }
.comparison__wrap td { color: var(--text-2); }
.comparison__wrap td.col-us {
  color: var(--navy);
  font-weight: 600;
  background: var(--blue-light);
}
.comparison__wrap tr:last-child td { border-bottom: none; }
.comparison__wrap tr:hover td { background: var(--bg2); }
.comparison__wrap tr:hover td.col-us { background: #dbeafe; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  margin-right: 6px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 56px 0;
  background: var(--bg);
}
.cta-box {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 60%, #3b82f6 100%);
  border-radius: var(--radius-xl);
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-box__text { position: relative; }
.cta-box__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-box__text p { color: rgba(255,255,255,0.75); font-size: 0.97rem; }
.cta-box__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 64px 0;
  background: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact__info-desc {
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.cinfo-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  margin-bottom: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cinfo-item:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(37,99,235,0.08); }
.cinfo-item__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0;
  border: 1.5px solid transparent;
}
.cinfo-item__icon i { font-size: 20px; line-height: 1; }
.cinfo-item__icon--green  { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.cinfo-item__icon--blue   { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.cinfo-item__icon--purple { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.cinfo-item__icon--orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.cinfo-item__icon--ig     { background: #fdf2f8; color: #db2777; border-color: #fbcfe8; }

/* Clickable cinfo-item */
.cinfo-item__val--link {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.cinfo-item__val--link:hover { color: var(--blue); text-decoration: underline; }
.cinfo-item--link { cursor: pointer; }
.cinfo-item--link:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(37,99,235,0.08); }

.cinfo-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 3px;
}
.cinfo-item__val { color: var(--text-2); font-size: 0.9rem; font-weight: 500; }

/* Google Maps embed */
.contact__map {
  margin-top: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.contact__map-inner {
  position: relative;
  height: 220px;
  width: 100%;
}
.contact__map-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 2px);
  filter: saturate(0.9) contrast(1.05);
}
/* "Buka di Google Maps" button overlay (bottom-left) */
.map-pin-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 10;
  pointer-events: none;
}
.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  border: 1.5px solid var(--blue-mid);
  pointer-events: auto;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.map-open-btn i { font-size: 15px; }
.map-open-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
/* Pulse ring animasi di atas pin */
.map-open-btn::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: mapPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.contact__form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--ff);
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Error state */
.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: #ef4444;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
  animation: shake 0.3s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}

/* Min height untuk touch target form */
.form-group input,
.form-group select { min-height: 48px; }
.form-group textarea { min-height: 100px; }

/* ============================================
   MULTI-PAGE: PAGE HERO & INNER PAGES
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + var(--announce-h) + 56px) 0 56px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  text-align: center;
}
.page-hero__inner { max-width: 640px; margin: 0 auto; }
.page-hero__inner h1 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; margin-bottom: 16px; }
.page-hero__inner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.page-hero__inner .eyebrow { color: #93c5fd; border-color: rgba(147,197,253,0.3); margin-bottom: 12px; }

/* Academy hero */
.academy-hero {
  padding: calc(var(--nav-h) + var(--announce-h) + 56px) 0 64px;
  background: linear-gradient(135deg, #1e1b4b 0%, #2563eb 60%, #1d4ed8 100%);
}
.academy-hero__inner { max-width: 680px; }
.academy-hero__inner h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; margin: 12px 0 20px; }
.academy-hero__inner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }
.academy-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.academy-hero__stats { display: flex; gap: 32px; flex-wrap: wrap; }
.academy-hero__stat { display: flex; flex-direction: column; }
.academy-hero__num { font-size: 1.6rem; font-weight: 800; color: #fff; }
.academy-hero__label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: .05em; }

/* Academy program grid */
.academy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.academy-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.academy-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37,99,235,.1); }
.academy-card h3 { font-size: 1.2rem; font-weight: 700; margin: 16px 0 8px; }
.academy-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }

/* Active nav link */
.nav__links a.active-nav {
  color: var(--blue);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: #e2e8f0;
  padding: 64px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo { height: 36px; width: auto; object-fit: contain; display: block; filter: brightness(0) invert(1); flex-shrink: 0; }
.footer__brand-name {
  font-family: var(--ff);
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
.footer__brand-name strong {
  font-weight: 800;
  color: #60a5fa;
}
.footer__brand p { color: #94a3b8; font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }

/* Social icons in footer brand */
.footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0;
  transition: transform 0.2s, opacity 0.2s;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.footer__social-btn i { font-size: 18px; line-height: 1; }
.footer__social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.footer__social-btn--ig  { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.footer__social-btn--tt  { background: #010101; color: #fff; }
.footer__social-btn--wa  { background: #25d366; color: #fff; }
.footer__social-btn--lynk { background: #2563eb; color: #fff; }

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #475569;
  font-size: 0.8rem;
}
.footer__bottom-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer__bottom-socials a {
  color: #475569;
  font-size: 0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom-socials a i { font-size: 18px; line-height: 1; }
.footer__bottom-socials a:hover { color: #94a3b8; }

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 56px 0;
  background: var(--navy);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide-x: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-item__label {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================
   HOW WE WORK
   ============================================ */
.howwork {
  padding: 64px 0;
  background: var(--bg);
}
.howwork__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #c7d7f4;
}
.step__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: var(--blue-light);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.step__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.2s, color 0.2s;
}
.step__icon i { font-size: 22px; line-height: 1; }
.step__icon--blue   { background: #eff6ff; color: #2563eb; border-color: #bfdbfe; }
.step__icon--purple { background: #f5f3ff; color: #7c3aed; border-color: #ddd6fe; }
.step__icon--orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.step__icon--green  { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.step:hover .step__icon { filter: brightness(0.92); }
.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { font-size: 0.83rem; color: var(--text-2); line-height: 1.65; }
.step__arrow {
  font-size: 1.4rem;
  color: var(--blue);
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 48px;
}

/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testimonials {
  padding: 64px 0;
  background: var(--white);
}
.testi-slider {
  position: relative;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: box-shadow 0.25s, border-color 0.25s, opacity 0.4s;
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
}
.tcard.active-slide {
  border-color: #bfdbfe;
  box-shadow: 0 8px 32px rgba(37,99,235,0.1);
}
.tcard__stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.tcard__text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard__avatar--orange { background: #ea580c; }
.tcard__avatar--green  { background: #16a34a; }
.tcard__avatar--purple { background: #7c3aed; }
.tcard__avatar--blue   { background: #0284c7; }
.tcard__name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.tcard__role { font-size: 0.75rem; color: var(--text-3); margin-top: 2px; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.testi-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.testi-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  transform: scale(1.1);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testi-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 64px 0;
  background: var(--bg);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.07);
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--ff);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s;
}
.faq-item__q:hover { background: var(--bg2); }
.faq-item__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
  line-height: 1;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item__a p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ============================================
   WHATSAPP FLOAT + POPUP
   ============================================ */
.wa-wrapper {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: 28px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* -- Tombol WA -- */
.wa-float {
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
  position: relative;
  flex-shrink: 0;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.65);
}
.wa-float__icon {
  width: 28px; height: 28px;
  position: absolute;
  transition: opacity 0.2s, transform 0.2s;
}
.wa-float__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}
.wa-float__icon--wa {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.wa-wrapper.open .wa-float__icon--wa {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}
.wa-wrapper.open .wa-float__icon--close {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.wa-float__notif {
  position: absolute;
  top: -3px; right: -3px;
  width: 18px; height: 18px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: notifPop 2s ease infinite;
}
.wa-wrapper.open .wa-float__notif { display: none; }
@keyframes notifPop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

/* -- Popup Bubble -- */
.wa-popup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  width: 300px;
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
              transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.wa-wrapper.open .wa-popup {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}
.wa-popup__close {
  position: absolute;
  top: 10px; right: 12px;
  background: rgba(255,255,255,0.25);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
  z-index: 1;
}
.wa-popup__close:hover { background: rgba(255,255,255,0.4); }

/* Header popup */
.wa-popup__avatar {
  background: linear-gradient(135deg, #128C7E, #25d366);
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.wa-popup__avatar img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.5);
  background: #fff;
}
.wa-popup__online {
  position: absolute;
  bottom: 14px; left: 54px;
  width: 12px; height: 12px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* Body popup */
.wa-popup__body {
  padding: 16px 18px 18px;
}
.wa-popup__name {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.wa-popup__status {
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 12px;
}
.wa-popup__msg {
  background: var(--bg2);
  border-radius: 0 12px 12px 12px;
  padding: 11px 14px;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
  position: relative;
}
.wa-popup__msg::before {
  content: '';
  position: absolute;
  top: 0; left: -7px;
  width: 0; height: 0;
  border-top: 8px solid var(--bg2);
  border-left: 8px solid transparent;
}
.wa-popup__msg span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 4px;
}
.wa-popup__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.wa-popup__cta:hover {
  background: #1db954;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  background: linear-gradient(90deg, #1e40af, #2563eb, #1d4ed8);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  position: relative;
  z-index: 1001;
}
.announce-bar.hidden { display: none; }
.announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.announce-bar__badge {
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.announce-bar__cta {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 3px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.announce-bar__cta:hover { background: rgba(255,255,255,0.3); }
.announce-bar__close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.announce-bar__close:hover { color: #fff; background: rgba(255,255,255,0.15); }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust {
  padding: 36px 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.trust__label {
  text-align: center;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 20px;
}
.trust__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.trust-badge:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 14px rgba(37,99,235,0.1);
  transform: translateY(-2px);
}
.trust-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.trust-badge span { font-size: 0.78rem; font-weight: 700; color: var(--text-2); white-space: nowrap; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: 64px 0;
  background: var(--bg);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pf-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pf-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.pf-card__header {
  padding: 28px 24px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pf-card__header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.pf-card__header--1 { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.pf-card__header--2 { background: linear-gradient(135deg, #065f46, #10b981); }
.pf-card__header--3 { background: linear-gradient(135deg, #7c2d12, #f97316); }
.pf-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 6px;
}
.pf-card__title { font-size: 1.1rem; font-weight: 800; }
.pf-card__body { padding: 22px 24px; }
.pf-card__challenge { margin-bottom: 20px; }
.pf-card__challenge-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 6px;
}
.pf-card__challenge p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
.pf-card__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  background: var(--bg2);
  border-radius: var(--radius);
}
.pf-result { text-align: center; }
.pf-result__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pf-result__num span { font-size: 0.85rem; color: var(--blue); }
.pf-result__label { font-size: 0.68rem; color: var(--text-3); font-weight: 600; }
.pf-card__services { display: flex; gap: 6px; flex-wrap: wrap; }
.pf-card__services span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ============================================
   TEAM
   ============================================ */
.team {
  padding: 64px 0;
  background: var(--white);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.team-card__photo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-card__photo--1 { background: linear-gradient(135deg, #1e40af, #60a5fa); }
.team-card__photo--2 { background: linear-gradient(135deg, #065f46, #34d399); }
.team-card__photo--3 { background: linear-gradient(135deg, #6b21a8, #a78bfa); }
.team-card__photo--4 { background: linear-gradient(135deg, #9a3412, #fb923c); }
.team-card__photo--5 { background: linear-gradient(135deg, #0e7490, #22d3ee); }
.team-card__photo--6 { background: linear-gradient(135deg, #9d174d, #f472b6); }
.team-card__initials {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 3px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__body { padding: 18px 16px 20px; }
.team-card__name { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: 0.75rem; color: var(--blue); font-weight: 700; margin-bottom: 10px; }
.team-card p { font-size: 0.8rem; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.team-card__tags { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; }
.team-card__tags span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-3);
  background: var(--bg2);
  border-radius: 100px;
  padding: 2px 8px;
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee { padding: 56px 0; background: var(--bg); }
.guarantee__box {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.guarantee__box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
  border-radius: 50%;
}
.guarantee__icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  color: #fff;
  font-size: 0;
}
.guarantee__icon i { font-size: 38px; line-height: 1; }
.guarantee__text { position: relative; }
.guarantee__text h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.guarantee__text p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.guarantee__text strong { color: #60a5fa; }
.guarantee__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  flex-shrink: 0;
}
.guarantee__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.guarantee__check {
  width: 20px; height: 20px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

/* ---- EXTRA INTERACTIVE POLISH ---- */
.nav__links a.active-nav {
  color: var(--blue);
  background: var(--blue-light);
}
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, opacity 0.4s;
  opacity: 0;
}
.btn--primary:active::after { width: 200px; height: 200px; opacity: 0; }

/* pricing tab transition */
.pricing__content {
  animation: none;
}
.pricing__content.active {
  animation: fadeSlideIn 0.35s ease forwards;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* step hover line connector */
.howwork__grid .step { cursor: default; }

/* stat number pulse on visible */
.stat-item__num {
  display: inline-block;
  transition: transform 0.3s;
}
.stat-item:hover .stat-item__num { transform: scale(1.12); }

/* icon bounce on hover */
.svc-card:hover .svc-card__icon-wrap,
.wcard:hover .wcard__icon,
.step:hover .step__icon,
.bcard:hover .bcard__icon {
  transform: scale(1.12) rotate(-4deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svc-card__icon-wrap,
.wcard__icon,
.step__icon,
.bcard__icon { transition: transform 0.3s ease, filter 0.2s; }

/* pbox hover glow */
.pbox--featured:hover {
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12), 0 16px 48px rgba(37,99,235,0.15) !important;
}

/* bundle card icon bounce handled by consolidated rule above */
@keyframes bounceIcon {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.3) rotate(-8deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Smooth underline on section links */
.svc-link { position: relative; }
.svc-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.svc-link:hover::after { width: 100%; text-decoration: none; }
.svc-link:hover { text-decoration: none !important; }

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .vismis__grid      { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .vismis__vision    { padding: 36px 40px; }
  .services__grid    { grid-template-columns: repeat(2, 1fr); }
  .svc-academy       { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
  .why__grid         { grid-template-columns: repeat(2, 1fr); }
  .howwork__grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .step__arrow       { display: none; }
  .tcard             { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
  .stats__grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .portfolio__grid   { grid-template-columns: repeat(2, 1fr); }
  .team__grid        { grid-template-columns: repeat(2, 1fr); }
  .guarantee__box    { grid-template-columns: auto 1fr; padding: 40px; gap: 28px; }
  .guarantee__items  { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .guarantee__box .btn { grid-column: 1 / -1; width: fit-content; }
}

/* ============================================
   RESPONSIVE — SMALL TABLET / LANDSCAPE (≤900px)
   ============================================ */
@media (max-width: 900px) {
  .hero__visual  { display: none; }
  .hero__content { text-align: left; }
  .hero__actions { justify-content: flex-start; }
  .cta-box       { flex-direction: column; text-align: center; padding: 40px 32px; gap: 28px; }
  .cta-box__actions { justify-content: center; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  /* global */
  .container { padding: 0 18px; }
  section { padding-top: 72px !important; padding-bottom: 72px !important; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.7rem; }

  /* announce bar */
  .announce-bar { font-size: 0.75rem; padding: 8px 36px 8px 14px; }
  .announce-bar__inner { gap: 8px; }
  .announce-bar__cta { display: none; }

  /* nav */
  :root { --nav-h: 60px; }
  .nav__links  { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-text { font-size: 0.85rem; }

  /* hero */
  .hero .container { padding-left: 24px; padding-right: 24px; }
  .hero__inner { max-width: 100%; padding-bottom: 60px; text-align: left; }
  .hero__title { font-size: 2.2rem; letter-spacing: -0.02em; }
  .hero__desc  { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero__actions .btn { width: auto; min-width: 220px; }
  /* Stats — 2x2 grid, hide dividers */
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; padding: 18px 20px; }
  .hero__stat-div { display: none; }
  .hero__stat-num { font-size: 1.35rem; }

  /* trust — horizontal scroll prevent overflow */
  .trust__badges { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .trust__badges::-webkit-scrollbar { height: 3px; }
  .trust__badges::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
  .trust-badge   { flex-shrink: 0; padding: 6px 12px; }
  .trust-badge span { font-size: 0.72rem; }

  /* stats bar */
  .stats { padding: 40px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 12px; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-item__num { font-size: 2rem; }

  /* problem */
  .problem__grid { grid-template-columns: 1fr; gap: 32px; }

  /* visi & misi */
  .vismis__vision { padding: 32px 28px; }
  .vismis__vision-text { font-size: 1.1rem; }
  .vismis__grid { grid-template-columns: 1fr; gap: 16px; }
  .vismis-card { padding: 24px 20px; }

  /* services */
  .services__grid { grid-template-columns: 1fr; }
  .svc-academy { padding: 24px 20px; gap: 24px; }
  .svc-academy__stats { gap: 16px; }

  /* how we work */
  .howwork__grid { grid-template-columns: 1fr; gap: 12px; }

  /* pricing */
  .pricing__tabs { width: 100%; border-radius: 10px; }
  .tab-btn { flex: 1 1 calc(50% - 6px); font-size: 0.8rem; padding: 9px 8px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pbox--featured { transform: none; }

  /* bundling */
  .bundling__grid { grid-template-columns: 1fr; }

  /* portfolio */
  .portfolio__grid { grid-template-columns: 1fr; }
  .pf-card__results { grid-template-columns: repeat(3, 1fr); }

  /* testimonial */
  .tcard { flex: 0 0 100%; min-width: 100%; }

  /* team */
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* why */
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* comparison table */
  .comparison__wrap { border-radius: var(--radius); }
  .comparison__wrap table { font-size: 0.75rem; }
  .comparison__wrap th, .comparison__wrap td { padding: 9px 10px; }
  /* sembunyikan kolom freelancer di mobile */
  .comparison__wrap th:last-child,
  .comparison__wrap td:last-child { display: none; }

  /* guarantee */
  .guarantee { padding: 56px 0; }
  .guarantee__box { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; gap: 20px; }
  .guarantee__icon { margin: 0 auto; }
  .guarantee__items { justify-content: center; }
  .guarantee__box .btn { margin: 0 auto; }

  /* cta banner */
  .cta-box { padding: 36px 24px; border-radius: var(--radius-lg); }
  .cta-box__text h2 { font-size: 1.5rem; }
  .cta-box__actions .btn { width: 100%; justify-content: center; }
  .cta-box__actions { width: 100%; flex-direction: column; }

  /* contact */
  .contact__grid { grid-template-columns: 1fr; gap: 28px; }
  .contact__form { padding: 24px 18px; }
  .contact__map-inner { height: 200px; }
  .form-row { grid-template-columns: 1fr; }

  /* footer */
  .footer { padding: 48px 0 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px 24px; padding-bottom: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { max-width: 100%; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* WA popup — safe area aware */
  .wa-wrapper {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }
  .wa-popup { width: calc(100vw - 32px); max-width: 300px; }

  /* icon wrappers smaller on mobile */
  .svc-card__icon-wrap,
  .wcard__icon,
  .step__icon { width: 44px; height: 44px; border-radius: 10px; }
  .svc-card__icon-wrap i,
  .wcard__icon i,
  .step__icon i { font-size: 20px; }

  /* pcard icon */
  .pcard__icon { width: 40px; height: 40px; border-radius: 8px; }
  .pcard__icon i { font-size: 18px; }

  /* contact info icon */
  .cinfo-item__icon { width: 38px; height: 38px; border-radius: 8px; }
  .cinfo-item__icon i { font-size: 18px; }
  .cinfo-item { padding: 13px 16px; gap: 12px; }

  /* bundling icon smaller */
  .bcard__icon { width: 50px; height: 50px; border-radius: 12px; }
  .bcard__icon i { font-size: 24px; }

  /* guarantee icon smaller */
  .guarantee__icon { width: 60px; height: 60px; border-radius: 16px; }
  .guarantee__icon i { font-size: 32px; }

  /* howwork steps on mobile — compact */
  .step { padding: 20px 18px; }

  /* problem cards on mobile */
  .problem__cards { gap: 14px; }
  .pcard { padding: 20px 18px; }

  /* min touch target for all interactive */
  .btn, .tab-btn, .faq-item__q, .nav__cta, .mm-link {
    min-height: 48px;
  }
  .tab-btn { display: flex; align-items: center; justify-content: center; }

  /* footer bottom safe area */
  .footer__bottom {
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================
   TOUCH DEVICE — disable desktop-only effects
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  /* Matiin cursor glow di touch */
  .cursor-glow { display: none; }

  /* Matiin 3D tilt — aneh di touch */
  .svc-card, .wcard, .pbox, .bcard, .pcard,
  .pf-card, .team-card, .tcard, .step {
    transform: none !important;
    transition: box-shadow 0.2s, border-color 0.2s !important;
  }

  /* Icon bounce juga dimatiin di touch */
  .svc-card:hover .svc-card__icon-wrap,
  .wcard:hover .wcard__icon,
  .step:hover .step__icon,
  .bcard:hover .bcard__icon { transform: none !important; }

  /* Tap highlight bersih */
  a, button { -webkit-tap-highlight-color: transparent; }

  /* Touch action — hapus 300ms delay di Android */
  a, button, .btn, .tab-btn, .faq-item__q { touch-action: manipulation; }

  /* Hover states jadi tap-friendly */
  .svc-card:active { box-shadow: var(--shadow-lg); border-color: #c7d7f4; }
  .btn--primary:active { background: #1d4ed8; transform: scale(0.98); }
  .btn--secondary:active { background: var(--bg2); }
  .btn--outline:active { background: var(--blue-light); }
  .nav__cta:active { background: #1d4ed8 !important; }
  .bcard:active { box-shadow: var(--shadow-lg); transform: translateY(-2px) !important; }
  .wcard:active { box-shadow: var(--shadow-md); }
  .pcard:active { border-color: var(--blue); }

  /* Scrollable tabel & slider lebih smooth di Android */
  .comparison__wrap { -webkit-overflow-scrolling: touch; scroll-snap-type: none; }
  .testi-track { -webkit-overflow-scrolling: touch; }

  /* Reveal lebih responsif di Android (reduce transition duration) */
  .reveal { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero .container { padding-left: 16px; padding-right: 16px; }
  .hero__inner { padding-bottom: 48px; text-align: left; }
  .hero__title { font-size: 1.75rem; }
  .hero__badge { font-size: 0.7rem; padding: 5px 12px; }
  .hero__stats { padding: 14px 16px; gap: 10px 14px; }
  .hero__stat-num { font-size: 1.15rem; }
  .hero__stat-label { font-size: 0.6rem; }
  .hero__actions .btn { min-width: 180px; }
  .hero__dots { bottom: 20px; }

  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }

  /* pricing tabs 2x2 */
  .pricing__tabs { padding: 4px; }
  .tab-btn { font-size: 0.75rem; padding: 8px 6px; }

  /* trust badges scroll horizontal */
  .trust__badges { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .trust__badges::-webkit-scrollbar { height: 3px; }
  .trust__badges::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
  .trust-badge { flex-shrink: 0; }

  /* stats 2 kolom */
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item__num { font-size: 1.7rem; }

  /* portfolio results */
  .pf-card__results { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; }
  .pf-result__num { font-size: 1.1rem; }

  /* guarantee compact */
  .guarantee__items { flex-direction: column; align-items: center; }
  .guarantee__icon { width: 54px; height: 54px; }
  .guarantee__icon i { font-size: 28px; }

  /* announcement hide badge */
  .announce-bar__badge { display: none; }

  /* nav logo text hide on very small */
  .nav__logo-text { display: none; }

  /* footer — tampilkan minimal */
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
  .footer__col { display: none; }
  .footer__col:last-child { display: block; } /* tampilkan "Ikuti Kami" */
  .footer__bottom {
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  /* WA popup */
  .wa-wrapper {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    right: 12px;
  }
  .wa-popup { width: calc(100vw - 24px); max-width: 280px; }
  .wa-popup__body { padding: 14px 14px 16px; }

  /* section tighter on tiny screens */
  section { padding-top: 56px !important; padding-bottom: 56px !important; }
  .section-header h2 { font-size: 1.55rem; }
  .section-header p { font-size: 0.875rem; }

  /* services card tighter */
  .svc-card { padding: 22px 18px; }
  .svc-card h3 { font-size: 0.95rem; }
  .svc-card p, .svc-card ul li { font-size: 0.83rem; }

  /* why cards tighter */
  .wcard { padding: 20px 16px; }
  .wcard h3 { font-size: 0.92rem; }

  /* problem text */
  .problem__text h2 { font-size: 1.5rem; }
  .pcard h3 { font-size: 0.92rem; }

  /* pf-results smaller font */
  .pf-result__num { font-size: 1rem; }
  .pf-result__label { font-size: 0.68rem; }

  /* testimonial */
  .tcard { padding: 22px 18px; }

  /* contact form */
  .contact__form { padding: 20px 14px; }

  /* cinfo-item tighter */
  .cinfo-item { padding: 12px 14px; gap: 10px; }
  .cinfo-item__icon { width: 34px; height: 34px; }
  .cinfo-item__icon i { font-size: 16px; }
}
