:root {
  --bg-main:#050816;
  --bg-card:rgba(255,255,255,.06);
  --border-soft:rgba(255,255,255,.08);
  --text-muted:#b8c1ec;
  --accent:#38bdf8;
  --radius:20px;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family:system-ui,sans-serif;
  background:var(--bg-main);
  color:#fff;
  overflow-x:hidden;
}

/* BLUR */
.bg-blur{
  position:absolute;
  width:500px;height:500px;
  filter:blur(140px);
  opacity:.45;
  z-index:-1;
}
.blur-blue{background:#38bdf8;top:-120px;left:-120px}
.blur-purple{background:#8b5cf6;bottom:-120px;right:-120px}

/* HERO */
.hero{
  padding:140px 20px 120px;
  text-align:center;
}
.hero h1{font-size:48px;margin-bottom:14px}
.subtitle{color:var(--text-muted);margin-bottom:36px}

.cta{
  padding:14px 36px;
  background:var(--accent);
  color:#000;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}
.cta:hover{transform:scale(1.06)}

/* SECTION */
.section{
  padding:100px 20px;
  max-width:1100px;
  margin:auto;
}
.section-title{
  text-align:center;
  font-size:32px;
  margin-bottom:60px;
}

/* GRID */
.grid{
  display:grid;
  gap:32px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

/* CARD */
.card{
  background:var(--bg-card);
  border:1px solid var(--border-soft);
  border-radius:var(--radius);
  padding:28px;
  backdrop-filter:blur(14px);
  transition:.35s;
}
.card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 80px rgba(56,189,248,.15);
}
.card h3{margin-bottom:8px}
.card p{color:var(--text-muted);font-size:15px}

/* PROCESS */
.step{
  font-size:32px;
  font-weight:700;
  color:var(--accent);
  display:block;
  margin-bottom:8px;
}

/* PRICING */
.price{
  font-size:26px;
  margin:10px 0;
  color:var(--accent);
}
.card ul{
  margin-top:12px;
  list-style:none;
}
.card ul li{
  font-size:14px;
  margin-bottom:8px;
}
.highlight{
  border:1px solid var(--accent);
  box-shadow:0 0 40px rgba(56,189,248,.25);
}

/* WA FLOAT */
.wa-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:56px;height:56px;
  background:#25d366;
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  z-index:99;
}

/* ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(60px) scale(.95);
  transition:.9s cubic-bezier(.22,1,.36,1);
}
.reveal.active{
  opacity:1;
  transform:none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{font-size:36px}
}

.portfolio img{
  width:100%;
  border-radius:14px;
  aspect-ratio:16/9;
  object-fit:cover;
  margin-bottom:12px;
}

.portfolio a{
  color:var(--accent);
  font-size:14px;
  text-decoration:none;
}

/* ===== VARIABLES TAMBAHAN ===== */
:root {
  /* Existing variables */
  --bg-main:#050816;
  --bg-card:rgba(255,255,255,.06);
  --border-soft:rgba(255,255,255,.08);
  --text-muted:#b8c1ec;
  --accent:#38bdf8;
  --radius:20px;
  
  /* New variables */
  --success:#10b981;
  --warning:#f59e0b;
  --danger:#ef4444;
  --nav-height:80px;
  --transition:all 0.3s ease;
}

/* ===== NAVBAR PROFESIONAL ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 8, 22, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 1000;
  padding: 0 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo-accent {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover {
  color: white;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* ===== HERO IMPROVED ===== */
.hero {
  padding: 180px 20px 120px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-highlight {
  color: var(--accent);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(56, 189, 248, 0.2);
  z-index: -1;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--accent);
  color: #000;
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--accent);
}

.cta-large {
  padding: 16px 40px;
  font-size: 18px;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  text-align: center;
  transition: var(--transition);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--accent);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(56, 189, 248, 0.2);
}

