:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --bg-app: #eef2f6; /* Abu kebiruan lembut */
  --bg-sidebar: #ffffff;
  --border: #e2e8f0;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --font-sans: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-app);
  height: 100vh;
  overflow: hidden;
}

/* === LAYOUT UTAMA (SPLIT SCREEN) === */
.app-container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* --- SIDEBAR (KIRI) --- */
.sidebar {
  /* UBAH DARI 420px MENJADI 500px (Lebih Lebar) */
  width: 500px;
  min-width: 500px; /* Pastikan tidak menciut */

  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 20;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.02);
}

/* Pastikan di layar kecil (Tablet/Laptop Kecil) dia menyesuaikan */
@media (max-width: 1100px) {
  .sidebar {
    width: 400px; /* Sedikit mengecil jika layar sempit */
    min-width: 400px;
  }
}

/* Di HP tetap 100% */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    min-width: auto;
  }
}

.sidebar-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
}
.sidebar-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.header-actions {
  display: flex;
  gap: 8px;
}

/* Buttons */
.btn-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.btn-icon:hover {
  background: #f8fafc;
  color: var(--text-main);
}
.btn-icon.danger:hover {
  color: #ef4444;
  background: #fef2f2;
  border-color: #fecaca;
}
.btn-icon.success:hover {
  color: #10b981;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 15px;
  height: 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary:hover {
  background: var(--primary-dark);
}

/* Form Area */
.form-scroll-area {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-box {
  background: white;
}
.group-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.input-wrapper label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 4px;
}
input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: 0.2s;
}
input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

/* Items List */
.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.btn-small-add {
  background: #f1f5f9;
  border: none;
  color: #475569;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}
.items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.item-row {
  display: grid;
  /* UBAH UKURAN GRID AGAR LEBIH PROPORSIONAL */
  /* Nama (Luas) | Qty (Kecil) | Harga (Sedang) | Hapus (Kecil) */
  grid-template-columns: 2fr 0.5fr 1fr auto;
  gap: 10px; /* Jarak antar kolom lebih lega */
  align-items: center;
}
.item-row input {
  padding: 8px; /* Sedikit lebih compact */
}
.btn-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 5px;
}

/* --- PREVIEW AREA (KANAN) --- */
.preview-area {
  flex: 1;
  background: #52525b; /* Backdrop gelap agar kertas kontras */
  display: flex;
  justify-content: center;
  overflow-y: auto;
  padding: 40px;
}

.a4-paper {
  width: 210mm;
  height: 296mm; /* A4 Fixed */
  background: white;
  padding: 15mm;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Invoice Styling */
.invoice-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.sender-details h1 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 5px;
}
.sender-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 250px;
  line-height: 1.4;
}
.invoice-meta {
  text-align: right;
}
.invoice-meta .title {
  font-size: 1.8rem;
  color: #cbd5e1;
  letter-spacing: 2px;
}
.meta-row {
  margin-top: 5px;
  font-size: 0.85rem;
}

