/* ═══════════════════════════════════════════════════════════════
   IMAGESTRO LANDING PAGE — PREMIUM DESIGN SYSTEM
   Read: B2B SaaS healthcare for Indonesian hospital buyers
   Dials: VARIANCE=6 / MOTION=4 / DENSITY=3
   ───────────────────────────────────────────────────────────────
   Rules of the system:
   • Double-bezel cards — gradient hairline border + inset highlight
   • Motion exclusively on transform/opacity with a custom spring bezier
   • backdrop-blur only on fixed/sticky chrome (nav, chat, floats)
   • Typography: Plus Jakarta Sans (display + body), JetBrains Mono (data)
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --primary: #0f4c8a;
  --primary-deep: #0c3d73;
  --primary-soft: #1a6bb5;
  --primary-light: #2cadcb;
  --accent: #13388a;
  --ink: #0b1220;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* Hairline + machined-surface system */
  --hairline: rgba(100, 116, 139, 0.16);
  --hairline-strong: rgba(15, 76, 138, 0.22);
  --inset-hi: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --card-border: linear-gradient(165deg, rgba(26, 107, 181, 0.20), rgba(148, 163, 184, 0.12) 60%, rgba(15, 76, 138, 0.14));
  --surface-blue: rgba(15, 76, 138, 0.05);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 20px -6px rgba(15, 23, 42, 0.07), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 20px 44px -16px rgba(15, 23, 42, 0.14), 0 4px 12px -6px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 40px 80px -24px rgba(15, 23, 42, 0.22), 0 12px 24px -12px rgba(15, 23, 42, 0.1);
  --shadow-primary: 0 10px 24px -8px rgba(15, 76, 138, 0.45);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s var(--ease-spring);
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Anchored sections never hide their heading under the fixed navbar */
section[id],
main[id] {
  scroll-margin-top: 96px;
}

/* Skip link — visible on first Tab, hidden otherwise */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus-visible {
  top: 0;
  color: var(--white);
}

/* One consistent keyboard focus style across the whole site */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-status.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #b91c1c;
}

.form-status.is-success {
  display: block;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #047857;
}

.form-status[hidden] {
  display: none;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

/* Cinematic grain — fixed overlay, never on a scrolling container */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-deep);
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.0625rem; }

p {
  color: var(--gray-500);
  max-width: 65ch;
}

/* ─── Buttons — machined island buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary), var(--inset-hi);
}

.btn-primary:hover {
  background: var(--primary-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(15, 76, 138, 0.45), var(--inset-hi);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--gray-700);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--inset-hi);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-1px);
  border-color: rgba(148, 163, 184, 0.5);
}

/* Nested trailing icon — "button-in-button" */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Gentle attention ring on the primary hero CTA — restrained, 3s cycle */
@keyframes ctaGlowPulse {
  0%, 100% {
    box-shadow: var(--shadow-primary), var(--inset-hi);
  }
  50% {
    box-shadow: var(--shadow-primary), var(--inset-hi), 0 0 0 7px rgba(15, 76, 138, 0.09);
  }
}

.btn-cta-main {
  animation: ctaGlowPulse 3s ease-in-out infinite;
}

.btn-cta-main:hover {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta-main {
    animation: none;
  }
}

.btn-block {
  width: 100%;
}

/* ─── Navigation — floating glass island ─── */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.12), var(--inset-hi);
  border-radius: var(--radius-pill);
  height: 60px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

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

.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark);
  background: rgba(241, 245, 249, 0.9);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
}

.nav-link:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.scroll-progress-bar {
  position: absolute;
  bottom: 6px;
  left: 20px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  width: 0;
  /* Hard cap: track = lebar navbar dikurangi inset 20px kiri + 20px kanan,
     sehingga bar tidak pernah meluber melebihi ukuran navbar. */
  max-width: calc(100% - 40px);
  transition: width 0.1s linear;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 140px 0 40px;
  background: var(--gray-50);
  overflow: hidden;
}

/* Ambient depth — two-tone navy-cyan glow (deep navy + cyan accent, matching logo) + engineering dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 480px at 85% 8%, rgba(15, 76, 138, 0.13), transparent 62%),
    radial-gradient(560px 420px at 6% 58%, rgba(44, 173, 203, 0.12), transparent 62%),
    radial-gradient(420px 320px at 50% 38%, rgba(12, 61, 115, 0.05), transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(15, 23, 42, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(62% 52% at 50% 36%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(62% 52% at 50% 36%, #000 0%, transparent 100%);
}

/* Brand accent on key hero phrase — gradient within one teal family:
   deep → primary → soft. Depth without the two-hue “AI gradient” clash. */
