/* =============================================================
   MAXCOOL BATAM — DESIGN SYSTEM v3
   Mobile-first • Premium UX • Micro-animations • Glassmorphism
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #0A1A3D;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: #F77A1B; color: white; }

:root {
  /* Brand palette */
  --brand-navy: #0A1A3D;
  --brand-navy-deep: #050E24;
  --brand-navy-mid: #1A2F5A;
  --brand-orange: #F77A1B;
  --brand-orange-deep: #E0670D;
  --brand-orange-light: #FFA14A;
  --brand-blue: #1E8FD5;

  /* Surfaces */
  --surface-white: #ffffff;
  --surface-cream: #FFF9F2;
  --surface-gray: #F5F7FB;
  --surface-line: #E8ECF2;
  --text-primary: #0A1A3D;
  --text-secondary: #4A5876;
  --text-muted: #8A95AC;

  /* Gradients */
  --grad-orange: linear-gradient(135deg, #FFA14A 0%, #F77A1B 50%, #E0670D 100%);
  --grad-orange-bright: linear-gradient(135deg, #FFB56B 0%, #F77A1B 50%, #D85A00 100%);
  --grad-orange-soft: linear-gradient(180deg, #FFA14A 0%, #F77A1B 60%, #E56A0E 100%);
  --grad-navy-cta: linear-gradient(180deg, #0F1F4A 0%, #050E24 100%);
  --grad-mesh: radial-gradient(at 20% 20%, rgba(247, 122, 27, .12) 0, transparent 50%),
               radial-gradient(at 80% 80%, rgba(30, 143, 213, .08) 0, transparent 50%);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(10, 26, 61, .06);
  --shadow-sm: 0 2px 8px rgba(10, 26, 61, .08);
  --shadow-md: 0 8px 24px -4px rgba(10, 26, 61, .12), 0 2px 6px rgba(10, 26, 61, .04);
  --shadow-lg: 0 20px 48px -12px rgba(10, 26, 61, .22), 0 4px 12px rgba(10, 26, 61, .06);
  --shadow-xl: 0 32px 64px -20px rgba(10, 26, 61, .3), 0 8px 20px rgba(10, 26, 61, .08);
  --shadow-orange: 0 12px 32px -8px rgba(247, 122, 27, .45);
  --shadow-orange-lg: 0 18px 48px -10px rgba(247, 122, 27, .55);
  --shadow-glow: 0 0 0 0 rgba(247, 122, 27, .7);

  /* Radii */
  --r-xs: 8px; --r-sm: 14px; --r-md: 20px; --r-lg: 28px; --r-xl: 36px; --r-pill: 999px;

  /* Layout */
  --container: 1220px;
  --container-pad: 20px;
  --nav-h: 64px;

  /* Motion */
  --ease-smooth: cubic-bezier(.25, .46, .45, .94);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--text-primary);
}
h1 { font-size: clamp(32px, 8vw, 68px); }
h2 { font-size: clamp(24px, 6vw, 48px); }
h3 { font-size: clamp(18px, 4.5vw, 22px); }
h4 { font-size: 15px; }
p { color: var(--text-secondary); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: 64px 0; position: relative; }
.section-sm { padding: 48px 0; }

/* ============================================================
   BUTTONS — with shimmer & hover states
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 14.5px; padding: 13px 24px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .3s var(--ease-spring),
              box-shadow .3s var(--ease-smooth),
              background .22s ease,
              border-color .22s ease;
  letter-spacing: .01em;
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out-expo);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(100%); }

.btn-orange { background: var(--grad-orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-orange:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange-lg); }
.btn-navy { background: var(--brand-navy); color: #fff; box-shadow: 0 8px 24px -6px rgba(10,26,61,.4); }
.btn-navy:hover { background: var(--brand-navy-deep); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 24px -6px rgba(37,211,102,.45); }
.btn-wa:hover { background: #1ea850; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--brand-navy); border-color: var(--surface-line); }
.btn-outline:hover { border-color: var(--brand-orange); color: var(--brand-orange); transform: translateY(-1px); }
.btn-ghost-white { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-ghost-white:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ============================================================
   NAVBAR — Transparent → Glass on scroll
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, height .3s ease;
  border-bottom: 1px solid transparent;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 12px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 64px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,.18)); }

.nav-links { display: none; }
.nav-cta { display: none; }

.navbar.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom-color: rgba(232, 236, 242, .6);
  box-shadow: 0 4px 24px -8px rgba(10,26,61,.08);
}

.hamburger {
  width: 44px; height: 44px; border-radius: 12px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  border: none;
  transition: background .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover, .hamburger:active { background: rgba(10, 26, 61, .08); }
.hamburger span {
  width: 22px; height: 2.5px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: transform .35s var(--ease-spring), opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: calc(var(--nav-h) + 8px); left: 12px; right: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 18px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  pointer-events: none;
  transition: all .3s var(--ease-out-expo);
  border: 1px solid rgba(255,255,255,.6);
  max-height: calc(100vh - var(--nav-h) - 24px);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  font-weight: 600; font-size: 15.5px;
  color: var(--text-primary);
  border-radius: var(--r-sm);
  transition: background .2s ease, color .2s ease, padding-left .25s var(--ease-spring);
}
.mobile-menu a::after { content: '→'; color: var(--text-muted); font-size: 18px; opacity: .5; }
.mobile-menu a:hover, .mobile-menu a.active {
  background: var(--surface-cream);
  color: var(--brand-orange);
  padding-left: 20px;
}
.mobile-menu a:hover::after, .mobile-menu a.active::after { color: var(--brand-orange); opacity: 1; }
.mobile-menu .btn { width: 100%; margin-top: 12px; justify-content: center; }
.mobile-menu .btn::after { display: none; }

/* ============================================================
   HERO — Bold orange gradient + team photo
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  padding: calc(var(--nav-h) + 12px) 0 0;
  background: var(--grad-orange-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 90%; height: 160%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.3) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.22) 0%, transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.15) 0%, transparent 30%);
  pointer-events: none; z-index: 0;
}
.hero-arc {
  position: absolute; top: -80px; right: -150px;
  width: 600px; height: 600px;
  border: 50px solid transparent;
  border-top-color: rgba(255,255,255,.12);
  border-right-color: rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
  transform: rotate(18deg);
  animation: heroArcFloat 12s ease-in-out infinite;
}
@keyframes heroArcFloat {
  0%, 100% { transform: rotate(18deg) translate(0, 0); }
  50% { transform: rotate(22deg) translate(-10px, 20px); }
}
.hero-arc-2 {
  position: absolute; bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  border: 40px solid transparent;
  border-bottom-color: rgba(255,255,255,.1);
  border-left-color: rgba(255,255,255,.1);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero-dots {
  position: absolute; right: 0; bottom: 25%;
  width: 160px; height: 140px;
  background-image: radial-gradient(circle, rgba(255,255,255,.45) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: .45; z-index: 0; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-bottom: 0;
}
.hero-copy {
  padding: 12px 0 24px;
  animation: heroRise .9s var(--ease-out-expo) both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10, 20, 50, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  padding: 10px 18px 10px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
  animation: popIn .6s var(--ease-spring) .15s backwards;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}
.hero-badge-pill .badge-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-pill .badge-text strong {
  display: block; font-size: 12px; font-weight: 800; letter-spacing: .06em;
}
.hero-badge-pill .badge-text span {
  font-size: 11px; color: rgba(255,255,255,.7); font-weight: 500;
}
.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 10vw, 88px);
  line-height: .96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .outline { -webkit-text-stroke: 1.8px #fff; color: transparent; }
.hero-title .dark { color: var(--brand-navy-deep); }
.hero-desc {
  font-size: clamp(14px, 3.8vw, 18px);
  color: rgba(255,255,255,.95);
  line-height: 1.62;
  max-width: 540px;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-actions .btn { flex: 1; min-width: 140px; }

.hero-team {
  position: relative; z-index: 1;
  margin: 0 calc(var(--container-pad) * -1);
}
.hero-team img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(10,26,61,.28));
  animation: heroTeamRise 1s var(--ease-out-expo) .2s both;
}
@keyframes heroTeamRise {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to { opacity: 1; transform: none; }
}

/* ============================================================
   FEATURE STRIP — Floating card below hero
   ============================================================ */
.feature-strip {
  position: relative; z-index: 3;
  margin: 0;
  padding: 0 var(--container-pad);
  background: #fff;
}
.feature-card-wrap {
  max-width: var(--container);
  margin: -30px auto 0;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  position: relative;
}
.feature-card { text-align: center; padding: 0 4px; position: relative; }
.feature-card::after { display: none; }

.feature-icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-orange);
  transition: transform .5s var(--ease-spring);
}
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.05); }
.feature-card h4 { font-size: 13.5px; font-weight: 900; letter-spacing: .04em; margin-bottom: 6px; text-transform: uppercase; }
.feature-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head { text-align: center; margin-bottom: 40px; position: relative; }
.section-head-left { text-align: left; margin-bottom: 32px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-orange);
  padding: 7px 14px;
  background: #FFF1E2;
  border: 1px solid #FFD9B0;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--brand-orange); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.section-head h2 { margin-bottom: 12px; }
