/* === 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);
}
.hero-video {
  width: 100%;
  border-radius: 2px; /* sama seperti img */
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  display: block; /* penting agar video sejajar rapi */
}


/* === 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;
}

/* === BLOG SECTION === */
.blog-section {
  background: #f8f9fc;
  padding: 80px 0;
}

.blog-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin-bottom: 3rem;
  font-weight: 700;
  position: relative;
}

.blog-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #007bff;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

/* CARD */
.blog-card {
  position: relative; /* <--- ADD THIS LINE */
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.1);
}

.blog-views {
    display: block;
    font-size: 0.8rem; /* Ukuran teks kecil */
    color: #888;       /* Warna abu-abu */
    margin-bottom: 15px;
    margin-top: -5px;  /* Menyesuaikan jarak dengan teks di atasnya */
}

.blog-views i {
    margin-right: 5px; /* Jarak antara ikon mata dan teks */
}

.blog-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* IMAGE */
.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

/* CONTENT */
.blog-content {
  flex-grow: 1;
  padding: 1.5rem 1.8rem 2rem;
}

.blog-content h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.blog-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* BUTTON */
.blog-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #007bff;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  text-align: center;
}

.blog-btn:hover {
  background: #0056d2;
}

/* Keep your existing .blog-grid for mobile/tablet */
.blog-grid {
  display: grid;
  /* This ensures mobile is responsive */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

/* === ADD THIS SECTION === */
/* Force exactly 3 columns on Desktop screens */
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === 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;
  }
        
 /* === BLOG POST PAGE (Versi Revisi) === */

/* Header/Hero Section */
/* === MINIMALIST TECH / SAAS HEADER === */

.article-header {
  position: relative;
  background-color: #ffffff;
  /* Membuat pola Grid (kotak-kotak) menggunakan CSS Gradient */
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px; /* Ukuran kotak grid */
  
  /* Masking agar grid memudar di bagian bawah (agar menyatu dengan konten) */
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);

  text-align: center;
  padding: 140px 20px 100px; /* Padding luas untuk kesan mahal */
  border-bottom: 1px solid #f0f0f0;
}

/* Mengatur lebar teks agar enak dibaca */
.article-header .center-text {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* Memastikan teks di atas background */
}

/* Judul Utama */
.article-header h1 {
  color: #0f172a; /* Warna Slate Dark (Standar industri Tech/SaaS) */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 3rem; /* Besar dan Jelas */
  font-weight: 800; /* Extra Bold */
  letter-spacing: -0.03em; /* Huruf sedikit dirapatkan (Tight tracking) */
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Deskripsi */
.article-header p {
  color: #64748b; /* Warna Slate Gray */
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Georgia', serif; 
  font-size: 1.3rem;
  font-style: italic;
}

/* Optional: Efek Glow Halus di tengah (Opsional) */
.article-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Kontainer Utama Blog */
/* * Impor font 'Inter'. Letakkan ini di baris paling atas
 * file CSS Anda, di luar selector lain.
 */


/* --- Kontainer Utama Blog --- */
/* === MULAI CSS BLOG POST BARU === */

/* Latar belakang abu-abu di luar kartu */
.article-content {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa; /* Latar belakang abu-abu lembut */
  padding: 4rem 1.5rem; /* Padding atas/bawah & samping (untuk mobile) */
  text-align: justify;
  /* Ini mengambil alih tugas .article-content lama */
  max-width: 750px;
  margin: 0 auto;
}

/* Ini adalah KARTU PUTIH baru yang "mengambang".
   Menggantikan .container1 DAN .article-body-container lama
*/
.article-card {
  background: #fff;
  border-radius: 16px; /* Radius lebih besar agar modern */
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07); /* Shadow lebih lembut */
  overflow: hidden; /* PENTING: agar gambar terpotong rapi di radius */
}

/* --- Gambar Utama Artikel --- */
/* Style ini diubah agar gambar menempel sempurna 
   di bagian atas kartu.
*/
.article-featured-image {
  width: 100%;
  display: block; /* Menghilangkan spasi ekstra di bawah gambar */

  /* HAPUS margin, border-radius, dan box-shadow dari sini */
  /* Kartu .article-card sudah mengurusnya */
}

/* Class BARU dari HTML: Ini memberi padding 
   pada semua konten DI BAWAH gambar.
*/
.article-main-content {
  padding: 2.5rem;
}

/* Responsif: kurangi padding di layar kecil */
@media (max-width: 600px) {
  .article-main-content {
    padding: 2rem 1.5rem;
  }
}

/* --- Info Penulis & Tanggal --- */
.article-metadata {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.article-metadata i {
  color: #888;
  margin-right: 0.5rem;
  font-size: 1.1em;
}

/* --- Konten Teks Artikel --- */
.article-text h1 {
  /* Style tambahan untuk Judul Utama di dalam artikel */
  color: #1a202c;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.article-text h2 {
  color: #1a202c;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.article-text p,
.article-text ul li {
  color: #2d3748;
  line-height: 1.8;
  text-align: justify;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}


.article-text ul {
  padding-left: 20px; /* Memberi indentasi pada list */
}

/* --- Tabel --- */
.article-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e2e8f0; /* Border lebih lembut */
  margin: 2rem 0;
  font-size: 1rem;
}

.article-table th,
.article-table td {
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  text-align: left;
  line-height: 1.6;
}

.article-table th {
  background-color: #f8f9fa; /* Latar header tabel abu */
  font-weight: 600;
}

.article-table tbody tr:nth-of-type(even) {
  background-color: #fcfcfc; /* Zebra striping sangat tipis */
}

/* --- Kutipan / Blockquote --- */
.article-quote {
  background: rgba(0, 123, 255, 0.05);
  border-left: 4px solid #007bff;
  padding: 1.5rem 2rem;
  font-style: italic;
  color: #2d3748;
  margin: 2.5rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 1.15rem;
}

/* --- Tombol CTA di dalam Artikel --- */
.article-cta-box {
  background-color: #f4f7f6;
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  margin: 2.5rem 0;
}
.article-cta-box h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #1a202c;
}
.cta-button {
  display: inline-block;
  background-color: #007bff; /* Ganti dengan warna brand Anda */
  color: #ffffff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #0056b3; /* Warna hover lebih gelap */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

/* --- Navigasi "Next/Prev Post" --- */
.article-pagination {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.pagination-link {
  background: #fff;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-link:hover {
  background: #007bff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
  transform: translateY(-2px);
}
/* === AKHIR CSS BLOG POST BARU === */
  