/* ===== BONUS SECTION ===== */
.bonus-section {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 60px;
  text-align: center;
  border: 1px solid var(--border-soft);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.bonus-item i {
  color: var(--success);
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 80px 20px;
  text-align: center;
  margin-top: 80px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cta-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.cta-note i {
  margin: 0 5px;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(5, 8, 22, 0.98);
  padding: 60px 20px 30px;
  border-top: 1px solid var(--border-soft);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: white;
}

.footer-section p, .footer-section a {
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== WHATSAPP FLOAT IMPROVED ===== */
.wa-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ===== SECTION HEADER IMPROVED ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 10px auto 0;
}

.portfolio {
  position: relative;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border-soft);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 20px 80px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-item {
    flex: 0 0 calc(50% - 20px);
  }
}

/* ===== PERBAIKAN OVERLAPPING TEXT ===== */

/* 1. PERBAIKAN FOOTER */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-section {
  min-width: 0; /* Mencegah overflow */
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
}

.footer-section p {
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: var(--accent);
}

/* 2. PERBAIKAN CTA FINAL SECTION */
.cta-final {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-content > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-final-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.cta-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note i {
  margin: 0 5px;
}

/* 3. PERBAIKAN KONTEN FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 14px;
  clear: both; /* Mencegah float overlap */
}

/* 4. PERBAIKAN UNTUK MOBILE */
@media (max-width: 768px) {
  /* Footer mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section {
    padding: 0 10px;
  }
  
  /* CTA Final mobile */
  .cta-final {
    padding: 60px 20px;
    margin-top: 60px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-content > p {
    font-size: 16px;
  }
  
  .cta-final-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-large {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-note {
    font-size: 13px;
    padding: 0 10px;
  }
}

/* 5. PERBAIKAN SPESIFIK UNTUK TEXT OVERFLOW */
.cta-content h2,
.cta-content p,
.footer-section h3,
.footer-section p,
.footer-section a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* 6. CLEARFIX UNTUK MENGATASI FLOAT */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* 7. PERBAIKAN LINE HEIGHT UNTUK KETERBACAAN */
.footer-section p,
.footer-section a,
.cta-content p {
  line-height: 1.6;
}

/* 8. PERBAIKAN SPACING FOOTER */
.footer {
  padding: 60px 20px 30px;
  background: rgba(5, 8, 22, 0.98);
  border-top: 1px solid var(--border-soft);
}

/* 9. TAMBAHAN: VISUAL SEPARATOR */
.footer-section:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border-soft);
  margin-top: 30px;
}

@media (min-width: 769px) {
  .footer-section:not(:last-child)::after {
    display: none;
  }
}

/* 10. PERBAIKAN ICON SPACING */
.footer-section i,
.cta-large i {
  margin-right: 8px;
}

/* Tambahkan di style.css */
/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Lazy Load Images */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s;
}

img.loaded {
  opacity: 1;
}

/* ===== FORM STYLES ===== */
.contact-form-section {
  background: linear-gradient(135deg, rgba(5, 8, 22, 0.9), rgba(30, 41, 59, 0.9));
  border-radius: 24px;
  margin: 60px auto;
  padding: 60px 30px;
  max-width: 900px;
  border: 1px solid var(--border-soft);
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
  font-size: 15px;
}

.form-group .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b8c1ec' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 50px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-main);
  color: white;
  padding: 10px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--border-soft);
}

.submit-btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.form-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-note i {
  color: var(--accent);
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
  border-color: #10b981;
}

/* Success/Error Messages */
.form-message {
  padding: 15px;
  border-radius: 12px;
  margin: 20px 0;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
  display: block;
}

/* Loading State */
.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Animation */
.form-group input,
.form-group select,
.form-group textarea {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.form-group:nth-child(1) input { animation-delay: 0.1s; }
.form-group:nth-child(2) input { animation-delay: 0.2s; }
.form-group:nth-child(1) select { animation-delay: 0.3s; }
.form-group:nth-child(2) select { animation-delay: 0.4s; }
.form-group textarea { animation-delay: 0.5s; }
.form-submit { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Add floating labels */
.form-group {
  position: relative;
}

/* .form-group input:focus + .floating-label,
.form-group input:not(:placeholder-shown) + .floating-label {
  transform: translateY(-25px) scale(0.85);
  opacity: 1;
  color: var(--accent);
} */

/* Responsive Adjustments */
@media (max-width: 576px) {
  .contact-form-section {
    padding: 40px 20px;
    margin: 40px auto;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
  }
  
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Error messages styling */
.field-error {
  color: #ef4444 !important;
  font-size: 13px !important;
  margin-top: 5px !important;
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PRICING SECTION ===== */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* HIGHLIGHTED CARD */
.pricing-highlight {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(5, 8, 22, 0.95), rgba(30, 41, 59, 0.95));
  transform: scale(1.05);
  z-index: 2;
}

.pricing-highlight:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 60px rgba(56, 189, 248, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: black;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* PRICING HEADER */
.pricing-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 14px;
}

/* PRICE DISPLAY */
.pricing-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 20px 0;
  color: white;
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 5px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-highlight .price-amount {
  font-size: 52px;
}

.price-period {
  font-size: 18px;
  color: var(--text-muted);
  margin-left: 2px;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

/* FEATURES LIST */
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 25px 0;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 15px;
}

.pricing-features i {
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-features .fa-check-circle {
  color: #10b981;
}

.pricing-features .fa-times-circle {
  color: #6b7280;
}

.feature-disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-highlight .pricing-features li {
  font-size: 16px;
}

/* PRICING FOOTER */
.pricing-footer {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--border-soft);
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing-highlight .pricing-btn {
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  color: white;
  border: none;
}

.pricing-highlight .pricing-btn:hover {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

.pricing-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 15px;
  text-align: center;
}

.pricing-highlight .pricing-disclaimer {
  color: var(--accent);
  font-weight: 500;
}

/* COMPARISON TABLE */
.pricing-comparison {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 30px;
  margin-top: 60px;
}

.pricing-comparison h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: white;
}

.pricing-comparison h3 i {
  color: var(--accent);
  margin-right: 10px;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: white;
  border-bottom: 2px solid var(--border-soft);
}

.comparison-table th:first-child {
  text-align: left;
  background: transparent;
}

.comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: white;
}

.comparison-table .fa-check {
  color: #10b981;
  font-size: 18px;
}

.comparison-table .fa-times {
  color: #6b7280;
  font-size: 18px;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .pricing-highlight {
    transform: scale(1);
  }
  
  .pricing-highlight:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-card {
    padding: 25px;
  }
  
  .price-amount {
    font-size: 42px;
  }
  
  .pricing-highlight .price-amount {
    font-size: 46px;
  }
  
  .comparison-table {
    margin: 0 -20px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .pricing-price {
    flex-wrap: wrap;
  }
  
  .price-amount {
    font-size: 36px;
  }
  
  .pricing-features li {
    font-size: 14px;
  }
}

/* ===== PROCESS SECTION ===== */
.process-timeline {
  max-width: 900px;
  margin: 60px auto;
  position: relative;
}

/* Timeline Line */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), #8b5cf6);
  border-radius: 3px;
}

/* Process Step */
.process-step {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--bg-main);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.step-content {
  flex-grow: 1;
  margin-left: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 30px;
  position: relative;
}

.step-content::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 40px;
  width: 20px;
  height: 2px;
  background: var(--border-soft);
}

