* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
  --bg-dark: #030712;
  --bg-light: #f8fafc;
  --card-dark: rgba(255, 255, 255, 0.03);
  --card-light: #ffffff;
  --border-dark: rgba(255, 255, 255, 0.06);
  --border-light: rgba(0, 0, 0, 0.06);
  --primary: #4f46e5;
  --primary-glow: rgba(79, 70, 229, 0.4);
  --secondary: #06b6d4;
  --secondary-glow: rgba(6, 182, 212, 0.4);
  --accent: #10b981;
  --text-dark: #f9fafb;
  --text-light: #0f172a;
  --muted-dark: #9ca3af;
  --muted-light: #64748b;
  --glass: rgba(255, 255, 255, 0.03);
}

body {
  background: var(--bg-dark);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Custom Styling untuk Survey Modal - FIX SCROLL MENTOK */
.survey-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
}
.survey-modal.active {
  display: flex;
}
.survey-container {
  background: #1e293b;
  color: #ffffff;
  width: 100%;
  max-width: 750px;
  border-radius: 16px;
  border: 1px solid #334155;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin: auto;
  animation: modalFadeIn 0.4s ease;
}
@keyframes modalFadeIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.survey-header {
  padding: 24px;
  border-bottom: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 10;
}
.survey-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #38bdf8;
}
.survey-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.survey-close:hover { color: #ef4444; }
.survey-body { padding: 30px; }
.survey-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #38bdf8;
  margin-top: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #38bdf8;
  padding-left: 10px;
}
.survey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 34px;
}
.survey-full { grid-column: span 2; }
@media (max-width: 640px) {
  .survey-grid { grid-template-columns: 1fr; gap: 16px; }
  .survey-full { grid-column: span 1; }
}
.survey-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.survey-form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}
.survey-input, .survey-select, .survey-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0f172a;
  border: 1px solid #475569;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.survey-input:focus, .survey-select:focus, .survey-textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}
.survey-radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.survey-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #e2e8f0;
  cursor: pointer;
}
.survey-radio-label input {
  width: 18px;
  height: 18px;
  accent-color: #38bdf8;
}
.survey-footer {
  padding: 24px 30px;
  background: #0f172a;
  border-top: 1px solid #334155;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.header-logo-text {
  display: none; 
  font-weight: bold;
  font-size: 20px;
  color: #ffffff; 
}

@media (max-width: 768px) {
  .header-logo {
    display: none !important; 
  }
  .header-logo-text {
    display: inline-block; 
  }
}

/* CHECKOUT POPUP / MODAL STYLE */
.checkout-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
}
.checkout-modal.active {
  display: flex;
}
.checkout-container {
  background: #1e293b;
  color: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  border: 1px solid #334155;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin: auto;
  animation: modalFadeIn 0.3s ease;
}
.checkout-header {
  padding: 20px 24px;
  border-bottom: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a;
}
.checkout-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #38bdf8;
}
.checkout-body {
  padding: 24px;
}
.order-summary-box {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.summary-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  border-bottom: 1px solid #233349;
  padding-bottom: 6px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.summary-row.total-row {
  margin-top: 14px;
  border-top: 1px dashed #334155;
  padding-top: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  color: #4ade80;
}
.addon-selection-group {
  background: #192437;
  border: 1px solid #2e3e56;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.addon-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}
.addon-checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: #38bdf8;
}
.checkout-footer {
  padding: 16px 24px;
  background: #0f172a;
  border-top: 1px solid #334155;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.btn-wa-checkout {
  background: #10b981;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-wa-checkout:hover {
  background: #059669;
}

.lang-switcher-wrapper {
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
  vertical-align: middle;
}
.lang-select {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #334155;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.lang-select:focus {
  border-color: #38bdf8;
}
@media (max-width: 768px) {
  .lang-switcher-wrapper {
    display: block;
    margin: 15px 20px;
  }
  .lang-select {
    width: 100%;
    padding: 12px;
  }
}

.swal2-popup {
  font-family: 'Inter', sans-serif !important;
  border-radius: 16px !important;
}
.swal2-title {
  color: #0f172a !important;
  font-weight: 700 !important;
}
.swal2-html-container {
  color: #475569 !important;
  line-height: 1.6 !important;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* Helper Utilities */
.max-w-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }

/* --- Header & Navigation --- */
header {
  padding: 25px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  padding: 15px 0;
  background: linear-gradient(145deg, #080568, #502bd6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1001;
}

.logo span {
  background: linear-gradient(135deg, #a5b4fc, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: white;
  z-index: 1001;
}

.menu {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.menu li {
  display: inline-block;
}

.menu a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.menu a:hover {
  color: var(--secondary);
}

/* --- IMPLEMENTASI BARU: MENU ACTIVE STATE STYLING --- */
.menu a.active {
  color: var(--secondary) !important;
  font-weight: 700;
}

.menu a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 25px var(--primary-glow);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--secondary-glow);
}

/* --- Slider Section --- */
.slider-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
  perspective: 1500px;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(3, 7, 18, 0.95) 0%, 
    rgba(3, 7, 18, 0.75) 50%, 
    rgba(3, 7, 18, 0.4) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: left !important;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.slide-content span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  background: rgba(6, 182, 212, 0.1);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.slide-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
  font-weight: 800;
  color: #ffffff;
  text-align: left !important;
}

.slide-content p {
  color: #e5e7eb;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left !important;
}

.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 15;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 999px;
}

