/* ============================================================
   FAKULTAS JOKI — style.css
   Dark Luxury Premium Landing Page
   Palet: Navy (#08111f), Gold (#f6c453), Off-white (#f0f4ff)
   Font: Plus Jakarta Sans (display), Inter (body)
============================================================ */

/* ============================================================
   0. CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --navy:         #08111f;
  --navy-2:       #0c1a30;
  --navy-3:       #0f2040;
  --navy-4:       #162e52;
  --gold:         #f6c453;
  --gold-2:       #e8b23e;
  --gold-dim:     rgba(246, 196, 83, .12);
  --gold-glow:    rgba(246, 196, 83, .25);

  --white:         #fff;
  --text-primary:  #f0f4ff;
  --text-secondary:#8a96b0;
  --text-muted:    #4a556b;

  --border:        rgba(255, 255, 255, .07);
  --border-gold:   rgba(246, 196, 83, .2);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 68px;

  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}


/* ============================================================
   1. RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Pengaman global: elemen apapun tidak boleh melebihi lebar parent/viewport */
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); max-width: 100%; }

/* svg/i dari Font Awesome kadang punya width/height inline besar — kunci juga */
svg, i { max-width: 100%; }


/* ============================================================
   2. UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden; /* kunci elemen dekoratif (glow dsb) di dalam section */
  width: 100%;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
}

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


/* ============================================================
   3. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold::after { background: rgba(255, 255, 255, .12); }
.btn--gold:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px var(--gold-glow); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.btn--lg   { font-size: 1rem; padding: 17px 36px; }
.btn--full { width: 100%; justify-content: center; }
.btn i     { font-size: 1.1em; }


/* ============================================================
   4. NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), border-color var(--transition);
}

.navbar--scrolled {
  background: rgba(8, 17, 31, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-dot {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-accent { color: var(--gold); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--white); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger__bar {
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}


/* ============================================================
   5. HERO SECTION
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero__glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(246,196,83,.06) 0%, transparent 65%);
  top: -100px; right: -200px;
  pointer-events: none;
}

.hero__glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,46,82,.8) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 60px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  max-width: 100%;
}

.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

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

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 20px;
  word-break: break-word;
}

.hero__headline .accent {
  background: linear-gradient(135deg, var(--gold) 0%, #fde68a 60%, #f6c453 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__sub strong { color: var(--text-primary); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-pill i { color: var(--gold); font-size: .85rem; }

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 30px 22px;
  box-sizing: border-box;
}

.hero__dashboard {
  background: rgba(12, 26, 48, .85);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero__dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,196,83,.3), transparent);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.dash-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dash-dot--red    { background: #ff5f57; }
.dash-dot--yellow { background: #febc2e; }
.dash-dot--green  { background: #28c840; }

.dash-title {
  font-size: .75rem;
  color: var(--text-muted);
  margin-left: 8px;
  font-family: var(--font-body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: #4ade80;
  font-weight: 600;
  flex-shrink: 0;
}

.dash-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.dash-orders {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.dash-order {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 0;
}

.dash-order-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.dash-order-icon--gold   { background: rgba(246,196,83,.15); color: var(--gold); }
.dash-order-icon--blue   { background: rgba(99,179,237,.12); color: #63b3ed; }
.dash-order-icon--purple { background: rgba(167,139,250,.12); color: #a78bfa; }

.dash-order-meta  { flex: 1; min-width: 0; }
.dash-order-name  { font-size: .8rem; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-order-type  { font-size: .7rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.dash-order-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge--done   { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.2); }
.badge--wip    { background: rgba(246,196,83,.12); color: var(--gold); border: 1px solid rgba(246,196,83,.2); }
.badge--review { background: rgba(167,139,250,.12); color: #a78bfa; border: 1px solid rgba(167,139,250,.2); }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dash-stat {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 8px;
  min-width: 0;
}

.dash-stat-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-stat-label {
  font-size: .65rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Floating badges — SATU-SATUNYA definisi posisi (tidak ada duplikasi di bawah) */
