:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e5e7eb;
  --muted: #64748b;
  --text: #0f172a;
  --primary: #2563eb;
  --primary-600: #1d4ed8;
  --accent: #0ea5e9;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }

body {
  margin: 0; color: var(--text); background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

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

.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 { font-size: 32px; margin: 0 0 8px; letter-spacing: .2px; color: var(--text); }
.section-title p { color: var(--muted); margin: 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; transition: transform .12s ease, background .2s ease, box-shadow .2s ease; }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-600)); color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,.25); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { background: #111827; color: #fff; }

/* Hero */
.hero { padding: 88px 0 56px; position: relative; }
.hero-content { text-align: center; }
.hero h1 { font-size: 42px; margin: 0 0 12px; color: var(--text); }
.hero p { color: var(--muted); max-width: 780px; margin: 0 auto 20px; }
.cta-buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { background: var(--card); border: 1px solid var(--border); padding: 18px; border-radius: var(--radius); box-shadow: var(--shadow); }
.benefit-icon { font-size: 24px; margin-bottom: 8px; }
.benefit-card h3 { margin: 6px 0 8px; font-size: 18px; color: var(--text); }
.benefit-card p { margin: 0; color: var(--muted); }

/* Details */
.details-container { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; }
.details-list { margin: 12px 0 18px; padding-left: 18px; }
.details-image img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.workshop-details h3 { font-size: 28px; }

/* Book (borderless) */
.book .book-card { background: transparent; border: none; border-radius: var(--radius); box-shadow: none; padding: 24px; max-width: 880px; margin: 0 auto; text-align: center; }
.book .book-eyebrow { color: var(--muted); letter-spacing: .3px; font-weight: 700; text-transform: uppercase; font-size: 12px; }
.book h3 { margin: 6px 0 6px; font-size: 24px; }
.book p { color: var(--muted); margin-top: 6px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); display: grid; grid-template-rows: auto auto auto 1fr auto; row-gap: 8px; }
.price-card.popular { border: 1px solid rgba(14,165,233,.45); box-shadow: 0 12px 28px rgba(2,132,199,.12); }
.price-badge { position: absolute; top: -10px; right: 12px; background: linear-gradient(180deg, #22d3ee, #06b6d4); color: #001018; padding: 6px 10px; font-weight: 800; border-radius: 999px; font-size: 12px; letter-spacing: .4px; }
.price-card h3 { margin: 2px 0 6px; font-size: 20px; color: var(--text); min-height: 26px; }
.subtitle { color: var(--muted); font-size: 14px; margin-bottom: 8px; line-height: 1.4; min-height: calc(1.4em * 2); height: auto; display: block; }
.price { font-size: 34px; font-weight: 800; margin: 6px 0 10px; color: var(--text); }
.bullets { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 8px; }
.bullets li { display: grid; grid-template-columns: 16px 1fr; align-items: start; gap: 8px; color: var(--text); }
.dot { width: 8px; height: 8px; border-radius: 999px; margin-top: 8px; background: linear-gradient(180deg, var(--accent), #38bdf8); display: inline-block; }
.cta-row { margin-top: 0; display: flex; gap: 10px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.testimonial-header { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 999px; background: linear-gradient(180deg, #e2e8f0, #cbd5e1); color: #0f172a; display: grid; place-items: center; font-weight: 800; }
.testimonial-rating { color: #f59e0b; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.faq-question { font-weight: 700; color: var(--text); }
.faq-answer { color: var(--muted); }

/* CTA */
.cta-section { text-align: center; padding: 56px 0 72px; }

/* Alternating backgrounds */
.section.white { background: #fff; }
.section.gray { background: #f8fafc; }
.cta-section.white { background: #fff; }
.cta-section.gray { background: #f8fafc; }

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .details-container { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero h1 { font-size: 34px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .section-title h2 { font-size: 28px; }
  .price { font-size: 30px; }
  /* Let subtitles expand naturally on small screens */
  .subtitle { height: auto; min-height: 0; }
}