.section-head .lede {
  max-width: 640px; margin: 0 auto;
  font-size: 15px; line-height: 1.7;
}

/* ============================================================
   SERVICES CAROUSEL
   ============================================================ */
.svc-section { background: var(--surface-white); position: relative; }
.svc-head-row { margin-bottom: 28px; }
.svc-head-row h2 { margin-bottom: 10px; }
.svc-head-row p { font-size: 14.5px; max-width: 560px; }

.svc-nav {
  display: flex; gap: 8px;
  margin-top: 20px;
  justify-content: flex-start;
}
.svc-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--surface-line);
  color: var(--brand-navy);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease-smooth);
  box-shadow: var(--shadow-sm);
  -webkit-tap-highlight-color: transparent;
}
.svc-arrow:hover:not(:disabled), .svc-arrow:active:not(:disabled) {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}
.svc-arrow:disabled { opacity: .35; cursor: not-allowed; }

.svc-carousel {
  overflow: hidden;
  margin: 0 calc(var(--container-pad) * -1);
  padding: 0 var(--container-pad) 8px;
}
.svc-track {
  display: flex; gap: 14px;
  transition: transform .55s var(--ease-out-expo);
  will-change: transform;
  padding-bottom: 6px;
}
.svc-card {
  flex: 0 0 82%;
  background: #fff;
  border: 1.5px solid var(--surface-line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: transform .35s var(--ease-smooth), box-shadow .35s var(--ease-smooth), border-color .25s ease;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.svc-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 16px;
  box-shadow: var(--shadow-orange);
  transition: transform .4s var(--ease-spring);
}
.svc-card:hover .svc-card-icon { transform: rotate(-6deg) scale(1.06); }
.svc-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.25; }
.svc-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; min-height: 62px; }
.svc-card-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-orange); background: #FFF1E2;
  padding: 4px 9px; border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.svc-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--brand-navy);
  transition: gap .22s ease, color .2s;
}
.svc-card:hover .svc-card-link { color: var(--brand-orange); gap: 10px; }

