/* === GLOBAL RESET === */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', 'Poppins', 'Inter', sans-serif;
  font-size: 16px;
  color: #1F2A36;
  background-color: #ffffff;
  overflow-x: hidden; 
}

body.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

::selection {
  background-color: #1F2A36;
  color: #ffffff;
}

body.dark-mode ::selection {
  background-color: #ffffff;
  color: #1e1e1e;
}

/* === NAVBAR === */
.graphie-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 999;
  transition: all 0.4s ease;
}

/* Saat scroll, sembunyikan navbar */
.graphie-navbar.hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

/* === PILL NAV INSIDE NAVBAR === */
.nav-pill-menu {
  list-style: none;
  margin: 0;
  padding: 8px 24px;
  background-color: #333;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-pill-menu li a {
  color: white;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-pill-menu li a:hover {
  color: #9ED000;
}

/* === FLOATING NAVPILL === */
.floating-pill-menu {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background-color: rgb(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  padding: 8px 24px;
  border-radius: 30px;
  display: flex;
  gap: 20px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  list-style: none;
  border: 1.25px solid #1F2A36;
}

/* Saat scroll, munculkan */
.floating-pill-menu.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-pill-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 4px 0;
  transition: color 0.3s;
}

.floating-pill-menu li a:hover {
  color: #9ED000;
}

/* === FLOATING CART === */
.cart-pill {
  cursor: pointer;
}

#floatingCart i {
  font-size: 16px;
  color: white;
}

#floatingCart span {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.cart-bump {
  animation: cartBump 0.3s ease;
}