.shutter-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
  pointer-events: none;
  perspective: 1500px;
}

.shutter-slice {
  height: 100%;
  flex: 1;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  opacity: 1;
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

/* --- Section Styling & Curves --- */
.section-curve {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
}

.section-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-light);
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-dark);
  position: relative;
}

/* Dynamic Text Colors */
.section-light .section-title h2,
.section-light .hero h1 { color: var(--text-light); }
.section-light .hero p, .section-light .section-title p { color: var(--muted-light); }

.section-dark .section-title h2,
.section-dark .hero h1 { color: var(--text-dark); }
.section-dark .hero p, .section-dark .section-title p { color: var(--muted-dark); }

/* --- Scroll Animation (Reveal) System --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-child-delay > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.revealed .reveal-child-delay > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.revealed .reveal-child-delay > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.revealed .reveal-child-delay > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.revealed .reveal-child-delay > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.revealed .reveal-child-delay > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.revealed .reveal-child-delay > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* --- Hero & Dashboard --- */
.hero {
  padding: 140px 0 80px; 
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero h1 { font-size: 3.2rem; line-height: 1.2; margin-bottom: 24px; letter-spacing: -1px; font-weight: 800; }
.hero h1 span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-light .hero p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; color: var(--muted-light); max-width: 95%; }

.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border: 1px solid rgba(79, 70, 229, 0.15); background: rgba(79, 70, 229, 0.06);
  border-radius: 999px; color: var(--primary); font-size: 0.88rem; margin-bottom: 30px; font-weight: 600;
}

.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.secondary-btn { border: 1px solid var(--primary); background: transparent; padding: 14px 28px; border-radius: 12px; color: var(--primary); text-decoration: none; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.section-dark .secondary-btn { border: 1px solid rgba(255, 255, 255, 0.15); color: white; }
.secondary-btn:hover { background: var(--primary); color: white; }

.dashboard-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px; padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(79, 70, 229, 0.08);
  position: relative;
}