.svc-dots { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.svc-dot {
  width: 24px; height: 4px; border-radius: 4px;
  background: var(--surface-line);
  transition: all .3s ease;
  cursor: pointer; border: none; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.svc-dot.active { background: var(--brand-orange); width: 40px; }

/* ============================================================
   BIG CTA
   ============================================================ */
.big-cta {
  background: var(--grad-navy-cta);
  border-radius: var(--r-lg);
  padding: 48px 24px;
  text-align: center; color: #fff;
  position: relative; overflow: hidden; isolation: isolate;
}
.big-cta::before {
  content: ''; position: absolute;
  top: -40%; left: -20%; width: 80%; height: 180%;
  background: radial-gradient(ellipse, rgba(247,122,27,.22) 0%, transparent 55%);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.big-cta::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 18px 18px; z-index: 0;
}
.big-cta-inner { position: relative; z-index: 1; }
.big-cta .eyebrow { background: rgba(247,122,27,.15); border-color: rgba(247,122,27,.3); color: var(--brand-orange-light); }
.big-cta h2 { color: #fff; font-size: clamp(28px, 7vw, 56px); margin-bottom: 12px; line-height: 1; }
.big-cta h2 .gold { color: var(--brand-orange-light); }
.big-cta p { color: rgba(255,255,255,.75); font-size: 14.5px; max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }

.cta-phone {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--grad-orange);
  padding: 6px 6px 6px 20px;
  border-radius: var(--r-pill);
  margin: 0 auto;
  box-shadow: var(--shadow-orange-lg);
  transition: transform .3s var(--ease-spring);
  max-width: 100%;
}
.cta-phone:hover { transform: translateY(-2px) scale(1.01); }
.cta-phone-text { display: flex; flex-direction: column; padding-right: 16px; text-align: left; }
.cta-phone-label { font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.95); margin-bottom: 2px; }
.cta-phone-number { font-family: 'Archivo Black', sans-serif; font-size: 17px; color: #fff; letter-spacing: .02em; line-height: 1.1; white-space: nowrap; }
.cta-phone-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  color: #25D366; flex-shrink: 0;
}

/* ============================================================
   PROCESS (Dark bg)
   ============================================================ */
.process-section {
  background: var(--brand-navy-deep);
  color: #fff;
  position: relative; overflow: hidden;
}
.process-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(247,122,27,.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(30,143,213,.1) 0%, transparent 40%);
  pointer-events: none;
}
.process-section .eyebrow { background: rgba(247,122,27,.12); color: var(--brand-orange-light); border-color: rgba(247,122,27,.3); }
.process-section h2 { color: #fff; }
.process-section .lede { color: rgba(255,255,255,.68); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 20px; position: relative; z-index: 1; }
.process-step { text-align: center; position: relative; padding: 20px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); transition: transform .4s var(--ease-smooth), background .25s ease; }
.process-step:hover { background: rgba(255,255,255,.06); transform: translateY(-2px); }
.process-num {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo Black', sans-serif; font-size: 20px;
  color: var(--brand-orange-light);
  transition: all .35s var(--ease-spring);
}
.process-step:hover .process-num {
  background: var(--grad-orange); color: #fff;
  border-color: var(--brand-orange);
  transform: rotate(-6deg) scale(1.06);
  box-shadow: var(--shadow-orange);
}
.process-step h4 { color: #fff; font-size: 14.5px; margin-bottom: 6px; }
.process-step p { color: rgba(255,255,255,.6); font-size: 12.5px; line-height: 1.6; }

/* ============================================================
   SHOWCASE (Before/After)
   ============================================================ */
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.showcase-card {
  background: #fff; border-radius: var(--r-md);
  overflow: hidden; border: 1.5px solid var(--surface-line);
  transition: transform .35s var(--ease-smooth), box-shadow .35s ease, border-color .25s ease;
}
.showcase-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand-orange); }
.showcase-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--surface-line); }
.showcase-imgbox { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #fff; }
.showcase-imgbox img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-smooth); }
.showcase-card:hover .showcase-imgbox img { transform: scale(1.06); }
.showcase-label {
  position: absolute; top: 10px; left: 10px;
  background: rgba(10,26,61,.9);
  color: #fff;
  font-size: 9.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--r-xs);
}
.showcase-label.after { background: var(--brand-orange); }
.showcase-info { padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.showcase-info h4 { font-size: 14px; margin-bottom: 2px; }
.showcase-info .loc { font-size: 11.5px; color: var(--text-muted); }
.showcase-info .tag {
  font-size: 9.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-orange); background: #FFF1E2;
  padding: 3px 9px; border-radius: var(--r-pill); flex-shrink: 0;
}

/* ============================================================
   AREAS
   ============================================================ */
