/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --color1: #04588e;
  --color2: #d9efff;
  --color3: #05588e;
  --color4: #038adf;
  --colororange: #c69502;
  --color1-light: rgba(4, 88, 142, 0.08);
  --color1-hover: #03477a;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  /* offset untuk navbar sticky */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
}

h1,
h2 {
  font-weight: 800;
}

h3,
h4 {
  font-weight: 700;
}

h5,
h6 {
  font-weight: 600;
}

h1 {
  font-size: 38px;
  line-height: 1.2;
}

h2 {
  font-size: 30px;
  line-height: 1.3;
}

h3 {
  font-size: 22px;
  line-height: 1.4;
}

h4 {
  font-size: 18px;
  line-height: 1.4;
}

h5 {
  font-size: 16px;
  line-height: 1.5;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  color: var(--color1);
}

p {
  margin: 0;
}

/* ===== UTILITIES ===== */
.color1 {
  color: var(--color1) !important;
}

.color2 {
  color: var(--color2) !important;
}

.color3 {
  color: var(--color3) !important;
}

.color-orange {
  color: var(--colororange) !important;
}

.bg-color1 {
  background: var(--color1) !important;
}

.bg-color2 {
  background: var(--color2) !important;
}

.bg-color3 {
  background: var(--color3) !important;
}

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

.text-white {
  color: #fff;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-py {
  padding: 80px 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  padding: 9px 25px;
}

.btn-sm {
  padding: 5px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 13px 30px;
  font-size: 15px;
}

.btn-primary {
  background-color: var(--color1);
  border-color: var(--color1);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color1-hover);
  border-color: var(--color1-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(4, 88, 142, 0.25);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--color1);
  color: var(--color1);
}

.btn-outline-primary:hover {
  background-color: var(--color1);
  border-color: var(--color1);
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline-white:hover {
  background-color: var(--color4);
  border-color: var(--color4);
  color: #fff;
}

.btn-success {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
}

.btn-success:hover {
  background-color: #20bd5a;
  border-color: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(15, 37, 54, 0.07);
  min-height: 68px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.navbar-brand img {
  height: 28px;
  width: auto;
}

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

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #384656;
  padding: 8px 14px;
  border-radius: 9px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color1);
  background: var(--color1-light);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-wa {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #25D366;
  font-weight: 600;
  font-size: 22px;
  padding: 4px;
  border-radius: 6px;
  transition: opacity 0.15s;
}

.nav-wa:hover {
  opacity: 0.8;
}

.navbar-toggler {
  display: none;
  background: none;
  border: 1.5px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  padding: 4px 8px;
  color: #333;
  font-size: 24px;
  transition: border-color .15s, color .15s;
  outline:none;
}

.navbar-toggler.active {
  color: var(--color1);
  outline:none !important;
}

/* Mobile Nav — right drawer */
/* Mobile Nav — full-width dropdown */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 20, 38, 0.35);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.22s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mobile-nav-overlay.open { opacity: 1; }

.mobile-nav {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  border-bottom: 1px solid #e8f0f8;
  box-shadow: 0 12px 32px rgba(4, 88, 142, 0.12);
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 10px 12px 6px;
}

.mobile-nav-item {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background 0.13s, color 0.13s;
}

.mobile-nav-item:hover {
  background: #f0f7ff;
  color: var(--color1);
  text-decoration: none;
}

.mobile-nav-item.active {
  background: var(--color1-light);
  color: var(--color1);
  font-weight: 600;
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #f0f4f8;
  margin-top: 4px;
}

.mobile-nav-actions .btn {
  justify-content: center;
  padding: 10px 12px;
  font-size: 13.5px;
  border-radius: 8px;
}

@media (max-width: 768px) {

  .navbar-nav,
  .navbar-actions {
    display: none;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
  }
}

/* Navbar dropdown "Lainnya" */
.nav-more-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.nav-more-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(15, 37, 54, 0.13);
  border: 1px solid #eef1f5;
  min-width: 190px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}

.nav-more-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-more-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: #384656;
  transition: background 0.12s, color 0.12s;
}