.text-gradient {
  background: linear-gradient(115deg, #0c3d73 0%, #0f4c8a 48%, #1a6bb5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
}

/* Two-line hero title: line 1 = product name, line 2 = benefit statement.
   Line 2 is ~36 chars, so it renders slightly smaller to fit the 780px
   container on a single line (no unwanted third wrap). */
.hero-title-line2 {
  display: block;
  font-size: 0.62em;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.15em;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--gray-500);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Emphasized ROI phrases inside the hero description */
.hero-description strong {
  color: var(--gray-700);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 56px;
  justify-content: center;
  padding-top: 32px;
  margin-top: 56px;
  border-top: 1px solid rgba(100, 116, 139, 0.18);
  position: relative;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 6px;
}

/* ─── Hero product mockup — CSS-built DICOM viewer ─── */
.hero-mockup {
  position: relative;
  width: min(700px, 100%);
  margin: 0 auto;
  margin-top: 72px;
  perspective: 1800px;
}

.mockup-frame {
  position: relative;
  padding: 10px;
  border-radius: 26px;
  border: 1px solid transparent;
  background:
    linear-gradient(#0d1424, #0d1424) padding-box,
    linear-gradient(150deg, rgba(26, 107, 181, 0.6), rgba(148, 163, 184, 0.18) 42%, rgba(44, 173, 203, 0.45)) border-box;
  box-shadow:
    0 48px 96px -28px rgba(15, 23, 42, 0.38),
    0 16px 32px -18px rgba(15, 23, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: rotateX(3.5deg);
  transition: transform 0.8s var(--ease-spring), box-shadow 0.8s var(--ease-spring);
}

.hero-mockup:hover .mockup-frame {
  transform: rotateX(1.2deg) translateY(-5px);
  box-shadow:
    0 56px 110px -30px rgba(15, 23, 42, 0.42),
    0 20px 40px -20px rgba(15, 23, 42, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mockup-window {
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--inset-hi);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: linear-gradient(180deg, #fbfcfe, #f1f5f9);
  border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #fca5a5; border: 1px solid #f87171; }
.mockup-dots span:nth-child(2) { background: #fcd34d; border: 1px solid #f59e0b; }
.mockup-dots span:nth-child(3) { background: #86efac; border: 1px solid #22c55e; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: -0.01em;
  color: var(--gray-500);
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  max-width: 300px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-lock {
  flex-shrink: 0;
  color: var(--gray-400);
  display: flex;
  align-items: center;
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.mtool {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--gray-500);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.mtool:hover {
  background: var(--gray-200);
  color: var(--dark);
}

.mtool--active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 10px -2px rgba(15, 76, 138, 0.5);
}

.mtool-divider {
  width: 1px;
  height: 16px;
  background: var(--gray-200);
  margin: 0 7px;
}

.mtool-spacer {
  flex: 1;
}

.mtool-study {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--gray-500);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.mockup-body {
  display: flex;
}

.mockup-canvas {
  position: relative;
  flex: 1;
  aspect-ratio: 10 / 9;
  background: radial-gradient(120% 130% at 50% 28%, #111c33 0%, #0a0f1e 100%);
  overflow: hidden;
  min-width: 0;
}

.xray {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.x-lungs { fill: rgba(148, 163, 184, 0.1); }
.x-heart { fill: rgba(100, 116, 139, 0.3); }
.x-dia {
  stroke: rgba(148, 163, 184, 0.5);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}
.x-bone {
  stroke: rgba(148, 163, 184, 0.78);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

.canvas-hud {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(226, 232, 240, 0.72);
  pointer-events: none;
}

.canvas-hud span {
  background: rgba(2, 6, 23, 0.42);
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: 0.02em;
}

.canvas-hud--tl { top: 12px; left: 12px; }
.canvas-hud--br { bottom: 12px; right: 12px; align-items: flex-end; }

.measure-line {
  position: absolute;
  left: 40%;
  top: 30%;
  width: 24%;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.95), rgba(34, 211, 238, 0.95));
  transform: rotate(45deg);
  transform-origin: left center;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.65);
  pointer-events: none;
}

.measure-line::before,
.measure-line::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.9);
}

.measure-line::before { left: -3px; }
.measure-line::after { right: -3px; }

.measure-label {
  position: absolute;
  left: 51%;
  top: 40.5%;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #e0f2fe;
  background: rgba(8, 47, 73, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.5);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mockup-sidebar {
  width: 92px;
  flex-shrink: 0;
  background: var(--gray-50);
  border-left: 1px solid var(--gray-100);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mthumb {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.mthumb--active {
  border-color: rgba(15, 76, 138, 0.45);
  background: rgba(15, 76, 138, 0.06);
}

.mthumb-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 7px;
  background: #0b1120;
  position: relative;
  overflow: hidden;
}

.mthumb-img::after {
  content: '';
  position: absolute;
  inset: 13% 19%;
  border-radius: 50% 50% 42% 42%;
  background: rgba(148, 163, 184, 0.28);
}

.mthumb-img--2::after {
  inset: 17% 23%;
  background: rgba(148, 163, 184, 0.2);
}

.mthumb-img--3::after {
  inset: 14% 13%;
  border-radius: 42%;
  background: rgba(148, 163, 184, 0.22);
}

.mthumb-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
}

.mthumb-add {
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--gray-300);
  border-radius: 10px;
  background: transparent;
  color: var(--gray-400);
  cursor: pointer;
  transition: all var(--transition);
}

.mthumb-add:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(15, 76, 138, 0.05);
}

.mockup-statusbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 7px 14px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-500);
}

.sb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  margin-right: 7px;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16);
}

.sb-item--right {
  margin-left: auto;
}

/* Floating status cards around the mockup */
.mockup-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.28), var(--inset-hi);
  animation: floatCard 7s var(--ease-spring) infinite;
}