.client-section {
  margin-bottom: 30px;
}
.client-section small {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.client-section h3 {
  margin-top: 4px;
  font-size: 1.1rem;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.invoice-table th {
  text-align: left;
  background: #f8fafc;
  padding: 8px 10px;
  font-size: 0.75rem;
  border-bottom: 1px solid #cbd5e1;
}
.invoice-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.text-right {
  text-align: right;
}

.invoice-footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.terbilang-box {
  width: 55%;
  font-size: 0.8rem;
}
.terbilang-text {
  background: #f0fdf4;
  color: #15803d;
  padding: 10px;
  border-radius: 6px;
  font-style: italic;
  margin-top: 5px;
  border-left: 3px solid var(--primary);
}
.note-box {
  margin-top: 20px;
  color: var(--text-muted);
}

.totals-box {
  width: 40%;
  font-size: 0.85rem;
}
.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.grand-total {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  border-top: 2px solid #cbd5e1;
  padding-top: 10px;
  margin-top: 10px;
}

.signature-section {
  margin-top: 40px;
  text-align: center;
}

/* --- MOBILE TABS (HIDDEN ON DESKTOP) --- */
.mobile-tabs {
  display: none;
}

/* =========================================
   RESPONSIVE (HP)
   ========================================= */
@media (max-width: 768px) {
  .app-container {
    display: block;
    height: auto;
    overflow: visible;
  }
  body {
    overflow: auto;
    height: auto;
    background: white;
  }

  /* Navigasi Tab Mobile */
  .mobile-tabs {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 10px;
    gap: 10px;
  }
  .tab-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    background: #f8fafc;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }

  /* Panel Switching */
  .sidebar {
    width: 100%;
    border-right: none;
    height: auto;
    display: block;
    padding-bottom: 100px;
  }
  .preview-area {
    display: none;
    padding: 20px 10px;
    min-height: 80vh;
    background: #52525b;
  }

  /* Logic CSS untuk Show/Hide */
  body.mode-preview .sidebar {
    display: none;
  }
  body.mode-preview .preview-area {
    display: flex;
  }

  /* Zoom Out Kertas di HP */
  .a4-paper {
    transform: scale(0.45);
    transform-origin: top center;
    margin-bottom: -140mm;
  }
}

/* Sedikit penyesuaian font di input agar enak diketik jari */
input,
textarea {
  font-size: 16px; /* Mencegah zoom otomatis iOS */
  padding: 12px;
}

/* --- SWEETALERT CUSTOMIZATION --- */
div:where(.swal2-container) div:where(.swal2-popup) {
  font-family: "Inter", sans-serif !important;
  border-radius: 16px !important; /* Membuat sudut lebih bulat modern */
}

/* Ubah warna tombol confirm default agar sesuai tema */
.swal2-confirm {
  background-color: #10b981 !important; /* Emerald Green */
}
.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.5) !important;
}

/* =========================================
   LANDING PAGE STYLES (Tambahkan di bawah)
   ========================================= */

.landing-body {
  background-color: #f8fafc;
  height: auto;
  overflow-y: auto; /* Aktifkan scroll untuk landing page */
}

/* --- Navigasi --- */
.lp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}
.lp-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}
.lp-logo .dot {
  color: var(--primary);
}

.lp-links {
  display: flex;
  gap: 30px;
}
.lp-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s;
}
.lp-links a:hover {
  color: var(--primary);
}

/* Sembunyikan link di mobile */
@media (max-width: 768px) {
  .lp-links {
    display: none;
  }
}

/* --- Hero Section --- */
.lp-hero {
  padding: 40px 5%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.lp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Teks Kiri */
.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #0f172a;
}
.hero-text .highlight {
  color: var(--primary);
}
.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 90%;
}

.badge-pill {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}
.btn-hero {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}
.btn-hero:hover {
  background: #059669;
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--border);
  background: white;
  color: var(--text-main);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text-main);
}
.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Bento Grid Kanan --- */
.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 15px;
}

.bento-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
  cursor: default;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.bento-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.box-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.green {
  background: #d1fae5;
  color: #10b981;
}
.blue {
  background: #dbeafe;
  color: #3b82f6;
}
.orange {
  background: #ffedd5;
  color: #f97316;
}
.purple {
  background: #f3e8ff;
  color: #a855f7;
}

.bento-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.bento-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Grid Layout Custom */
.box-large {
  grid-column: 1 / 2;
}
.box-tall {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  justify-content: flex-start;
  gap: 10px;
}
.box-wide {
  grid-column: 1 / 2;
}
.box-small {
  display: none;
} /* Hidden for simple layout */

/* Footer */
.lp-footer {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: auto;
}

/* --- Mobile Responsive Landing --- */
@media (max-width: 768px) {
  .lp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text p {
    margin: 0 auto 30px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-bento {
    grid-template-rows: auto;
  }
  .box-tall {
    grid-row: auto;
  }
}

/* =========================================
   LANDING PAGE STYLES (DETAILED)
   ========================================= */

/* --- Typography Utilities --- */
.text-highlight {
  color: var(--primary);
  position: relative;
}
.text-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(16, 185, 129, 0.2);
  z-index: -1;
  transform: rotate(-2deg);
}