.analytics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.mini-card { 
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); 
  border-radius: 20px; padding: 30px 24px; color: white; 
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.mini-card:hover { transform: translateY(-5px); border-color: var(--secondary); }
.mini-card h3 { font-size: 2.4rem; margin-bottom: 8px; font-weight: 800; color: #ffffff; }
.mini-card p { color: #94a3b8; font-size: 0.95rem; margin: 0; }

/* --- Highlight Strip --- */
.highlight-strip-container { padding-bottom: 80px; }
.highlight-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.hl-card { padding: 40px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hl-card.dark { background: #1f2937; color: #ffffff; border-right: 1px solid rgba(255,255,255,0.05); }
.hl-card.light { background: #ffffff; color: #1f2937; }
.hl-icon { margin-bottom: 24px; }
.hl-icon svg { width: 48px; height: 48px; color: var(--accent); }
.hl-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 15px; }
.hl-card.dark p { color: #d1d5db; font-size: 0.95rem; line-height: 1.7; }
.hl-card.light p { color: #6b7280; font-size: 0.95rem; line-height: 1.7; }

/* --- About Section --- */
.about-section { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .section-title { text-align: left; margin-bottom: 30px; }
.about-text p { margin-bottom: 20px; line-height: 1.8; font-size: 1.05rem; }
.about-image { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.about-image img { width: 100%; display: block; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 35px; }
.about-feature-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.95rem; }
.about-feature-item svg { color: var(--secondary); width: 24px; height: 24px; flex-shrink: 0; }

/* --- Articles Section --- */
.articles-section { padding: 120px 0; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }

/* Penyesuaian interior card untuk section dark */
.section-dark .article-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); box-shadow: none; }
.section-dark .article-card h3 { color: var(--text-dark); }
.section-dark .article-card p { color: var(--muted-dark); }
.section-dark .article-card:hover { border-color: rgba(6, 182, 212, 0.3); background: rgba(255, 255, 255, 0.04); }

.article-card { background: var(--card-light); border: 1px solid var(--border-light); border-radius: 20px; padding: 35px; transition: all 0.3s ease; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08); border-color: rgba(79, 70, 229, 0.2); }
.article-num { font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.4; line-height: 1; }
.article-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--text-light); letter-spacing: -0.5px; }
.article-card p { font-size: 0.98rem; line-height: 1.7; color: var(--muted-light); margin: 0; }

/* --- Portfolio --- */
.portfolio { padding: 120px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title span { color: var(--secondary); letter-spacing: 2px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase;}
.section-title h2 { font-size: 2.8rem; font-weight: 800; margin: 15px 0; letter-spacing: -1px; }

/* Penyesuaian filter button untuk section dark */
.section-dark .filter-btn { color: var(--text-dark); border-color: rgba(255, 255, 255, 0.1); }
.section-dark .filter-btn.active, .section-dark .filter-btn:hover { color: #fff; border-color: transparent; }

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 10px 22px;
  border-radius: 30px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.portfolio-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.portfolio-item {
  position: relative; 
  border-radius: 20px; 
  overflow: hidden; 
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
  aspect-ratio: 4/3;
  border: 1px solid var(--border-light);
  background: #fff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-dark .portfolio-item { border-color: rgba(255, 255, 255, 0.08); background: #0b0f19; box-shadow: none; }
.portfolio-item.hidden {
  display: none;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(3, 7, 18, 0.95), transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { font-size: 1.2rem; margin-bottom: 5px; color: white; font-weight: 700; }
.portfolio-overlay p { color: var(--secondary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0;}

/* --- IMPLEMENTASI BARU: SOLUTIONS SECTION (3 CARD PREMIUM) --- */
.solutions.section-light {
  background-color: var(--bg-light); /* Latar belakang terang estetis */
  padding: 120px 0;
}

.solutions .section-title h2 {
  color: var(--text-light);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.solutions .section-title p {
  color: var(--muted-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.sol-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: 16px; /* Sudut halus modern */
  padding: 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

/* Penataan Khusus Kartu Aktif (Rekrut IT In-house) */
.sol-card.active {
  border-color: #d1e7dd;
  background-color: #f0fff4; /* Soft green tint */
  box-shadow: 0 16px 36px rgba(46, 125, 50, 0.04);
}

.sol-card.active:hover {
  box-shadow: 0 24px 48px rgba(46, 125, 50, 0.08);
}

/* Header Kartu & Wrapper Ikon */
.sol-card-header {
  margin-bottom: 24px;
}

.sol-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-icon svg {
  width: 26px;
  height: 26px;
}

/* Skema Warna Pastel Ikon */
.sol-icon.icon-yellow {
  background-color: #fff8e1;
  color: #ffb300;
}

.sol-icon.icon-green {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.sol-icon.icon-peach {
  background-color: #ffe0b2;
  color: #ef6c00;
}

/* Tipografi Konten Kartu */
.sol-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.sol-card-body p {
  color: var(--muted-light);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

/* --- Pricing --- */
.pricing { padding: 120px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Penyesuaian interior price card untuk section dark */
.section-dark .price-card { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); box-shadow: none; }
.section-dark .price-card:hover { box-shadow: 0 30px 60px rgba(79, 70, 229, 0.15); border-color: rgba(79, 70, 229, 0.3); }
.section-dark .price-card h3 { color: var(--text-dark); }
.section-dark .price-card .desc { color: var(--muted-dark); }
.section-dark .price-card .cost { color: var(--text-dark); }
.section-dark .price-card .cost span { color: var(--muted-dark); }
.section-dark .price-features li { color: var(--text-dark); }
.section-dark .price-card.featured { border: 2px solid var(--primary); background: #0c1020; }

.price-card {
  border-radius: 24px; padding: 45px 35px; position: relative; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column; background: #ffffff; border: 1px solid var(--border-light);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(79, 70, 229, 0.12); }
.price-card.featured { border: 2px solid var(--primary); box-shadow: 0 25px 50px rgba(79, 70, 229, 0.15); }
.price-tag-pop { position: absolute; top: -15px; right: 20px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 5px 18px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; text-align: center; }
.price-card h3 { font-size: 1.6rem; margin-bottom: 12px; font-weight: 700; color: var(--text-light); }
.price-card .desc { font-size: 0.92rem; margin-bottom: 30px; line-height: 1.6; color: var(--muted-light); }
.price-card .cost { font-size: 2.5rem; font-weight: 800; margin-bottom: 5px; color: var(--text-light); }
.price-card .cost span { font-size: 0.95rem; font-weight: 400; color: var(--muted-light); }
.price-features { list-style: none; margin: 35px 0; flex-grow: 1; padding: 0; }
.price-features li { margin-bottom: 16px; display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text-light); }
.price-features li svg { width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.price-btn { display: block; text-align: center; padding: 15px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: 0.3s ease; }
.price-btn.outline { border: 1px solid var(--primary); color: var(--primary); }
.price-btn.outline:hover { background: var(--primary); color: white; }
.price-btn.fill { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }

/* --- Services/Keunggulan --- */
.services { padding: 120px 0; }

/* Penyesuaian service-card untuk section light */
.section-light .service-card {
  border-radius: 20px; padding: 40px 28px; transition: all 0.3s ease;
  background: #ffffff; border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.section-light .service-card h3 { color: var(--text-light); margin-bottom: 15px; font-size: 1.25rem; font-weight: 700;}
.section-light .service-card p { color: var(--muted-light); font-size: 0.95rem; line-height: 1.7; }
.section-light .service-card:hover { transform: translateY(-5px); border-color: rgba(79, 70, 229, 0.2); box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06); background: #ffffff; }

.section-dark .service-card {
  border-radius: 20px; padding: 40px 28px; transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
}
.section-dark .service-card h3 { color: white; margin-bottom: 15px; font-size: 1.25rem; font-weight: 700;}
.section-dark .service-card p { color: var(--muted-dark); font-size: 0.95rem; line-height: 1.7; }
.section-dark .service-card:hover { transform: translateY(-5px); border-color: var(--secondary); background: rgba(255, 255, 255, 0.05); }
.icon-box {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(79, 70, 229, 0.15); border: 1px solid rgba(79, 70, 229, 0.2);
  margin-bottom: 24px; display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
}
.icon-box svg { width: 28px; height: 28px; }

/* --- Testimonials --- */
.testimonials-section { padding: 120px 0; position: relative; }

/* Penyesuaian interior content card testimonial untuk section dark */
.section-dark .testimonial-content-card { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); box-shadow: none; }
.section-dark .testimonial-content-card p { color: var(--text-dark); }
.section-dark .testimonial-user h5 { color: var(--text-dark); }
.section-dark .testimonial-user span { color: var(--muted-dark); }

.testimonial-container { max-width: 900px; margin: 0 auto; position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.testimonial-slide { min-width: 100%; box-sizing: border-box; padding: 10px; }
.testimonial-content-card { border-radius: 24px; padding: 50px; text-align: center; background: #ffffff; border: 1px solid var(--border-light); box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.testimonial-content-card p { font-size: 1.25rem; line-height: 1.8; font-style: italic; margin-bottom: 30px; font-weight: 400; color: var(--text-light); }
.testimonial-user { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-user img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--secondary); }
.testimonial-user h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-light); }
.testimonial-user span { font-size: 0.88rem; color: var(--muted-light); }
.testimonial-nav { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.test-nav-btn { background: transparent; border: 1px solid var(--primary); color: var(--primary); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: bold; transition: all 0.3s ease; }
.test-nav-btn:hover { background: var(--primary); color: white; }

/* --- FAQ Section --- */
.faq-section { padding: 120px 0; }
.faq-wrapper { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

/* Penyesuaian interior accordion FAQ untuk section dark */
.section-dark .faq-item { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); }
.section-dark .faq-item:hover { border-color: rgba(6, 182, 212, 0.3); }
.section-dark .faq-item.active { border-color: var(--secondary); background: rgba(6, 182, 212, 0.02); }
.section-dark .faq-header h4 { color: var(--text-dark); }
.section-dark .faq-icon { background: rgba(255, 255, 255, 0.05); color: var(--secondary); }
.section-dark .faq-item.active .faq-icon { background: var(--secondary); color: #030712; }
.section-dark .faq-content { color: var(--muted-dark); }

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.03);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.06);
}
.faq-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}
.faq-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  background: var(--primary);
  color: #ffffff;
}
.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content {
  padding: 0 30px 24px 30px;
  color: var(--muted-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --- Contact Form --- */
.contact-section { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info { padding-right: 20px; }

.contact-form-wrapper { 
  padding: 50px 45px !important; 
}
.form-group { 
  margin-bottom: 28px !important; 
}
.form-control {
  padding: 16px 20px !important; 
}

/* Penyesuaian interior contact untuk section light */
.section-light .contact-info p { color: var(--muted-light); margin-bottom: 40px; line-height: 1.8; }
.section-light .contact-detail h4 { color: var(--text-light); font-size: 1.1rem; margin-bottom: 5px; }
.section-light .contact-detail p { color: var(--muted-light); margin: 0; font-size: 0.95rem; }
.section-light .contact-form-wrapper { background: #ffffff; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 1px solid var(--border-light); }
.section-light .form-group label { display: block; margin-bottom: 10px; color: var(--text-light); font-weight: 600; font-size: 0.9rem; }
.section-light .form-control { width: 100%; border: 1px solid var(--border-light); background: #f8fafc; font-family: inherit; font-size: 1rem; color: var(--text-light); transition: all 0.3s ease; border-radius: 12px; }
.section-light .form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); }

.section-dark .contact-info p { color: var(--muted-dark); margin-bottom: 40px; line-height: 1.8; }
.section-dark .contact-detail h4 { color: white; font-size: 1.1rem; margin-bottom: 5px; }
.section-dark .contact-detail p { color: var(--muted-dark); margin: 0; font-size: 0.95rem; }
.section-dark .contact-form-wrapper { background: #1e293b; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); }
.section-dark .form-group label { display: block; margin-bottom: 10px; color: white; font-weight: 600; font-size: 0.9rem; }
.section-dark .form-control { width: 100%; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); font-family: inherit; font-size: 1rem; color: white; transition: all 0.3s ease; border-radius: 12px; }
.section-dark .form-control:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1); }
textarea.form-control { resize: vertical; min-height: 140px; }
.submit-btn { width: 100%; border: none; cursor: pointer; justify-content: center; font-size: 1rem; padding: 16px; border-radius: 12px; }

/* --- Floating Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.5);
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- General Modal Popup --- */
.modal { position: fixed; inset: 0; background: rgba(3, 7, 12, 0.85); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-content { background: #0f172a; border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; padding: 40px; color: white; transform: translateY(20px); transition: all 0.4s ease; }
.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 10px; }

.close-modal { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.05); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 10;}
.modal-body h3 { font-size: 2rem; margin-bottom: 15px; color: #fff; line-height: 1.3; padding-right: 30px;}
.modal-body p { line-height: 1.8; color: #94a3b8; margin-bottom: 20px; font-size: 0.95rem; }
.modal-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.info-label { color: #64748b; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.info-value { font-weight: 600; color: #fff; margin-top: 2px; }
.legal-content h4 { color: #fff; margin: 25px 0 10px; font-size: 1.2rem;}

/* --- Footer --- */
footer { padding: 60px 0 40px; color: #6b7280; text-align: center; background: #031342; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-links { margin-top: 20px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;}
.footer-links a { color: var(--secondary); text-decoration: none; font-size: 0.85rem; cursor: pointer; transition: color 0.3s ease;}
.footer-links a:hover { color: white; text-decoration: underline; }

/* --- Responsive Mobile & Tablet Adjustments --- */
@media(max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-buttons { justify-content: center; }
  .section-light .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .highlight-strip { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); } /* Diubah ke 2 kolom untuk tablet */
  .portfolio-grid-layout { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text .section-title { text-align: center; }
  .about-text p { text-align: center; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 900px) {
  .menu-toggle { display: flex; align-items: center; }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
    visibility: hidden;
  }
  .menu.active { 
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
    visibility: visible;
  }
  .menu li { display: block; text-align: center; width: 100%; }
  .menu a { font-size: 1.1rem; display: block; padding: 10px; }
  .menu .btn { display: inline-flex; width: 80%; justify-content: center; }
}

@media (max-width: 768px) {
  .section-light, 
  .section-dark { 
    padding: 60px 0; 
  }
  .slider-section.section-dark,
  .slider-section.section-light { 
    padding: 0px 0 !important; 
  }
  .slide-content h1 { font-size: 2.5rem; }
  .slide-content p { font-size: 1.05rem; }
  .hero { padding: 120px 0 40px; }
  .hero h1 { font-size: 2.5rem; }

  .highlight-strip { grid-template-columns: 1fr; }
  .hl-card.dark { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .solutions-grid { grid-template-columns: 1fr; } /* Menjadi 1 kolom penuh di mobile */
  .solutions .section-title h2 { font-size: 2rem; }
  
  .pricing-grid, 
  .service-grid { grid-template-columns: 1fr; }

  .portfolio-grid-layout { grid-template-columns: 1fr; } 
  .section-title h2 { font-size: 2rem; }

  .testimonial-content-card { padding: 30px 20px; }
  .faq-header { padding: 20px; }
  .faq-content { padding: 0 20px 20px 20px; }
  .contact-form-wrapper { padding: 30px 20px !important; }
  .modal-content { padding: 30px 20px; }
  .modal-info-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

@media(max-width: 480px) {
  .slide-content h1 { font-size: 2rem; }
  .hero h1 { font-size: 2rem; }
  .dashboard-card { padding: 25px; }
  .analytics { grid-template-columns: 1fr; gap: 15px; }
  .mini-card { padding: 20px 15px; }
  .mini-card h3 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-buttons a { width: 100%; justify-content: center; }
}

/* --- IMPLEMENTASI BARU: SOLUTIONS SECTION (3 CARD PREMIUM - DARK MODE) --- */
.solutions.section-dark {
  background-color: var(--bg-dark); /* Menggunakan warna gelap utama website */
  padding: 120px 0;
}

.solutions .section-title h2 {
  color: var(--text-dark); /* Teks putih terang */
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.solutions .section-title p {
  color: var(--muted-dark); /* Teks abu-abu halus khas dark mode */
  font-size: 1.1rem;
  line-height: 1.7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.sol-card {
  background: var(--card-dark); /* Menggunakan background kartu transparan/gelap tipis */
  border: 1px solid var(--border-dark); /* Border halus dark mode */
  border-radius: 16px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.sol-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05); /* Sedikit lebih terang saat di-hover */
  border-color: rgba(255, 255, 255, 0.15);
}

/* Penataan Khusus Kartu Aktif (Rekrut IT In-house) - Dibuat Menyala Lembut */
.sol-card.active {
  border-color: rgba(16, 185, 129, 0.3); /* Memakai warna --accent (hijau) dengan opacity */
  background-color: rgba(16, 185, 129, 0.04); /* Sentuhan warna hijau transparan */
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.03);
}

.sol-card.active:hover {
  background-color: rgba(16, 185, 129, 0.07);
  border-color: rgba(16, 185, 129, 0.5);
}

/* Header Kartu & Wrapper Ikon */
.sol-card-header {
  margin-bottom: 24px;
}

.sol-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-icon svg {
  width: 26px;
  height: 26px;
}

/* Skema Warna Pastel Ikon - Disesuaikan agar Glow di Latar Belakang Gelap */
.sol-icon.icon-yellow {
  background-color: rgba(255, 202, 40, 0.1);
  color: #ffca28;
}

.sol-icon.icon-green {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent); /* Menggunakan warna dasar hijau --accent Anda */
}

.sol-icon.icon-peach {
  background-color: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}

/* Tipografi Konten Kartu di Mode Dark */
.sol-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark); /* Judul kartu putih terang */
  margin-bottom: 14px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.sol-card-body p {
  color: var(--muted-dark); /* Deskripsi kartu abu-abu */
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}


/* --- ANIMATION ENGINE: PRICING HOVER & ACTIVE STATE --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
  transition: all 0.4s ease;
}

.price-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  
  /* Memicu transisi smooth untuk pergerakan transform, shadow, and borders */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
  box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
  border-color 0.3s ease, 
  opacity 0.4s ease;
  will-change: transform, box-shadow, opacity;
}

/* 1. Efek Animasi Saat Kursor Menyorot (HOVER) */
.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #3b82f6; /* Berubah ke aksen warna biru interaktif */
  box-shadow: 0 20px 30px -5px rgba(15, 23, 42, 0.08), 0 10px 15px -5px rgba(37, 99, 235, 0.04);
  z-index: 10;
}

/* Hover khusus untuk tombol bawaan kartu */
.price-card:hover .price-btn.outline {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.price-card:hover .price-btn.fill {
  background-color: #1d4ed8;
  transform: scale(1.03);
}

/* 2. Efek Animasi Saat Kartu Dipilih/Diklik (SELECTED STATE via JS) */
.price-card.selected {
  transform: translateY(-12px) scale(1.04); /* Naik lebih tinggi and membesar */
  border-color: #2563eb !important;
  background-color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25) !important; /* Glow efek biru tebal */
  z-index: 20;
  opacity: 1 !important;
}

/* Paket bawaan default featured (Maju) border soft */
.price-card.featured {
  border: 1px solid #cbd5e1;
}

/* 3. Efek Meredup (Fade Out) untuk Kartu yang TIDAK Dipilih */
.pricing-grid.has-selection .price-card:not(.selected) {
  opacity: 0.5; /* Meredupkan kartu lain agar fokus */
  transform: scale(0.97);
  box-shadow: none;
}

/* Struktur Detail Komponen Atas & Tengah */
.price-card-header {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
  margin-bottom: 24px;
}
.package-tag-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.price-card .cost {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}
.price-card .cost span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
}
.commit-sub-text {
  font-size: 0.8rem;
  color: #94a3b8;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.4;
}
.price-features li svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card-footer {
  margin-top: 35px;
}

/* Style Oval Button Premium */
.price-card .price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.price-card .price-btn.outline {
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background: #ffffff;
}
.price-card .price-btn.fill {
  background: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
}
.price-tag-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
/* --- CONFIGURASI NAVBAR BARU: LOGO & MENU LEBIH DEKAT & PRESISI --- */
#mainHeader nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important; /* Diubah dari space-between ke flex-start */
  gap: 60px; /* Jarak ideal yang presisi antara ujung Logo dan Menu pertama (Tentang Kami) */
}

.header-logo {
  height: auto;
  max-height: 48px; 
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

    /* Mengatur menu ul agar sisa space otomatis mendorong tombol ke ujung kanan jika diperlukan, 
       atau tetap rapat teratur sesuai standar arsitektur UI premium */
       #navMenu {
        display: flex;
        align-items: center;
        gap: 24px; /* Jarak antar list menu navigasi */
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%; /* Memanfaatkan lebar container */
        justify-content: flex-start;
      }

      /* Dorong tombol terakhir (Mulai Go Online) ke pojok kanan secara otomatis agar clean */
      #navMenu > li:last-child {
        margin-left: auto;
      }

      /* --- EFFECT LOADING SCREEN PRELOADER --- */
      #page-preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(15, 23, 42, 0.96); 
        z-index: 99999; 
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease, visibility 0.5s ease;
      }
      
      .preloader-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .preloader-logo {
        width: auto;
        max-width: 160px; 
        height: auto;
        max-height: 70px;
        margin-bottom: 20px;
        display: block;
        object-fit: contain;
      }

      .preloader-typing {
        font-family: 'Inter', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        overflow: hidden;
        white-space: nowrap;
        border-right: 4px solid rgb(79, 70, 229); 
        width: 0;
        display: inline-block;
        margin: 0 auto;
        
        background: linear-gradient(135deg, rgb(79, 70, 229), rgb(6, 182, 212));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        
        animation: 
        typePreloader 1.8s steps(9, end) 0.2s forwards,
        blinkPreloaderCursor 0.75s step-end infinite;
      }

      @keyframes typePreloader {
        from { width: 0; }
        to { width: 100%; }
      }

      @keyframes blinkPreloaderCursor {
        from, to { border-color: transparent; }
        50% { border-color: rgb(79, 70, 229); }
      }

      /* --- UTILITIES & RESET RESPONSIVE BASE --- */
      .container {
        width: 100%;
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 20px;
        padding-left: 20px;
        box-sizing: border-box;
      }

      /* --- RESTRUKTURISASI VISUAL: PORTFOLIO GALLERY GRID --- */
      .portfolio-grid-layout {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        padding: 30px 0;
      }
      
      .portfolio-item {
        position: relative;
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
        border: 1px solid #e2e8f0;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
      }
      
      .portfolio-item.hidden {
        display: none !important;
      }

      .portfolio-img-wrapper {
        position: relative;
        width: 100%;
        height: 230px;
        overflow: hidden;
        background-color: #f8fafc;
      }
      
      .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .portfolio-badge-pill {
        position: absolute;
        top: 16px;
        left: 16px;
        padding: 6px 14px;
        border-radius: 30px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 5;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }
      
      .badge-theme-blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }
      .badge-theme-green { background: linear-gradient(135deg, #10b981, #059669); }
      .badge-theme-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
      .badge-theme-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }

      .portfolio-body-details {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        background: #ffffff;
      }

      .portfolio-body-details small {
        color: #64748b;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 6px;
        display: block;
      }
      
      .portfolio-body-details h4 {
        color: #0f172a;
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
        transition: color 0.3s ease;
      }
      
      .portfolio-body-details p {
        color: #475569; 
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
      }

      .portfolio-item:hover {
        transform: translateY(-8px);
        border-color: #cbd5e1;
        box-shadow: 0 20px 35px -5px rgba(15, 23, 42, 0.1), 0 12px 20px -8px rgba(15, 23, 42, 0.05);
      }
      
      .portfolio-item:hover img {
        transform: scale(1.04);
      }

      .portfolio-item:hover .portfolio-body-details h4 {
        color: var(--primary);
      }

      .portfolio-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 40px;
        padding-bottom: 20px;
      }
      .page-btn {
        padding: 10px 20px;
        border: 1px solid #cbd5e1;
        background: #ffffff;
        color: #0f172a;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .page-btn:hover {
        background: #f1f5f9;
        border-color: #94a3b8;
      }
      .page-btn.active {
        background: #2563eb;
        color: #ffffff;
        border-color: #2563eb;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
      }

      #introContentWrapper {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        transition: opacity 0.25s ease !important;
      }
      #intro .reveal-left {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
      }

      /* --- RESPONSIVE MODAL COMPONENT STYLING --- */
      .modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: rgba(15, 23, 42, 0.8);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        align-items: center;
        justify-content: center;
      }
      
      .modal[style*="display: block"], 
      .modal[style*="display: flex"] {
        display: flex !important;
      }

      .modal-content {
        background-color: #1e293b;
        border: 1px solid #334155;
        margin: auto;
        padding: 32px 24px;
        border-radius: 20px;
        width: 90%;
        max-width: 650px;
        max-height: 90vh;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        box-sizing: border-box;
      }

      .close-modal {
        position: absolute;
        top: 16px;
        right: 20px;
        color: #94a3b8;
        font-size: 30px;
        font-weight: 500;
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.2s ease;
        z-index: 10;
        line-height: 1;
      }

      .close-modal:hover {
        color: #ffffff;
      }

      .modal-meta-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      /* --- MASTER GLOBAL CORE RESPONSIVE MEDIA QUERIES --- */
      @media (max-width: 1024px) {
        #mainHeader nav {
          gap: 30px !important; /* Kurangi jarak gap di tablet screen */
        }
        .solutions-grid, .pricing-grid, .service-grid {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
          gap: 20px !important;
        }
      }

      @media (max-width: 768px) {
        #mainHeader nav {
          justify-content: space-between !important; /* Kembalikan ke space-between saat mobile menu aktif */
        }
        .header-logo {
          max-height: 40px; 
        }
        .preloader-typing {
          font-size: 1.8rem !important;
        }
        .preloader-logo {
          max-width: 130px;
        }
        .slide-content h1 {
          font-size: 2rem !important;
          line-height: 1.3 !important;
        }
        .slide-content p {
          font-size: 1rem !important;
        }
        .hero-buttons {
          flex-direction: column;
          gap: 12px;
          width: 100%;
        }
        .hero-buttons .btn, .hero-buttons .secondary-btn {
          width: 100%;
          text-align: center;
          box-sizing: border-box;
        }
        #intro .hero.container {
          display: flex !important;
          flex-direction: column !important;
          gap: 40px !important;
        }
        .analytics {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 15px !important;
        }
        .about-grid {
          display: flex !important;
          flex-direction: column !important;
          gap: 35px !important;
        }
        .about-image {
          order: -1 !important;
          width: 100% !important;
        }
        .about-image img {
          max-height: 300px;
          width: 100%;
          object-fit: cover;
        }
        .max-w-700 {
          width: 100% !important;
        }
        .articles-grid {
          grid-template-columns: 1fr !important;
          gap: 20px !important;
        }
        .contact-grid {
          grid-template-columns: 1fr !important;
          gap: 40px !important;
        }
        .portfolio-filter {
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px !important;
        }
        .filter-btn {
          padding: 8px 16px !important;
          font-size: 0.9rem !important;
        }
      }

      @media (max-width: 640px) {
        .modal-content {
          padding: 28px 20px;
          width: 92%;
        }
        .modal-meta-grid {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        #fx_modal_title {
          font-size: 1.5rem !important;
          padding-right: 20px;
        }
        #fx_modal_desc {
          font-size: 0.925rem !important;
          margin-bottom: 18px !important;
          padding-bottom: 14px !important;
        }
        .portfolio-grid-layout {
          grid-template-columns: 1fr !important;
        }
        .analytics {
          grid-template-columns: 1fr !important;
        }
      }
      /* --- TESTIMONIAL INITIAL AVATAR STYLE --- */
      .testimonial-avatar-initial {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgb(79, 70, 229), rgb(6, 182, 212));
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
      }

      /* Container Grid */
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        align-items: stretch;
      }

