/* ===========================================================
   style.css — dirapikan 11-07-2026
   - Dihapus: 92 rules CSS mati (class/id gak dipakai di HTML/JS manapun,
     termasuk sisa halaman jasa-website.html yang sudah dihapus)
   - Digabung: 25 selector duplikat jadi 1 (21 identik, 4 beda isi digabung
     dengan tetap mempertahankan hasil visual yang sama seperti sebelumnya)
   - File asli: 4602 baris -> sekarang: 4038 baris
   =========================================================== */

/* ==================================
   APIKABE STUDIO — style.css v3.0 CLEAN
   Single source of truth - No duplicates
   Fixed typos, merged duplicates, organized.
================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ==================================
   1. VARIABLES & RESET
================================== */
:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: rgba(79, 70, 229, 0.08);
  --primary-glow: rgba(79, 70, 229, 0.2);
  --accent: #ff6b35;
  --accent-dark: #e85520;
  --accent-light: rgba(255, 107, 53, 0.08);
  --teal: #0d9488;
  --teal-light: rgba(13, 148, 136, 0.08);
  --bg: #fafbfc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 24px rgba(79, 70, 229, 0.06);
  --shadow-lg: 0 12px 40px rgba(79, 70, 229, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 50px;
  --container: 1200px;
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY & UTILITIES === */
.display {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.heading-xl {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.heading-lg {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.heading-md {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
}

.body-lg {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.body-md {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.text-accent {
  color: var(--accent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn btn-primary {
  width: 100%;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 24px;
}

.btn-ghost:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* === NAVIGASI DESKTOP & MOBILE - UPDATED === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.navbar.scrolled {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}

#navbar-guest {
  display: flex;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6366f1;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

.navbar-nav a {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
}

.navbar-nav a:hover {
  color: #ff6b35;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.navbar-nav a.active {
  color: white;
  background: rgba(255, 255, 255, 0.25);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.navbar-actions .btn {
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s;
}

.navbar-actions .btn-primary {
  margin-left: 4px;
  background: white;
  color: #6366f1;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.navbar-actions .btn-primary:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

.navbar-user-link {
  font-weight: 700;
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.navbar-user-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === MOBILE SIDEBAR - DARI ATAS === */
/* === MOBILE SIDEBAR - GLASSMORPHISM EFFECT === */
.mobile-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.3); /* Overlay gelap transparan */
  backdrop-filter: blur(8px); /* Blur background di belakang sidebar */
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  width: 100%;
  z-index: 1060;

  /* RAHASIA GLASSMORPHISM */
  background: rgba(255, 255, 255, 0.65); /* Opacity harus di bawah 0.8 */
  backdrop-filter: blur(24px) saturate(180%); /* Blur + Saturasi warna */
  -webkit-backdrop-filter: blur(24px) saturate(180%);

  /* Efek tepi kaca & sudut melengkung */
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

  padding: 24px 20px 32px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-sidebar.open {
  transform: translateY(0);
}

/* Pastikan item di dalam sidebar tetap jelas */
.sidebar-menu a {
  display: block;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: #1e293b; /* Warna teks lebih gelap agar kontras dengan kaca */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  margin-bottom: 6px;
  transition: all 0.2s;
}

.sidebar-menu a:hover {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
  padding-left: 24px;
}

.sidebar-menu a.active {
  color: white;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.sidebar-guest-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 12px 0 20px;
}

.sidebar-guest-box .btn {
  flex: 1;
  justify-content: center;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.sidebar-menu a:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
}

/* === SIDEBAR USER BOX - CENTERED & COLORED === */
.sidebar-user-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  margin: 0 0 20px 0;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #6366f1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-user-info {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.sidebar-user-name {
  font-weight: 700;
  font-size: 1rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

/* Jika ada icon user di sebelah nama */
.sidebar-user-box .user-icon {
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

#dev-mode-badge {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  z-index: 9999 !important;
  background: #111 !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  font-family: sans-serif !important;
  opacity: 0.9 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

/* === HERO === */
.hero {
  min-height: auto;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 100px;
  background: linear-gradient(
    160deg,
    #f8fafc 0%,
    #fafbfc 40%,
    var(--primary-light) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Glow effects */
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.06) 0%,
    transparent 70%
  );
  bottom: 20px;
  left: -80px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    border-radius: 16px;
  }
}










.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}
.hero-wave path {
  fill: var(--surface);
}
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
  opacity: 0.2;
}
/* TAMBAHKAN INI - Overlay untuk atur opacity gambar */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65); /* ← Atur opacity di sini! */
  pointer-events: none;
  z-index: 0;
}

.hero-content reveal {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.hero-title {
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section {
  padding: 100px 0;
  background: var(--surface);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-title {
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Trust Bar & App Strip */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-top: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  font-size: 1.8rem;
}
.trust-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.trust-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.trust-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 600;
}

.app-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.app-strip-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.app-strip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.app-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.app-name {
  font-weight: 700;
  font-size: 1rem;
}
.app-strip-card.soon {
  opacity: 0.7;
}

/* Features & Flow Grid */

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.step-number,
.step-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */

.cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
}
.cta-title {
  color: white;
  margin-bottom: 20px;
}
.cta-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-actions .btn-outline {
  border-color: white;
  color: white;
}
.cta-actions .btn-outline:hover {
  background: white;
  color: var(--primary);
}
.cta-note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

/* 6. PRODUCTS PAGE */
.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}
.showcase-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.showcase-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.showcase-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.showcase-icon.icon-primary {
  background: linear-gradient(135deg, var(--primary), #818cf8);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.showcase-icon.icon-accent {
  background: linear-gradient(135deg, var(--accent), #ff9b6a);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}
.showcase-icon.icon-teal {
  background: linear-gradient(135deg, var(--teal), #2dd4bf);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
}
.showcase-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
.badge-live {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.showcase-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.showcase-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.showcase-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.showcase-highlights li {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.showcase-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}
.showcase-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.showcase-btn.disabled {
  background: var(--bg);
  color: var(--text-muted);
  cursor: not-allowed;
  border: 1.5px solid var(--border);
}
.showcase-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Payment Methods Section - Unified Card */
.payment-methods-section {
  background: var(--bg);
  padding: 80px 0 60px;
  border-top: 1px solid var(--border);
}

.payment-header {
  text-align: center;
  margin-bottom: 48px;
}

.payment-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.payment-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.payment-card-unified {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.payment-category {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-category:not(:last-child) {
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--border);
}

.payment-category-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.payment-logo {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  height: 44px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  filter: grayscale(100%);
  opacity: 0.7;
}

.payment-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.payment-logo img {
  max-height: 100%;
  max-width: 100px;
  object-fit: contain;
}

.payment-note {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(5, 150, 105, 0.05)
  );
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
}
.payment-note p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-card-unified {
    padding: 24px;
    gap: 24px;
  }

  .payment-category:not(:last-child) {
    padding-bottom: 20px;
  }

  .payment-logos {
    gap: 8px;
  }
}

/* ==================================
   7. PRODUCT DETAIL PAGE
================================== */
.product-detail-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 100px;
  background: linear-gradient(
    160deg,
    #f8fafc 0%,
    #fafbfc 40%,
    var(--primary-light) 100%
  );
  overflow: hidden;
  min-height: 900px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  animation: glow-pulse 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.12) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -150px;
  animation: glow-pulse 10s ease-in-out infinite reverse;
}
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.product-detail-hero .container {
  position: relative;
  z-index: 1;
}
.product-detail-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.product-detail-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: inline-block;
  animation: bounce-soft 3s ease-in-out infinite;
}
@keyframes bounce-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.product-detail-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.product-detail-tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.mockup-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 20px;
}
.mockup-slider-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
}
.mockup-slider {
  position: relative;
  height: 640px;
  overflow: hidden;
  border-radius: 40px;
}
.mockup-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mockup-slide.active {
  opacity: 1;
  transform: translateX(0);
}
.mockup-slide.prev {
  transform: translateX(-100%);
}

.floating-card {
  position: absolute;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}
.floating-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.floating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.floating-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.floating-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.floating-card-1 {
  top: 10%;
  left: -80px;
  animation-delay: 0s;
}
.floating-card-2 {
  top: 15%;
  right: -80px;
  animation-delay: 1s;
}
.floating-card-3 {
  bottom: 25%;
  left: -60px;
  animation-delay: 2s;
}
.floating-card-4 {
  bottom: 20%;
  right: -70px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.mockup-hp {
  width: 320px;
  height: 640px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 100px rgba(79, 70, 229, 0.15);
  position: relative;
  animation: float-hp 6s ease-in-out infinite;
}
@keyframes float-hp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.mockup-hp::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 12px;
  z-index: 10;
}
.mockup-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 10;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}
.dot:hover {
  background: var(--primary);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev {
  left: 0;
}
.slider-arrow.next {
  right: 0;
}
.mockup-slider-container.touch-drag {
  cursor: grab;
}
.mockup-slider-container.touch-drag:active {
  cursor: grabbing;
}

.product-detail-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.features-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.feature-detail-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.feature-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.feature-detail-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.feature-detail-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.feature-detail-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 40px auto 0;
}
.comparison-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}
.comparison-card.featured {
  border-color: var(--primary);
  background: linear-gradient(
    160deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.comparison-header {
  text-align: center;
  margin-bottom: 32px;
}
.comparison-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.comparison-price {
  font-size: 1.1rem;
  font-weight: 700;
}
.comparison-price small {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.8;
}
.comparison-features {
  list-style: none;
  margin-bottom: 32px;
}
.comparison-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.comparison-features li:last-child {
  border-bottom: none;
}
.comparison-features .check {
  color: var(--teal);
  font-weight: 600;
}
.comparison-features .cross {
  color: var(--text-muted);
  opacity: 0.6;
}
.comparison-card.featured .comparison-features .check {
  color: white;
}
.comparison-card.featured .comparison-features .cross {
  color: rgba(255, 255, 255, 0.6);
}
.comparison-btn {
  width: 100%;
  justify-content: center;
}

/* FAQ Section */

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.faq-question:hover {
  background: var(--bg);
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================================
   8. ACCOUNT & ADMIN PAGES
================================== */
.account-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 20px 20px 60px;
}
.account-header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.account-back-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.account-back-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}
.account-header-nav span {
  font-weight: 600;
  font-size: 1rem;
}
.account-avatar-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}
.account-avatar {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.4);
}
.account-user-name {
  font-size: 1.2rem;
  font-weight: 700;
}
.account-user-email {
  font-size: 0.82rem;
  opacity: 0.8;
}
.account-content {
  max-width: 600px;
  margin: -32px auto 0;
  padding: 0 16px 60px;
}
.account-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.account-card-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.account-form-group {
  margin-bottom: 14px;
}
.account-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--text-secondary);
}
.account-form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
  font-family: inherit;
}
.account-form-group input:focus {
  outline: none;
  border-color: var(--primary);
}
.account-msg {
  display: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.account-msg.success {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
}
.account-msg.error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}
.account-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.account-product-item:last-child {
  border-bottom: none;
}
.account-product-info {
  flex: 1;
}
.account-product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.account-product-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 2px;
}
.account-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.account-badge-premium {
  background: #fef3c7;
  color: #92400e;
}