/* --- Navbar --- */
.lp-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.badge-pro {
  background: #000;
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 5px;
}
.lp-links {
  display: flex;
  gap: 30px;
}
.lp-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}
.lp-links a:hover {
  color: var(--primary);
}

/* --- Hero Section --- */
.lp-hero {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.pill-announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  padding: 5px 15px 5px 5px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  border: 1px solid var(--border);
}
.pill-badge {
  background: var(--primary);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
}
.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #0f172a;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 90%;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.btn-hero-main {
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
  transition: 0.3s;
}
.btn-hero-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.4);
}
.rating-group {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

/* --- Hero Visual (CSS Mockup) --- */
.hero-visual {
  position: relative;
}
.app-window {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); /* 3D effect */
  transition: 0.5s;
}
.app-window:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}
.window-header {
  background: #f8fafc;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 15px;
  align-items: center;
}
.dots {
  display: flex;
  gap: 5px;
}
.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}
.dots span:nth-child(1) {
  background: #ef4444;
}
.dots span:nth-child(2) {
  background: #f59e0b;
}
.dots span:nth-child(3) {
  background: #22c55e;
}
.address-bar {
  background: #fff;
  flex: 1;
  border-radius: 4px;
  height: 20px;
  border: 1px solid var(--border);
  font-size: 0.6rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.window-body {
  height: 250px;
  display: flex;
}
.mock-sidebar {
  width: 30%;
  border-right: 1px solid var(--border);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fcfcfc;
}
.mock-line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
}
.w-50 {
  width: 50%;
}
.w-80 {
  width: 80%;
}
.mock-block {
  height: 40px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}
.mock-main {
  flex: 1;
  padding: 20px;
  background: #cbd5e1;
  display: flex;
  justify-content: center;
}
.mock-paper {
  width: 80%;
  height: 100%;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* --- Logo Cloud --- */
.logo-cloud {
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid var(--border);
}
.logo-cloud p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logos {
  display: flex;
  justify-content: center;
  gap: 15px;
  color: #94a3b8;
  font-weight: 600;
  font-size: 1.1rem;
  flex-wrap: wrap;
}
.logos .dot {
  color: #cbd5e1;
}

/* --- Sections --- */
.section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}
.bg-subtle {
  background: #f8fafc;
  max-width: 100%;
} /* Full width bg */
.bg-subtle .section-header {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.bg-subtle .steps-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Bento Grid Features --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}
.bento-card.span-2 {
  grid-column: span 2;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card-icon.green {
  background: #d1fae5;
  color: #10b981;
}
.card-icon.blue {
  background: #dbeafe;
  color: #3b82f6;
}
.card-icon.purple {
  background: #f3e8ff;
  color: #a855f7;
}
.card-icon.orange {
  background: #ffedd5;
  color: #f97316;
}
.card-icon.red {
  background: #fee2e2;
  color: #ef4444;
}

.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- How it works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step-card {
  text-align: center;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Testimonials --- */
.grid-2-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
}
.testi-card p {
  font-size: 1rem;
  color: #334155;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.user-info strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}
.user-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #0f172a;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Footer --- */
.lp-footer-main {
  background: #0f172a;
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.footer-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.footer-content p {
  color: #94a3b8;
  margin-bottom: 30px;
}
.btn-hero-main.inverted {
  background: white;
  color: #0f172a;
}
.btn-hero-main.inverted:hover {
  background: #f1f5f9;
}
.copyright {
  margin-top: 50px;
  font-size: 0.8rem;
  color: #475569;
}

/* --- Mobile Responsive Landing --- */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-cta-group {
    align-items: center;
  }
  .app-window {
    display: none;
  } /* Hide visual on mobile */
  .lp-links {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.span-2 {
    grid-column: auto;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .grid-2-testimonials {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   MODERN NAVBAR BUTTON (CTA)
   ========================================= */

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #10b981; /* Emerald Green */
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px; /* Membuatnya bulat penuh (Pill Shape) */
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Efek Glow / Bayangan Berwarna */
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
  border: 1px solid rgba(255, 255, 255, 0.1); /* Border halus untuk kedalaman */
}

/* Efek saat Hover (Melayang sedikit + Bayangan menebal) */
.btn-nav-cta:hover {
  background-color: #059669; /* Sedikit lebih gelap */
  transform: translateY(-2px); /* Naik ke atas 2px */
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.23); /* Bayangan melebar */
}

/* Animasi Panah (Bergerak ke kanan saat hover) */
.btn-nav-cta i {
  transition: transform 0.3s ease;
}

.btn-nav-cta:hover i {
  transform: translateX(4px); /* Geser panah ke kanan */
}

/* Efek saat diklik (Active) */
.btn-nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

/* =========================================
   INFINITE LOGO TICKER (Marquee)
   ========================================= */

.logo-ticker-section {
  padding: 50px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  overflow: hidden; /* Wajib agar tidak scroll horizontal halaman */
}

.ticker-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}

.ticker-container {
  width: 100%;
  position: relative;
  /* Masking: Membuat efek pudar di kiri dan kanan layar */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.ticker-track {
  display: flex;
  width: max-content; /* Memanjang sesuai isi */
  animation: scrollLoop 25s linear infinite; /* Animasi berjalan */
}

/* Pause animasi saat user mengarahkan mouse (opsional, UX bagus) */
.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  gap: 60px; /* Jarak antar logo (Padat tapi lega) */
  padding-right: 60px; /* Jarak untuk sambungan looping */
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #94a3b8; /* Warna Abu (Inactive) */
  white-space: nowrap;
  cursor: default;
  transition: all 0.3s ease;
}

.brand-item i {
  font-size: 1.6rem;
  color: #cbd5e1; /* Icon lebih muda */
}

/* Efek Hover per Item: Jadi berwarna */
.brand-item:hover {
  color: #1e293b; /* Hitam pudar */
  transform: scale(1.05);
}
.brand-item:hover i {
  color: var(--primary); /* Ikon jadi hijau */
}

/* Keyframes Animasi Jalan */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      -50%
    ); /* Geser setengah panjang track (karena ada 2 grup) */
  }
}