.nav-more-item:hover,
.nav-more-item.active {
  background: var(--color1-light);
  color: var(--color1);
}

.nav-more-item i {
  font-size: 15px;
  opacity: 0.7;
}

/* ===== HERO SECTION ===== */
.hero {
  background:
    /* grid lines horizontal */
    linear-gradient(rgba(4, 88, 142, 0.055) 1px, transparent 1px),
    /* grid lines vertical */
    linear-gradient(90deg, rgba(4, 88, 142, 0.055) 1px, transparent 1px),
    #fff;
  background-size: 48px 48px, 48px 48px;
  color: var(--color3);
  min-height: calc(100vh - 91.19px - 70px);
  padding: 72px 0 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* gradient orb — kanan atas */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(3, 138, 223, 0.13) 0%, transparent 65%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

/* gradient orb — kiri bawah */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(4, 88, 142, 0.1) 0%, transparent 65%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

/* ── 2-column split ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* ── Left: text ── */
.hero-text {
  text-align: center;
}

@media (min-width: 992px) {
  .hero-text {
    text-align: left;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color1-light);
  border: 1px solid rgba(4, 88, 142, 0.18);
  color: var(--color1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--colororange);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.22);
}

.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--color3);
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--colororange);
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #4a6a7e;
  margin-bottom: 32px;
  max-width: 480px;
}

@media (max-width: 991px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.btn-hero-primary {
  background: var(--color1);
  color: #fff;
  border: 1.5px solid var(--color1);
  font-weight: 700;
}

.btn-hero-primary:hover {
  background: var(--color1-hover);
  border-color: var(--color1-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4, 88, 142, 0.28);
}

/* ── Right: image ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-inner {
  position: relative;
  animation: heroFloat 5s ease-in-out infinite;
  max-width: 560px;
  width: 100%;
}

.hero-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(3, 138, 223, 0.12) 0%, transparent 70%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
}



@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: unset;
    padding: 60px 0 56px;
    text-align: center;
  }

  .hero-visual-inner {
    max-width: 480px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 48px 0 44px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-visual-inner {
    max-width: 100%;
  }
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 10px 24px;
}

.hero-trust-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stars {
  color: var(--colororange);
  font-size: 18px;
  letter-spacing: -1px;
}

/* ===== STATS SECTION (kartu mengambang) ===== */
.stats-section {
  background: #f8f9fb;
  padding: 0;
  position: relative;
  z-index: 2;
  height: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 18px;
  box-shadow: 0 22px 50px -22px rgba(4, 88, 142, 0.3), 0 8px 22px rgba(15, 37, 54, 0.06);
  padding: 28px 12px;
  position: relative;
  top: -60px;
}

.stat-item {
  color: inherit;
  position: relative;
  padding: 4px 14px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: #eaeef3;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  display: block;
  color: var(--color1);
}

.stat-label {
  font-size: 13px;
  color: #6b7581;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .stats-section {
    margin-top: 0px;
    margin-bottom: 0px;
    height: 70px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 10px 6px;
    top: -95px;
  }

  .stat-item {
    padding: 16px 8px;
  }

  .stat-item::after {
    display: none;
  }
}

/* ===== HERO STRIP ===== */
.hero-strip {
  background: #fff;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(4, 88, 142, 0.1);
  border-bottom: 1px solid rgba(4, 88, 142, 0.08);
  margin-top: -3px;
}

.hs-row {
  display: flex;
  align-items: stretch;
}

.hs-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
}

.hs-divider {
  width: 1px;
  background: rgba(4, 88, 142, 0.1);
  align-self: stretch;
  margin: 0.75rem 0;
}

.hs-item .bi {
  font-size: 1.5rem;
  color: var(--color1);
  flex-shrink: 0;
}

.hs-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  margin-bottom: 2px;
}

.hs-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color3);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (max-width: 768px) {
  .hero-strip {
    display: none;
  }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 88px 0 80px;
  background: #f8fafc;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color1-light);
  color: var(--color1);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

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

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e4edf6;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: var(--color4);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(4, 88, 142, 0.09);
}

