.subpanel {background:#f9f7f2;padding:1.8rem 2rem;color:var(--dark-blue);}
.benefits-panel {
  background: #f8f1d9;
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(35,57,76,0.08);
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list li {
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.45;
}
.benefits-list li:before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 1.55rem;
  line-height: 1.45;
  top: -0.2em;
}
.expertise p {
  margin-bottom: 1.6rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #1e2a38;
}

/* ================================================
   WORKSHOP BANNER
   Clean CSS – no inline styles
   One clean line on desktop (can overhang sides)
   Mobile stays exactly as before (wraps)
   ================================================ */

.workshop-banner {
  margin: 40px 0 35px;
  text-align: center;
}

.workshop-banner h3 {
  margin-bottom: 22px;
  color: #D9B400;
  font-size: 1.65rem;
  font-family: 'Ubuntu Mono', monospace;
}

.workshop-link {
  text-decoration: none;
}

.workshop-slides {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.workshop-slide {
  position: relative;
  max-width: 255px;
  cursor: pointer;
}

.workshop-slide-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.65);
  color: white;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-overlay .material-icons-outlined {
  font-size: 28px;
}

.workshop-caption {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #666;
}

/* Desktop: force single row + slightly larger thumbnails */
@media (min-width: 992px) {
  .workshop-slides {
    flex-wrap: nowrap !important;
  }

  .workshop-slide {
    max-width: 255px !important;
  }
}

/* Mobile: keep thumbnails smaller and wrapping (exactly like before) */
@media (max-width: 768px) {
  .workshop-slide {
    max-width: 320px !important;
  }
}

.how-it-works {
  margin: 3rem 0 2.5rem;
}
.how-it-works h2 {
  margin-bottom: 1rem;
}
.how-it-works p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #1e2a38;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.step {
  display: flex;
  gap: 1.2rem;
}
.step-number {
  flex: 0 0 32px;
  height: 32px;
  background: #23394C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}
.step-content {
  flex: 1;
}
.free {
  color: #4a9c2e;
  font-size: 0.95rem;
}
.paid {
  color: #d97706;
  font-size: 0.95rem;
}
.closing {
  margin-top: 2rem;
  font-style: italic;
  color: #555;
}

.subpanel h2 {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}

.benefits-panel + h2,
.pricing-panel + h2 {
  margin-top: 2.8rem;
}

/* ================================================
   PRICING PANEL
   Clean copy of benefits-panel but with better internal spacing
   ================================================ */
.pricing-panel {
  background: #f8f1d9;
  border-radius: 12px;
  padding: 1.8rem 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(35,57,76,0.08);
}

.pricing-panel p {
  margin-bottom: 1.65rem;
  line-height: 1.5;
}

.pricing-panel p:last-child {
  margin-bottom: 0;
}

/* ================================================
   MENU TUCKED UNDER – logo + tagline stay together
   + smaller on mobile so they fit side-by-side
   ================================================ */
.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

/* Group logo + tagline so they stay side-by-side (as one unit) */
.header > :not(.main-nav) {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

.main-nav {
  flex-basis: 100%; /* forces menu under */
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: flex-end; /* right-aligned on desktop */
  gap: 1.6rem;
  font-size: 1.02rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.main-nav a:hover {
  color: #ffd700;
}

/* Mobile: center everything + make logo + tagline smaller */
@media (max-width: 768px) {
  .header {
    justify-content: center;
    gap: 0.9rem;
    padding-bottom: 6px;     /* ← add this */
  }

  .header > :not(.main-nav) {
    justify-content: center;
    gap: 0.9rem;
  }

  .header img {
    max-width: 100px;      /* ← bit smaller logo */
    height: auto;
  }

  .header h1 {
    font-size: 1rem;    /* ← bit smaller tagline */
    line-height: 1.25;
  }

  .main-nav {
    justify-content: center;
    gap: 1.1rem;
    margin-top: 0px;
    padding-top: 5px;
    font-size: 0.97rem;
  }
}
