/* ==========================================================================
   DEBITUR CERDAS - ULTRA-COMPACT, HIGH-CONVERSION APPLE-STYLE CSS
   (Designed for 2-Scroll Maximum Efficiency & Zero Overlap)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@600&display=swap');

:root {
  --primary: #0F4C81;         /* Trust Blue */
  --primary-dark: #0A365D;
  --secondary: #2FBF71;       /* Calming Green */
  --secondary-dark: #229958;
  --secondary-soft: #EBF9F1;
  --cta: #FF8A00;             /* High-Conversion Orange */
  --cta-hover: #E67A00;
  --cta-glow: rgba(255, 138, 0, 0.35);
  --accent: #EEF7FF;          /* Soft Blue Background Accent */
  --bg-main: #FFFFFF;
  --bg-surface: #F8FBFD;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --shadow-sm: 0 4px 12px rgba(15, 76, 129, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 76, 129, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   BUTTONS (High Conversion CRO)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn-cta {
  background: var(--cta);
  color: #FFFFFF;
  box-shadow: 0 8px 24px var(--cta-glow);
}

.btn-cta:hover {
  background: var(--cta-hover);
  box-shadow: 0 12px 30px rgba(255, 138, 0, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid rgba(15, 76, 129, 0.15);
  font-size: 0.95rem;
  padding: 14px 24px;
}

.btn-ghost:hover {
  background: rgba(15, 76, 129, 0.1);
  border-color: var(--primary);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP BAR (Simple, Static, No Overlapping)
   ========================================================================== */
.top-brand-bar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-main);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
}

.login-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--accent);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   HERO SECTION (Compact, High Impact, Instant Relief)
   ========================================================================== */
.hero {
  padding: 36px 0 32px;
  background: radial-gradient(circle at 80% 20%, var(--accent) 0%, rgba(255,255,255,0) 65%);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary-soft);
  color: var(--secondary-dark);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(47, 191, 113, 0.3);
}

.hero-title {
  font-size: 2.35rem;
  margin-bottom: 14px;
}

.hero-title span {
  color: var(--cta);
}

.hero-slogan {
  background: var(--accent);
  border-left: 4px solid var(--secondary);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 680px;
  line-height: 1.6;
}

.hero-action-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

/* Transformation Flip Banner (Ultra Compact) */
.transformation-banner {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.trans-old {
  color: #DC2626;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: line-through;
}

.trans-arrow {
  color: var(--text-muted);
  font-weight: 800;
}

.trans-new {
  color: var(--secondary-dark);
  font-size: 1.04rem;
  font-weight: 800;
}

/* ==========================================================================
   14 ALAT BANTU & MODUL (Compact Pill Grid)
   ========================================================================== */
.tools-section {
  padding: 32px 0 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-head {
  text-align: center;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 1.65rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tool-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.tool-icon {
  font-size: 1.25rem;
  color: var(--secondary-dark);
  flex-shrink: 0;
}

.tool-text b {
  display: block;
  font-size: 1rem;
  color: var(--primary-dark);
}

.tool-text span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
  margin-top: 3px;
}

/* ==========================================================================
   PRICING & INSTANT CHECKOUT (Centerpunch)
   ========================================================================== */
.pricing-section {
  padding: 40px 0;
  background: var(--bg-main);
}

.pricing-compact-card {
  max-width: 520px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.price-amount {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 16px 0 4px;
}

.price-period {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.price-benefits {
  text-align: left;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-main);
}

.price-benefits li i {
  color: var(--secondary-dark);
  font-style: normal;
  font-weight: 800;
}

/* ==========================================================================
   MINI FAQ & ETHICAL DISCLAIMER
   ========================================================================== */
.faq-compact {
  max-width: 680px;
  margin: 0 auto 36px;
}

.faq-compact h3 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.faq-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  padding: 12px 16px;
}

.faq-box summary {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-box summary::-webkit-details-marker {
  display: none;
}

.faq-box summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-box[open] summary::after {
  content: "–";
}

.faq-box p {
  margin-top: 8px;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Footer & Legal */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 28px 0 36px;
  background: #081B2B;
  color: rgba(255,255,255,0.88);
  font-size: 0.94rem;
}

.pojk-ref-box {
  background: rgba(15, 76, 129, 0.25);
  border: 1px solid rgba(47, 191, 113, 0.4);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  line-height: 1.6;
  color: #FFFFFF;
}

.pojk-ref-box b {
  color: var(--secondary);
  font-size: 1.02rem;
}

.pojk-ref-box a {
  display: inline-block;
  margin-top: 8px;
  color: var(--cta);
  font-weight: 700;
  text-decoration: underline;
}

.disclaimer-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 0.94rem;
}

.disclaimer-box b {
  color: #FF8A00;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.foot-links a {
  color: rgba(255,255,255,0.7);
}

.foot-copy {
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   RESPONSIVE (Mobile Stacking, Zero Overlap, Clean 2-Scroll)
   ========================================================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.65rem;
  }
  
  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .transformation-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .trans-arrow {
    display: none;
  }
  
  .btn {
    width: 100%;
    font-size: 0.88rem;
    padding: 13px 16px;
  }
  
  .hero-action-box {
    flex-direction: column;
  }
  
  .pricing-compact-card {
    padding: 26px 20px;
  }
}