.product-card-inner {
  text-decoration: none;
  color: inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color1), var(--color4));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.product-name {
  font-weight: 600;
  font-size: 15px;
  color: #1a2742;
  line-height: 1.3;
  margin-bottom: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--color1);
  background: var(--color1-light);
  padding: 2px 9px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.product-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  flex: 1;
}

.product-price {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eef2f8;
}

.price-from {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 2px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-wrap: wrap;
  font-size: 17px;
  font-weight: 600;
  color: var(--color1);
}

.price-period {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.product-btn-detail,
.product-btn-order {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.product-btn-detail {
  color: var(--color1);
  border: 1.5px solid #c4d8ed;
  background: #fff;
}

.product-btn-detail:hover {
  background: var(--color1-light);
  border-color: var(--color1);
  color: var(--color1);
}

.product-btn-order {
  color: #fff;
  background: var(--color1);
  border: 1.5px solid var(--color1);
}

.product-btn-order:hover {
  background: #035a8f;
  border-color: #035a8f;
  color: #fff;
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 72px 0;
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.666% + 27px);
  right: calc(16.666% + 27px);
  height: 1px;
  background: #e2eef7;
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 54px;
  height: 54px;
  background: rgb(4 88 142);
  border: 2px solid rgba(4, 88, 142, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps-grid::before {
    display: none;
  }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color3) 0%, var(--color1) 100%);
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.25s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e8f0f8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(4, 88, 142, 0.1);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color1), var(--color4));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-school {
  font-weight: 700;
  font-size: 12px;
  color: #1a1a2e;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
}

.testimonial-stars {
  color: var(--colororange);
  font-size: 11px;
  letter-spacing: -1px;
  margin-top: 2px;
}