.mockup-float-card--satusehat { top: -20px; right: -12px; }
.mockup-float-card--router { bottom: 64px; left: -22px; animation-delay: -3.5s; }

.mf-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  background: #059669;
  box-shadow: 0 8px 16px -6px rgba(16, 185, 129, 0.55);
}

.mockup-float-card--router .mf-icon {
  background: var(--primary);
  box-shadow: 0 8px 16px -6px rgba(15, 76, 138, 0.55);
}

.mf-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.mf-text strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
}

.mf-text span {
  font-size: 9.5px;
  color: var(--gray-500);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ─── Sections ─── */
.section {
  padding: 112px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  background: rgba(15, 76, 138, 0.07);
  border: 1px solid rgba(15, 76, 138, 0.14);
  box-shadow: var(--inset-hi);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.section-title {
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.0625rem;
  color: var(--gray-500);
  margin: 0 auto;
  max-width: 560px;
}

/* ─── Features — double-bezel strips ─── */
.features-section {
  background: var(--white);
  position: relative;
}

.asymmetric-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.feature-strip {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: var(--shadow), var(--inset-hi);
  transition: all var(--transition);
}

.feature-strip:hover {
  background: var(--white);
  border-color: rgba(15, 76, 138, 0.35);
  box-shadow: var(--shadow-md), var(--inset-hi);
  transform: translateY(-4px);
}

.feature-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(15, 76, 138, 0.07);
  border: 1px solid rgba(15, 76, 138, 0.16);
  box-shadow: var(--inset-hi);
  transition: all var(--transition);
}

.feature-strip:hover .feature-strip-icon {
  background: rgba(15, 76, 138, 0.11);
  transform: translateY(-1px);
}

.feature-strip-content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.feature-strip-content p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-500);
  margin: 0;
}

/* ─── ROI / Penghematan Section ─── */
.roi-section {
  background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 56px;
}

.roi-header-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: var(--radius-pill, 100px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 8px;
}

.roi-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin: 2.5rem 0 2rem;
  max-width: 980px;
  margin-inline: auto;
}

.roi-card {
  border-radius: 16px;
  padding: 2rem 1.75rem;
}

.roi-card--before {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.roi-card--after {
  background: #ecfdf5;
  border: 1.5px solid #6ee7b7;
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.08);
}

.roi-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.roi-card--before .roi-card-label {
  background: #fee2e2;
  color: #991b1b;
}

.roi-card--after .roi-card-label {
  background: #d1fae5;
  color: #065f46;
}

.roi-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--dark, #0f172a);
}

.roi-line-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 0.875rem;
  color: var(--gray-700, #334155);
}

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

.roi-line-item .roi-label {
  flex: 1;
  margin-right: 1rem;
}

.roi-line-item .roi-amount {
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.roi-line-item--total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
}

.roi-card--before .roi-line-item--total .roi-amount {
  color: #dc2626;
}

.roi-card--after .roi-line-item--total .roi-amount {
  color: #059669;
}

.roi-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  z-index: 2;
}

.roi-vs-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark, #0f172a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Big savings result */
.roi-result {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: #047857;
  color: #fff;
}

.roi-result-label {
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.roi-result-amount {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.roi-result-period {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.roi-result-payback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Efficiency stats row */
.roi-efficiency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 820px;
  margin-inline: auto;
}

.roi-efficiency-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e2e8f0);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.roi-efficiency-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.roi-efficiency-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.25rem;
}

