/* ============================================================
   EXCELLENT PRINT — Design System
   Modern Corporate Minimalism
   Plus Jakarta Sans · Navy + White + Orange
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --ep-navy:        #0F2D5B;
  --ep-navy-dark:   #081E3F;
  --ep-navy-light:  #1A4FA0;
  --ep-blue-mid:    #1E5FA5;
  --ep-orange:      #E85D24;
  --ep-orange-dark: #C44B18;
  --ep-orange-bg:   #FFF4EF;

  /* Neutrals */
  --ep-white:       #FFFFFF;
  --ep-bg:          #F5F6F8;
  --ep-bg-alt:      #EEF0F4;
  --ep-surface:     #FFFFFF;
  --ep-border:      #E2E5EA;
  --ep-border-mid:  #CDD1D9;

  /* Text */
  --ep-text:        #1A1F2E;
  --ep-text-mid:    #4A5568;
  --ep-text-muted:  #8896AB;
  --ep-text-white:  #FFFFFF;

  /* Status */
  --ep-success:     #1A7F4B;
  --ep-warning:     #C07F00;
  --ep-danger:      #C0392B;

  /* Layout */
  --ep-radius:      8px;
  --ep-radius-lg:   16px;
  --ep-radius-xl:   24px;
  --ep-shadow-sm:   0 1px 3px rgba(15,45,91,.06), 0 1px 2px rgba(15,45,91,.04);
  --ep-shadow:      0 4px 16px rgba(15,45,91,.08), 0 2px 6px rgba(15,45,91,.04);
  --ep-shadow-lg:   0 12px 40px rgba(15,45,91,.10), 0 4px 12px rgba(15,45,91,.06);

  /* Nav height */
  --ep-nav-h:       68px;

  /* Transition */
  --ep-ease:        cubic-bezier(.4,0,.2,1);
  --ep-dur:         180ms;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ep-text);
  background: var(--ep-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
.ep-display {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1, .ep-h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
h2, .ep-h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
h3, .ep-h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); font-weight: 600; line-height: 1.3; }
h4, .ep-h4 { font-size: 1.0625rem; font-weight: 600; line-height: 1.35; }
.ep-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ep-caption { font-size: .8125rem; color: var(--ep-text-muted); }

/* ── Layout ──────────────────────────────────────────────────── */
.ep-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .ep-container { padding: 0 32px; } }
@media (min-width: 1200px) { .ep-container { padding: 0 48px; } }

.ep-section { padding: 80px 0; }
.ep-section--sm { padding: 48px 0; }
.ep-section--lg { padding: 112px 0; }
.ep-section-title { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.ep-section-label { color: var(--ep-orange); margin-bottom: 12px; }
.ep-section-subtitle {
  font-size: 1.0625rem;
  color: var(--ep-text-mid);
  margin-top: 16px;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.ep-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--ep-radius);
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1;
  transition: all var(--ep-dur) var(--ep-ease);
  white-space: nowrap;
}
.ep-btn:focus-visible { outline: 3px solid var(--ep-orange); outline-offset: 3px; }

.ep-btn--primary {
  background: var(--ep-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,93,36,.35);
}
.ep-btn--primary:hover {
  background: var(--ep-orange-dark);
  box-shadow: 0 6px 20px rgba(232,93,36,.40);
  transform: translateY(-1px);
}
.ep-btn--primary:active { transform: translateY(0); }

.ep-btn--navy {
  background: var(--ep-navy);
  color: #fff;
}
.ep-btn--navy:hover {
  background: var(--ep-navy-dark);
  transform: translateY(-1px);
}

.ep-btn--outline {
  border: 1.5px solid var(--ep-navy);
  color: var(--ep-navy);
  background: transparent;
}
.ep-btn--outline:hover {
  background: var(--ep-navy);
  color: #fff;
}

.ep-btn--ghost {
  color: var(--ep-navy);
  background: transparent;
}
.ep-btn--ghost:hover { background: var(--ep-bg); }

.ep-btn--white {
  background: #fff;
  color: var(--ep-navy);
}
.ep-btn--white:hover { background: var(--ep-bg); }