.float-badge {
  position: absolute;
  background: rgba(12, 26, 48, .92);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
  max-width: 200px;
  z-index: 2;
  box-sizing: border-box;
}

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

.float-badge--1 { top: 0;    right: 0;  animation-delay: 0s; }
.float-badge--2 { bottom: 8px; left: 0; animation-delay: 1.3s; }

.float-badge__icon {
  width: 32px; height: 32px;
  background: var(--gold-dim);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

.float-badge__text strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}
.float-badge__text span { font-size: .68rem; color: var(--text-secondary); white-space: nowrap; }


/* ============================================================
   6. LAYANAN
============================================================ */
.layanan { background: var(--navy-2); }

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

.layanan__card {
  background: rgba(15, 32, 64, .5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  min-width: 0;
}

.layanan__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(246,196,83,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.layanan__card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 0 0 1px var(--border-gold), 0 24px 48px rgba(0,0,0,.4), 0 0 60px rgba(246,196,83,.08);
}
.layanan__card:hover::before { opacity: 1; }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}

.card-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(246,196,83,.1);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.card-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.layanan__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.layanan__card > p {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-price {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.card-price strong {
  color: var(--gold);
  font-size: .95rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-secondary);
}

.card-features li i {
  color: var(--gold);
  font-size: .7rem;
  width: 14px;
  flex-shrink: 0;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  padding: 10px 20px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  transition: all var(--transition);
  justify-content: center;
  background: transparent;
  font-family: var(--font-display);
}
.card-cta:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.layanan__card--featured {
  border-color: var(--border-gold);
  background: rgba(246, 196, 83, .04);
}
.layanan__card--featured::after {
  content: 'TERPOPULER';
  position: absolute;
  top: 0; right: 24px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 0 0 10px 10px;
}


/* ============================================================
   7. KEUNGGULAN
============================================================ */
.keunggulan__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.keunggulan__left .section-sub { margin-bottom: 36px; }

.keunggulan__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-card {
  background: rgba(12, 26, 48, .7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transition: all var(--transition);
  min-width: 0;
}
.benefit-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: .78rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ============================================================
   8. CARA ORDER
============================================================ */
.cara-order { background: var(--navy-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 60px;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-gold), var(--border), var(--border-gold));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.step-num-wrap {
  position: relative;
  margin-bottom: 16px;
}

.step-circle {
  width: 72px; height: 72px;
  background: var(--navy-3);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all var(--transition);
}

.step-num {
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step:hover .step-circle {
  background: rgba(246, 196, 83, .1);
  border-color: var(--gold);
  transform: scale(1.06);
}

.step h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step p {
  font-size: .8rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.steps-cta { text-align: center; }


/* ============================================================
   9. TESTIMONI
============================================================ */
.testi-track-wrap {
  overflow: hidden;
  width: 100%;
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.testi-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: rgba(12, 26, 48, .7);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: var(--border-gold); }

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: .8rem;
}

.testi-text {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  word-wrap: break-word;
}

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

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-4);
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.testi-info { min-width: 0; }
.testi-info strong {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testi-info span {
  font-size: .72rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.slider-btn:hover {
  background: rgba(246, 196, 83, .1);
  border-color: var(--border-gold);
  color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 6px; height: 6px;
  border-radius: 100px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
  flex-shrink: 0;
}
.slider-dot.is-active { background: var(--gold); width: 20px; }


/* ============================================================
   10. FAQ
============================================================ */
.faq { background: var(--navy-2); }

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(12, 26, 48, .5);
  transition: border-color var(--transition);
}
.faq__item.is-open { border-color: var(--border-gold); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition);
  background: transparent;
}
.faq__question:hover { background: rgba(255, 255, 255, .03); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.is-open .faq-icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq__item.is-open .faq__answer { max-height: 300px; }

.faq__answer p {
  padding: 16px 24px 20px;
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.78;
  border-top: 1px solid var(--border);
}


/* ============================================================
   11. CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(246,196,83,.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  border: 1px solid rgba(246, 196, 83, .12);
  border-radius: 28px;
  padding: 72px 40px;
  background: rgba(12, 26, 48, .4);
  backdrop-filter: blur(8px);
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-inner .btn { font-size: 1.05rem; padding: 18px 40px; }

.cta-note {
  margin-top: 20px;
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cta-note i { color: var(--gold); font-size: .8rem; }


/* ============================================================
   12. FOOTER
============================================================ */
.footer {
  background: #04080f;
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__tagline {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.social-btn:hover {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold);
}

.footer__col { min-width: 0; }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul li a,
.footer__col ul li span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  word-break: break-word;
}
.footer__col ul li a:hover { color: var(--gold); }

.footer__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p { font-size: .78rem; color: var(--text-muted); }

.footer__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.footer__trust i { color: var(--gold); }


/* ============================================================
   13. FLOATING WHATSAPP BUTTON (MOBILE)
============================================================ */
.float-wa {
  display: none;
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 999;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, .35);
  transition: transform var(--transition);
}
.float-wa:hover { transform: scale(1.1); }


/* ============================================================
   14. SCROLL TO TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 998;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(12, 26, 48, .9);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }


/* ============================================================
   15. SCROLL REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }


/* ============================================================
   16. RESPONSIVE — MEDIA QUERIES
   (SATU-SATUNYA blok per breakpoint — tidak ada duplikasi)
============================================================ */

/* Tablet besar: max 1024px */
@media (max-width: 1024px) {
  .hero__inner        { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__ctas,
  .hero__trust        { justify-content: center; }
  .hero__sub          { margin-left: auto; margin-right: auto; }
  .hero__visual       { max-width: 480px; margin: 0 auto; }
  .keunggulan__inner  { grid-template-columns: 1fr; gap: 48px; }
  .layanan__grid      { grid-template-columns: repeat(2, 1fr); }
  .steps              { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before      { display: none; }
  .footer__grid       { grid-template-columns: 1fr 1fr; }
}

/* Tablet kecil / mobile besar: max 860px */
@media (max-width: 860px) {
  .testi-card { flex: 0 0 calc(50% - 10px); }
}

/* Mobile: max 768px */
@media (max-width: 768px) {
  .section            { padding: 64px 0; }
  .container          { padding: 0 20px; }
  .section-header     { margin-bottom: 40px; }
  .section-title      { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .layanan__grid      { grid-template-columns: 1fr; }
  .keunggulan__grid   { grid-template-columns: 1fr; }
  .steps              { grid-template-columns: 1fr; gap: 28px; }
  .testi-card         { flex: 0 0 100%; }
  .footer__grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-inner          { padding: 40px 24px; }
  .hero__ctas         { flex-direction: column; width: 100%; }
  .hero__ctas .btn    { width: 100%; justify-content: center; }
  .hero__trust        { gap: 12px 16px; }

  .hero__visual       { padding: 20px 14px; }
  .hero__dashboard    { padding: 16px; border-radius: 18px; }

  .float-badge        { padding: 7px 10px; gap: 7px; max-width: 160px; border-radius: 12px; }
  .float-badge__icon  { width: 26px; height: 26px; font-size: .75rem; }
  .float-badge__text strong { font-size: .7rem; }
  .float-badge__text span   { font-size: .58rem; }

  .hamburger { display: flex; }
  .navbar__actions .btn--outline { display: none; }
  .navbar__menu {
    position: fixed;
    top: var(--nav-h); left: 0;
    width: 100%;
    height: calc(100dvh - var(--nav-h));
    background: rgba(8, 17, 31, .98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 0;
    transform: translateX(-100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .navbar__menu.is-open { transform: translateX(0); }
  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: block;
  }
  .navbar__menu .btn--gold {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    font-size: 1rem;
    padding: 16px;
  }

  .float-wa { display: flex; }
  .scroll-top { right: 88px; bottom: 20px; width: 40px; height: 40px; }
  .float-wa   { bottom: 20px; width: 52px; height: 52px; }
}

/* Mobile sangat kecil: max 480px */
@media (max-width: 480px) {
  .container                  { padding: 0 16px; }
  .footer__grid               { grid-template-columns: 1fr; gap: 28px; }
  .hero__badge                { font-size: .68rem; padding: 6px 12px; }
  .hero__headline             { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero__dashboard            { padding: 16px; }
  .dash-stats                 { gap: 6px; }
  .dash-stat                  { padding: 10px 6px; }
  .dash-stat-num              { font-size: 1.05rem; }
  .testi-card                 { padding: 20px; }
  .cta-inner h2               { font-size: clamp(1.5rem, 7vw, 2rem); }
  .step-circle                { width: 60px; height: 60px; font-size: 1.2rem; }
}

/* Mobile super kecil: max 380px — badge dipindah jadi statis (susun bawah) */
@media (max-width: 380px) {
  .hero__visual {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .float-badge {
    position: static;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    animation: none;
  }
  .dash-stats { grid-template-columns: 1fr 1fr 1fr; }
  .dash-stat-num { font-size: .95rem; }
  .dash-stat-label { font-size: .58rem; }
  .navbar__logo { font-size: 1rem; }
}

/* =========================================
   HERO MOBILE FIX
========================================= */

@media (max-width: 768px){

  .hero{
    min-height:auto;
    padding-top:90px;
    padding-bottom:40px;
  }

  .hero__inner{
    grid-template-columns:1fr;
    gap:32px;
    min-height:auto;
    padding:20px 0;
  }

  .hero__left{
    text-align:center;
  }

  .hero__badge{
    margin-inline:auto;
  }

  .hero__headline{
    font-size:clamp(1.9rem,8vw,2.7rem);
    line-height:1.15;
    margin-bottom:16px;
  }

  .hero__sub{
    font-size:.95rem;
    line-height:1.7;
    margin-bottom:24px;
  }

  .hero__ctas{
    width:100%;
    gap:10px;
    margin-bottom:24px;
  }

.hero__ctas{
  align-items:center;
}

.hero__ctas .btn{
  width:auto;
  min-width:220px;
  max-width:280px;
  justify-content:center;
  padding:14px 24px;
}

  .hero__trust{
    justify-content:center;
    gap:10px;
  }

  .trust-pill{
    font-size:.75rem;
  }

  /* Dashboard */

  .hero__visual{
    width:100%;
    padding:0;
  }

  .hero__dashboard{
    width:100%;
    padding:16px;
    border-radius:18px;
  }

  .dash-topbar{
    flex-wrap:wrap;
  }

  .dash-title{
    width:100%;
    margin-left:0;
    margin-top:6px;
  }

  .dash-status{
    margin-left:auto;
  }

  .dash-order{
    padding:10px;
    gap:10px;
  }

  .dash-order-name{
    font-size:.75rem;
  }

  .dash-order-type{
    font-size:.65rem;
  }

  .dash-order-badge{
    font-size:.6rem;
    padding:3px 8px;
  }

  .dash-stat{
    padding:10px 6px;
  }

  .dash-stat-num{
    font-size:1rem;
  }

  .dash-stat-label{
    font-size:.55rem;
  }

}


/* =========================================
   EXTRA SMALL DEVICE
   iPhone SE, Android kecil
========================================= */

@media (max-width: 380px){

  .hero{
    padding-top:80px;
  }

  .hero__headline{
    font-size:1.75rem;
  }

  .hero__sub{
    font-size:.9rem;
  }

  .hero__badge{
    font-size:.62rem;
    padding:6px 10px;
  }

  .dash-order{
    flex-wrap:wrap;
  }

  .dash-order-badge{
    width:100%;
    text-align:center;
  }

  .dash-stats{
    grid-template-columns:1fr;
    gap:8px;
  }

  .dash-stat{
    text-align:center;
  }

}
.navbar__logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-img{
  width:42px;
  height:42px;
  object-fit:cover;
  border-radius:12px;
}

.logo-text{
  
  font-size:1.5rem;
  font-weight:800;
  color:#fff;
}

.logo-accent{
  color:#f4c44e;
}