/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #f8f9fc;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  z-index: 1000;
}
header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0077ff;
}
/* pastikan teks link tidak punya underline default */
header nav a {
  margin-left: 20px;
  position: relative;
  text-decoration: none;
  color: #333;  /* warna normal */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: color 0.3s;
}

/* hover: ganti warna teks + underline muncul */
header nav a:hover {
  color: #0077ff;  /* warna saat hover, misalkan biru */
}

/* pseudo-element untuk underline */
header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;  /* jarak dari teks ke underline, sesuaikan */
  width: 0;
  height: 2px;  /* ketebalan underline */
  background-color: #0077ff;  /* warna underline sama seperti hover teks */
  transition: width 0.3s ease;
}

/* saat hover, lebar underline jadi penuh */
header nav a:hover::after {
  width: 100%;
}

/* === HERO SECTION === */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: linear-gradient(135deg, #0077ff 0%, #00d4ff 100%);
  color: white;
}
.hero-text {
  max-width: 50%;
  animation: fadeInLeft 1.5s ease;
}
.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.hero-img {
  max-width: 45%;
  animation: fadeInRight 1.5s ease;
}
.hero-img img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* === FEATURES SECTION === */
.features {
  padding: 5% 10%;
  text-align: center;
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0077ff;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-card i {
  font-size: 2rem;
  color: #0077ff;
  margin-bottom: 1rem;
}
.feature-card h3 {
  margin-bottom: 1rem;
}

/* === CTA SECTION === */
.cta {
  background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
  color: white;
  padding: 5% 10%;
  text-align: center;
  border-radius: 20px;
  margin: 5% 10%;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta button {
  margin-top: 1.5rem;
  margin-right: 0.1rem;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: white;
}

/* === ANIMATIONS === */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* === HERO INSTALL CENTER === */
.install-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  
  /* Membuatnya tidak terlalu kaku di 80vh */
  min-height: 70vh; 
  height: auto; /* Biarkan konten menentukan tinggi */
  padding: 5rem 2rem; /* Padding lebih besar untuk 'napas' */
  
  /* Gradient yang sedikit lebih modern & profesional */
  background: linear-gradient(135deg, #0061ff 0%, #00a5ff 100%);
  color: white;
  box-sizing: border-box; /* Padding tidak merusak layout */
}

.install-hero .center-text {
  max-width: 750px; /* Sedikit lebih lebar untuk paragraf */
}

.install-hero h1 {
  /* Font JAUH lebih besar dan tebal */
  font-size: 3.25rem; 
  font-weight: 700;
  margin-bottom: 1.5rem;
  /* Bayangan halus agar teks lebih 'pop' */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); 
}

.install-hero p {
  /* Font paragraf juga lebih besar agar mudah dibaca */
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem; /* Jarak lebih jauh ke tombol CTA */
  opacity: 0.95; /* Sedikit transparan agar fokus ke H1 */
}

/* --- STYLE TOMBOL CTA BARU --- */

.cta-button {
  display: inline-block;
  background: #ffffff; /* Tombol putih kontras */
  color: #0061ff; /* Warna teks tombol diambil dari gradient */
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px; /* Sudut sedikit bulat (modern) */
  
  /* Efek bayangan yang bagus */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  
  /* Transisi halus untuk hover */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  /* Efek 'mengangkat' saat di-hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* === TUTORIAL STEPS === */
.tutorial {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #0077ff;
}

.tutorial h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #0077ff;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.step-number {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  background: #0077ff;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-content img {
  max-width: 60%;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .step-content img {
        max-width: 110%;
        max-height: 100vh;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        border-radius: 1px;
    }
}
/* === VIDEO PROMPT === */
.video-prompt {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  margin: 5% 10%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.video-prompt h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0077ff;
}

.video-prompt p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}

.btnmm {
  padding: 12px 25px;
  border-radius: 30px;
  background: #e6f0ff;
  color: #0052b0; /* biru lebih gelap */
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btnmm:hover {
  background: #0052b0;
  color: #ffff;
  transform: scale(1.05);
}

/* === CTA BUTTONS === */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-buttons2 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}



.btn23 {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-desc {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.6rem;
  text-align: center;
  line-height: 1.4;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Tombol Utama (Aktivasi) */
.btn-primary {
  background: #8a4100; /* oranye gelap */
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(230, 81, 0, 0.4);
}

.btn-primary:hover {
  background: #e68900;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5);
}

/* Tombol Sekunder (Download Trial) */
.btn-secondary {
  background: white;
  color: #004080; /* biru gelap */
  border: 2px solid #004080;
  box-shadow: 0 6px 15px rgba(0, 64, 128, 0.2);
}
.btn-secondary:hover {
  background: #0077ff;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.4);
}

/* === PRICE CARD CONTAINER === */
.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Kotak putih untuk harga */
.price-box {
    position: relative;
    background: #fff;
    padding: 2.4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
    margin-top: 2.2rem;
}

/* Harga lama */
.old-price {
  font-size: 1rem;
  color: #666;
  text-decoration: line-through;
  margin-bottom: 0.3rem;
}

/* Harga baru */
.new-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #222;
}

/* Badge Diskon */
.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
   background: #c51130; /* merah lebih gelap */
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}