.ep-btn--wa {
  background: #25D366;
  color: #fff;
}
.ep-btn--wa:hover { background: #1EBD5A; transform: translateY(-1px); }

.ep-btn--sm { padding: 9px 20px; font-size: .875rem; }
.ep-btn--lg { padding: 17px 36px; font-size: 1.0625rem; }
.ep-btn--full { width: 100%; justify-content: center; }

/* ── Top Bar ──────────────────────────────────────────────────── */
.ep-topbar {
  background: var(--ep-navy-dark);
  color: rgba(255,255,255,.80);
  font-size: .8125rem;
  padding: 8px 0;
}
.ep-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ep-topbar a { color: rgba(255,255,255,.85); }
.ep-topbar a:hover { color: #fff; }
.ep-topbar__contact { display: flex; align-items: center; gap: 20px; }
.ep-topbar__item { display: flex; align-items: center; gap: 6px; }
.ep-topbar__highlight { color: var(--ep-orange); font-weight: 600; }

/* ── Navigation ──────────────────────────────────────────────── */
.ep-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--ep-border);
  height: var(--ep-nav-h);
  box-shadow: var(--ep-shadow-sm);
}
.ep-nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
}
.ep-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
}
.ep-nav__logo img {
  height: 43px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Sedikit sharpen untuk retina */
  image-rendering: -webkit-optimize-contrast;
}
.ep-nav__menu {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 8px;
}
@media (min-width: 900px) {
  .ep-nav__menu { display: flex; }
}
.ep-nav__link {
  padding: 8px 14px;
  border-radius: var(--ep-radius);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ep-text-mid);
  transition: all var(--ep-dur) var(--ep-ease);
  position: relative;
}
.ep-nav__link:hover, .ep-nav__link.active { color: var(--ep-navy); }
.ep-nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--ep-orange);
  border-radius: 2px;
}

/* Dropdown */
.ep-nav__dropdown { position: relative; }
.ep-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius-lg);
  box-shadow: var(--ep-shadow-lg);
  padding: 8px;
  z-index: 300;
  /* Padding atas agar ada jembatan antara link dan dropdown */
  padding-top: 16px;
  margin-top: 0;
  /* Pseudo-element jembatan hover supaya mouse bisa gerak ke dropdown */
}
.ep-nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.ep-nav__dropdown:hover .ep-nav__dropdown-menu,
.ep-nav__dropdown:focus-within .ep-nav__dropdown-menu { display: block; }
.ep-nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: var(--ep-radius);
  font-size: .9rem;
  color: var(--ep-text-mid);
  transition: all var(--ep-dur) var(--ep-ease);
}
.ep-nav__dropdown-item:hover { background: var(--ep-bg); color: var(--ep-navy); }

/* Mobile hamburger */
.ep-nav__cta { display: flex; align-items: center; gap: 8px; margin-left: auto; }
@media (min-width: 900px) { .ep-nav__cta { margin-left: 0; } }
.ep-nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--ep-radius);
  color: var(--ep-navy);
  transition: background var(--ep-dur) var(--ep-ease);
}
.ep-nav__hamburger:hover { background: var(--ep-bg); }
@media (min-width: 900px) { .ep-nav__hamburger { display: none; } }

/* Mobile menu */
.ep-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
}
.ep-mobile-menu.open { display: flex; flex-direction: column; }
.ep-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,45,91,.5);
  backdrop-filter: blur(4px);
}
.ep-mobile-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--ep-shadow-lg);
}
.ep-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ep-border);
}
.ep-mobile-menu__body { padding: 16px 12px; flex: 1; }
.ep-mobile-menu__link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--ep-radius);
  font-weight: 500;
  color: var(--ep-text);
  transition: all var(--ep-dur) var(--ep-ease);
}
.ep-mobile-menu__link:hover { background: var(--ep-bg); color: var(--ep-navy); }
.ep-mobile-menu__sub {
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--ep-border);
  margin: 4px 16px;
}
.ep-mobile-menu__sub a {
  display: block;
  padding: 8px 12px;
  font-size: .9rem;
  color: var(--ep-text-mid);
  border-radius: var(--ep-radius);
}
.ep-mobile-menu__sub a:hover { background: var(--ep-bg); color: var(--ep-navy); }
.ep-mobile-menu__footer { padding: 16px 20px; border-top: 1px solid var(--ep-border); display: flex; flex-direction: column; gap: 10px; }