.areas-section { background: var(--surface-cream); border-top: 1px solid var(--surface-line); border-bottom: 1px solid var(--surface-line); }
.areas-layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.area-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; border: 1.5px solid var(--surface-line);
  padding: 7px 13px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600; color: var(--text-primary);
  transition: all .22s ease; cursor: default;
}
.area-chip:hover { border-color: var(--brand-orange); color: var(--brand-orange); background: #FFF8F0; transform: translateY(-1px); }
.area-chip svg { color: var(--brand-orange); flex-shrink: 0; width: 11px; height: 11px; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.blog-card {
  background: #fff; border: 1.5px solid var(--surface-line);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .35s var(--ease-smooth), box-shadow .35s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--brand-orange); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-smooth); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat {
  font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-orange); background: #FFF1E2;
  padding: 3px 9px; border-radius: var(--r-pill);
}
.blog-date { font-size: 11.5px; color: var(--text-muted); }
.blog-card h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.blog-read {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 700; color: var(--brand-navy);
  transition: gap .22s, color .2s;
}
.blog-read:hover { color: var(--brand-orange); gap: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--brand-navy-deep); color: #fff; padding: 56px 0 24px; position: relative; overflow: hidden; }
footer::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(247,122,27,.14) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; position: relative; z-index: 1; }
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(1.05); }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 18px; max-width: 340px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease-spring); color: #fff;
}
.social-btn:hover { transform: translateY(-3px) scale(1.08); }
.social-ig { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.social-fb { background: #1877F2; }
.social-tt { background: #000; border: 1px solid rgba(255,255,255,.18); }
.footer-col h4 {
  color: var(--brand-orange-light);
  font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.72); padding: 4px 0; transition: color .18s, padding-left .2s; }
.footer-col a:hover { color: var(--brand-orange-light); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { flex-shrink: 0; color: var(--brand-orange-light); margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.55; }
.footer-contact-item a:hover { color: var(--brand-orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; text-align: center;
  position: relative; z-index: 1;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-wa {
  position: fixed; bottom: 20px; right: 20px; z-index: 200;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.5);
  transition: transform .3s var(--ease-spring);
}
.floating-wa::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: #25D366;
  animation: wa-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}
@keyframes wa-ping { 0% { transform: scale(1); opacity: .6; } 80%, 100% { transform: scale(1.8); opacity: 0; } }
.floating-wa:hover { transform: scale(1.12); }

/* ============================================================
   PAGE BANNER (Inner pages)
   ============================================================ */
.page-banner {
  padding: calc(var(--nav-h) + 40px) 0 40px;
  background: var(--grad-orange-soft);
  color: #fff;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute;
  top: -40%; right: -15%;
  width: 70%; height: 160%;
  background: radial-gradient(ellipse, rgba(255,255,255,.22) 0%, transparent 55%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: rgba(255,255,255,.8);
  margin-bottom: 14px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.breadcrumb a { color: #fff; text-decoration: underline; transition: opacity .2s; }
.breadcrumb a:hover { opacity: .8; }
.page-banner h1 { color: #fff; position: relative; z-index: 1; margin-bottom: 12px; text-transform: uppercase; }
.page-banner .lede { color: rgba(255,255,255,.92); font-size: 15px; max-width: 640px; position: relative; z-index: 1; line-height: 1.65; }
.page-banner .eyebrow { background: rgba(10,26,61,.8); color: #fff; border-color: rgba(255,255,255,.15); position: relative; z-index: 1; }
.page-banner .eyebrow::before { background: #fff; }

/* ============================================================
   LAYANAN PAGE
   ============================================================ */
.cat-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
.cat-btn {
  padding: 9px 18px; border-radius: var(--r-pill);
  border: 1.5px solid var(--surface-line); background: #fff;
  font-size: 12.5px; font-weight: 700; color: var(--text-primary);
  transition: all .22s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.cat-btn:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.cat-btn.active { background: var(--grad-orange); color: #fff; border-color: var(--brand-orange); box-shadow: var(--shadow-orange); }

.layanan-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.layanan-card {
  background: #fff; border: 1.5px solid var(--surface-line);
  border-radius: var(--r-lg); padding: 26px 22px;
  transition: transform .35s var(--ease-smooth), box-shadow .35s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.layanan-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-orange);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out-expo);
}
.layanan-card:hover { border-color: var(--brand-orange); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.layanan-card:hover::before { transform: scaleX(1); }
.layanan-card .cat-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-orange); background: #FFF1E2;
  padding: 3px 9px; border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.layanan-card .svc-icon-wrap {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 14px;
  box-shadow: var(--shadow-orange);
  transition: transform .4s var(--ease-spring);
}
.layanan-card:hover .svc-icon-wrap { transform: rotate(-5deg) scale(1.05); }
.layanan-card h3 { font-size: 18px; margin-bottom: 8px; }
.layanan-card .short { font-size: 13.5px; color: var(--text-primary); font-weight: 500; margin-bottom: 10px; }
.layanan-card .desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; }
[data-cat] { display: none; }
[data-cat].show { display: block; animation: fadeIn .4s var(--ease-smooth); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   TENTANG
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about-img { position: relative; max-width: 400px; margin: 0 auto; }
.about-img img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -16px; right: -10px;
  background: var(--grad-orange); color: #fff;
  border-radius: var(--r-md); padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow-orange-lg);
}
.about-badge .big { font-family: 'Archivo Black', sans-serif; font-size: 26px; display: block; line-height: 1; }
.about-badge .sm { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .9; margin-top: 4px; display: block; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
.value-card {
  background: var(--surface-gray); border: 1.5px solid var(--surface-line);
  border-radius: var(--r-md); padding: 20px;
  transition: transform .3s var(--ease-smooth), background .25s ease, border-color .25s ease;
}
.value-card:hover { border-color: var(--brand-orange); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.value-card h4 { font-size: 14.5px; margin-bottom: 5px; }
.value-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; }
.value-icon { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; background: var(--grad-orange); color: #fff; }
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-box {
  background: #fff; border: 1.5px solid var(--surface-line);
  border-radius: var(--r-md); padding: 22px 14px; text-align: center;
  transition: transform .3s ease, border-color .25s ease, box-shadow .3s ease;
}
.stat-box:hover { border-color: var(--brand-orange); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-box .num { font-family: 'Archivo Black', sans-serif; font-size: 32px; color: var(--brand-orange); display: block; line-height: 1; }
.stat-box .lbl { font-size: 11.5px; color: var(--text-secondary); margin-top: 6px; font-weight: 600; letter-spacing: .04em; line-height: 1.3; }

/* ============================================================
   KONTAK
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  background: #fff; border: 1.5px solid var(--surface-line);
  border-radius: var(--r-md); padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .25s var(--ease-smooth), border-color .25s ease;
}
.contact-card:hover { border-color: var(--brand-orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--shadow-orange);
}
.contact-card h4 { font-size: 14px; margin-bottom: 3px; }
.contact-card p, .contact-card a { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.contact-card a:hover { color: var(--brand-orange); }
.contact-form-wrap {
  background: #fff; border: 1.5px solid var(--surface-line);
  border-radius: var(--r-lg); padding: 26px 22px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 20px; margin-bottom: 6px; }
.contact-form-wrap .sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--surface-line); border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-primary);
  background: var(--surface-gray); transition: border-color .22s, background .22s, box-shadow .22s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand-orange); background: #fff;
  box-shadow: 0 0 0 4px rgba(247,122,27,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.map-box { border-radius: var(--r-md); overflow: hidden; border: 1.5px solid var(--surface-line); margin-top: 20px; }
.map-box iframe { display: block; width: 100%; height: 240px; border: none; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.article-body {
  background: #fff; border: 1.5px solid var(--surface-line);
  border-radius: var(--r-lg); padding: 28px 20px;
}
.article-head h1 { font-size: clamp(22px, 5.5vw, 36px); margin-bottom: 14px; line-height: 1.15; text-transform: none; }
.article-img { border-radius: var(--r-md); overflow: hidden; margin: 22px 0; }
.article-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-content p { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.8; color: var(--text-primary); margin-bottom: 16px; font-weight: 400; }
.article-content h2 { font-size: 22px; margin: 32px 0 12px; text-transform: none; line-height: 1.25; }
.article-content h3 { font-size: 18px; margin: 28px 0 10px; text-transform: none; line-height: 1.3; }
.article-content strong { color: var(--brand-navy); font-weight: 700; }
.article-content ul, .article-content ol { margin: 0 0 20px 20px; }
.article-content li { font-size: 15px; line-height: 1.75; color: var(--text-primary); margin-bottom: 8px; }
.article-content blockquote {
  border-left: 3px solid var(--brand-orange);
  padding: 16px 20px;
  background: #FFF9F2;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-primary);
}
.article-content a { color: var(--brand-orange); text-decoration: underline; font-weight: 600; }
.article-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: #fff; border: 1.5px solid var(--surface-line);
  border-radius: var(--r-md); padding: 22px;
}
.sidebar-card h4 { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-orange); margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.related-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--surface-line); transition: padding-left .25s; }
.related-post:last-child { border-bottom: none; }
.related-post:hover { padding-left: 4px; }
.related-post img { width: 64px; height: 58px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.related-post span { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.4; }
.related-post:hover span { color: var(--brand-orange); }

/* FAQ block inside article */
.faq-block { margin: 24px 0; }
.faq-item {
  background: var(--surface-gray); border: 1.5px solid var(--surface-line);
  border-radius: var(--r-sm); margin-bottom: 10px; overflow: hidden;
  transition: border-color .25s;
}
.faq-item:hover { border-color: var(--brand-orange); }
.faq-q {
  padding: 14px 18px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: 14px; color: var(--text-primary);
  gap: 12px; -webkit-tap-highlight-color: transparent;
}
/* FAQ icon is SVG in markup; rotation handled via .faq-q-icon */
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease-smooth), padding .3s ease;
  padding: 0 18px;
  font-size: 13.5px; line-height: 1.7; color: var(--text-secondary);
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 18px 14px; }

/* ============================================================
   BLOG LIST
   ============================================================ */
.blog-list-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.blog-list-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1.5px solid var(--surface-line);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .35s var(--ease-smooth), box-shadow .35s ease, border-color .25s ease;
}
.blog-list-card:hover { border-color: var(--brand-orange); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-list-img { overflow: hidden; aspect-ratio: 16/10; }
.blog-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-smooth); }
.blog-list-card:hover .blog-list-img img { transform: scale(1.06); }
.blog-list-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }

/* Blog search/filter */
.blog-toolbar { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.search-box { position: relative; }
.search-box input {
  width: 100%; padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--surface-line); border-radius: var(--r-pill);
  font-size: 14px; background: #fff; outline: none;
  transition: border-color .22s, box-shadow .22s;
  -webkit-appearance: none;
}
.search-box input:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 4px rgba(247,122,27,.1); }
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s var(--ease-out-expo); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; z-index: 101; pointer-events: none;
}
.scroll-progress-bar {
  height: 100%; background: var(--grad-orange);
  width: 0%; transition: width .1s linear;
  box-shadow: 0 0 8px rgba(247,122,27,.6);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   RESPONSIVE — Tablet 640px+
   ============================================================ */
@media (min-width: 640px) {
  :root { --container-pad: 28px; }
  .section { padding: 80px 0; }
  .feature-card-wrap { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; padding: 36px 28px; }
  .svc-card { flex: 0 0 calc((100% - 14px) / 2); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-list-grid { grid-template-columns: repeat(2, 1fr); }
  .layanan-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-title { font-size: clamp(44px, 8vw, 88px); }
}

/* ============================================================
   RESPONSIVE — Desktop 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  :root { --nav-h: 80px; --container-pad: 24px; }
  .section { padding: 96px 0; }

  /* Navbar links appear */
  .nav-links {
    display: flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.6);
    padding: 6px;
    border-radius: var(--r-pill);
    box-shadow: 0 8px 24px -6px rgba(10,26,61,.12);
  }
  .nav-links a {
    font-size: 14px; font-weight: 600; color: var(--text-primary);
    padding: 9px 18px; border-radius: var(--r-pill);
    transition: color .2s, background .2s;
  }
  .nav-links a:hover { color: var(--brand-orange); }
  .nav-links a.active { background: var(--brand-navy); color: #fff; }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-navy); color: #fff;
    padding: 12px 22px; border-radius: var(--r-pill);
    font-size: 14px; font-weight: 700;
    box-shadow: 0 8px 22px -4px rgba(10,26,61,.38);
    transition: transform .22s, background .22s;
  }
  .nav-cta:hover { background: var(--brand-navy-deep); transform: translateY(-1px); }
  .navbar.scrolled .nav-links { background: transparent; border-color: transparent; box-shadow: none; padding: 4px; }
  .hamburger { display: none; }
  .mobile-menu { display: none; }
  .nav-logo img { height: 56px; }

  /* Hero */
  .hero { min-height: 100vh; padding: calc(var(--nav-h) + 20px) 0 0; }
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; min-height: calc(100vh - var(--nav-h) - 20px); }
  .hero-copy { padding-bottom: 80px; }
  .hero-team { margin: 0; align-self: end; padding-bottom: 0; }
  .hero-team img { max-width: 640px; margin-left: auto; }
  .hero-actions .btn { flex: none; }
  .hero-arc { top: -100px; right: -200px; width: 1200px; height: 1200px; border-width: 80px; }
  .hero-arc-2 { bottom: -300px; left: -200px; width: 900px; height: 900px; border-width: 60px; }
  .hero-dots { width: 220px; height: 180px; background-size: 12px 12px; }

  /* Feature strip */
  .feature-strip { margin-top: -60px; padding: 0 24px 40px; background: transparent; }
  .feature-card-wrap { grid-template-columns: repeat(4, 1fr); gap: 0; padding: 32px 28px; margin-top: 0; }
  .feature-card { padding: 8px 20px; }
  .feature-card:not(:last-child)::after {
    content: ''; display: block; position: absolute;
    right: 0; top: 15%; bottom: 15%;
    width: 1px; background: var(--surface-line);
  }
  .feature-icon { width: 64px; height: 64px; border-radius: 18px; }
  .feature-card h4 { font-size: 15px; }
  .feature-card p { font-size: 12.5px; }

  /* Services */
  .svc-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
  .svc-head-row > div:first-child { flex: 1; }
  .svc-head-row h2 { max-width: 560px; }
  .svc-head-row p { font-size: 15.5px; }
  .svc-nav { margin-top: 0; flex-shrink: 0; }
  .svc-arrow { width: 52px; height: 52px; }
  .svc-track { gap: 20px; }
  .svc-card { flex: 0 0 calc((100% - 60px) / 4); padding: 28px 24px; }
  .svc-card-icon { width: 64px; height: 64px; }
  .svc-card p { min-height: 86px; }

  /* Process */
  .process-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .process-step { padding: 0 8px; background: transparent; border: none; }
  .process-step:hover { background: transparent; transform: none; }
  .process-num { width: 76px; height: 76px; border-radius: 22px; font-size: 22px; }

  /* Showcase */
  .showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  /* Areas */
  .areas-layout { grid-template-columns: 1fr 2fr; gap: 48px; }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-list-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .blog-list-card { flex-direction: row; grid-template-columns: 220px 1fr; }
  .blog-list-img { aspect-ratio: auto; width: 220px; flex-shrink: 0; }
  .blog-list-body { padding: 24px; }
  .blog-toolbar { flex-direction: row; align-items: center; justify-content: space-between; }
  .blog-toolbar .search-box { flex: 1; max-width: 400px; }

  /* Big CTA */
  .big-cta { padding: 72px 56px; border-radius: var(--r-xl); }
  .big-cta p { font-size: 16px; }
  .cta-phone { padding: 6px 6px 6px 28px; }
  .cta-phone-text { padding-right: 24px; }
  .cta-phone-label { font-size: 11px; }
  .cta-phone-number { font-size: 22px; }
  .cta-phone-icon { width: 56px; height: 56px; }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  /* Page banner */
  .page-banner { padding: calc(var(--nav-h) + 60px) 0 60px; }
  .page-banner .lede { font-size: 17px; }

  /* Layanan */
  .layanan-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  /* Tentang */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .about-img { max-width: none; }
  .about-badge { bottom: -20px; right: -20px; padding: 20px 26px; }
  .about-badge .big { font-size: 32px; }
  .stat-box { padding: 28px 20px; }
  .stat-box .num { font-size: 40px; }

  /* Kontak */
  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 40px; }
  .contact-form-wrap { padding: 36px; }
  .contact-form-wrap h3 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .map-box iframe { height: 280px; }

  /* Article */
  .article-layout { grid-template-columns: 1fr 340px; gap: 40px; }
  .article-sidebar { position: sticky; top: 96px; }
  .article-body { padding: 48px 56px; }
  .article-content p, .article-content li { font-size: 16px; }

  /* Mobile menu hidden */
  .mobile-menu { display: none !important; }
  .hamburger { display: none !important; }
}

/* ============================================================
   Very small devices
   ============================================================ */
@media (max-width: 360px) {
  .hero-title { font-size: 30px; }
  .feature-card-wrap { padding: 20px 16px; gap: 24px 12px; }
  .svc-card { flex: 0 0 90%; padding: 20px 18px; }
  .cta-phone-number { font-size: 15px; }
  .cta-phone-label { font-size: 9px; }
}

/* =========================================================
   PREMIUM UX LAYER — v3.5 "Wah Factor"
   Adds: Glass panels, magnetic buttons, parallax,
         scroll-synced reveals, gradient borders, ambient glow
   ========================================================= */

/* ---- Scroll-linked hero background animation ---- */
@keyframes slow-pan {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-20px, 10px, 0); }
}
@keyframes ambient-glow {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.08); }
}
.hero::before { animation: slow-pan 20s ease-in-out infinite; }
.hero::after { animation: ambient-glow 12s ease-in-out infinite; }