.account-logout-btn {
  width: 100%;
  padding: 14px;
  border: 2px solid #fecaca; /* ← Border merah soft, lebih visible */
  border-radius: 12px;
  background: #fff;
  color: #dc2626; /* ← Merah lebih bold */
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
  transition: all 0.25s ease;
}
.account-logout-btn:hover {
  background: #dc2626; /* ← Hover: background merah */
  color: white; /* ← Text jadi putih */
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}
.account-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: var(--text-secondary);
  gap: 12px;
  font-size: 0.88rem;
}
.btn-open-app {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--primary);
  color: white !important;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-open-app:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  color: white !important;
}

/* ==================================
   9. BLOG PAGES
================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.blog-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--text);
}
.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link:hover {
  gap: 10px;
}

.article-cta .btn {
  display: inline-flex;
}

/* === FOOTER, MODAL & TOAST === */
footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 16px;
}
.footer-brand .brand-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.footer-col-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.5;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === MODAL CLOSE BUTTON - UPDATED === */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text);
  transform: rotate(90deg);
}

.modal-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 28px;
}
.modal-tab {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.modal-tab.active {
  background: var(--primary);
  color: white;
}
.auth-panel {
  display: none;
}
.auth-panel.active {
  display: block;
}
.auth-field {
  margin-bottom: 18px;
}
.auth-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.auth-field input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.auth-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}
.auth-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}
.auth-submit:hover {
  background: var(--primary-dark);
}
.auth-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}
.auth-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
}
.auth-link:hover {
  text-decoration: underline;
}
.auth-error {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.4s ease;
  max-width: 360px;
}
.toast.success {
  border-color: var(--teal);
}
.toast.error {
  border-color: #ef4444;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Quick Links Box */
.quick-links-box {
  margin-top: 36px;
  padding: 24px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
}

.quick-links-title {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.quick-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}

.quick-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

/* === CONTACT PAGE ITEMS === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #818cf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: white;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.contact-item-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.contact-item-value a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.contact-form {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
}

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

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Responsive Contact */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

/* === ABOUT PAGE - ENHANCED DESIGN === */

/* Story Section - Lebih Menarik */

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

.about-story-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 24px;
  color: var(--text);
}

