/* ===== Custom Page ===== */


/* ===== Hero ===== */

.custom-hero {
  padding: 48px 0 40px;
  text-align: center;
}

.custom-hero .container {
  max-width: 760px;
  margin: 0 auto;
}

.custom-hero h1 {
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.custom-hero p {
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--text-soft);
}


/* ===== HERO ICONS ===== */

.custom-hero .hero-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* mobile first */
  gap: 10px;
  margin: 18px 0;
}

.hero-icon {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;

  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.hero-icon img {
  width: 22px;
  margin-bottom: 6px;
}

.hero-icon span {
  font-size: 0.75rem;
  font-weight: 600;
}


/* ===== Problem & Solution ===== */

.problem-solution {
  padding: 44px 0;
}

.grid-2cols {
  display: grid;
  grid-template-columns: 1fr; /* mobile first */
  gap: 16px;
}

.problems,
.solutions {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}


/* ===== TITLE ===== */

.problems h2,
.solutions h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}


/* ===== BUBBLE LIST (MOBILE FIX) ===== */

.problems ul,
.solutions ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr; /* 1 kolom mobile */
  gap: 8px;
}

.problems li,
.solutions li {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;

  padding: 10px;

  font-size: 0.9rem;
  line-height: 1.5;

  width: 100%;
}

.solutions li {
  background: var(--bg-light);
  border-left: 3px solid var(--primary);
}


/* ===== Custom Options ===== */

.section.light {
  padding: 44px 0;
}

.section.light h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.solution-item {
  padding: var(--spacing-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-light);
}


/* ===== Steps ===== */

.section {
  padding: 44px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.step {
  padding: var(--spacing-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-light);
}

.step span {
  width: 40px;
  height: 40px;
  font-size: 0.85rem;
}


/* ===== CTA ===== */

.cta {
  padding: 44px 0 50px;
  text-align: center;
}

.cta p {
  margin-bottom: 18px;
}


/* ================= DESKTOP UPGRADE ================= */

@media (min-width: var(--bp-md)) {

  .custom-hero {
    padding: 64px 0;
  }

  .custom-hero h1 {
    font-size: 2.5rem;
  }

  .custom-hero p {
    font-size: 1rem;
  }

  /* icon jadi 4 */
  .custom-hero .hero-icons {
    grid-template-columns: repeat(4, 1fr);
  }

  /* grid 2 kolom */
  .grid-2cols {
    grid-template-columns: repeat(2, 1fr);
  }

  /* bubble jadi 2 kolom */
  .problems ul,
  .solutions ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