/* Card Base */
.price-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
  border: 2px solid #2563eb; /* Warna utama biru */
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

/* Header Styling */
.price-card-header {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.package-tag-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 12px;
}

/* Penataan Harga Lebih Rapi */
.cost-wrapper {
  display: flex;
  align-items: baseline;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 10px;
}

.cost-wrapper .currency {
  font-size: 1.25rem;
  margin-right: 4px;
}

.cost-wrapper .amount {
  font-size: 2.25rem;
  letter-spacing: -1px;
}

.cost-wrapper .period {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
  margin-left: 4px;
}

/* Biaya Setup */
.setup-fee-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  background-color: #eff6ff;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* Deskripsi Pendek */
.commit-sub-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* Features List */
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  font-size: 0.925rem;
  color: #334155;
  margin-bottom: 12px;
  line-height: 1.4;
}

.price-features svg {
  width: 16px;
  height: 16px;
  color: #10b981; /* Warna hijau checklist */
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Button & Pop Tag */
.price-tag-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
}

.price-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.price-btn.outline {
  border: 1px solid #cbd5e1;
  color: #334155;
}

.price-btn.outline:hover {
  background: #f8fafc;
}

.price-btn.fill {
  background: #2563eb;
  color: #fff;
}

.price-btn.fill:hover {
  background: #1d4ed8;
}


