/* =========================
   HOME PAGE ONLY
   ========================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 400px;
  padding: 60px 40px;
  background:
    linear-gradient(90deg, rgba(20, 8, 45, 0.82), rgba(20, 8, 45, 0.42)),
    url("../Images/Home/hero.png") center / cover no-repeat;
}

.hero-content {
  max-width: 720px;
  margin-top: -80px;
}

.hero h1 {
  max-width: 700px;
}

.hero p {
  max-width: 520px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-sub {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* split section */
.image-box {
  height: 100%;
  min-height: 390px;
  background: url("../Images/Home/mid.png") center center / cover no-repeat;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.sessions-image {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.sessions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checklist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 390px;
  padding: 32px;
  background: linear-gradient(90deg, var(--bg-panel-a), var(--bg-panel-b));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.checklist h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 14px 0 14px 28px;
  font-size: 0.98rem;
  color: var(--text-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.checklist li::before {
  content: "◆";
  position: absolute;
  top: 14px;
  left: 0;
  color: #ff4bd2;
}

/* testimonials */
.testimonial {
  height: 100%;
  padding: 22px;
  background: linear-gradient(180deg, #352066, #29184f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.testimonial p {
  margin-bottom: 14px;
}

/* highlight */
.highlight {
  padding: 48px 32px;
  background: linear-gradient(180deg, #352066, #29184f);
  border-radius: var(--radius-md);
}

/* accordion */
.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: #3a2566;
}

.accordion-button {
  background: #3a2566;
  color: #fff;
}

.accordion-body {
  background: #3a2566;
  color: #fff;
}

.accordion .accordion-button::after {
  content: "▼" !important;
}

.accordion .accordion-button:not(.collapsed)::after {
  content: "▲" !important;
}