/* Responsive Mobile: Lebih cepat & rapat */
@media (max-width: 768px) {
  .ticker-group {
    gap: 40px;
    padding-right: 40px;
  }
  .brand-item {
    font-size: 1rem;
  }
  .brand-item i {
    font-size: 1.4rem;
  }
}

/* =========================================
   MODERN PROCESS SECTION (Cara Kerja)
   ========================================= */

.process-wrapper {
  display: flex;
  align-items: center; /* Agar panah ada di tengah vertikal */
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Kartu Proses */
.process-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  flex: 1; /* Lebar rata */
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  height: 100%; /* Agar tinggi kartu seragam */
}

/* Efek Hover: Naik sedikit + Border Hijau */
.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: #f1f5f9; /* Abu sangat muda (Watermark effect) */
  line-height: 1;
  font-family: var(--font-sans);
}

.step-icon-bg {
  width: 50px;
  height: 50px;
  background: #f0fdf4; /* Hijau muda */
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid #d1fae5;
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Konektor Panah */
.process-connector {
  color: #cbd5e1;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column; /* Tumpuk ke bawah */
    gap: 20px;
  }

  .process-connector {
    transform: rotate(90deg); /* Panah jadi menunjuk ke bawah */
    margin: -10px 0; /* Rapatkan jarak */
  }

  .process-card {
    width: 100%; /* Full width di HP */
  }
}

/* =========================================
   MODERN TESTIMONIALS
   ========================================= */

.testimonials-grid {
  display: grid;
  /* Grid otomatis: 3 kolom di desktop, turun ke 1 di HP */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Efek Hover: Naik & Bayangan */
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%; /* Bulat sempurna */
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-meta {
  flex: 1; /* Mengisi ruang kosong */
  display: flex;
  flex-direction: column;
}

.user-meta strong {
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 700;
}

.user-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stars-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
  background: #fefce8; /* Kuning sangat muda */
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #fef08a;
}

.stars-icon i {
  color: #f59e0b; /* Warna Emas */
  font-size: 1rem;
}

.testi-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  font-style: normal; /* Menghilangkan italic lama agar lebih modern */
  margin: 0;
}