@keyframes cartBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.cart-dropdown {
  position: fixed;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px;
  max-width: 420px;
  width: calc(100vw - 40px);
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s ease;
  z-index: 1200;
  border: 1px solid rgba(31,42,54,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(10px);
}

.cart-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cart-dropdown-inner {
  padding: 14px;
  background: transparent;
  border-radius: 12px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.cart-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.cart-clear {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 15px;
}
.cart-clear:hover { color: #9ED000; }

.cart-items {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 12px;
  display: grid;
  gap: 10px;
  padding-right: 6px;
  color: white;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
}
.cart-item .left {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cart-item .title {
  font-weight: 600;
  color: #1F2A36;
}

.cart-item .price {
  font-weight: 700;
  color: #1f2a36;
}

.cart-item .remove-btn {
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 16px;
}
.cart-item .remove-btn:hover { color: #d12e2e; }

.cart-footer {
  border-top: 1px solid rgba(31,42,54,0.06);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total span { color: white; font-size: 13px; }
.cart-total strong { color: white; font-size: 16px; }

.cart-actions {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.cart-actions .btn {
  flex: 1;
  text-align: center;
}

/* === Language === */
.lang-selector {
  position: relative;
  display: inline-block;
}

.btn-lang {
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1F2A36;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-lang:hover {
  background-color: #1F2A36;
  color: white;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 20;
  font-family: 'Poppins';
  font-weight: 600;
}

.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
}

.lang-option {
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.lang-option .ID {
  text-decoration: none;
  color: #1F2A36;
}

.lang-option .EN {
  text-decoration: none;
  color: #1F2A36;
}

/* === SOCIAL MEDIA === */
.btn-more {
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1F2A36;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-more:hover {
  background: #1F2A36;
  color: white;
}

.floating-social-menu {
  position: fixed;
  top: 25px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  transition: all 0.3s ease;
}

.circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #1F2A36;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #1F2A36;
}

.circle-btn:hover {
  background-color: #1F2A36;
  color: white;
}

.d-none {
  display: none !important;
}

/* === OFFCANVAS === */
.offcanvas-list{
  text-align: center;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #1f2a36;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #007bff; /* biru saat hover (bisa ganti warna brand) */
}

/* === HERO === */
.hero-section {
  padding: 100px 0;
  margin-top: 70px;
  margin-bottom: 35px;
  text-align: center;
}

.hero-section h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  font-size: 55px;
  color: #1F2A36;
  margin-bottom: 16px;
  z-index: 2;
}

.hero-section p {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.hide {
  opacity: 0;
  transform: translateY(40px);
}

.hero-title {
  transition-delay: 0.2s;
}

.hero-subtitle {
  transition-delay: 0.5s;
}

/* === GALAXY BACKGROUND LAYER FIX === */
.galaxy-container {
  display: none;
}

/* galaxy container di bawah teks */
body.dark-mode .galaxy-container {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  animation: spin 60s linear infinite;
}

/* blur halo yang besar, paling bawah */
body.dark-mode .galaxy-circle-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  filter: blur(40px);
  opacity: 0.3;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* lingkaran utama solid color, di atas blur */
body.dark-mode .galaxy-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* gambar galaxy, paling atas */
body.dark-mode .galaxy-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.4;
  clip-path: circle(50% at 50% 50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* teks tetap di atas semua */
.col-lg-6.position-relative > h1,
.col-lg-6.position-relative > p,
.col-lg-6.position-relative > div.d-flex {
  position: relative;
  z-index: 10;
}

/* animasi putar pelan */
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* === MARQUEE === */
.hero-slider-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 420px;
  z-index: 0;

  /* Haluskan fade kiri-kanan */
  -webkit-mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 6%,
    rgba(0, 0, 0, 1) 94%,
    rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 6%,
    rgba(0, 0, 0, 1) 94%,
    rgba(0, 0, 0, 0) 100%);
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-marquee 40s linear infinite;
  will-change: transform;
}

.slider-track img {
  width: 800px;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === BUTTON PRIMARY (PESAN) === */
.btn-ripple {
  position: relative;
  overflow: hidden;
  background-color: #39FF14;
  border: 2px solid #39FF14;
  color: #1F2A36;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-ripple:hover {
  background-color: #ADFF2F;
  color: black;
  border-color: #ADFF2F;
}

.btn-ripple:hover .pesan {
  color: black;
}

.btn-ripple span.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.pesan {
  text-decoration: none;
  color: #1F2A36;
}

/* === BUTTON OUTLINE (MEETING) === */
.btn-meeting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: white;
  color: #1F2A36;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #1F2A36;
}

.btn-meeting:hover {
  background-color: #1F2A36;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* === CARA KERJA === */
#cara-kerja {
  font-family: 'Outfit', sans-serif;
  padding: 60px 0;
}

#cara-kerja h2 {
  font-size: 48px;
  color: #1F2A36;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

#cara-kerja hr {
  height: 2px;
  background-color: #1F2A36;
  border: none;
  width: 60px;
  margin: 0 auto 40px;
}

.work-card h4 {
  font-size: 22px;
  font-weight: bold;
  color: #1F2A36;
  margin-bottom: 16px;
}

.work-card p {
  text-align: justify;
  color: #6c757d;
  font-size: 15px;
}

.work-card .work-image img {
  max-height: 240px;
  object-fit: contain;
}

/* === Client === */
.section-title {
  font-size: 50px;
  font-weight: bold;
  font-family: 'Outfit';
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.customers-area {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: white;
}

.blur-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: 
    radial-gradient(circle at 70% 60%, rgba(247, 237, 31, 0.8) 0%, rgba(247, 237, 31, 0.2) 60%, transparent 100%),
    radial-gradient(circle at 50% 40%, rgba(255, 204, 204, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 100% 80%, rgba(199, 250, 204, 0.5) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.logo-grid-wrapper {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 32px;
}

.logo-item {
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: filter 0.4s, backdrop-filter 0.4s;
  backdrop-filter: blur(0px);
}

.logo-item img {
  max-height: 50px;
  opacity: 0.85;
  transition: transform 0.3s;
}

.logo-grid:hover .logo-item {
  filter: blur(1px);
}

.logo-grid-wrapper:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.logo-hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  color: #1F2A36;
  background: rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

.logo-grid:hover ~ .logo-hover-text {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === TABLE COMPARISON === */
.table-comparison {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  color: #1F2A36;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

#perbandingan h2 {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
  color: #1F2A36;
}

/* Header styling */
.table-comparison thead th {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 20px;
}

.table-comparison thead th.graphie {
  background-color: #C9F2C7; /* hijau pastel */
}

.table-comparison thead th.inhouse,
.table-comparison thead th.freelance {
  background-color: #fff;
}

/* Row styling */
.table-comparison tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

/* Hover */
.table-comparison tbody tr:hover {
  background-color: #f5f5f5;
}

/* Label column */
.table-comparison td.label {
  font-weight: 600;
  text-align: left;
  padding: 18px 16px;
  width: 30%;
  color: #1F2A36;
  background-color: #fefefe;
}

/* Data cell */
.table-comparison td {
  text-align: center;
  padding: 18px 16px;
}

/* Striping hanya untuk kolom GRAPHIE */
.table-comparison tbody tr:nth-child(odd) td:nth-child(2) {
  background-color: #FFF7E8; /* Cream muda */
}
.table-comparison tbody tr:nth-child(even) td:nth-child(2) {
  background-color: #D6EADF; /* Hijau pastel */
}

/* Data columns */
.table-comparison td {
  text-align: center;
  padding: 18px 16px;
}

/* === LAYANAN === */
#layanan h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #1F2A36;
  margin-bottom: 32px;
}

.service-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.service-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1F2A36;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tags span {
  background-color: #2c2c2c;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.carousel-wrapper {
  display: flex;
  gap: 15px;
  transition: transform 0.4s ease;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-wrapper img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 317px;
  height: 317px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-btn i {
  pointer-events: none;
}

/* === PRICING === */
#harga h2 {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #1F2A36;
}

.lead {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 24px;
  backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card .badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 12px;
  font-size: 14px;
}

.pricing-card .title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 16px;
  margin-bottom: 20px;
}

.pricing-card .price strong {
  font-size: 26px;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #fff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Saat aktif (dibuka) */
.pricing-card .features.show {
  opacity: 1;
  max-height: 1000px;
}

.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

.pricing-card .features i.bi-check {
  color: #52ff7a;
  margin-right: 8px;
}

.pricing-card .features i.bi-x {
  color: #ff7676;
  margin-right: 8px;
}

.btn-pink {
  background-color: #ff2e63;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.btn-pink:hover {
  background-color: #e02557;
  color: white;
}

.text-link {
  display: block;
  font-size: 15px;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  cursor: pointer;
}

.text-link:hover {
  color: #ffffff;
}

.ribbon-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  z-index: 5;
}

.ribbon-badge span {
  position: absolute;
  display: block;
  width: 130px;
  padding: 6px 2px;
  background: linear-gradient(45deg, #ff2e63, #ff5a85);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  transform: rotate(-45deg);
  top: 17px;
  left: -36px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

/* === MANFAAT === */
#manfaat h2 {
  font-size: 55px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #1F2A36;
}

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

.fitur-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fitur-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.fitur-card i {
  font-size: 40px;
  color: #1F2A36;
  margin-bottom: 12px;
  display: block;
}

.fitur-text {
  font-size: 15px;
  font-family: 'Poppins';
  font-weight: bold;
  color: #1F2A36;
  margin: 0;
}

/* === FAQ === */
.faq-bold {
  font-size: 65px;
  color: #1F2A36;
  font-weight: bold;
  margin-left: 18px;
}

#faq p{
  color: #6c757d;
  margin-bottom: 0;
  margin-right: 16px;
  margin-left: 18px;
}

#faq hr{
  width: 100px;
  height: 1.5px;
  background-color: #1F2A36;
  border: none;
  margin: 20px auto;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  margin-bottom: 0;
}

.accordion-button {
  background-color: #ffffff;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #1F2A36;
  box-shadow: none;
  border: none;
  padding-right: 48px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  font-size: 20px;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: white;
  color: #1F2A36;
  font-size: 20px;
}

.accordion-body {
  font-size: 18px;
  color: #6c757d;
  background: white;
  padding-top: 0;
}

.accordion-body .faq-link{
  font-size: 18px;
  color: #6c757d;
}

/* Hapus icon default bootstrap */
.accordion-button::after {
  display: none;
}

/* Custom icon toggle */
.accordion-button .icon-toggle {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.accordion-button .icon-toggle::before,
.accordion-button .icon-toggle::after {
  content: "";
  position: absolute;
  background-color: #1F2A36;
  transition: all 0.3s ease;
}

.accordion-button .icon-toggle::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 2px;
}

.accordion-button .icon-toggle::after {
  top: 0;
  left: 5px;
  width: 2px;
  height: 12px;
}

.accordion-button:not(.collapsed) .icon-toggle::after {
  opacity: 0;
  transform: scaleY(0);
}

/* === CTA === */
.cta-footer-floating {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
}

.cta-box {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: black;
  padding: 40px 50px;
  border-radius: 20px;
  max-width: 750px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(15%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.cta-box:hover {
  transform: translateY(10%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* === BUBBLE BACKGROUND === */
.cta-bubbles .cta-decor {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
  z-index: 1;
  filter: blur(35px);
  opacity: 0.7;
}

.decor-1 { 
  top: -20px; left: -20px; 
  background: rgba(255,193,7,0.9);
  animation-delay: 0s; 
}
.decor-2 { 
  bottom: -25px; right: -30px; 
  background: rgba(10,43,102,0.8);
  animation-delay: 2s; 
}
.decor-3 { 
  top: 80%; left: 40px; 
  background: rgba(255,111,0,0.9);
  animation-delay: 4s; 
}
.decor-4 { 
  top: -20%; right: 60px; 
  background: rgba(0,200,83,0.8);
  animation-delay: 6s; 
}

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

/* === IKON ASET === */
.cta-asset {
  position: absolute;
  width: 120px;
  height: auto;
  z-index: 2;
  filter: blur(2.5px);
}

.asset-1 { top: 10px; right: 60px; }
.asset-2 { bottom: 80px; left: 10px; }
.asset-3 { top: 50%; right: 120px;  filter: blur(1.5px); }
.asset-4 { top: 50%; left: 100px; }

.float { animation: float 6s infinite ease-in-out; }
.rotate { animation: spin 12s linear infinite; }
.fly { animation: fly 10s infinite ease-in-out; }
.pulse { animation: pulse 4s infinite ease-in-out; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fly {
  0%   { transform: translateY(0) translateX(0); }
  50%  { transform: translateY(-15px) translateX(15px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* === Konten === */
.cta-text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  z-index: 3;
  position: relative;
}

.cta-btn {
  background-color: #ffc107;
  color: white;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  border: 2px solid #ffc107;
  z-index: 3;
  position: relative;
  display: inline-block;
}

.cta-btn:hover {
  background-color: white;
  color: #ffc107;
  border: 2px solid #ffc107;
}

body.dark-mode .cta-box {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: white;
  padding: 40px 50px;
  border-radius: 20px;
  max-width: 750px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  position: relative;
  transform: translateY(20%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* === FOOTER === */
.footer {
  background: linear-gradient(to bottom, #0d1117 0%, #1f2a36 100%);
}

.footer a {
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

.footer i {
  transition: transform 0.2s ease;
}

.footer i:hover {
  transform: scale(1.2);
}

/* === POPUP OVERLAY === */
.popup-overlay {
  display: none; /* default hidden */
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center; 
  align-items: center;
  z-index: 2000;
  padding: 15px; /* biar ada jarak di hp */
}

/* === POPUP BOX === */
.popup-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.3s ease;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* === JUDUL POPUP === */
#popup-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

/* === HARGA POPUP === */
#popup-price {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: #1F2A36;
  margin-bottom: 20px;
}

/* === CLOSE BUTTON === */
.close-btn {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 22px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #d12e2e;
}

/* === ANIMASI === */
@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(-10px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-pill-menu {
    display: none !important;
  }

  .lang-selector {
    position: relative;
    display: inline-block;
  }

  .btn-lang {
    padding: 6px 12px;
    font-size: 13px;
    min-width: 50px;
    text-align: center;
    border-radius: 30px;
    z-index: 21;
    position: relative;
  }

  .lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 4px 0;
    z-index: 20;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
  }

  .lang-selector:hover .lang-dropdown {
    visibility: visible;
    opacity: 1;
  }

  .lang-option {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
    text-align: left;
    white-space: nowrap;
  }

  .lang-option:hover {
    background-color: #f0f0f0;
  }

  .lang-option .ID {
    text-decoration: none;
  }

  .lang-option .EN {
    text-decoration: none;
  }

  .btn-more {
    display: none !important;
  }

  /* Floating pill menu */
  .floating-pill-menu {
    width: calc(100% - 32px);
    padding: 12px 16px;
    font-size: 10px;
    bottom: 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

    #floatingCart i {
    font-size: 10px;
  }

  .floatingCart span {
    font-size: 10px;
  }

  /* Hero section */
  .hero-section {
    padding: 60px 0;
    margin-top: 60px;
  }

  .hero-section h1 {
    font-size: 48px;
    line-height: 1.3;
    text-align: center;
  }

  .hero-section p {
    font-size: 14px;
    padding: 0 16px;
    text-align: justify;
  }

  body.dark-mode .galaxy-container {
    width: 400px;
    height: 400px;
    top: 75%;
    left: -10%;
    transform: translate(-50%, 50%);
  }

  /* Logo slider track */
  .slider-track img {
    width: 220px;
  }

  /* Judul di section 'Cara Kerja' */
  #cara-kerja h2 {
    font-size: 36px;
    margin-top: -300px;
  }

  /* Judul di section 'Harga' dan 'Perbandingan' */
  #harga h2,
  #perbandingan h2 {
    font-size: 32px;
  }

  .work-card {
    padding: 24px 16px;
  }

  .work-card .work-image img {
    max-height: 250px;
  }

  /* Gambar di service box */
  .service-box img {
    height: 180px;
  }

  /* Judul global section seperti "Klien Kami" */
  .section-title {
    font-size: 36px;
    margin-top: -10px;
    margin-bottom: 20px;
  }

  /* Grid logo Klien Kami */
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px;
  }

  .logo-item img {
    max-width: 100%;
  }

  .logo-hover-text {
    font-size: 10px;
  }

  #perbandingan {
    margin-top: -40px;
  }

  #layanan h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .service-box {
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-box img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 450px; /* ukuran maksimum */
    margin: 0 auto;
  }

  .carousel-wrapper {
    display: flex;
    transition: transform 0.4s ease;
  }

  .carousel-wrapper img {
    min-width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }

  /* Tombol carousel */
  .carousel-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .carousel-btn.prev { left: 5px; }
  .carousel-btn.next { right: 5px; }

  /* Teks judul dan harga di kartu harga */
  .pricing-card .title {
    font-size: 25px;
  }

  .pricing-card .price strong {
    font-size: 35px;
  }

  /* Tombol utama */
  .btn-ripple,
  .btn-meeting {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Judul section Manfaat */
  #manfaat h2 {
    font-size: 30px;
  }

  /* Grid fitur 3 kolom */
  .fitur-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .fitur-card {
    padding: 12px;
  }

  .fitur-card i {
    font-size: 24px;
  }

  .fitur-card .fitur-text {
    font-size: 12px;
  }

  .fitur-section h2 {
    font-size: 18px;
  }

  /* Judul FAQ */
  .fw-bold {
    font-size: 10px;
    text-align: start;
    margin-left: 18px;
  }

  /* Subjudul FAQ */
  #faq p {
    font-size: 13px;
    text-align: start;
    margin-left: 20px;
  }

  /* Tombol accordion */
  .accordion-button {
    font-size: 16px;
    padding-right: 40px;
    margin-left: 0;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .accordion-button:not(.collapsed) {
    background-color: white;
    color: #1F2A36;
    font-size: 16px;
  }

  .accordion-body {
    font-size: 14px;
    margin-left: 0;
  }

  .accordion-button .icon-toggle {
    right: 16px;
  }

  /* Container FAQ */
  #faq .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  #faq hr {
    margin-left: 10px;
    width: 60px;
  }

  /* Footer */
  .footer-graphie {
    font-size: 13px;
    padding: 30px 0;
  }

  /* Tabel perbandingan */
  .table-comparison thead th,
  .table-comparison td {
    font-size: 14px;
    padding: 12px 10px;
  }

  .table-comparison td.label {
    font-size: 13px;
  }

  .lead {
    font-size: 14px;
    padding: 0 12px;
  }

  .cta-footer-floating {
    margin-top: -30px;
    padding: 0 10px;
  }

  .cta-box {
    padding: 25px 20px;
    max-width: 95%;
    width: calc(100% - 20px);
    transform: translateY(10%);
  }

  .cta-text {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
  }

  .cta-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  .cta-bubbles .cta-decor {
    width: 80px;
    height: 80px;
    filter: blur(25px);
  }

  .decor-1 { top: -10px; left: -10px; }
  .decor-2 { bottom: 15px; right: -15px; }
  .decor-3 { top: 75%; left: 15px; }
  .decor-4 { top: -15%; right: 30px; }

  .cta-asset {
    width: 80px;
  }

  .asset-1 { top: 5px; right: 30px; }
  .asset-2 { bottom: 50px; left: 5px; }
  .asset-3 { top: 100px; right: 0px; }
  .asset-4 { top: 120px; left: 50px; }

  .footer,
  .social-icons {
    text-align: start !important;
  }
}

/* === LIGHT/DARK MODE === */
#darkModeToggle {
  border-radius: 30px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1F2A36;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

#darkModeToggle:hover {
  background-color: #1F2A36;
  color: white;
}

body.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode .graphie-navbar {
  background-color: transparent;
  border-color: transparent;
}

body.dark-mode .floating-pill-menu {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

body.dark-mode .nav-pill-menu {
  background: white;
  border-color: white;
}

body.dark-mode .nav-pill-menu li a {
  color: #1e1e1e;
}

body.dark-mode .floating-pill-menu li a {
  color: white;
}

body.dark-mode .nav-pill-menu li a:hover,
body.dark-mode .floating-pill-menu li a:hover {
  color: #9ED000;
}

body.dark-mode .btn-lang {
  background-color: #1e1e1e;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

body.dark-mode .btn-lang:hover {
  background-color: white;
  color: #1F2A36;
}

body.dark-mode .lang-option {
  background-color: #1e1e1e;
  border: none;
  color: white;
}

body.dark-mode .lang-dropdown {
  background-color: #1e1e1e;
  border: none;
  color: white;
}

body.dark-mode .EN,
body.dark-mode .ID {
  color: white;
}

body.dark-mode #darkModeToggle {
  background-color: #1e1e1e;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

body.dark-mode #darkModeToggle:hover {
  background-color: white;
  color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

body.dark-mode .btn-more {
  background-color: #1e1e1e;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

body.dark-mode .btn-more:hover {
  background-color: white;
  color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

body.dark-mode .bi.bi-list {
  color: white;
}

body.dark-mode .hero-section {
  background-color: #121212;
  color: #f0f0f0;
}

body.dark-mode .hero-section h1 {
  color: #f0f0f0;
}

body.dark-mode .btn-ripple,
body.dark-mode .btn-ripple:hover,
body.dark-mode .btn-ripple:hover .pesan {
  color: black;
}

body.dark-mode .pesan {
  text-decoration: none;
  color: black;
}

body.dark-mode .btn-meeting {
  background-color: #1e1e1e;
  color: white;
  border: 2px solid white;
}

body.dark-mode .btn-meeting:hover {
  background-color: white;
  color: #1E1E1E;
  border: 2px solid white;
}

body.dark-mode #cara-kerja {
  background-color: transparent;
  position: relative;
}

body.dark-mode #cara-kerja h2{
  color: white;
}

body.dark-mode .work-card h4, 
body.dark-mode .work-card p {
  color: white;
}

body.dark-mode .customers-area {
  background-color: #121212;
}

body.dark-mode .logo-grid img {
  filter: brightness(0) invert(1);
}

body.dark-mode .logo-hover-text {
  color: white;
}

body.dark-mode #perbandingan h2 {
  color: white;
}

body.dark-mode .table-comparison {
  background-color: #1E1E1E;
  color: #F0F0F0;
}

body.dark-mode #perbandingan h2 {
  color: #F0F0F0;
}

body.dark-mode .table-comparison thead th {
  color: #F0F0F0;
}

body.dark-mode .table-comparison thead th.graphie {
  background-color: #4A7D5A;
}

body.dark-mode .table-comparison thead th.inhouse,
body.dark-mode .table-comparison thead th.freelance {
  background-color: #2A2A2A;
}

body.dark-mode .table-comparison tbody tr {
  border-bottom: 1px solid #444;
}

body.dark-mode .table-comparison tbody tr:hover {
  background-color: #333;
}

body.dark-mode .table-comparison td.label {
  background-color: #2A2A2A;
  color: #F0F0F0;
}

body.dark-mode .table-comparison td {
  color: #F0F0F0;
}

body.dark-mode .table-comparison tbody tr:nth-child(odd) td:nth-child(2) {
  background-color: #3C3A2D;
}

body.dark-mode .table-comparison tbody tr:nth-child(even) td:nth-child(2) {
  background-color: #3A4C45;
}

body.dark-mode #layanan {
  position: relative;
}

body.dark-mode #layanan h2 {
  color: white;
}

body.dark-mode .service-box {
  background-color: #1e1e1e;
}

body.dark-mode .service-box h5{
  color: white;
}

body.dark-mode #harga {
  background-color: #121212;
}

body.dark-mode #harga h2{
  color: white;
}

body.dark-mode #harga .lead{
  color: white;
}

body.dark-mode #manfaat {
  position: relative;
}

body.dark-mode #manfaat h2 {
  color: white;
}

body.dark-mode .fitur-card {
  background-color: #1e1e1e;
  border: none;
}

body.dark-mode .fitur-card i,
body.dark-mode .fitur-card p {
  color: white;
}

body.dark-mode #faq h2{
  color: white;
}

body.dark-mode #faq p{
  color: white;
  margin-bottom: 0;
  margin-right: 1rem;
}