.about-story-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-left: 0;
  border-left: none;
}

.about-story-content p strong {
  color: var(--primary);
  font-weight: 700;
}

/* Stats Box yang Lebih Cantik */
.about-stats-box {
  background: white;
  border-radius: var(--radius);
  padding: 48px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 2px solid var(--border);
}

.about-stats-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  animation: bounce-soft 3s ease-in-out infinite;
}

.about-stats-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin: 12px 0;
  display: block;
}

.about-stats-number.text-accent {
  color: var(--accent);
  margin-top: 24px;
}

.about-stats-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  display: block;
}

.about-stats-arrow {
  font-size: 2.5rem;
  color: var(--primary);
  margin: 20px 0;
  display: block;
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}
/* Values Section - Card Grid Modern */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.about-value-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.about-value-card:hover::before {
  transform: scaleX(1);
}

.about-value-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  background: var(--primary-light);
}

.about-value-card:nth-child(2) .about-value-card-icon {
  background: var(--accent-light);
}

.about-value-card:nth-child(3) .about-value-card-icon {
  background: var(--teal-light);
}

.about-value-card:nth-child(4) .about-value-card-icon {
  background: rgba(79, 70, 229, 0.1);
}

.about-value-card:nth-child(5) .about-value-card-icon {
  background: rgba(255, 107, 53, 0.1);
}