/* =========================================
   FAQ BENTO (DENSE STYLE)
   ========================================= */

.faq-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px; /* Jarak rapat */
}

.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.faq-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.faq-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Variasi Warna Card */
.faq-card.bg-green {
  background: #ecfdf5;
  border-color: #d1fae5;
}
.faq-card.bg-dark {
  background: #0f172a;
  border-color: #0f172a;
  color: white;
  justify-content: center;
}
.faq-card.bg-dark h4 {
  color: white;
}
.faq-card.bg-dark p {
  color: #94a3b8;
}

.faq-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-xs-white {
  background: white;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  min-height: 60vh;
}
.legal-container h1 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 10px;
}
.last-updated {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #0f172a;
}
.legal-content p {
  line-height: 1.7;
  color: #334155;
  margin-bottom: 15px;
  text-align: justify;
}

/* =========================================
   PROFESSIONAL FOOTER
   ========================================= */

.site-footer {
  background-color: #0f172a; /* Slate 900 (Sangat Gelap) */
  color: #e2e8f0;
  padding: 80px 20px 30px;
  margin-top: auto;
  border-top: 1px solid #1e293b;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Kolom 1 lebih lebar */
  gap: 40px;
  margin-bottom: 60px;
}

/* Kolom Brand */
.footer-brand p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-brand .lp-logo {
  color: white;
}

.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: #1e293b;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Kolom Links */
.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
}
.footer-links-col li {
  margin-bottom: 12px;
}

.footer-links-col a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: 0.2s;
}
.footer-links-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr; /* Tumpuk satu kolom di HP */
    gap: 40px;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

/* =========================================
   REALISTIC HERO MOCKUP (MINI INVOICE)
   ========================================= */

/* --- Sidebar Mockup Details --- */
.mock-input-group {
  margin-bottom: 8px;
}
.mock-input-group label {
  display: block;
  font-size: 0.5rem;
  color: #94a3b8;
  margin-bottom: 2px;
}
.mock-input {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 6px;
  font-size: 0.6rem;
  color: #334155;
  font-weight: 600;
}
.mock-btn-add {
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.6rem;
  text-align: center;
  padding: 6px;
  border-radius: 4px;
  border: 1px dashed #cbd5e1;
  margin-top: 10px;
}
.mock-total-card {
  margin-top: auto; /* Dorong ke bawah */
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 6px;
  padding: 8px;
}
.mock-total-card small {
  display: block;
  font-size: 0.5rem;
  color: #059669;
}
.mock-total-card strong {
  display: block;
  font-size: 0.75rem;
  color: #047857;
}

/* --- Paper Content (Miniatur) --- */
.real-content {
  padding: 15px !important; /* Override padding lama */
  display: flex;
  flex-direction: column;
}

.mini-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 2px solid #10b981;
  padding-bottom: 8px;
}
.mini-brand {
  display: flex;
  gap: 6px;
  align-items: center;
}
.mini-logo {
  width: 20px;
  height: 20px;
  background: #10b981;
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.mini-brand strong {
  font-size: 0.7rem;
  display: block;
  color: #0f172a;
}
.mini-brand p {
  font-size: 0.5rem;
  color: #64748b;
  margin: 0;
}

.mini-meta {
  text-align: right;
}
.mini-meta strong {
  font-size: 0.8rem;
  color: #cbd5e1;
  letter-spacing: 1px;
  display: block;
}
.mini-meta p {
  font-size: 0.5rem;
  color: #64748b;
  margin: 0;
}

.mini-to {
  margin-bottom: 10px;
}
.mini-to small {
  font-size: 0.5rem;
  color: #94a3b8;
  display: block;
}
.mini-to strong {
  font-size: 0.65rem;
  color: #334155;
}

/* Mini Table */
.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.mini-table th {
  text-align: left;
  font-size: 0.5rem;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
  padding: 4px 0;
}
.mini-table td {
  font-size: 0.6rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  padding: 4px 0;
}
.mini-table .tr {
  text-align: right;
}

/* Mini Footer */
.mini-footer {
  margin-top: auto;
}
.mini-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mini-total-row span {
  font-size: 0.6rem;
  font-weight: 600;
  color: #64748b;
}
.mini-total-row .green-text {
  font-size: 0.8rem;
  color: #10b981;
}
.mini-terbilang {
  font-size: 0.5rem;
  font-style: italic;
  color: #64748b;
  background: #f8fafc;
  padding: 4px;
  border-radius: 2px;
  border-left: 2px solid #10b981;
  margin: 0;
}

/* =========================================
   FLOATING MICRO-WIDGETS
   ========================================= */

/* Container Hero Visual harus relative agar widget mengacu ke sini */
.hero-visual {
  position: relative;
  /* Pastikan z-index mockup tidak menutupi dropdown/navbar jika ada */
  z-index: 1;
}

/* Base Style untuk Widget Melayang */
.floating-widget {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15),
    0 5px 10px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10; /* Agar muncul di DEPAN mockup utama */
  animation: floatGeneric 6s ease-in-out infinite;
  max-width: 220px;
}