/* Add-ons Section Styling */
.addons-section {
  margin-top: 60px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 30px;
}

.addons-header {
  margin-bottom: 24px;
}

.addons-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-add-on {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.addons-header p {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 0;
}

/* Add-on Box Row Layout */
.addon-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: all 0.2s ease;
}

.addon-box:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.addon-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 70%;
}

.addon-icon {
  background: #eff6ff;
  color: #2563eb;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-icon svg {
  width: 24px;
  height: 24px;
}

.addon-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.addon-info p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Add-on Pricing Column */
.addon-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.addon-cost {
  display: flex;
  align-items: baseline;
  font-weight: 700;
  color: #0f172a;
}

.addon-currency {
  font-size: 0.9rem;
  margin-right: 2px;
}

.addon-amount {
  font-size: 1.4rem;
}

.addon-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  margin-left: 2px;
}

.addon-btn {
  background: #ffffff;
  border: 1px solid #2563eb;
  color: #2563eb;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.addon-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .addon-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .addon-info {
    max-width: 100%;
  }
  .addon-pricing {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
  }
}
/* Custom Styling untuk Survey Modal - FIX SCROLL MENTOK */
.survey-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Memastikan area modal luar menangkap scroll */
  overflow-x: hidden;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  align-items: flex-start; /* Mencegah modal terpotong di bagian atas */
  justify-content: center;
  padding: 40px 20px; /* Memberikan ruang udara di atas dan bawah saat di-scroll */
}
.survey-modal.active {
  display: flex;
}
.survey-container {
  background: #1e293b;
  color: #ffffff;
  width: 100%;
  max-width: 750px;
  border-radius: 16px;
  border: 1px solid #334155;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin: auto; /* Memastikan pemosisian vertikal seimbang di dalam Flex container */
  animation: modalFadeIn 0.4s ease;
}
@keyframes modalFadeIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.survey-header {
  padding: 24px;
  border-bottom: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 10;
}
.survey-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #38bdf8;
}
.survey-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.survey-close:hover { color: #ef4444; }
.survey-body { padding: 30px; }
.survey-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #38bdf8;
  margin-top: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #38bdf8;
  padding-left: 10px;
}
.survey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 34px;
}
.survey-full { grid-column: span 2; }
@media (max-width: 640px) {
  .survey-grid { grid-template-columns: 1fr; gap: 16px; }
  .survey-full { grid-column: span 1; }
}
.survey-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.survey-form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}
.survey-input, .survey-select, .survey-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0f172a;
  border: 1px solid #475569;
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.survey-input:focus, .survey-select:focus, .survey-textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}
.survey-radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.survey-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #e2e8f0;
  cursor: pointer;
}
.survey-radio-label input {
  width: 18px;
  height: 18px;
  accent-color: #38bdf8;
}
.survey-footer {
  padding: 24px 30px;
  background: #0f172a;
  border-top: 1px solid #334155;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Kondisi Default (Tampilan Desktop / Layar Lebar) */
.header-logo-text {
  display: none; 
  font-weight: bold;
  font-size: 20px;
  color: #ffffff; 
}

/* Kondisi Responsive (Tampilan Mobile / Layar Kecil) */
@media (max-width: 768px) {
  .header-logo {
    display: none !important; 
  }
  .header-logo-text {
    display: inline-block; 
  }
}

    /* ==========================================================================
       STYLE BARU UNTUK CHECKOUT POPUP / MODAL 
       ========================================================================== */
       .checkout-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        background-color: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(8px);
        align-items: flex-start;
        justify-content: center;
        padding: 40px 20px;
      }
      .checkout-modal.active {
        display: flex;
      }
      .checkout-container {
        background: #1e293b;
        color: #ffffff;
        width: 100%;
        max-width: 600px;
        border-radius: 16px;
        border: 1px solid #334155;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        margin: auto;
        animation: modalFadeIn 0.3s ease;
      }
      .checkout-header {
        padding: 20px 24px;
        border-bottom: 1px solid #334155;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #0f172a;
      }
      .checkout-header h3 {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 800;
        color: #38bdf8;
      }
      .checkout-body {
        padding: 24px;
      }
      .order-summary-box {
        background: #0f172a;
        border: 1px solid #334155;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 24px;
      }
      .summary-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 14px;
        border-bottom: 1px solid #233349;
        padding-bottom: 6px;
      }
      .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        font-size: 0.95rem;
      }
      .summary-row.total-row {
        margin-top: 14px;
        border-top: 1px dashed #334155;
        padding-top: 14px;
        font-weight: 800;
        font-size: 1.1rem;
        color: #4ade80;
      }
      .addon-selection-group {
        background: #192437;
        border: 1px solid #2e3e56;
        border-radius: 8px;
        padding: 12px 16px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .addon-checkbox-label {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        font-size: 0.95rem;
        font-weight: 600;
      }
      .addon-checkbox-label input {
        width: 18px;
        height: 18px;
        accent-color: #38bdf8;
      }
      .checkout-footer {
        padding: 16px 24px;
        background: #0f172a;
        border-top: 1px solid #334155;
        display: flex;
        justify-content: flex-end;
        gap: 12px;
      }
      .btn-wa-checkout {
        background: #10b981;
        color: #ffffff;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background 0.2s;
      }
      .btn-wa-checkout:hover {
        background: #059669;
      }

      /* Styling Tambahan untuk Dropdown Pemilih Bahasa */
      .lang-switcher-wrapper {
        display: inline-block;
        margin-left: 10px;
        margin-right: 5px;
        vertical-align: middle;
      }
      .lang-select {
        background: #0f172a;
        color: #ffffff;
        border: 1px solid #334155;
        padding: 8px 12px;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        outline: none;
        transition: border-color 0.2s;
      }
      .lang-select:focus {
        border-color: #38bdf8;
      }
      @media (max-width: 768px) {
        .lang-switcher-wrapper {
          display: block;
          margin: 15px 20px;
        }
        .lang-select {
          width: 100%;
          padding: 12px;
        }
      }