/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #0077ff 0%, #00d4ff 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  margin-top: 5rem;
  clip-path: ellipse(120% 100% at 50% 100%);
}

footer .footer-container {
  max-width: 1000px;
  margin: auto;
}

footer h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

footer p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 1.5rem;
}

footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #0077ff;
  font-size: 1.3rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

footer .social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: white;
}

/* Warna sesuai brand masing-masing */
footer .social-icons a.instagram:hover { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
footer .social-icons a.whatsapp:hover { background: #25d366; }
footer .social-icons a.facebook:hover { background: #1877f2; }
footer .social-icons a.gmail:hover { background: #ea4335; }
footer .social-icons a.tiktok:hover { background: #000; }
footer .social-icons a.youtube:hover { background: #ff0000; }

footer .copyright {
  font-size: 0.85rem;
  opacity: 0.9;
}
/* === NAVBAR DEFAULT (DESKTOP) === */
nav {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: #0077ff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* === TABLET (max 992px) === */
@media (max-width: 992px) {
  header {
    padding: 1rem 3%;
  }

  header nav a {
    margin-left: 15px;
    font-size: 0.95rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 4rem 5%;
  }

  .hero-text {
    max-width: 100%;
    animation: none;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-img {
    max-width: 80%;
    margin-top: 2rem;
    animation: none;
  }

  .features {
    padding: 8% 5%;
  }

  .features h2 {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .cta {
    margin: 8% 5%;
    padding: 8% 5%;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .price-box {
    min-width: 250px;
  }

  footer {
    clip-path: none;
  }
}

/* === MOBILE NAVBAR (max 768px) === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
    display: none; /* default: tersembunyi */
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    border-radius: 10px;
  }

  nav a {
    font-size: 0.95rem;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }

  nav a:last-child {
    border-bottom: none;
  }

  nav.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* === MOBILE KECIL (max 600px) === */
@media (max-width: 600px) {
  header {
    flex-direction: row;
    align-items: flex-start;
    padding: 0.3rem 5%;
  }

  header .logo {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  header nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  header nav a {
    font-size: 0.9rem;
  }

  .hero {
    flex-direction: column;
    padding: 3rem 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.85rem;
  }

  .btn, .btnmm, .btn23 {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  .hero-img img {
    width: 100%;
    margin-top: 1rem;
  }

  .feature-card {
    transform: none;
    opacity: 1;
  }

  .cta {
    margin: 10% 4%;
    padding: 10% 6%;
    border-radius: 15px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .cta p {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .price-box {
    width: 90%;
  }

  footer {
    padding: 2.5rem 1rem;
    clip-path: none;
  }

  footer h3 {
    font-size: 1.4rem;
  }

  footer .social-icons {
    gap: 15px;
  }

  footer .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  footer p, footer .copyright {
    font-size: 0.8rem;
  }
}





#caption {
  text-align: center;
  color: #ccc;
  padding: 10px;
}


  
  .container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Sidebar Navigasi - Desktop */
.sidebar {
    width: 250px;
    flex-shrink: 0; 
    padding: 20px;
    border-right: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    position: sticky;  
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar h2 {
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
    margin-top: 0;
    color: #007bff;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li a {
    display: block;
    padding: 10px 10px;
    text-decoration: none;
    color: #555;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.sidebar li a:hover {
    background-color: #e6f2ff;
    color: #007bff;
}

/* Konten Utama - DIMODIFIKASI */
.content2 {
    flex-grow: 1;
    padding: 5% 8%; 
    background: #f8f9fc;
}

/* Style untuk tag <img> di dalam konten */
.content2 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.caption {
    font-size: 0.9em;
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
}

/* Kotak Tip/Peringatan */
.tip-box {
    background-color: #d4edda;  
    border-left: 5px solid #28a745;
    padding: 15px;
    margin: 20px 0;
    color: #155724;
    border-radius: 4px;
}

/* Tombol Kembali ke Atas */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: aqua;
    outline: aliceblue;
    background-color: #0e57ff; 
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 20%;
    font-size: 19px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1; 
}

#backToTopBtn:hover {
    background-color: #3672fa;
}

/* ======================================= */
/* == CSS ADAPTASI (userguide baru) == */
/* ======================================= */

/* Menggabungkan style .step dari kedua versi */
.step5 {
    display: flex; /* <-- Diambil dari style baru Anda */
    align-items: flex-start; /* <-- Diambil dari style baru Anda */
    margin-bottom: 3rem;
    background: #ffffff; 
    padding: 25px;       
    border-radius: 10px;  
    box-shadow: 0 6px 15px rgba(0,0,0,0.07); 
}

/* Style .step-number (BARU) */
.step-number5 {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 50%;
    background: #007bff; /* Diganti #0077ff ke #007bff agar konsisten */
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.step-content5 {
    flex: 1;
}

.step-content5 h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-content5 p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Style Judul H3 (Tetap pakai versi lama yang lebih terintegrasi) */
.step-content5 h3 {
    color: #007bff;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0; /* Dibuat 0 agar rata dengan step-number */
    font-size: 1.5rem; 
}

/* Style H4 (sub-judul) */
.step-content5 h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #333;
}

/* Style gambar (diambil dari style baru Anda) */
.step-content5 img {
    max-width: 60%; /* <-- Diubah dari 70% ke 60% */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    display: block;
    margin: 15px auto;
    border: none; 
}


/* ======================================= */
/* == CSS UNTUK ZOOMABLE & MODAL == */
/* ======================================= */

.zoomable {
    cursor: zoom-in;
    transition: transform 0.2s, box-shadow 0.2s;
}
.zoomable:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: auto;
    display: block;
    width: 60%;
    max-width: 200px;
    animation-name: zoom;
    animation-duration: 0.2s;
}

@keyframes zoom {
    from {transform:scale(0.1)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}


/* ======================================= */
/* MEDIA QUERIES (Aturan untuk Smartphone) */
/* ======================================= */
@media (max-width: 768px) {
    
    .container {
        flex-direction: column;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
    }

    .sidebar h2 {
        display: none;
    }
    
    .sidebar ul {
        display: flex;
        flex-wrap: wrap;  
        justify-content: space-around;
        padding: 0 10px;
    }
    
    .sidebar li {
        width: 45%; 
        margin: 5px 0;
        flex-grow: 1;
        text-align: center;
    }
    
    .sidebar li a {
        font-size: 0.85em;
        padding: 10px 5px;
        background-color: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
    
    .content {
        padding: 20px; 
    }
    
    /* Adaptasi .step dan .step-number di mobile */
    .step5 {
        padding: 15px; 
        flex-direction: column; /* Ubah jadi tumpukan di mobile */
        align-items: center; /* Pusatkan nomor */
    }

    .step-number5 {
        margin-right: 0; /* Hapus margin kanan */
        margin-bottom: 20px; /* Beri jarak ke konten */
        flex-shrink: 0;
    }

    .step-content5 h3 {
        text-align: center; /* Pusatkan judul di mobile */
        margin-top: 0;
    }

    .step-content5 img {
         max-width: 100%; /* Full width di mobile */
    }

    .modal-content {
        width: 95%;
    }
}

/* Menargetkan semua ID yang tercantum di Daftar Isi Anda */
#steps, 
#profile, 
#product, 
#supplier, 
#customer, 
#sales, 
#order, 
#salesreport, 
#orderreport,
#cta,
#features{
    /* Atur jarak margin yang sama untuk semua target. 
       Ganti 60px dengan tinggi navbar Anda + sedikit ruang. */
    scroll-margin-top: 80px;
}



/* --- Kontainer Utama --- */
 
 :root {
            --primary-color: #007bff;
            --secondary-color: #6c757d;
            --background-color: #f8f9fa;
            --card-background: #ffffff;
            --text-color: #212529;
            --light-gray: #e9ecef;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --border-radius: 12px;
        }
        
        .container4 {
            max-width: 900px;
            margin: 2.5rem auto;
            padding: 0 1.5rem;
        }

        /* --- Struktur Langkah (Steps) --- */
        .steps-guide {
            display: grid;
            gap: 2rem;
        }

        .step-card {
            background: var(--card-background);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--light-gray);
        }
        


        /* Mengatur layout alternating (gambar-teks, teks-gambar) */
        @media (min-width: 768px) {
            .step-card {
                flex-direction: row;
            }
            
            /* Membalik urutan untuk setiap langkah genap (2, 2B, 4) */
            .step-card:nth-child(2n) {
                flex-direction: row-reverse;
            }
            
            .step-card-image,
            .step-card-content {
                width: 50%;
            }
        }

        /* --- Konten Kartu --- */
        .step-card-content {
            padding: 2rem;
        }

        .step-number2 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .step-card h2 {
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1.75rem;
        }

        .step-card p {
            margin-bottom: 1rem;
        }

        /* --- Gambar --- */
        .step-card-image {
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            box-sizing: border-box; /* Memastikan padding tidak merusak layout 50% */
        }

        .step-card img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* --- Elemen Khusus --- */
        
        /* Box khusus untuk bukti VirusTotal (Hijau Muda) */
        .virustotal-box {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            border-radius: 8px;
            padding: 1rem;
            color: #155724;
            margin-bottom: 1rem;
        }

        .code-snippet {
            background: #2b2b2b;
            color: #f8f8f2;
            padding: 1rem;
            border-radius: 8px;
            font-family: "Courier New", Courier, monospace;
        }
        
        .code-snippet span {
            color: #a6e22e; /* Green */
        }
        
        .code-snippet span.value {
            color: #e6db74; /* Yellow */
        }


  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px; /* opsional */
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
        