body.dark-mode #faq hr{
  width: 100px;
  height: 1.5px;
  background-color: white;
  border: none;
  margin: 20px auto;
}

body.dark-mode .accordion-item {
  border-bottom: 1px solid #3a3a3a;
  background-color: #1e1e1e;
}

body.dark-mode .accordion-button {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

body.dark-mode .accordion-button:not(.collapsed) {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

body.dark-mode .accordion-body {
  background-color: #1e1e1e;
  color: #c0c0c0;
}

body.dark-mode .accordion-body .faq-link {
  color: #c0c0c0;
}

body.dark-mode .accordion-button .icon-toggle::before,
body.dark-mode .accordion-button .icon-toggle::after {
  background-color: #f1f1f1;
}

body.dark-mode .footer {
  background: linear-gradient(to bottom, #000, #1f2a36);
}


body.dark-mode .popup-content {
  background-color: #1E1E1E;
}

body.dark-mode #popup-title {
  color: white;
}

body.dark-mode #popup-price {
  color: white;
}

body.dark-mode .close-btn {
  color: white;
}

/* === FLOATING CART === */
body.dark-mode .floating-cart {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

body.dark-mode .floating-cart i {
  color: white;
}

body.dark-mode .cart-dropdown {
  background-color: rgba(30, 30, 30, 0.9);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes twinkleSlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

body.dark-mode .stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" width="300" height="300">\
      <!-- bintang putih kecil -->\
      <circle cx="40" cy="50" r="1" fill="white" />\
      <circle cx="200" cy="80" r="1" fill="white" />\
      <circle cx="250" cy="200" r="1" fill="white" />\
      <circle cx="100" cy="250" r="1" fill="white" />\
      <!-- bintang kuning besar -->\
      <circle cx="150" cy="150" r="2.5" fill="gold" />\
      <circle cx="80" cy="220" r="2" fill="gold" />\
      <circle cx="220" cy="40" r="2.5" fill="gold" />\
    </svg>');
  background-size: 300px 300px;
  animation: twinkle 5s infinite ease-in-out;
  z-index: 0;
  opacity: 0.6;
  filter: blur(2px);
}

body.dark-mode .stars-bg-client {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" width="300" height="300">\
      <!-- bintang putih kecil -->\
      <circle cx="50" cy="60" r="1" fill="white" />\
      <circle cx="220" cy="90" r="1" fill="white" />\
      <circle cx="180" cy="240" r="1" fill="white" />\
      <!-- bintang kuning besar -->\
      <circle cx="150" cy="150" r="2.5" fill="gold" />\
      <circle cx="90" cy="200" r="2" fill="gold" />\
    </svg>');
  background-size: 300px 300px;
  animation: twinkleSlow 6s infinite ease-in-out;
  z-index: 0;
  opacity: 0.35;
  filter: blur(1.2px);
}

body.dark-mode .stars-bg-service {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" width="300" height="300">\
      <!-- bintang putih kecil -->\
      <circle cx="40" cy="50" r="1" fill="white" />\
      <circle cx="250" cy="80" r="1" fill="white" />\
      <circle cx="120" cy="220" r="1" fill="white" />\
      <!-- bintang kuning besar -->\
      <circle cx="150" cy="100" r="2.5" fill="gold" />\
      <circle cx="90" cy="180" r="2" fill="gold" />\
    </svg>');
  background-size: 300px 300px;
  animation: twinkleSlow 6s infinite ease-in-out;
  opacity: 0.35;
  filter: blur(1.3px);
}

body.dark-mode .stars-bg-manfaat {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'>\
      <circle cx='20' cy='20' r='1.5' fill='white' />\
      <circle cx='100' cy='40' r='1' fill='white' />\
      <circle cx='150' cy='100' r='2' fill='white' />\
      <circle cx='60' cy='150' r='1' fill='white' />\
      <circle cx='80' cy='60' r='2' fill='%23ffd700' />\
      <circle cx='140' cy='160' r='1.5' fill='%23ffd700' />\
    </svg>");
  background-size: 200px 200px;
  animation: twinkle 4s infinite ease-in-out;
  filter: blur(1px);
  opacity: 0.6;
  z-index: 0;
}