/* --- Widget 1: Success Sent (Posisi Kiri Atas) --- */
.float-success {
  top: 40px;
  left: -40px;
  animation-delay: 0s;
}

.float-icon-bg {
  width: 36px;
  height: 36px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.float-content strong {
  display: block;
  font-size: 0.75rem;
  color: #0f172a;
}
.float-content p {
  display: block;
  font-size: 0.6rem;
  color: #64748b;
  margin: 0;
}

.float-check {
  width: 20px;
  height: 20px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  border: 2px solid white;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* --- Widget 2: Efficiency Stats (Posisi Kanan Bawah) --- */
.float-stats {
  bottom: 30px;
  right: -30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 15px;
  animation-delay: 3s; /* Delay biar geraknya gantian */
}

.stats-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 15px;
}
.stats-header small {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 600;
}
.green-badge {
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.stats-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 40px;
  width: 100%;
  padding-top: 5px;
  border-bottom: 1px solid #e2e8f0;
}
.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  flex: 1;
  justify-content: flex-end;
}
.bar-fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  position: relative;
}
.bar-group small {
  font-size: 0.5rem;
  color: #94a3b8;
}

/* Animasi Levitasi (Naik Turun Halus) */
@keyframes floatGeneric {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Sembunyikan Widget di HP agar tidak menutupi konten */
@media (max-width: 900px) {
  .floating-widget {
    display: none;
  }
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
}
.compare-grid:last-child {
  border-bottom: none;
}
.header-row {
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.col-feature {
  font-weight: 600;
  color: #334155;
}
.col-manual,
.col-app {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.text-red {
  color: #ef4444;
}
.text-green {
  color: #10b981;
  font-weight: 600;
}
.text-muted {
  color: #94a3b8;
}

/* Mobile Table Adjustment */
@media (max-width: 600px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .col-manual,
  .col-app {
    justify-content: center;
  }
  .header-row {
    display: none;
  } /* Hide header on mobile */
  .compare-grid {
    border-bottom: 4px solid #f1f5f9;
  }
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    #064e3b 0%,
    #10b981 100%
  ); /* Emerald Gradient */
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Pattern Background (Hiasan Halus) */
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}
.cta-container p {
  font-size: 1.1rem;
  color: #d1fae5;
  margin-bottom: 30px;
}
.cta-container small {
  display: block;
  margin-top: 20px;
  color: #a7f3d0;
  font-size: 0.85rem;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #059669;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 1.8rem;
  }
}

/* =========================================
   DRAWER MENU (NAVIGASI)
   ========================================= */
.btn-menu {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-main);
  padding: 5px;
  border-radius: 6px;
  display: flex;
  align-items: center;
}
.btn-menu:hover {
  background: #f1f5f9;
}

/* Overlay Gelap */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Kotak Menu Putih */
.drawer-content {
  width: 280px;
  height: 100%;
  background: white;
  transform: translateX(-100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.drawer-overlay.open .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s;
}
.drawer-links a:hover {
  background: #f8fafc;
  color: var(--primary);
}
.drawer-links a.active {
  background: #ecfdf5;
  color: var(--primary);
  font-weight: 600;
}
.drawer-links hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 10px 0;
}