/* ── Hero ────────────────────────────────────────────────────── */
.ep-hero {
  background: linear-gradient(135deg, var(--ep-navy-dark) 0%, var(--ep-navy) 50%, var(--ep-blue-mid) 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ep-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.ep-hero::after {
  content: '';
  position: absolute;
  right: -120px; top: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,36,.12) 0%, transparent 65%);
  border-radius: 50%;
}
.ep-hero__inner { position: relative; z-index: 1; }
.ep-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,36,.15);
  border: 1px solid rgba(232,93,36,.3);
  color: #FFB494;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ep-hero__title { color: #fff; margin-bottom: 20px; }
.ep-hero__title span { color: #FFB494; }
.ep-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: rgba(255,255,255,.80);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.ep-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.ep-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.ep-hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.ep-hero__stat-num span { color: var(--ep-orange); }
.ep-hero__stat-label { font-size: .875rem; color: rgba(255,255,255,.65); margin-top: 4px; }

/* Hero image side */
.ep-hero__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) {
  .ep-hero__grid { grid-template-columns: 1fr 1fr; }
  .ep-hero { padding: 112px 0; }
}
.ep-hero__visual {
  display: none;
}
@media (min-width: 900px) {
  .ep-hero__visual {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
  }
}
.ep-hero__card-float {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
  border-radius: var(--ep-radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 360px;
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.ep-trust { background: var(--ep-bg); border-bottom: 1px solid var(--ep-border); }
.ep-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px 0;
}
.ep-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ep-trust__icon {
  width: 44px; height: 44px;
  background: var(--ep-navy);
  border-radius: var(--ep-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.ep-trust__num { font-size: 1.375rem; font-weight: 800; color: var(--ep-navy); line-height: 1; }
.ep-trust__lbl { font-size: .8125rem; color: var(--ep-text-muted); margin-top: 2px; }

/* ── Cards ───────────────────────────────────────────────────── */
.ep-card {
  background: var(--ep-white);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius-lg);
  padding: 32px;
  transition: all var(--ep-dur) var(--ep-ease);
}
.ep-card:hover {
  border-color: var(--ep-border-mid);
  box-shadow: var(--ep-shadow);
  transform: translateY(-2px);
}
.ep-card__icon {
  width: 52px; height: 52px;
  background: var(--ep-navy);
  border-radius: var(--ep-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.ep-card__icon svg { width: 24px; height: 24px; color: #fff; }
.ep-card__icon--orange { background: var(--ep-orange-bg); }
.ep-card__icon--orange svg { color: var(--ep-orange); }
.ep-card__title { margin-bottom: 10px; }
.ep-card__desc { color: var(--ep-text-mid); font-size: .9375rem; line-height: 1.65; }
.ep-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ep-navy);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 20px;
  transition: gap var(--ep-dur) var(--ep-ease);
}
.ep-card__link:hover { gap: 10px; color: var(--ep-orange); }

/* Grid layouts */
.ep-grid-2 { display: grid; gap: 24px; }
.ep-grid-3 { display: grid; gap: 24px; }
.ep-grid-4 { display: grid; gap: 24px; }
@media (min-width: 640px) { .ep-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .ep-grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 640px) { .ep-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ep-grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── Services Section ────────────────────────────────────────── */
.ep-service-card {
  background: var(--ep-white);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius-lg);
  overflow: hidden;
  transition: all var(--ep-dur) var(--ep-ease);
  display: flex;
  flex-direction: column;
}
.ep-service-card:hover {
  border-color: var(--ep-navy);
  box-shadow: var(--ep-shadow-lg);
  transform: translateY(-3px);
}
.ep-service-card__head {
  background: var(--ep-navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ep-service-card__head--orange { background: var(--ep-orange); }
.ep-service-card__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: var(--ep-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ep-service-card__icon svg { width: 22px; height: 22px; color: #fff; }
.ep-service-card__name { color: #fff; font-size: 1.0625rem; font-weight: 700; }
.ep-service-card__tagline { color: rgba(255,255,255,.75); font-size: .8125rem; margin-top: 2px; }
.ep-service-card__body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.ep-service-card__desc { color: var(--ep-text-mid); font-size: .9375rem; line-height: 1.65; flex: 1; }
.ep-service-card__footer { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ── Steps (How it works) ────────────────────────────────────── */
.ep-steps { display: grid; gap: 0; }
@media (min-width: 768px) { .ep-steps { grid-template-columns: repeat(5, 1fr); } }
.ep-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px 32px;
}
.ep-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: var(--ep-border);
}
@media (max-width: 767px) {
  .ep-step::after { display: none; }
  .ep-step { flex-direction: row; text-align: left; padding: 0 0 24px; gap: 16px; }
}
.ep-step:last-child::after { display: none; }
.ep-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ep-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1875rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
@media (max-width: 767px) { .ep-step__num { margin-bottom: 0; } }
.ep-step:nth-child(even) .ep-step__num { background: var(--ep-orange); }
.ep-step__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--ep-navy); }
.ep-step__desc { font-size: .875rem; color: var(--ep-text-mid); }

/* ── Why Us ──────────────────────────────────────────────────── */
.ep-why { background: var(--ep-navy); color: #fff; }
.ep-why .ep-section-label { color: rgba(255,255,255,.5); }
.ep-why .ep-section-subtitle { color: rgba(255,255,255,.7); }
.ep-why__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ep-why__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--ep-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFB494;
}
.ep-why__icon svg { width: 22px; height: 22px; }
.ep-why__title { color: #fff; font-size: 1.0625rem; font-weight: 700; margin-bottom: 8px; }
.ep-why__desc { color: rgba(255,255,255,.65); font-size: .9375rem; line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.ep-faq { max-width: 760px; margin: 0 auto; }
.ep-faq__item {
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--ep-dur) var(--ep-ease);
}
.ep-faq__item.open { border-color: var(--ep-navy); }
.ep-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ep-navy);
  user-select: none;
  transition: background var(--ep-dur) var(--ep-ease);
}
.ep-faq__q:hover { background: var(--ep-bg); }
.ep-faq__chevron {
  width: 24px; height: 24px;
  border: 1.5px solid var(--ep-border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--ep-dur) var(--ep-ease), background var(--ep-dur) var(--ep-ease);
  color: var(--ep-text-muted);
}
.ep-faq__item.open .ep-faq__chevron {
  transform: rotate(180deg);
  background: var(--ep-navy);
  border-color: var(--ep-navy);
  color: #fff;
}
.ep-faq__a {
  display: none;
  padding: 0 24px 20px;
  color: var(--ep-text-mid);
  font-size: .9375rem;
  line-height: 1.75;
  border-top: 1px solid var(--ep-border);
  padding-top: 16px;
}
.ep-faq__item.open .ep-faq__a { display: block; }

/* ── Testimonial ─────────────────────────────────────────────── */
.ep-testi-card {
  background: var(--ep-white);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius-lg);
  padding: 28px;
}
.ep-testi-card__stars { color: var(--ep-orange); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.ep-testi-card__text { color: var(--ep-text-mid); font-size: .9375rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.ep-testi-card__author { display: flex; align-items: center; gap: 12px; }
.ep-testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ep-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.ep-testi-card__name { font-weight: 700; font-size: .9375rem; color: var(--ep-navy); }
.ep-testi-card__role { font-size: .8125rem; color: var(--ep-text-muted); }

/* ── Quote Form / CTA ────────────────────────────────────────── */
.ep-cta-section {
  background: linear-gradient(135deg, var(--ep-orange) 0%, #C44B18 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ep-cta-section::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

/* ── Forms ───────────────────────────────────────────────────── */
.ep-form-group { margin-bottom: 20px; }
.ep-label-text {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ep-text);
  margin-bottom: 6px;
}
.ep-label-text .req { color: var(--ep-orange); margin-left: 2px; }
.ep-input, .ep-select, .ep-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--ep-border);
  border-radius: var(--ep-radius);
  font-size: .9375rem;
  color: var(--ep-text);
  background: var(--ep-white);
  transition: border-color var(--ep-dur) var(--ep-ease), box-shadow var(--ep-dur) var(--ep-ease);
  outline: none;
}
.ep-input::placeholder, .ep-textarea::placeholder { color: var(--ep-text-muted); }
.ep-input:focus, .ep-select:focus, .ep-textarea:focus {
  border-color: var(--ep-navy);
  box-shadow: 0 0 0 3px rgba(15,45,91,.08);
}
.ep-textarea { resize: vertical; min-height: 120px; }
.ep-form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .ep-form-row--2 { grid-template-columns: 1fr 1fr; } }
.ep-form-error { font-size: .8125rem; color: var(--ep-danger); margin-top: 4px; }
.ep-form-note { font-size: .8125rem; color: var(--ep-text-muted); margin-top: 6px; }

/* ── WA Float Button ─────────────────────────────────────────── */
.ep-wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 0;
  filter: drop-shadow(0 4px 16px rgba(37,211,102,.4));
  transition: filter var(--ep-dur) var(--ep-ease);
}
.ep-wa-float:hover { filter: drop-shadow(0 6px 24px rgba(37,211,102,.55)); }
.ep-wa-float__btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--ep-dur) var(--ep-ease);
}
.ep-wa-float__btn:hover { transform: scale(1.08); }
.ep-wa-float__btn svg { width: 28px; height: 28px; }
.ep-wa-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(.9); opacity: .5; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { opacity: 0; }
}