.roi-efficiency-card:nth-child(1) .roi-efficiency-icon { background: #eff6ff; }
.roi-efficiency-card:nth-child(2) .roi-efficiency-icon { background: #f0fdf4; }
.roi-efficiency-card:nth-child(3) .roi-efficiency-icon { background: #fdf4ff; }

.roi-efficiency-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark, #0f172a);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.roi-efficiency-label {
  font-size: 0.8125rem;
  color: var(--gray-500, #64748b);
  line-height: 1.4;
}

.roi-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400, #94a3b8);
  margin-top: 1.5rem;
  margin-inline: auto;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .roi-comparison {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .roi-vs-divider {
    padding: 0.25rem 0;
  }

  .roi-vs-badge {
    width: 36px;
    height: 36px;
    font-size: 0.625rem;
  }

  .roi-card {
    padding: 1.5rem 1.25rem;
  }

  .roi-efficiency-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .roi-result-amount {
    font-size: 2rem;
  }
}

/* ─── Pricing ─── */
.pricing-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #f1f5f9 100%);
  padding-top: 56px;
}

/* Five tiers need more room than the default 1120px content column. */
@media (min-width: 1200px) {
    .pp-plans-section .container,
    .pricing-section .container {
        max-width: 1160px;
    }
}

.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.toggle-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  transition: color var(--transition);
}

.toggle-label.active {
  color: var(--dark);
}

.badge-discount {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.18);
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  margin-left: 4px;
  box-shadow: var(--inset-hi);
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray-300);
  border-radius: 24px;
  transition: var(--transition);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.12);
}

.slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.22);
}

input:checked + .slider {
  background: var(--primary);
}

input:checked + .slider::before {
  transform: translateX(20px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow), var(--inset-hi);
  transition: all var(--transition);
}

.pricing-card:hover {
  background: var(--white);
  border-color: rgba(15, 76, 138, 0.35);
  box-shadow: var(--shadow-md), var(--inset-hi);
  transform: translateY(-4px);
}

/* Subtle 3D tilt on desktop (JS adds .tilt-enabled) */
@media (min-width: 1025px) {
  .pricing-card.tilt-enabled {
    transition: transform 0.1s linear, box-shadow 0.3s var(--ease-spring);
    transform-style: preserve-3d;
    perspective: 800px;
  }

  .pricing-card.tilt-enabled:hover {
    transform: var(--tilt-transform, translateY(-4px));
    box-shadow: var(--shadow-lg), var(--inset-hi);
  }
}

.pricing-featured {
  border-color: rgba(15, 76, 138, 0.45);
  box-shadow: 0 28px 60px -26px rgba(15, 76, 138, 0.28), var(--inset-hi);
}

.pricing-featured .pricing-name {
  color: var(--primary-deep);
}

.pricing-featured:hover {
  box-shadow: 0 36px 72px -28px rgba(15, 76, 138, 0.4), var(--inset-hi);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 10px 22px -8px rgba(15, 76, 138, 0.6), var(--inset-hi);
}

/* “MODEL BARU” flag on the Pay-Per-Use Lite card — amber, floats on the
   top edge like the featured badge so it never shifts the card content. */
.pricing-badge--lite {
  background: #d97706;
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(217, 119, 6, 0.55), var(--inset-hi);
}

.badge-star {
  color: #5eead4;
}

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.pricing-name {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.pricing-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 76px;
}

.price-monthly,
.price-effective {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 0;
  min-height: 30px;
}

.price-yearly {
  width: 100%;
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
}

.price-period {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 400;
  line-height: 1.5;
}

.price-total {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.5;
  /* Reserve two lines so the divider sits at the same height in every
     card even when the billing note wraps (e.g. Lite/Basic/Pro). */
  min-height: 36px;
}

.pricing-desc {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 8px;
  line-height: 1.55;
  /* Reserve two lines so one-line taglines don't misalign the row. */
  min-height: 40px;
}

.pricing-section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.plabel-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 16px;
}