.about-value-card:nth-child(6) .about-value-card-icon {
  background: rgba(13, 148, 136, 0.1);
}

.about-value-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.about-value-card-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .about-stats-box {
    padding: 32px 24px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-value-card {
    padding: 28px 24px;
  }
}

/* === ECOSYSTEM SECTION === */
.ecosystem-section {
  background: var(--surface);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.ecosystem-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.ecosystem-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.ecosystem-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}

.ecosystem-card .product-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ecosystem-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 18px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.ecosystem-link:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.ecosystem-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-section .heading-lg {
  color: white;
  margin-bottom: 16px;
}

.cta-section .body-lg {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-btn-primary {
  background: white;
  color: var(--primary-dark);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-outline {
  background: transparent;
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
  display: inline-block;
}

.cta-btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

/* PORTFOLIO */

@media (max-width: 768px) {
}

/* === JASA WEBSITE PAGE === */

/* Pricing Cards */

.package-card.popular {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.15);
  transform: scale(1.02);
}

.package-card.popular::before {
  content: "PALING LARIS";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.package-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.package-price .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Process Steps */

/* FAQ Jasa */

/* Responsive */
@media (max-width: 768px) {
  .package-card.popular {
    transform: none;
  }
}

/* === SIDEBAR DROPDOWN MENU === */
.sidebar-menu-dropdown {
  border-bottom: 1px solid var(--border);
}

.sidebar-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.2s;
}

.sidebar-dropdown-toggle:hover {
  color: var(--primary);
}

.sidebar-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.sidebar-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

.sidebar-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease;
  background: var(--bg);
}

.sidebar-dropdown-content.show {
  max-height: 300px;
  transition:
    max-height 0.4s ease-in,
    padding 0.3s ease;
}

.sidebar-dropdown-content a {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.sidebar-dropdown-content a:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 24px;
}

.sidebar-dropdown-content a:last-child {
  border-bottom: none;
}

/* Arrow animation */
.dropdown-arrow {
  flex-shrink: 0;
  margin-left: 8px;
}

/* === NAVBAR DROPDOWN (Desktop) === */
.navbar-dropdown {
  position: relative;
}