/* ── Assistant Widget ────────────────────────────────────────── */
.ep-assistant {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.ep-assistant__toggle {
  width: 52px; height: 52px;
  background: var(--ep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--ep-shadow);
  transition: all var(--ep-dur) var(--ep-ease);
  cursor: pointer;
}
.ep-assistant__toggle:hover { background: var(--ep-navy-light); transform: scale(1.05); }
.ep-assistant__toggle svg { width: 24px; height: 24px; }
.ep-assistant__window {
  display: none;
  flex-direction: column;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 180px);
  background: #fff;
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius-xl);
  box-shadow: var(--ep-shadow-lg);
  overflow: hidden;
}
.ep-assistant__window.open { display: flex; }
.ep-assistant__header {
  background: var(--ep-navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ep-assistant__avatar {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ep-assistant__avatar svg { width: 20px; height: 20px; color: #fff; }
.ep-assistant__header-title { color: #fff; font-weight: 700; font-size: .9375rem; }
.ep-assistant__header-sub { color: rgba(255,255,255,.65); font-size: .75rem; }
.ep-assistant__close { margin-left: auto; color: rgba(255,255,255,.7); cursor: pointer; padding: 4px; }
.ep-assistant__close:hover { color: #fff; }
.ep-assistant__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ep-assistant__bubble {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: var(--ep-radius-lg);
  font-size: .9rem;
  line-height: 1.6;
}
.ep-assistant__bubble--bot {
  background: var(--ep-bg);
  color: var(--ep-text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.ep-assistant__bubble--user {
  background: var(--ep-navy);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.ep-assistant__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}
.ep-assistant__quick-btn {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--ep-border);
  border-radius: 99px;
  font-size: .8125rem;
  color: var(--ep-navy);
  cursor: pointer;
  transition: all var(--ep-dur) var(--ep-ease);
}
.ep-assistant__quick-btn:hover { background: var(--ep-navy); color: #fff; border-color: var(--ep-navy); }
.ep-assistant__input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--ep-border);
  flex-shrink: 0;
}
.ep-assistant__input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--ep-border);
  border-radius: 99px;
  font-size: .9rem;
  outline: none;
  transition: border-color var(--ep-dur) var(--ep-ease);
}
.ep-assistant__input:focus { border-color: var(--ep-navy); }
.ep-assistant__send {
  width: 38px; height: 38px;
  background: var(--ep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--ep-dur) var(--ep-ease);
}
.ep-assistant__send:hover { background: var(--ep-orange); }
.ep-assistant__send svg { width: 16px; height: 16px; }

/* ── Footer ──────────────────────────────────────────────────── */
.ep-footer { background: var(--ep-navy-dark); color: rgba(255,255,255,.75); }
.ep-footer__main { padding: 64px 0 48px; }
.ep-footer__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 640px) { .ep-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ep-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.ep-footer__brand { max-width: 280px; }
.ep-footer__logo-text {
  font-size: 1.3125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.ep-footer__logo-text span { color: var(--ep-orange); }
.ep-footer__desc { font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }
.ep-footer__social { display: flex; gap: 8px; }
.ep-footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--ep-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--ep-dur) var(--ep-ease);
}
.ep-footer__social a:hover { background: var(--ep-orange); color: #fff; }
.ep-footer__heading {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 20px;
}
.ep-footer__links { display: flex; flex-direction: column; gap: 10px; }
.ep-footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color var(--ep-dur) var(--ep-ease);
}
.ep-footer__links a:hover { color: #fff; }
.ep-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  margin-bottom: 12px;
}
.ep-footer__contact-icon { flex-shrink: 0; margin-top: 2px; opacity: .5; }
.ep-footer__contact-icon svg { width: 16px; height: 16px; }
.ep-footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ep-footer__copy { font-size: .8125rem; color: rgba(255,255,255,.4); }
.ep-footer__legal { display: flex; gap: 20px; }
.ep-footer__legal a { font-size: .8125rem; color: rgba(255,255,255,.4); }
.ep-footer__legal a:hover { color: rgba(255,255,255,.75); }

/* ── Utilities ───────────────────────────────────────────────── */
.ep-bg-navy     { background: var(--ep-navy); }
.ep-bg-light    { background: var(--ep-bg); }
.ep-text-center { text-align: center; }
.ep-text-navy   { color: var(--ep-navy); }
.ep-text-orange { color: var(--ep-orange); }
.ep-text-muted  { color: var(--ep-text-muted); }
.ep-mt-8  { margin-top: 8px; }
.ep-mt-16 { margin-top: 16px; }
.ep-mt-24 { margin-top: 24px; }
.ep-mt-32 { margin-top: 32px; }
.ep-mb-8  { margin-bottom: 8px; }
.ep-mb-16 { margin-bottom: 16px; }
.ep-mb-32 { margin-bottom: 32px; }
.ep-hidden   { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Admin base styles (minimal) ──────────────────────────────── */
.ep-admin-body { background: #F0F2F5; min-height: 100vh; }
.ep-admin-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 240px;
  background: var(--ep-navy-dark);
  overflow-y: auto;
  z-index: 300;
}
.ep-admin-main { margin-left: 240px; min-height: 100vh; }
@media (max-width: 900px) {
  .ep-admin-sidebar { transform: translateX(-100%); transition: transform var(--ep-dur) var(--ep-ease); }
  .ep-admin-sidebar.open { transform: translateX(0); }
  .ep-admin-main { margin-left: 0; }
}
.ep-admin-topbar {
  background: #fff;
  border-bottom: 1px solid var(--ep-border);
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--ep-shadow-sm);
}
.ep-admin-content { padding: 28px; }
.ep-admin-card {
  background: #fff;
  border-radius: var(--ep-radius-lg);
  border: 1px solid var(--ep-border);
  padding: 24px;
}
.ep-admin-table { width: 100%; border-collapse: collapse; }
.ep-admin-table th {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ep-text-muted);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--ep-border);
}
.ep-admin-table td {
  padding: 14px 16px;
  font-size: .9rem;
  border-bottom: 1px solid var(--ep-border);
  vertical-align: middle;
}
.ep-admin-table tr:last-child td { border-bottom: none; }
.ep-admin-table tr:hover td { background: var(--ep-bg); }

/* Badge */
.ep-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
}
.ep-badge--green  { background: #DCFCE7; color: #166534; }
.ep-badge--blue   { background: #DBEAFE; color: #1E40AF; }
.ep-badge--orange { background: #FFEDD5; color: #9A3412; }
.ep-badge--red    { background: #FEE2E2; color: #991B1B; }
.ep-badge--gray   { background: var(--ep-bg); color: var(--ep-text-muted); }

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .ep-nav, .ep-topbar, .ep-wa-float, .ep-assistant,
  .ep-footer, .ep-cta-section { display: none !important; }
  body { font-size: 12pt; }
}

/* ══════════════════════════════════════════════════════════════
   PRINTER STAGE ANIMATION — Hero Visual
   ══════════════════════════════════════════════════════════════ */

.ep-printer-stage {
  position: relative;
  width: 380px;
  height: 360px;
  flex-shrink: 0;
}

/* ── Printer Cards ─────────────────────────────────────────── */
.ep-pcard {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Card utama */
.ep-pcard--main {
  width: 220px;
  padding: 22px 20px 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: ep-float-main 4.5s ease-in-out infinite;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.08);
}

/* Card kecil kiri atas */
.ep-pcard--tl {
  width: 130px;
  padding: 14px 12px;
  top: 8px;
  left: -12px;
  z-index: 2;
  opacity: .75;
  animation: ep-float-tl 4.5s ease-in-out infinite .6s;
  transform: rotate(-4deg);
}

/* Card kecil kanan bawah */
.ep-pcard--br {
  width: 138px;
  padding: 14px 12px;
  bottom: 8px;
  right: -12px;
  z-index: 2;
  opacity: .78;
  animation: ep-float-br 4.5s ease-in-out infinite 1.1s;
  transform: rotate(3deg);
}

@keyframes ep-float-main {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-14px); }
}
@keyframes ep-float-tl {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-9px); }
}
@keyframes ep-float-br {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-11px); }
}