.pricing-features li {
  font-size: 0.8125rem;
  color: var(--gray-700);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

/* The capacity list is what users see before expanding. Reserve two lines
   per row so a wrapped “hint” in one card doesn't drop its “Lihat
   selengkapnya” control below the others. */
.pricing-card > ul.pricing-features > li {
  min-height: 54px;
}

.pricing-features li:has(.x-icon) {
  color: var(--gray-400);
}

.feature-hint {
  color: var(--gray-400);
  font-size: 0.75rem;
}

.check-icon,
.x-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg,
.x-icon svg {
  display: block;
}

.check-icon {
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.x-icon {
  background: rgba(148, 163, 184, 0.12);
  color: var(--gray-400);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

/* Domino pop-in for check icons — runs once the card reveals */
.js .pricing-card.revealed .check-icon {
  animation: iconPop 0.45s var(--ease-spring) both;
  animation-delay: calc(var(--check-index, 0) * 45ms);
}

.js .pricing-expandable.expanded .check-icon {
  animation: iconPop 0.45s var(--ease-spring) both;
  animation-delay: calc(var(--check-index, 0) * 45ms);
}

@keyframes iconPop {
  from {
    transform: scale(0.35);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.pricing-toggle-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: color var(--transition);
}

.pricing-toggle-detail:hover {
  color: var(--primary-deep);
}

.toggle-arrow {
  font-size: 0.625rem;
  margin-left: 4px;
  display: inline-flex;
  transition: transform var(--transition);
}

.pricing-toggle-detail[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

.pricing-expandable {
  display: none;
}

.pricing-expandable.open,
.pricing-expandable.expanded {
  display: block;
}

.pricing-card .pricing-card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}

.pricing-subbanner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(15, 76, 138, 0.04);
    border: 1px solid rgba(15, 76, 138, 0.16);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 32px;
    margin-bottom: 0;
}

.pricing-subbanner-content,
.pricing-subbanner-text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.pricing-subbanner-content strong:first-child {
    display: block;
    color: var(--gray-900);
    margin-bottom: 2px;
}
.pricing-subbanner-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pricing-subbanner-text a:hover {
    color: var(--primary-deep);
}

.pricing-subbanner .btn {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .pricing-subbanner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 14px;
        padding: 18px 16px;
    }
}

/* ─── Addon Banner ─── */
.support-banner {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  margin-top: 32px;
  box-shadow: var(--shadow), var(--inset-hi);
}

.support-banner--accent {
  background: var(--surface-blue);
  border-color: rgba(15, 76, 138, 0.25);
}

.support-banner .addon-title {
  color: var(--primary-deep);
}

.banner-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.banner-text {
  font-size: 0.9rem;
  color: var(--gray-700);
}

.banner-text--secondary {
  margin-top: 0.35rem;
  color: var(--gray-500);
}

.text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-link:hover {
  color: var(--primary-deep);
}

.support-banner h3,
.support-banner h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.support-banner p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0 auto;
}

.addon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.addon-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 76, 138, 0.1);
  color: var(--primary);
  border: 1px solid rgba(15, 76, 138, 0.18);
  flex-shrink: 0;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-category {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow), var(--inset-hi);
  transition: all var(--transition);
}

.faq-category:hover {
  background: var(--white);
  border-color: rgba(15, 76, 138, 0.35);
  box-shadow: var(--shadow-md), var(--inset-hi);
  transform: translateY(-3px);
}

.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 12px;
}

.faq-cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(15, 76, 138, 0.07);
  border: 1px solid rgba(15, 76, 138, 0.14);
  box-shadow: var(--inset-hi);
  flex-shrink: 0;
}

.faq-cat-title {
  font-size: 0.9375rem;
  font-weight: 700;
  flex: 1;
}

.faq-cat-count {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(15, 76, 138, 0.1);
  border: 1px solid rgba(15, 76, 138, 0.14);
  padding: 2px 9px;
  border-radius: var(--radius-pill);
}

.faq-cat-list {
  display: flex;
  flex-direction: column;
}

.faq-row {
  border-bottom: 1px solid var(--gray-200);
}

.faq-row:last-child {
  border-bottom: none;
}

.faq-row-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-row-q:hover {
  color: var(--primary);
}

.faq-row-q:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}

.faq-row-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-row-q[aria-expanded="true"] .faq-row-chevron {
  transform: rotate(180deg);
}

.faq-row-a {
  display: none;
  padding: 0 0 14px;
}

.faq-row-a.open {
  display: block;
}

.faq-row-a p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}

/* ─── Contact ─── */
.contact-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #f1f5f9 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 12px;
}

.contact-info > p {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(15, 76, 138, 0.07);
  border: 1px solid rgba(15, 76, 138, 0.14);
  box-shadow: var(--inset-hi);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a:not(.btn-whatsapp) {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #16a34a;
  color: var(--white);
  font-size: 0.9375rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: 0 10px 22px -10px rgba(22, 163, 74, 0.55), var(--inset-hi);
  transition: all var(--transition);
}

.btn-whatsapp:hover {
  background: #15803d;
  color: var(--white);
  transform: translateY(-2px);
}

.contact-register-box {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: var(--shadow), var(--inset-hi);
}

.contact-register-box h4 {
  margin-bottom: 8px;
}

.contact-register-box p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-md), var(--inset-hi);
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--gray-50);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
  box-shadow: var(--inset-hi);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(148, 163, 184, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 76, 138, 0.12), var(--inset-hi);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ─── Footer — three-column grid ─── */
.footer {
  position: relative;
  background:
    radial-gradient(760px 340px at 50% 0%, rgba(15, 76, 138, 0.14), transparent 72%),
    linear-gradient(180deg, #0d1424 0%, #0a0f1c 100%);
  color: var(--gray-400);
  padding: 0 0 28px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 156, 148, 0.55), transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.25fr;
  gap: 48px;
  padding: 64px 0 52px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  box-sizing: content-box; /* keep logo height intact — padding grows the plate, not the mark */
  padding: 10px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-400);
  max-width: 36ch;
  margin: 18px 0 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-contact-item svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

.footer-contact-item:hover {
  color: var(--white);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition), transform var(--transition);
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-pse {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
}