/* ---- Hero title: gradient sweep on dark text ---- */
.hero-title .dark {
  background: linear-gradient(180deg, #050E24 0%, #1A2F5A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ---- Magnetic hover buttons (premium feel) ---- */
.btn, .nav-cta, .cta-phone {
  position: relative;
  overflow: hidden;
}
.btn::after, .nav-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transform: translate(-50%, -50%);
  transition: width .5s, height .5s;
  pointer-events: none;
}
.btn:hover::after, .nav-cta:hover::after {
  width: 300px; height: 300px;
}

/* ---- Feature card: gradient border on hover ---- */
.feature-card {
  border-radius: 16px;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 14px 36px -8px rgba(247, 122, 27, .6);
}
.feature-icon { transition: all .4s cubic-bezier(.2,.8,.2,1); }

/* ---- Service cards: gradient border hover + lift ---- */
.svc-card {
  position: relative;
  transition: all .5s cubic-bezier(.2,.8,.2,1);
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, transparent, #F77A1B, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.svc-card:hover::after { opacity: 1; }
.svc-card:hover .svc-card-icon {
  transform: scale(1.08) rotate(-3deg);
}
.svc-card-icon { transition: all .45s cubic-bezier(.2,.8,.2,1); }

/* ---- Section head: animated eyebrow ---- */
.eyebrow {
  position: relative;
  overflow: hidden;
}
.eyebrow::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ---- Floating badge animation on hero pill ---- */
.hero-badge-pill {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---- Stat counter: gradient number ---- */
.stat-box .num {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Archivo Black', sans-serif;
}

/* ---- Scroll reveal variants ---- */
.reveal-fade { opacity: 0; transition: opacity .8s ease; }
.reveal-fade.in { opacity: 1; }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal-up.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
.reveal-scale.in { opacity: 1; transform: none; }
.reveal-slide-l { opacity: 0; transform: translateX(-40px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.reveal-slide-l.in { opacity: 1; transform: none; }
.reveal-slide-r { opacity: 0; transform: translateX(40px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.reveal-slide-r.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---- Process step number glow effect ---- */
.process-num::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: inherit;
  filter: blur(20px);
  opacity: 0;
  z-index: -1;
  transition: opacity .4s;
}
.process-step:hover .process-num::before { opacity: .5; }

/* ---- Counter animation on numbers ---- */
.counter-num { display: inline-block; font-variant-numeric: tabular-nums; }

/* ---- Trust signal ticker bar ---- */
.trust-bar {
  background: var(--brand-navy-deep);
  color: rgba(255, 255, 255, .85);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(247, 122, 27, .2);
  border-bottom: 1px solid rgba(247, 122, 27, .2);
}
.trust-ticker {
  display: flex;
  gap: 48px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: fit-content;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.trust-item svg {
  color: var(--brand-orange-light);
  flex-shrink: 0;
}
.trust-item .divider { color: rgba(255, 255, 255, .2); margin: 0 6px; }

/* ---- FAQ accordion ---- */
.faq-section { background: var(--surface-cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--surface-line);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item:hover { border-color: var(--brand-orange-light); }
.faq-item.open { border-color: var(--brand-orange); box-shadow: 0 8px 24px -6px rgba(247, 122, 27, .2); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  cursor: pointer;
  transition: background .2s;
}
.faq-q:hover { background: var(--surface-gray); }
.faq-q-icon {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-q-icon {
  background: var(--grad-orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- Testimonial cards (new section) ---- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border: 1.5px solid var(--surface-line);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: 0 20px 48px -16px rgba(10, 26, 61, .18);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  line-height: 1;
  padding-top: 8px;
  box-shadow: var(--shadow-orange);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin: 12px 0 16px;
  color: #F5A623;
}
.testi-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-line);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.testi-info h5 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.testi-info span { font-size: 12px; color: var(--text-muted); }

/* ---- Pricing card teaser ---- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--surface-line);
  border-radius: 28px;
  padding: 36px 28px;
  position: relative;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
}
.price-card.popular {
  background: var(--grad-navy-cta);
  color: #fff;
  transform: scale(1.04);
  border: none;
}
.price-card.popular::before {
  content: 'POPULER';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-orange);
}
.price-card:hover:not(.popular) { transform: translateY(-6px); border-color: var(--brand-orange); box-shadow: var(--shadow-lg); }
.price-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 12px;
}
.price-card.popular .price-cat { color: var(--brand-orange-light); }
.price-card h3 { font-size: 22px; margin-bottom: 16px; }
.price-card.popular h3 { color: #fff; }
.price-amount { font-family: 'Archivo Black', sans-serif; font-size: 44px; line-height: 1; margin-bottom: 4px; }
.price-card.popular .price-amount { color: var(--brand-orange-light); }
.price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-card.popular .price-note { color: rgba(255, 255, 255, .6); }
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  color: var(--text-secondary);
  line-height: 1.5;
}
.price-card.popular .price-list li { color: rgba(255, 255, 255, .8); }
.price-list li::before {
  content: '✓';
  color: var(--brand-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card.popular .price-list li::before { color: var(--brand-orange-light); }

/* ---- Mobile-first improvements ---- */
@media (max-width: 768px) {
  /* Better touch targets */
  .btn, .cat-btn, .nav-cta { min-height: 48px; }

  /* Tighter section padding on mobile */
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  /* Hero mobile: enable scroll snap */
  .hero-title { font-size: clamp(38px, 10vw, 56px); line-height: .96; }
  .hero-desc { font-size: 15px; }
  .hero-badge-pill { padding: 10px 18px 10px 10px; }

  /* Section head on mobile */
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 34px); }
  .section-head .lede { font-size: 14.5px; }

  /* Feature strip: make it vertical and tight */
  .feature-card-wrap { padding: 20px 16px; gap: 10px; border-radius: 20px; }
  .feature-icon { width: 52px; height: 52px; border-radius: 14px; }
  .feature-card h4 { font-size: 13px; }
  .feature-card p { font-size: 11.5px; line-height: 1.45; }

  /* Services on mobile: single column with bigger spacing */
  .svc-card { padding: 24px 22px; border-radius: 22px; }
  .svc-card h3 { font-size: 17px; }
  .svc-card-icon { width: 56px; height: 56px; border-radius: 16px; }

  /* Stats grid */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-box { padding: 20px 12px; border-radius: 16px; }
  .stat-box .num { font-size: 30px; }
  .stat-box .lbl { font-size: 11px; }

  /* Values grid */
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-radius: 18px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 28px 22px 22px; border-radius: 20px; }

  /* Pricing */
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card.popular { transform: none; }

  /* FAQ */
  .faq-q { padding: 18px 20px; font-size: 14px; gap: 12px; }
  .faq-a-inner { padding: 0 20px 20px; font-size: 14px; }

  /* Trust ticker — slower on mobile */
  .trust-ticker { animation-duration: 35s; gap: 36px; }
  .trust-item { font-size: 12px; }

  /* Blog list card on mobile */
  .blog-list-card { border-radius: 18px; }
  .blog-list-img { aspect-ratio: 16/9; }
  .blog-list-body { padding: 20px 20px 22px; }
  .blog-list-body h3 { font-size: 17px; line-height: 1.3; }

  /* Breadcrumb mobile */
  .breadcrumb { font-size: 12px; flex-wrap: wrap; }

  /* Sidebar on mobile stacks cleanly */
  .sidebar-card { padding: 22px; border-radius: 18px; }

  /* Big CTA tighter */
  .big-cta { padding: 40px 24px; border-radius: 24px; }
  .big-cta h2 { font-size: clamp(28px, 8vw, 38px); }
  .big-cta p { font-size: 14.5px; }
}

/* ---- Ultra-small (< 380px) ---- */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 34px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .cta-phone-number { font-size: 17px; }
  .feature-card-wrap { padding: 18px 12px; }
}

/* ---- Reduce motion for accessibility ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Print styles ---- */
@media print {
  .navbar, .mobile-menu, .floating-wa, .trust-bar, .big-cta { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: none; }
}

/* =========================================================
   HERO VISUAL — Animated dashboard replacing team placeholder
   Shows team photo when real PNG is available,
   surrounded by floating stat cards, rings, badges
   ========================================================= */

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: end;
  width: 100%;
  height: 540px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* ---- Background glow orb ---- */
.hv-orb {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,190,80,.12) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-pulse 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orb-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .8; }
  50%       { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ---- Photo (works when real team.png is in place) ---- */
.hv-photo-wrap {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 380px; max-width: 90%;
  z-index: 3;
}
.hv-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(10,26,61,.35));
  animation: heroTeamRise 1s cubic-bezier(.2,.8,.2,1) .15s both;
}
/* Soft gradient fade at bottom to blend into page */
.hv-photo-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #E56A0E 0%, transparent 100%);
  pointer-events: none;
}

/* ---- Floating stat cards ---- */
.hv-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 12px 36px -8px rgba(10,26,61,.22), 0 2px 8px rgba(10,26,61,.06);
  z-index: 5;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.6);
}
.hv-card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFA14A, #F77A1B);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(247,122,27,.4);
}
.hv-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: #0A1A3D;
  line-height: 1;
  margin-bottom: 2px;
}
.hv-card-lbl {
  font-size: 11px;
  font-weight: 600;
  color: #6B7A99;
  letter-spacing: .04em;
}