.testimonial-text {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

/* Read more / less untuk teks testimoni yang panjang */
.testimonial-text.testi-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-text.testi-clamp.is-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.testi-readmore {
  margin-top: 6px;
  padding: 0;
  background: none;
  border: none;
  color: var(--color1, #0a588e);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.testi-readmore:hover {
  text-decoration: underline;
}

.testimonials-grid--home {
  grid-template-columns: repeat(3, 1fr);
}

.testimonials-more {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .testimonials-grid,
  .testimonials-grid--home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {

  .testimonials-grid,
  .testimonials-grid--home {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

/* New FAQ component button reset */
.faq-item-new button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
  padding: 80px 0;
  background: #f8fafc;
}

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

.support-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid #e0ecf8;
  transition: all 0.25s ease;
}

.support-card:hover {
  border-color: var(--color1);
  box-shadow: 0 8px 24px rgba(4, 88, 142, 0.1);
  transform: translateY(-3px);
}

.support-icon {
  font-size: 40px;
  color: var(--color1);
  margin-bottom: 16px;
  display: block;
}

.support-title {
  font-size: 16px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.support-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 52px 20px;
  background: var(--color1);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: none;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}

.cta-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #143452;
  color: rgba(255, 255, 255, 0.9);
  padding: 72px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color4);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.footer-social a,
.footer-social button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social a:hover,
.footer-social button:hover {
  background: var(--color4);
  border-color: var(--color4);
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-company {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.15s, transform 0.15s;
  line-height: 1.2;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-support-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.footer-support-item .icon {
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.payment-logo-img {
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: #fff;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wa-float .bi {
  font-size: 22px;
  line-height: 1;
}

.wa-float:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.wa-float:active {
  transform: scale(0.98);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::after {
    animation: none;
  }
}

@media (max-width: 560px) {
  .wa-float {
    right: 16px;
    bottom: 80px;
    padding: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
    border-radius: 50%;
  }

  .wa-float-label {
    display: none;
  }
}

/* ===== PRODUCT PAGES ===== */
.prod-page-hero {
  background: linear-gradient(135deg, var(--color3) 0%, var(--color1) 60%, var(--color4) 100%);
  padding: 88px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prod-page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.prod-page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.prod-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.prod-hero-h1 {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
}

.prod-hero-h1 span {
  color: #7dd3fc;
}

.prod-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

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

.prod-stat-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.prod-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.prod-section {
  padding: 72px 0;
}

.prod-section-alt {
  padding: 72px 0;
  background: #f8fafc;
}

.prod-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.prod-benefit-card {
  background: #fff;
  border: 1.5px solid #e4edf6;
  border-radius: 18px;
  padding: 26px 22px;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}

.prod-benefit-card:hover {
  border-color: var(--color1);
  box-shadow: 0 10px 28px rgba(4, 88, 142, 0.1);
  transform: translateY(-4px);
}

.prod-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.prod-benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2742;
  margin-bottom: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.prod-benefit-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.prod-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.prod-support-card {
  text-align: center;
  background: #fff;
  border: 1.5px solid #e4edf6;
  border-radius: 20px;
  padding: 32px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.prod-support-card:hover {
  border-color: var(--color1);
  box-shadow: 0 8px 24px rgba(4, 88, 142, 0.09);
  transform: translateY(-3px);
}

.prod-support-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.prod-support-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color3);
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.prod-support-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.prod-pkg-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.prod-pkg-card {
  background: #fff;
  border: 1.5px solid #e4edf6;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 148px;
  flex-shrink: 0;
}

.prod-pkg-card:hover {
  border-color: var(--color1);
  box-shadow: 0 6px 20px rgba(4, 88, 142, 0.1);
  transform: translateY(-3px);
}

.prod-pricing-card {
  background: #fff;
  border: 2px solid #e4edf6;
  border-radius: 22px;
  padding: 32px 28px;
  text-align: center;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}

.prod-pricing-card:hover,
.prod-pricing-card.featured {
  border-color: var(--color1);
  box-shadow: 0 12px 40px rgba(4, 88, 142, 0.14);
  transform: translateY(-6px);
}

.prod-pricing-card.featured {
  background: linear-gradient(135deg, var(--color1), var(--color4));
  color: #fff;
}

@media (max-width: 900px) {
  .prod-support-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .prod-page-hero {
    padding: 64px 0 56px;
  }

  .prod-hero-sub {
    font-size: 14px;
  }

  .prod-support-grid {
    grid-template-columns: 1fr;
  }

  .prod-benefit-grid {
    grid-template-columns: 1fr;
  }

  .prod-stat-pill {
    font-size: 12px;
    padding: 6px 13px;
  }

  .prod-section,
  .prod-section-alt {
    padding: 52px 0;
  }

  .prod-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cloud-pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .spec-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color3) 0%, var(--color1) 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== PRICING CARDS ===== */
.pricing-section {
  padding: 80px 0;
  background: #f8fafc;
}

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

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 2px solid #e8f0f8;
  transition: all 0.25s ease;
  position: relative;
}

.pricing-card:hover,
.pricing-card.popular {
  border-color: var(--color1);
  box-shadow: 0 16px 40px rgba(4, 88, 142, 0.15);
  transform: translateY(-4px);
}

.pricing-card.popular {
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--colororange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 15px;
  font-weight: 500;
  color: #888;
  font-family: 'Inter', sans-serif;
}

.pricing-period {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.pricing-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(4, 88, 142, 0.1);
  color: var(--color1);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.popular {
    transform: none;
  }
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease both;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* ===== PAGE-SPECIFIC ===== */
.affiliate-section {
  padding: 80px 0;
}

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

.affiliate-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid #e0ecf8;
  transition: all 0.25s ease;
}

.affiliate-card:hover {
  border-color: var(--color1);
  box-shadow: 0 8px 24px rgba(4, 88, 142, 0.12);
  transform: translateY(-3px);
}

.affiliate-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.commission-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.commission-table th {
  background: var(--color1);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.commission-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #f0f5ff;
  font-size: 14px;
  color: #444;
  background: #fff;
}

.commission-table tr:last-child td {
  border-bottom: none;
}

.commission-table tr:nth-child(even) td {
  background: #f8fafc;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
  margin-top: 12px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-sep {
  opacity: 0.5;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--color1);
  border-radius: 3px;
}

/* WhatsApp Modal */
.wa-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  padding: 20px;
}

.wa-modal-overlay.open {
  display: flex;
}

.wa-modal-content {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 360px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.wa-modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.wa-modal-title {
  font-weight: 700;
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.wa-modal-subtitle {
  font-size: 13px;
  color: #666;
}

.wa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-number-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #e0ecf8;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.wa-number-item:hover {
  background: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
  transform: translateY(-2px);
}

.wa-number-item i {
  color: #25D366;
  font-size: 20px;
}

.wa-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.wa-close-btn:hover {
  color: #333;
}

/* ===== MODERN ORDER FORM (wsf-*) ===== */
.wsf-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(4, 88, 142, 0.12);
  box-shadow: 0 16px 56px rgba(4, 88, 142, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wsf-head {
  background: linear-gradient(135deg, #04588e 0%, #0369a1 100%);
  padding: 18px 22px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wsf-head::before {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.wsf-head::after {
  content: '';
  position: absolute;
  right: 28px;
  top: -24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.wsf-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}

.wsf-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
}

.wsf-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.wsf-price-period {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.68;
}

.wsf-body {
  padding: 20px;
}

.wsf-body form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wsf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wsf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #64748b;
  display: block;
}

.wsf-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  overflow: hidden;
}

.wsf-input-wrap:focus-within {
  border-color: var(--color1);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(4, 88, 142, 0.10);
}

.wsf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 16px;
  transition: color 0.2s;
}

.wsf-input-wrap:focus-within .wsf-icon {
  color: var(--color1);
}

.wsf-sep {
  width: 1px;
  height: 20px;
  background: #e2e8f0;
  flex-shrink: 0;
  transition: background 0.2s;
}

.wsf-input-wrap:focus-within .wsf-sep {
  background: rgba(4, 88, 142, 0.22);
}

.wsf-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  min-width: 0;
}

.wsf-input-wrap input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.wsf-suffix {
  padding: 0 14px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--color1);
  white-space: nowrap;
  flex-shrink: 0;
}

.wsf-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}

.wsf-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--color1);
  cursor: pointer;
}