.footer-pse-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.22);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.pse-check {
  color: #34d399;
  flex-shrink: 0;
}

.footer-pse-note {
  font-size: 0.6875rem;
  color: var(--gray-500);
}

/* Official PSE / Komdigi logo plates (sourced from pse.komdigi.go.id) */
.footer-official-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.footer-official-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform var(--transition), box-shadow var(--transition);
}

.footer-official-plate:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-official-plate img {
  display: block;
  width: auto;
}

.footer-official-plate--pse img {
  height: 20px;
}

.footer-official-plate--komdigi img {
  height: 26px;
}

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

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
}

.product-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-by-text {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.product-by-plate {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-by-logo {
  height: 18px;
  width: auto;
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }
}

/* ─── Floating CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-primary), var(--inset-hi);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta:hover {
  background: var(--primary-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(15, 76, 138, 0.55), var(--inset-hi);
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 50%;
  color: var(--gray-500);
  box-shadow: var(--shadow), var(--inset-hi);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  color: var(--dark);
  border-color: var(--gray-400);
  transform: translateY(-2px);
}

/* ─── Lead-Gen Micro Popup ─── */
.lead-popup {
  position: fixed;
  bottom: 148px;
  right: 24px;
  z-index: 96;
  background: white;
  border-radius: 12px;
  padding: 14px 16px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  max-width: 280px;
  width: max-content;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e2e8f0;
}
.lead-popup.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lead-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
  line-height: 1;
}
.lead-popup-close:hover {
  background: #e2e8f0;
  color: #334155;
}
.lead-popup-content {
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
  padding-right: 16px;
}
.lead-popup-content strong {
  color: #0f172a;
  font-weight: 600;
}
.lead-popup-content .popup-icon {
  display: inline-block;
  margin-right: 4px;
}
.lead-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  align-self: flex-start;
}
.lead-popup-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 107, 181, 0.3);
}
.lead-popup-cta:active {
  transform: translateY(0);
}
.lead-popup.bounce .lead-popup-cta {
  animation: popupBounce 0.4s ease 0.3s;
}
@keyframes popupBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ─── Referral Banner (shown only for ?ref= visits) ─── */
.referral-banner {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(560px, calc(100vw - 32px));
  padding: 12px 16px 12px 20px;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.45);
  font-size: 0.875rem;
  animation: slideUp 0.4s var(--ease-out);
}

.referral-banner-text {
  line-height: 1.45;
}

.referral-banner-cta {
  flex-shrink: 0;
  padding: 7px 14px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background var(--transition);
}

.referral-banner-cta:hover {
  background: var(--gray-100);
}

.referral-banner-close {
  flex-shrink: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 1.125rem;
  line-height: 1;
  padding: 2px 6px;
  cursor: pointer;
  transition: color var(--transition);
}

.referral-banner-close:hover {
  color: var(--white);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 520px) {
  .referral-banner {
    bottom: 84px;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .referral-banner {
    animation: none;
  }
}
@media (max-width: 480px) {
  .lead-popup {
    bottom: 140px;
    right: 16px;
    left: 16px;
    max-width: none;
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lead-popup { transition: opacity 0.15s; transform: none; }
  .lead-popup.visible { transform: none; }
  .lead-popup.bounce .lead-popup-cta { animation: none; }
}

/* ─── Chat Widget ─── */
.chat-bubble-widget {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 95;
}

.chat-bubble-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), var(--inset-hi);
  transition: all var(--transition);
}

.chat-bubble-toggle:hover {
  transform: scale(1.06);
}

.chat-bubble-toggle .icon-close {
  display: none;
}

.chat-bubble-widget.active .chat-bubble-toggle .icon-chat {
  display: none;
}

.chat-bubble-widget.active .chat-bubble-toggle .icon-close {
  display: block;
}

.chat-bubble-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 20px;
  box-shadow: var(--shadow-lg), var(--inset-hi);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
  transition: all var(--transition);
}

.chat-bubble-panel.open,
.chat-bubble-widget.active .chat-bubble-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(180deg, #fbfcfe, #f8fafc);
  border-radius: 20px 20px 0 0;
}

.chat-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}

.chat-status-dot.online {
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16);
}

.chat-panel-title-text {
  font-size: 0.875rem;
  font-weight: 700;
}

.chat-panel-title-sub {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.chat-panel-close {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: all var(--transition);
}

.chat-panel-close:hover {
  color: var(--dark);
  background: var(--gray-100);
}

.chat-panel-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  font-size: 0.875rem;
  line-height: 1.5;
}

.chat-msg.bot {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 10px 14px;
  border-radius: 12px;
  border-top-left-radius: 4px;
}

.chat-hours-info {
  font-size: 0.75rem;
  color: var(--gray-400);
  background: var(--gray-50);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px dashed var(--gray-200);
}

.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition);
}