/* SVG dalam card */
.ep-pcard__svg { width: 100%; height: auto; display: block; }

/* Badge "Unit Aktif" */
.ep-pcard__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.28);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: .6875rem;
  font-weight: 700;
  color: #4ADE80;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ep-pcard__dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: ep-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ep-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .25; }
}

/* Label card kecil */
.ep-pcard__label {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* Info di card utama */
.ep-pcard__info { text-align: center; }
.ep-pcard__name {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  transition: opacity .25s ease;
}
.ep-pcard__brand {
  font-size: .6875rem;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
  transition: opacity .25s ease;
}

/* ── Animasi dalam SVG ──────────────────────────────────────── */
/* Paper keluar dari printer */
.ep-paper {
  animation: ep-print-paper 3.6s ease-in-out infinite;
}
@keyframes ep-print-paper {
  0%, 35%  { transform: translateY(0);    opacity: 0; }
  45%      { opacity: 1; }
  75%, 100%{ transform: translateY(20px); opacity: 0; }
}

/* Scan line berjalan */
.ep-scan {
  animation: ep-scan-move 3.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes ep-scan-move {
  0%       { stroke-dashoffset: 120; opacity: 0; }
  20%      { opacity: .8; }
  50%      { stroke-dashoffset: -120; opacity: .8; }
  70%, 100%{ stroke-dashoffset: -120; opacity: 0; }
}
.ep-scan { stroke-dasharray: 120; }

/* ── Info Slide Panel ───────────────────────────────────────── */
.ep-slide-info {
  position: absolute;
  bottom: 48px;
  right: -8px;
  background: rgba(15,45,91,.85);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 160px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 4;
  animation: ep-float-br 4.5s ease-in-out infinite .8s;
}
.ep-slide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ep-slide-row:last-child { border-bottom: none; }
.ep-slide-key {
  font-size: .6875rem;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.ep-slide-val {
  font-size: .75rem;
  font-weight: 700;
  color: #FFB494;
  transition: opacity .25s ease;
}

/* ── Slide Dots ─────────────────────────────────────────────── */
.ep-slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.ep-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all .35s ease;
  display: block;
}
.ep-slide-dot--on {
  width: 20px;
  border-radius: 3px;
  background: #E85D24;
}

/* ── Ticker ─────────────────────────────────────────────────── */
.ep-ticker-wrap {
  position: absolute;
  bottom: -14px;
  left: -20px;
  right: -20px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 99px;
  padding: 6px 0;
  overflow: hidden;
  z-index: 5;
}
.ep-ticker {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: ep-ticker-scroll 22s linear infinite;
}
.ep-ticker-item {
  font-size: .6875rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
  flex-shrink: 0;
}
@keyframes ep-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Responsive: sembunyikan di mobile ──────────────────────── */
@media (max-width: 899px) {
  .ep-printer-stage { display: none; }
}