.wsf-check span {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

.wsf-check a {
  color: var(--color1);
  font-weight: 600;
  text-decoration: none;
}

.wsf-check a:hover {
  text-decoration: underline;
}

.wsf-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #04588e 0%, #0284c7 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 18px rgba(4, 88, 142, 0.28);
  transition: opacity 0.18s, transform 0.15s, box-shadow 0.18s;
  margin-top: 4px;
}

.wsf-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(4, 88, 142, 0.34);
}

.wsf-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(4, 88, 142, 0.22);
}

/* ===== PACKAGE PICKER (wsf-pkg-*) ===== */
.wsf-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 7px;
}

.wsf-pkg-label {
  cursor: pointer;
  display: block;
}

.wsf-pkg-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wsf-pkg-card {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  background: #fff;
  position: relative;
  user-select: none;
}

.wsf-pkg-card:hover {
  border-color: #7cc8f8;
  background: #f0f7ff;
}

.wsf-pkg-label:has(input:checked) .wsf-pkg-card {
  border-color: var(--color1);
  background: rgba(4, 88, 142, 0.07);
  box-shadow: 0 0 0 3px rgba(4, 88, 142, 0.13);
}

.wsf-pkg-label:has(input:checked) .wsf-pkg-card::after {
  content: '✓';
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 10px;
  font-weight: 800;
  color: var(--color1);
}

.wsf-pkg-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--color3);
  margin-bottom: 2px;
}

.wsf-pkg-storage {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 3px;
}

.wsf-pkg-price {
  font-size: 10px;
  font-weight: 700;
  color: var(--color1);
}