.chat-action-btn.telegram {
  background: #0088cc;
  color: var(--white);
  box-shadow: 0 8px 18px -8px rgba(0, 136, 204, 0.5), var(--inset-hi);
}

.chat-action-btn.telegram:hover {
  background: #006da3;
  color: var(--white);
  transform: translateY(-1px);
}

.chat-action-btn.email {
  background: var(--gray-100);
  color: var(--gray-700);
}

.chat-action-btn.email:hover {
  background: var(--gray-200);
  color: var(--dark);
}

/* ─── Testimonials (kept for hidden section) ─── */
.testimonial-section {
  background: var(--gray-50);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow), var(--inset-hi);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-md), var(--inset-hi);
  transform: translateY(-3px);
}

.testi-quote {
  color: var(--primary);
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--inset-hi);
}

.testi-meta {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.testi-facility {
  font-size: 0.6875rem;
  color: var(--gray-400);
}

/* ─── Hidden sections (Faskes / Regulasi / Implementasi) — kept styled for parity ─── */
.faskes-section,
.regulasi-section,
.implementation-section {
  background: var(--gray-50);
}

.faskes-showcase {
  max-width: 960px;
  margin: 0 auto;
}

.faskes-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.faskes-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
}

.faskes-tab.active {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.faskes-pane {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.faskes-pane.active {
  display: block;
}

.faskes-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.pane-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 10px;
}

.pane-list {
  list-style: none;
  margin-top: 12px;
}

.pane-list li {
  padding: 5px 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.workflow-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.workflow-caption {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 8px;
  text-align: center;
}

.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.detail-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(15, 76, 138, 0.08);
  color: var(--primary);
  border: 1px solid rgba(15, 76, 138, 0.14);
}

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

.regulation-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow);
}

.regulation-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-700);
  margin-bottom: 16px;
}

.regulation-title {
  font-size: 1rem;
  margin-bottom: 8px;
}

.regulation-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.regulation-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--gray-100);
  color: var(--gray-700);
}

/* ─── Zero-Install DICOM Router Section ─── */
.zero-install-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.zero-install-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 76, 138, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.zero-install-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.comparison-card {
  padding: 28px;
  border-radius: 20px;
  position: relative;
}

.comparison-card--manual {
  background: linear-gradient(160deg, rgba(239, 68, 68, 0.04), rgba(239, 68, 68, 0.01));
  border: 1px solid rgba(239, 68, 68, 0.18);
  box-shadow: var(--shadow), var(--inset-hi);
}

.comparison-card--imagestro {
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.04), rgba(16, 185, 129, 0.01));
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: var(--shadow-md), var(--inset-hi);
}

.comparison-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.comparison-card--manual .comparison-label {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.08);
}

.comparison-card--imagestro .comparison-label {
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
}

.comparison-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.comparison-list li .ci {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-top: 1px;
}

.comparison-card--manual .ci {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.comparison-card--imagestro .ci {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.zero-install-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.zi-feature-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: var(--shadow), var(--inset-hi);
  text-align: center;
  transition: all var(--transition);
}

.zi-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--inset-hi);
}

.zi-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: rgba(15, 76, 138, 0.07);
  border: 1px solid rgba(15, 76, 138, 0.16);
  box-shadow: var(--inset-hi);
  color: var(--primary);
}

.zi-feature-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.zi-feature-card p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-500);
  margin: 0;
}

.compliance-banner {
  margin-top: 32px;
  background: var(--surface-blue);
  border: 1px solid rgba(15, 76, 138, 0.16);
  border-radius: 20px;
  padding: 28px;
}

.compliance-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
}

.compliance-icon {
  font-size: 1.5rem;
}

.compliance-checkmarks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-700);
}

.checkmark-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
  font-size: 0.6875rem;
  font-weight: 700;
}

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

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}

.timeline-content h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.875rem;
}

.timeline-duration {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(15, 76, 138, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.support-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 10px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

/* ─── Scroll Reveal ─── */
/* Gated behind .js (added in <head>) so content stays visible when JS is disabled */
.js .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}

.js .scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Feature strips: directional entry with index stagger (vars set in JS) */
.js .feature-strip {
  opacity: 0;
  transform: translateY(22px) translateX(calc(var(--strip-direction, 1) * 12px));
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
  transition-delay: calc(var(--delay-index, 0) * 70ms);
}

.js .feature-strip.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.fade-up-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUpIn 0.7s var(--ease-spring) forwards;
}