.navbar-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
}

.navbar-dropdown-toggle:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar-dropdown-toggle .dropdown-arrow {
  transition: transform 0.3s ease;
}

.navbar-dropdown:hover .navbar-dropdown-toggle .dropdown-arrow {
  transform: rotate(180deg);
}

.navbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-dropdown:hover .navbar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.navbar-dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 24px;
}

.navbar-dropdown-menu a:first-child {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.navbar-dropdown-menu a:last-child {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

/* Mobile: sembunyikan dropdown arrow */
@media (max-width: 768px) {
  .navbar-dropdown-toggle .dropdown-arrow {
    display: none;
  }
}

/* === JASA WEBSITE BANNER === */
.jasa-website-banner {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--accent-light) 100%
  );
  border-radius: var(--radius);
  margin: 60px 24px;
  padding: 60px 40px;
}

.jasa-website-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jasa-website-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.jasa-website-title {
  margin-bottom: 16px;
}

.jasa-website-desc {
  margin-bottom: 24px;
}

.jasa-website-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.jasa-website-trust {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.jasa-website-card {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.jasa-website-card-icon {
  font-size: 6rem;
  margin-bottom: 16px;
}

.jasa-website-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.jasa-website-card-subtitle {
  color: var(--text-secondary);
}

.jasa-website-card-divider {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
}

.jasa-website-card-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.jasa-website-card-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.jasa-website-card-small {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .jasa-website-banner {
    margin: 40px 12px;
    padding: 40px 24px;
  }

  .jasa-website-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jasa-website-actions {
    flex-direction: column;
  }

  .jasa-website-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .jasa-website-card-icon {
    font-size: 4rem;
  }
}

/* === FEATURES STRIP === */

.product-card-border-accent {
  border-color: var(--accent-light);
}

.product-card-border-teal {
  border-color: var(--teal-light);
}

.features-cta-wrapper {
  text-align: center;
  margin-top: 48px;
}

/* === APP PREVIEW SECTION === */
.app-preview-section {
  background: linear-gradient(135deg, var(--primary-light), var(--bg));
}

/* === FEATURES STRIP (index.html) === */
.features-section {
  background: var(--surface);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-top {
  margin-bottom: 20px;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.product-icon.icon-primary {
  background: linear-gradient(135deg, var(--primary), #818cf8);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.product-icon.icon-accent {
  background: linear-gradient(135deg, var(--accent), #ff9b6a);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}
.product-icon.icon-teal {
  background: linear-gradient(135deg, var(--teal), #2dd4bf);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.product-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Border color variants */
.product-card-border-primary {
  border-color: var(--primary-light);
}

.product-card-border-primary:hover {
  border-color: var(--primary);
}

.product-card-border-accent:hover {
  border-color: var(--accent);
}

.product-card-border-teal:hover {
  border-color: var(--teal);
}

/* Responsive */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 24px;
  }
}

/* Legal Document */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 48px 0 16px;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}

.legal-content ul {
  margin: 16px 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text);
  font-weight: 700;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

.legal-info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.legal-info-box p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.legal-warning-box p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.legal-toc h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
  line-height: 2;
}

.legal-toc a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-meta {
  text-align: center;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-top: 48px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
}

/* === LEGAL CONSENT MODAL - ENHANCED === */
#legal-consent-modal .modal-box {
  max-width: 500px;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#legal-consent-modal h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#legal-consent-modal h3::before {
  content: "📋";
  font-size: 1.8rem;
}

#legal-consent-modal p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Checkbox Container yang Lebih Cantik */
.legal-checkbox-container {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--accent-light)
  );
  padding: 20px;
  border-radius: 16px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.legal-checkbox-container:hover {
  border-color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.12),
    rgba(255, 107, 53, 0.12)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

.legal-checkbox-container input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.legal-checkbox-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}

.legal-checkbox-text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  transition: all 0.2s;
}

.legal-checkbox-text a:hover {
  color: var(--primary-dark);
  text-decoration-color: var(--accent);
}

/* Tombol Lanjutkan - Disabled State */
#btn-legal-continue {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#btn-legal-continue:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--text-muted);
  transform: none;
  box-shadow: none;
}

#btn-legal-continue:disabled::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.85rem;
  color: white;
  opacity: 0.8;
}

#btn-legal-continue:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
}