/* 2-column form row */
.wsf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .wsf-pkg-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .wsf-row {
    grid-template-columns: 1fr;
  }
}
/* ===== SCROLL REVEAL ===== */
.sr {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}
.sr.sr-in {
  opacity: 1;
  transform: none;
}
.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.16s; }
.sr-d3 { transition-delay: 0.24s; }
.sr-d4 { transition-delay: 0.32s; }
.sr-d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .sr { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   POPUP PENGUMUMAN
   Dikelola dari Admin Portal -> Konten -> Pengumuman.
   Markup: application/views/partials/pengumuman_popup.php
   ========================================================================== */
.ws-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 14, 26, .78);
  animation: wsPopupFadeIn .22s ease-out;
}
.ws-popup[hidden] { display: none; }

/* Masuk: latar memudar, kotak naik sedikit sambil membesar. */
@keyframes wsPopupFadeIn {
  from { opacity: 0; }
}
@keyframes wsPopupIn {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
}

/* Keluar: dipasang oleh closeWsPopup() sebelum elemen disembunyikan. */
.ws-popup.is-closing            { animation: wsPopupFadeOut .18s ease-in forwards; }
.ws-popup.is-closing .ws-popup-box { animation: wsPopupOut .18s ease-in forwards; }
@keyframes wsPopupFadeOut {
  to { opacity: 0; }
}
@keyframes wsPopupOut {
  to { opacity: 0; transform: translateY(10px) scale(.97); }
}

.ws-popup-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(9, 20, 34, .25);
  animation: wsPopupIn .3s cubic-bezier(.2, .8, .25, 1);
}

.ws-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: #1a1a2e;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s;
}
.ws-popup-close:hover { background: #eef2f6; }

.ws-popup-img {
  display: block;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.ws-popup-body { padding: 26px 24px 24px; }

.ws-popup-title {
  margin: 0 0 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.35;
}

.ws-popup-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4a5a6a;
}

.ws-popup-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--color1, #04588e);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.ws-popup-btn:hover { opacity: .92; }

@media (max-width: 480px) {
  .ws-popup-body { padding: 22px 18px 20px; }
  .ws-popup-title { font-size: 17px; }
}

/* Popup: hormati pengguna yang membatasi animasi. */
@media (prefers-reduced-motion: reduce) {
  .ws-popup,
  .ws-popup-box,
  .ws-popup.is-closing,
  .ws-popup.is-closing .ws-popup-box { animation: none; }
}

/* ─────────────────────────────────────────────────────────────
   Spanduk "Mode Admin" — tampil saat admin masuk sebagai pelanggan.

   Sengaja mencolok dan menempel di atas layar: sesi ini bertahan sampai
   ditutup, dan admin yang lupa sedang menyamar bisa keliru mengira
   dashboard yang dilihatnya adalah miliknya sendiri.
   ───────────────────────────────────────────────────────────── */
.imp-bar {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #7f1d1d;
  color: #fff;
  border-bottom: 2px solid #b91c1c;
  font-family: 'Inter', system-ui, sans-serif;
}
.imp-bar-inner {
  /* Selaras dengan .container / .dash-layout (1140px + padding 20px) supaya
     teks spanduk sejajar dengan logo dan isi halaman, bukan melebar sendiri. */
  max-width: 1140px;
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.imp-bar-ikon {
  margin-right: 4px;
  opacity: .8;
}
.imp-bar-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #fee2e2;
  /* Nama sekolah bisa sangat panjang tanpa spasi; tanpa ini spanduk
     melebarkan halaman dan memunculkan gulir mendatar. */
  overflow-wrap: anywhere;
}
.imp-bar-text strong { color: #fff; font-weight: 700; }
.imp-bar-jam {
  margin-left: 6px;
  opacity: .75;
  font-size: 12px;
  white-space: nowrap;
}
.imp-bar-form { margin: 0; flex: 0 0 auto; }
.imp-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #7f1d1d;
  border: 0;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.imp-bar-btn:hover { background: #fee2e2; }

@media (max-width: 640px) {
  .imp-bar-inner { padding: 8px 14px; gap: 8px; }
  .imp-bar-text  { flex-basis: 100%; font-size: 12px; }
  .imp-bar-form  { flex-basis: 100%; }
  .imp-bar-btn   { width: 100%; justify-content: center; }
}