.fade-up-in:nth-child(2) { animation-delay: 0.1s; }
.fade-up-in:nth-child(3) { animation-delay: 0.2s; }
.fade-up-in:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .regulation-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .faskes-pane-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 768px) {
  .section {
    padding: 4.75em 0;
  }

  .section-header {
    margin-bottom: 2.75em;
  }

  .navbar {
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 22px;
    box-shadow: var(--shadow-lg), var(--inset-hi);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav-menu.open,
  .nav-menu.mobile-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* Staggered reveal of mobile menu items */
  .nav-menu .nav-link,
  .nav-menu .nav-cta {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s var(--ease-spring), transform 0.45s var(--ease-spring);
  }

  .nav-menu.mobile-active .nav-link,
  .nav-menu.mobile-active .nav-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.mobile-active .nav-link:nth-child(1) { transition-delay: 0.05s; }
  .nav-menu.mobile-active .nav-link:nth-child(2) { transition-delay: 0.1s; }
  .nav-menu.mobile-active .nav-link:nth-child(3) { transition-delay: 0.15s; }
  .nav-menu.mobile-active .nav-link:nth-child(4) { transition-delay: 0.2s; }
  .nav-menu.mobile-active .nav-link:nth-child(5) { transition-delay: 0.25s; }
  .nav-menu.mobile-active .nav-cta { transition-delay: 0.3s; }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-cta {
    width: 100%;
    margin: 8px 0 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 110px 0 32px;
    min-height: auto;
  }

  .hero-stats {
    gap: 28px;
    margin-top: 44px;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  /* Mockup: tighten, tuck float cards */
  .hero-mockup {
    margin-top: 56px;
  }

  .mockup-float-card--satusehat {
    top: -14px;
    right: -8px;
    padding: 8px 12px;
  }

  .mockup-float-card--router {
    left: -8px;
    bottom: 48px;
    padding: 8px 12px;
  }

  .mockup-float-card--router .mf-text span {
    display: none;
  }

  .mtool-study {
    display: none;
  }

  .mockup-sidebar {
    width: 84px;
  }

  .asymmetric-features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .faq-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compliance-checkmarks {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 0.8125rem;
  }

  .back-to-top {
    bottom: 16px;
    left: 16px;
  }

  .chat-bubble-widget {
    bottom: 72px;
    right: 16px;
  }

  .chat-bubble-panel {
    width: calc(100vw - 32px);
    right: -8px;
  }

  .contact-form {
    padding: 1.75em 1.25em;
  }

  .roi-card {
    padding: 1.5em 1.25em;
  }

  .comparison-card,
  .zi-feature-card,
  .faq-category,
  .support-banner {
    padding: 1.5em 1.25em;
  }

  .pp-hero {
    padding: 7.5em 0 1.5em;
  }
}

/* ─── Responsive: Small mobile ─── */
@media (max-width: 520px) {
  .mockup-sidebar,
  .mockup-float-card--satusehat {
    display: none;
  }

  .mockup-float-card--router {
    display: none;
  }

  .mockup-canvas {
    aspect-ratio: 1 / 0.92;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-description {
    font-size: 1rem;
  }
}

/* ─── Zero-Install Section Responsive ─── */
@media (max-width: 768px) {
  .zero-install-section {
    padding-bottom: 24px;
  }

  .roi-section {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .pricing-section {
    padding-top: 40px;
  }

  .zero-install-comparison {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 0;
  }

  .zero-install-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .comparison-card {
    padding: 22px;
  }

  .zi-feature-card {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .zi-feature-icon {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .fade-up-in,
  .feature-strip,
  .mockup-float-card,
  .btn-cta-main,
  .check-icon {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
/* ─── Free Trial Perks Section ─── */
.free-trial-perks {
  background: var(--white, #fff);
  border: 1px solid var(--hairline, #e2e8f0);
  border-radius: 22px;
  padding: 36px 32px;
  margin-top: 36px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.free-perks-header {
  text-align: center;
  margin-bottom: 28px;
}

.free-perks-header h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--dark, #0f172a);
  margin-top: 8px;
  margin-bottom: 10px;
}

.free-perks-header p {
  font-size: 0.9375rem;
  color: var(--gray-500, #64748b);
  max-width: 580px;
  margin: 0 auto;
}

.free-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.free-perk-card {
  background: var(--gray-50, #f8fafc);
  border: 1px solid var(--gray-100, #f1f5f9);
  border-radius: 16px;
  padding: 20px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.free-perk-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.free-perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #0f4c8a);
  background: linear-gradient(160deg, rgba(15, 76, 138, 0.12), rgba(15, 76, 138, 0.05));
  border: 1px solid rgba(15, 76, 138, 0.14);
  margin-bottom: 14px;
}

.free-perk-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark, #0f172a);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.free-perk-card p {
  font-size: 0.8125rem;
  color: var(--gray-600, #475569);
  line-height: 1.5;
  margin: 0;
}

.free-perks-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  text-align: center;
}

.free-perks-subtext {
  font-size: 0.8125rem;
  color: var(--gray-500, #64748b);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .free-perks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .free-perks-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .free-trial-perks {
    padding: 24px 18px;
  }
}

/* ─── Hidden sections ─── */
.hidden {
  display: none !important;
}