/* Card positions */
.hv-card-1 { top: 60px;  left: -20px; }
.hv-card-2 { top: 40px;  right: -10px; }
.hv-card-3 { bottom: 120px; right: -24px; }

/* ---- Service badge chips ---- */
.hv-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10,26,61,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 14px rgba(10,26,61,.3);
}
.hv-badge svg { color: #FFA14A; flex-shrink: 0; }

.hv-badge-1 { bottom: 240px; left:  0px; }
.hv-badge-2 { top:    160px; left: -30px; }
.hv-badge-3 { bottom: 160px; right: 5px; }

/* ---- Orbit rings ---- */
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.hv-ring-1 {
  width: 480px; height: 480px;
  animation: ring-spin 24s linear infinite;
  border-style: dashed;
  border-color: rgba(255,255,255,.14);
}
.hv-ring-2 {
  width: 360px; height: 360px;
  animation: ring-spin 16s linear infinite reverse;
  border-color: rgba(255,190,80,.22);
}
@keyframes ring-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- Float keyframe variants ---- */
.hv-float-a { animation: float-a 4.5s ease-in-out infinite; }
.hv-float-b { animation: float-b 5.5s ease-in-out infinite; }
.hv-float-c { animation: float-c 6s   ease-in-out infinite; }
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(-1.5deg); }
}