/* Close Button Enhancement */
#legal-consent-modal .modal-close {
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s;
}

#legal-consent-modal .modal-close:hover {
  background: var(--border);
  transform: rotate(90deg);
}

/* TERMS DOCUMENT */

/* REFUND DOCUMENT */
.legal-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(
    160deg,
    #f8fafc 0%,
    #fafbfc 40%,
    var(--primary-light) 100%
  );
  text-align: center;
}

.legal-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-warning-box {
  background: rgba(255, 107, 53, 0.08);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.legal-success-box {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid var(--teal);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.legal-success-box p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.legal-toc {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.legal-toc a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.refund-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.refund-summary-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.refund-summary-card h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.refund-summary-card .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.refund-summary-card .desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .refund-summary {
    grid-template-columns: 1fr;
  }
}

.legal-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(
    160deg,
    #f8fafc 0%,
    #fafbfc 40%,
    var(--primary-light) 100%
  );
  text-align: center;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cookie-table th {
  background: var(--primary-light);
  padding: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}

.cookie-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

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

.cookie-table tr:hover {
  background: var(--bg);
}
.cookie-category {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cookie-category-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--primary-light);
}

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.cookie-category-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cookie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.cookie-list li:last-child {
  border-bottom: none;
}

.cookie-list li strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 24px 16px 60px;
  }

  .legal-content h2 {
    font-size: 1.3rem;
    margin: 36px 0 12px;
  }

  .legal-content h3 {
    font-size: 1.05rem;
    margin: 24px 0 10px;
  }

  .legal-toc {
    padding: 20px;
  }

  .cookie-table {
    font-size: 0.85rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 12px;
  }

  .cookie-category {
    padding: 20px;
  }
}

/* === RESPONSIVE MEDIA QUERIES === */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .navbar-nav a {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  .navbar-actions .btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
  .floating-card {
    padding: 10px 12px;
  }
  .floating-card-1 {
    left: -60px;
  }
  .floating-card-2 {
    right: -60px;
  }
  .floating-card-3 {
    left: -40px;
  }
  .floating-card-4 {
    right: -50px;
  }
  .floating-title {
    font-size: 0.78rem;
  }
  .floating-sub {
    font-size: 0.68rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  body {
    font-size: 1rem;
  }
  .display {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .heading-xl {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .navbar-nav {
    display: none;
  }
  .navbar-actions .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar-inner {
    padding: 0 16px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 60px;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 64px 0;
  }
  .products-grid,
  .products-showcase-grid,
  .pricing-grid,
  .features-grid,
  .flow-grid,
  .features-detail-grid,
  .steps-grid,
  .comparison-wrapper,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .product-detail-hero {
    min-height: auto;
    padding-bottom: 60px;
  }
  .mockup-slider {
    height: 520px;
  }
  .mockup-hp {
    width: 260px;
    height: 520px;
  }
  .floating-card,
  .slider-arrow {
    display: none;
  }
  .product-detail-actions,
  .cta-actions {
    flex-direction: column;
  }
  .product-detail-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .trust-bar {
    gap: 24px;
    padding: 24px;
  }
  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .payment-logo {
    padding: 8px 12px;
    height: 40px;
    min-width: 70px;
  }
  .payment-logo img {
    max-width: 80px;
  }
  .payment-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .modal-box {
    padding: 28px 20px;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .product-card,
  .showcase-card {
    padding: 28px 20px;
  }

  .mockup-slider-container {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .account-product-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .account-product-item > div:last-child {
    width: 100%;
    justify-content: space-between;
  }
  .btn-open-app {
    flex: 1;
    justify-content: center;
  }

  #navbar-user {
    display: none !important;
  }
}

/* === HIDE TABS DI MODAL LUPA PASSWORD === */
#panel-forgot .modal-tabs,
.modal-tabs:has(+ #panel-forgot),
.auth-panel:has(.forgot-form) ~ .modal-tabs,
.forgot-panel ~ .modal-tabs,
#forgot-panel ~ .modal-tabs {
  display: none !important;
}

/* Atau cara yang lebih universal - sembunyikan tabs saat panel forgot aktif */
.modal-box:has(#panel-forgot.active) .modal-tabs,
.modal-box:has(.forgot-panel.active) .modal-tabs {
  display: none !important;
}