/* Step Icon */
.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
}

/* Step Title & Description */
.step-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.step-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.step-note {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

/* Step Details */
.step-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  border-left: 3px solid var(--accent);
}

.step-details p {
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.step-details ul {
  list-style: none;
  padding-left: 0;
}

.step-details li {
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.step-details li::before {
  content: '•';
  color: var(--accent);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Process FAQ */
.process-faq {
  max-width: 800px;
  margin: 80px auto 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 30px;
}

.process-faq h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: white;
}

.process-faq h3 i {
  color: var(--accent);
  margin-right: 10px;
}

.process-faq .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.process-faq .faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: white;
  transition: background 0.3s;
}

.process-faq .faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.process-faq .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-faq .faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.process-faq .faq-question i {
  transition: transform 0.3s;
}

.process-faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Process CTA */
.process-cta {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.cta-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white;
}

.cta-box h3 i {
  color: var(--accent);
  margin-right: 10px;
}

.cta-box > p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.cta-option {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  padding: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.cta-option:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.2);
}

.cta-option i {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.cta-option div {
  text-align: left;
}

.cta-option strong {
  display: block;
  color: white;
  font-size: 16px;
  margin-bottom: 5px;
}

.cta-option span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-timeline::before {
    left: 30px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .step-content {
    margin-left: 25px;
    padding: 20px;
  }
  
  .step-content::before {
    left: -15px;
    top: 30px;
    width: 15px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-description {
    font-size: 15px;
  }
  
  .process-faq {
    padding: 20px;
    margin: 60px auto 30px;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  .cta-options {
    grid-template-columns: 1fr;
  }
  
  .cta-option {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 20px;
  }
  
  .step-content {
    margin-left: 0;
  }
  
  .step-content::before {
    display: none;
  }
  
  .process-timeline::before {
    display: none;
  }
}

/* ===== FAQ ACCORDION STYLES ===== */
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.3s;
  user-select: none;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
  font-size: 16px;
  line-height: 1.5;
}

.faq-question i {
  color: var(--accent);
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.3s ease;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer strong {
  color: var(--accent);
  font-weight: 600;
}

.faq-answer em {
  color: rgba(184, 193, 236, 0.7);
  font-style: italic;
}

.faq-answer ol, .faq-answer ul {
  padding-left: 20px;
  margin: 10px 0;
}

.faq-answer li {
  margin-bottom: 8px;
}

/* ACTIVE STATE */
.faq-item.active {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.1);
}

.faq-item.active .faq-question {
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px; /* Sesuaikan dengan konten terpanjang */
}

/* Animasi untuk FAQ */
@keyframes fadeInFAQ {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  animation: fadeInFAQ 0.5s ease forwards;
  opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Process FAQ Specific */
.process-faq {
  max-width: 800px;
  margin: 80px auto 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 40px;
}

.process-faq h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: white;
}

.process-faq h3 i {
  color: var(--accent);
  margin-right: 12px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .process-faq {
    padding: 25px 20px;
    margin: 60px auto 30px;
  }
  
  .faq-question {
    padding: 16px;
  }
  
  .faq-question span {
    font-size: 15px;
  }
  
  .faq-answer {
    padding: 0 16px;
    font-size: 14px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }
}

/* ===== HERO BENEFITS ===== */
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.1);
}

.benefit-item i {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.benefit-item h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-item {
    padding: 20px;
  }
  
  .benefit-item i {
    font-size: 24px;
  }
}