/* ---- Since label ---- */
.hv-since {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  white-space: nowrap;
  z-index: 6;
  letter-spacing: .02em;
  text-shadow: 0 1px 4px rgba(10,26,61,.25);
}
.hv-since strong { color: #fff; font-weight: 800; }

/* ---- Scroll reveal for cards ---- */
.hv-card, .hv-badge {
  opacity: 0;
  transform: translateY(20px) scale(.95);
  animation: hv-reveal .7s cubic-bezier(.2,.8,.2,1) forwards;
}
.hv-card-1  { animation-delay: .4s; }
.hv-card-2  { animation-delay: .55s; }
.hv-card-3  { animation-delay: .7s; }
.hv-badge-1 { animation-delay: .85s; }
.hv-badge-2 { animation-delay: .95s; }
.hv-badge-3 { animation-delay: 1.05s; }
@keyframes hv-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .hv-card-1 { left: 0; }
  .hv-card-3 { right: 0; }
  .hv-badge-2 { left: 0; }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-visual { height: 400px; margin-top: 32px; }
  .hv-photo-wrap { width: 300px; }
  .hv-ring-1 { width: 360px; height: 360px; }
  .hv-ring-2 { width: 260px; height: 260px; }
  .hv-orb    { width: 300px; height: 300px; }
  .hv-card-1 { top: 20px; left: 20px; }
  .hv-card-2 { top: 20px; right: 20px; }
  .hv-card-3 { bottom: 100px; right: 20px; }
  .hv-badge-1 { bottom: 200px; left: 10px; }
  .hv-badge-2 { top: 120px; left: 10px; }
  .hv-badge-3 { bottom: 120px; right: 10px; }
}
@media (max-width: 768px) {
  .hero-visual { height: 340px; }
  .hv-card { padding: 10px 14px; gap: 9px; border-radius: 14px; }
  .hv-card-icon { width: 34px; height: 34px; border-radius: 10px; }
  .hv-card-num { font-size: 15px; }
  .hv-card-lbl { font-size: 10px; }
  .hv-card-1 { top: 10px; left: 8px; }
  .hv-card-2 { top: 10px; right: 8px; }
  .hv-card-3 { bottom: 90px; right: 8px; }
  .hv-badge { font-size: 11px; padding: 6px 13px; }
  .hv-badge-1 { bottom: 170px; left: 4px; }
  .hv-badge-2 { top: 100px; left: 4px; display: none; }
  .hv-badge-3 { bottom: 110px; right: 4px; }
  .hv-ring-1  { width: 280px; height: 280px; }
  .hv-ring-2  { width: 200px; height: 200px; }
  .hv-orb     { width: 240px; height: 240px; }
  .hv-photo-wrap { width: 240px; }
  .hv-since { font-size: 11px; }
}

/* ---- Fix photo fade to match hero gradient bottom color ---- */
.hv-photo-fade {
  background: linear-gradient(to top, #E56A0E 0%, rgba(229,106,14,0) 100%) !important;
}

/* ---- Pull card-3 and badge-3 left so they don't overflow ---- */
@media (min-width: 1025px) {
  .hv-card-3  { right: 8px; }
  .hv-badge-3 { right: 8px; }
  /* card-2 fix */
  .hv-card-2  { right: 8px; }
}

/* ---- Larger logo when scrolled (compensate for nav-cta taking space) ---- */
.navbar.scrolled .nav-logo img { filter: none; }

/* ---- Final overflow fix for hero-visual ---- */
.hero { overflow: hidden; }
.hero-inner { overflow: visible; }
.hero-visual { overflow: visible; }

/* Bring card-3 and badge-3 fully inside on desktop */
@media (min-width: 1025px) {
  .hv-card-3  { right: 24px; bottom: 110px; }
  .hv-badge-3 { right: 16px; bottom: 180px; }
  .hv-card-2  { right: 24px; top: 30px; }
  .hv-card-1  { left: 10px;  top: 50px; }
  .hv-badge-1 { left: 10px;  bottom: 240px; }
  .hv-badge-2 { left: 0;     top: 155px; }
}

/* =========================================================
   SERVE SECTION — "Melayani Berbagai Segmen"
   ========================================================= */
.serve-section {
  background: var(--brand-navy-deep);
  position: relative;
  overflow: hidden;
}
/* Mesh glow in BG */
.serve-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(247,122,27,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(30,143,213,.08) 0%, transparent 55%);
  pointer-events: none;
}
/* Halftone dots */
.serve-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ---- Header ---- */
.serve-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.serve-head h2 {
  color: #fff;
  font-size: clamp(30px, 4.5vw, 52px);
  margin-bottom: 16px;
}
.serve-head-accent {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.serve-sub {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.serve-head .eyebrow {
  background: rgba(247,122,27,.12);
  border-color: rgba(247,122,27,.28);
  color: var(--brand-orange-light);
}
.serve-head .eyebrow::before { background: var(--brand-orange-light); }

/* ---- Cards grid ---- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
  margin-bottom: 40px;
}

.serve-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 28px 26px;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
/* Top accent bar on hover */
.serve-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
  border-radius: 24px 24px 0 0;
}
.serve-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(247,122,27,.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,.35), 0 0 0 1px rgba(247,122,27,.12);
}
.serve-card:hover::before { transform: scaleX(1); }

/* Icon */
.serve-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(247,122,27,.15);
  border: 1px solid rgba(247,122,27,.25);
  color: var(--brand-orange-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all .3s ease;
  flex-shrink: 0;
}
.serve-card:hover .serve-icon {
  background: var(--grad-orange);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-orange);
  transform: scale(1.08) rotate(-4deg);
}

/* Label */
.serve-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

/* Description */
.serve-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Tags */
.serve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.serve-tags li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-orange-light);
  background: rgba(247,122,27,.12);
  border: 1px solid rgba(247,122,27,.2);
  padding: 4px 10px;
  border-radius: 99px;
  transition: all .2s;
}
.serve-card:hover .serve-tags li {
  background: rgba(247,122,27,.2);
  border-color: rgba(247,122,27,.4);
}

/* ---- Bottom CTA strip ---- */
.serve-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 24px 32px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.serve-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.serve-cta-text strong {
  color: #fff;
  font-size: 17px;
  font-family: 'Archivo Black', sans-serif;
}
.serve-cta-text span {
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .serve-grid { grid-template-columns: 1fr; gap: 14px; }
  .serve-card { padding: 22px 20px; border-radius: 20px; }
  .serve-head { margin-bottom: 36px; }
  .serve-sub { font-size: 14.5px; }
  .serve-cta-strip { padding: 20px 22px; flex-direction: column; align-items: flex-start; }
  .serve-cta-strip .btn { width: 100%; justify-content: center; }
}
