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

/* ============================================================
   Build With AI — BuiltwithSally
   Complete design system (Stage 1)
   ============================================================ */

/* --- CSS variables --------------------------------------- */
:root {
  --purple: #2D1B69;
  --purple-mid: #4A2E9E;
  --pink: #FF6B9D;
  --pink-light: #FFE4EF;
  --bg: #FAFAF8;
  --bg-card: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --lavender: #F0E6FF;
  --lavender-mid: #D8C5FF;
  --green: #10B981;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --teal: #0D9488;
  --teal-light: #CCFBF1;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(45,27,105,0.08);
  --shadow-hover: 0 8px 24px rgba(45,27,105,0.15);
  --transition: all 0.2s ease;
}

/* ============================================================
   1. Reset + base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------
   Accessibility polish (ui-ux-pro-max pass)
   Brand-safe: focus rings, pointer cursors, reduced motion.
   --------------------------------------------------------- */

/* Visible keyboard focus on every interactive element.
   :focus-visible so mouse users don't see rings, keyboard users do. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
.quiz-option:focus-visible,
.copy-btn:focus-visible,
.progress-checkbox-label:focus-within .progress-checkbox {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Every clickable affordance gets a pointer cursor. */
button,
.btn-primary,
.btn-secondary,
.btn-outline-white,
.btn-purple,
.copy-btn,
.quiz-option,
.share-btn,
.progress-checkbox-label,
summary,
[data-open-modal],
[role="button"] {
  cursor: pointer;
}

/* Respect users who ask for less motion. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 700; }

p { margin-bottom: 1rem; }

a {
  color: var(--purple-mid);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--pink); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

strong { font-weight: 600; }

/* ============================================================
   2. Layout containers
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   3. Sticky site nav
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lavender);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple);
}
.nav-logo span { color: var(--purple); }
.kit-embed-hidden { display: none; }
.nav-logo-img {
  width: 36px;
  margin-right: 10px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* footer logo image (under nothing / above wordmark) */
.footer-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
}

.nav-progress {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.nav-back {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple-mid);
  white-space: nowrap;
}
.nav-back:hover { color: var(--pink); }

/* ============================================================
   3b. Profile badge (mini profile, shown when signed in)
   ============================================================ */
.profile-badge {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  background: var(--lavender);
  padding: 6px 12px 6px 6px;
  border-radius: 100px;
  white-space: nowrap;
}
.profile-badge-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.profile-badge-name {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   4. Progress bar
   ============================================================ */
.progress-bar-wrap {
  height: 6px;
  width: 100%;
  background: var(--lavender);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 100px;
  transition: width 0.4s ease;
}

/* ============================================================
   5. Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,107,157,0.25), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(216,197,255,0.30), transparent 45%),
    linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  color: #fff;
  text-align: center;
  padding: 88px 24px 96px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   6. Button system
   ============================================================ */
.btn-primary,
.btn-secondary,
.btn-outline-white,
.btn-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 13px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,157,0.35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,107,157,0.45);
}

.btn-secondary {
  background: var(--lavender);
  color: var(--purple);
}
.btn-secondary:hover {
  background: var(--lavender-mid);
  color: var(--purple);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--purple);
}

.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover {
  background: var(--purple-mid);
  color: #fff;
  transform: translateY(-2px);
}

/* modifiers */
.btn-lg {
  font-size: 1.1rem;
  padding: 16px 34px;
}
.btn-sm {
  font-size: 0.85rem;
  padding: 9px 18px;
}
.btn-full {
  display: flex;
  width: 100%;
}

/* ============================================================
   7. Modal (email capture)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26,26,46,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}

.modal-box {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  width: 100%;
  max-width: 460px;
  padding: 40px;
  animation: modalPop 0.25s ease;
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-box h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.modal-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--lavender);
  color: var(--purple);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover {
  background: var(--lavender-mid);
}

/* ============================================================
   8. Forms
   ============================================================ */
.form-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 2px solid var(--lavender-mid);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-light);
}
.form-input::placeholder {
  color: var(--text-muted);
}

.kit-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}

/* ============================================================
   9. Modules section + grid + cards
   ============================================================ */
.modules-section {
  padding: 80px 0;
}
.modules-section .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.modules-section .section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.module-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.module-card:hover::before {
  transform: scaleX(1);
}
.module-card .module-card-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.module-card h3 {
  font-size: 1.25rem;
}
.module-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.module-card .module-card-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   10. Bio section
   ============================================================ */
.bio-section {
  padding: 72px 0;
  background: var(--lavender);
}
.bio-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
}
.bio-avatar {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  box-shadow: var(--shadow);
}
.bio-inner h2 {
  margin-bottom: 12px;
}
.bio-inner p {
  color: var(--text);
  font-size: 1.05rem;
}

/* ============================================================
   11. Share section
   ============================================================ */
.share-section {
  padding: 64px 0;
  text-align: center;
}
.share-section h2 {
  margin-bottom: 12px;
}
.share-section > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.share-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}
.share-btn-twitter   { background: #1DA1F2; }
.share-btn-linkedin  { background: #0A66C2; }
.share-btn-whatsapp  { background: #25D366; }
.share-btn-copy {
  background: var(--lavender);
  color: var(--purple);
}
.share-btn-copy:hover {
  background: var(--lavender-mid);
  color: var(--purple);
}

/* ============================================================
   12. Module hero (module pages)
   ============================================================ */
.module-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,107,157,0.25), transparent 50%),
    linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  color: #fff;
  padding: 56px 24px 64px;
  text-align: center;
}
.module-hero h1 {
  color: #fff;
  font-size: 2.4rem;
  max-width: 720px;
  margin: 16px auto 0;
}
.module-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 12px auto 0;
}

/* ============================================================
   13. Module badge + time
   ============================================================ */
.module-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.module-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-left: 12px;
}

/* ============================================================
   14. Module content
   ============================================================ */
.module-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px;
}
.module-content h2 {
  font-size: 1.75rem;
  margin: 48px 0 16px;
}
.module-content h2:first-child {
  margin-top: 0;
}
.module-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}
.module-content p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 18px;
}
.module-content ul,
.module-content ol {
  margin: 0 0 20px 1.25rem;
}
.module-content li {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.module-content a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--lavender-mid);
  text-underline-offset: 3px;
}

/* ============================================================
   15. Comparison table
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table thead {
  background: var(--purple);
}
.comparison-table thead th {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  padding: 14px 18px;
}
.comparison-table tbody td {
  padding: 14px 18px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--lavender);
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--bg);
}
.comparison-table tbody tr:nth-child(odd) {
  background: #fff;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
/* pink-header variant */
.comparison-table.pink-header thead {
  background: var(--pink);
}

/* ============================================================
   16. Try-it box
   ============================================================ */
.try-it-box {
  background: var(--lavender);
  border: 2px solid var(--pink);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}
.try-it-label {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.prompt-box {
  position: relative;
  background: #fff;
  border: 1px solid var(--lavender-mid);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 8px;
}
.prompt-box .prompt-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  white-space: pre-wrap;
  margin: 0;
  padding-right: 80px;
}
.prompt-box .copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--lavender);
  color: var(--purple);
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.prompt-box .copy-btn:hover {
  background: var(--lavender-mid);
}
.prompt-box .copy-btn.copied {
  background: var(--green);
  color: #fff;
}

/* ============================================================
   17. Discernment box
   ============================================================ */
.discernment-box {
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}
.discernment-label {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.discernment-box p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   18. Sally callout
   ============================================================ */
.sally-callout {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 32px 0;
}
.sally-callout-label {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sally-callout p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   19. Meta banner (Module 5 only)
   ============================================================ */
.meta-banner {
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 32px 0;
  text-align: center;
}
.meta-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}
.meta-banner strong {
  color: var(--pink);
  font-weight: 700;
}
.meta-banner-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

/* troubleshooting card (Module 5) */
.trouble-card {
  background: var(--lavender);
  border: 1px solid var(--lavender-mid);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 24px 0;
}
.trouble-item { margin-bottom: 16px; }
.trouble-item:last-child { margin-bottom: 0; }
.trouble-item .trouble-error {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: #B91C1C;
  background: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 6px;
}
.trouble-item p { margin: 0; font-size: 0.95rem; color: var(--text); }
.trouble-close { font-size: 0.95rem; margin-top: 18px; }

/* ============================================================
   20. Terminal steps
   ============================================================ */
.terminal-steps {
  background: #1E1E2E;
  border-radius: var(--radius-lg);
  padding: 0;
  margin: 32px 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.terminal-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.terminal-header span:nth-child(1) { background: #FF5F56; }
.terminal-header span:nth-child(2) { background: #FFBD2E; }
.terminal-header span:nth-child(3) { background: #27C93F; }
.terminal-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-step:last-child {
  border-bottom: none;
}
.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-command {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.9rem;
  color: #56D4DD;
  word-break: break-word;
}
.terminal-step .step-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ============================================================
   21. Workflow card
   ============================================================ */
.workflow-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px 22px 28px;
  margin: 20px 0;
  overflow: hidden;
}
.workflow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--purple), var(--pink));
}
.workflow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 12px;
}
.workflow-card h3 {
  margin-bottom: 8px;
}
.workflow-card p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   22. Module quiz
   ============================================================ */
.quiz-section {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px;
  margin: 40px 0;
}
.quiz-section h2,
.quiz-section h3 {
  margin-bottom: 20px;
}
.quiz-question {
  margin-bottom: 28px;
}
.quiz-question > p {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--lavender);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.quiz-option::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--lavender-mid);
  transition: var(--transition);
}
.quiz-option:hover:not(:disabled) {
  border-color: var(--pink);
  background: var(--pink-light);
}
.quiz-option:disabled {
  cursor: default;
}
.quiz-option.correct {
  border-color: var(--green);
  background: rgba(16,185,129,0.10);
  color: var(--text);
}
.quiz-option.correct::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 3px #fff;
}
.quiz-option.incorrect {
  border-color: #EF4444;
  background: rgba(239,68,68,0.08);
}
.quiz-option.incorrect::before {
  border-color: #EF4444;
  background: #EF4444;
  box-shadow: inset 0 0 0 3px #fff;
}
.quiz-feedback {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--lavender);
  font-size: 0.95rem;
  color: var(--text);
}
.quiz-feedback.correct {
  background: rgba(16,185,129,0.10);
  border: 1px solid var(--green);
}
.quiz-feedback.incorrect {
  background: rgba(239,68,68,0.08);
  border: 1px solid #EF4444;
}
.quiz-score-display {
  margin-top: 24px;
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--lavender), var(--pink-light));
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--purple);
}

/* ============================================================
   23. Fluency quiz + result
   ============================================================ */
.fluency-quiz-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px;
  margin: 40px 0;
}
.fluency-result {
  display: none;
  margin-top: 28px;
  padding: 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  border-radius: var(--radius-lg);
  color: #fff;
}
.fluency-result.show {
  display: block;
}
.result-score {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  color: #fff;
}
.result-tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--pink);
  margin: 8px 0 12px;
}
.result-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto;
}

/* ============================================================
   24. Score comparison
   ============================================================ */
.score-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 32px 0;
}
.score-card {
  background: #fff;
  border: 2px solid var(--lavender);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.score-card .score-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.score-card .score-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--purple);
  margin: 6px 0;
}
.score-card .score-card-tier {
  font-weight: 600;
  color: var(--pink);
}
.score-comparison .score-arrow {
  font-size: 1.5rem;
  color: var(--pink);
}
.score-card.final-card {
  border-color: var(--pink);
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   25. Share result card
   ============================================================ */
.share-result-card {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,107,157,0.30), transparent 50%),
    linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin: 32px 0;
}
.share-card-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 24px;
}
.share-card-headline span {
  color: var(--pink);
}

/* ============================================================
   26. Progress section + custom checkbox
   ============================================================ */
.progress-section {
  background: var(--lavender);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px 0;
  text-align: center;
}
.progress-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--purple);
  user-select: none;
}
.progress-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.progress-checkbox {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid var(--lavender-mid);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.progress-checkbox::after {
  content: "✓";
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}
.progress-checkbox-label input[type="checkbox"]:checked + .progress-checkbox {
  background: var(--green);
  border-color: var(--green);
}
.progress-checkbox-label input[type="checkbox"]:checked + .progress-checkbox::after {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   27. Module nav
   ============================================================ */
.module-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 720px;
  margin: 48px auto;
  padding: 0 24px;
}
.module-nav .waitlist-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-mid);
}
.module-nav .waitlist-link:hover {
  color: var(--pink);
}

/* ============================================================
   28. Waitlist section
   ============================================================ */
.waitlist-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,107,157,0.20), transparent 50%),
    linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.waitlist-section h2 {
  color: #fff;
  margin-bottom: 12px;
}
.waitlist-section p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 28px;
}
.waitlist-section .form-input {
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.30);
  color: #fff;
}
.waitlist-section .form-input::placeholder {
  color: rgba(255,255,255,0.65);
}
.waitlist-section .form-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,107,157,0.25);
}

/* ============================================================
   29. Thank-you hero
   ============================================================ */
.thankyou-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,107,157,0.25), transparent 55%),
    linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: #fff;
}
.thankyou-hero h1 {
  color: #fff;
  max-width: 640px;
}
.thankyou-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  font-size: 1.1rem;
}
.thankyou-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

/* ============================================================
   30. Next steps
   ============================================================ */
.next-steps {
  padding: 72px 0;
}
.next-steps .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.next-step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.next-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.next-step-card .next-step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.next-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.next-step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================================
   31. Site footer
   ============================================================ */
.site-footer {
  background: #14101F;
  color: rgba(255,255,255,0.6);
  padding: 48px 24px;
  text-align: center;
  font-size: 0.9rem;
}
.site-footer a {
  color: rgba(255,255,255,0.8);
}
.site-footer a:hover {
  color: var(--pink);
}
.site-footer .footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}
.site-footer .footer-logo span {
  color: var(--pink);
}

/* ============================================================
   32. Follow strip
   ============================================================ */
.follow-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--lavender);
  padding: 16px 24px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.follow-strip a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: 100px;
  transition: var(--transition);
}
.follow-strip a:hover {
  background: var(--lavender);
  color: var(--text);
}

/* ============================================================
   33. Info box
   ============================================================ */
.info-box {
  background: var(--lavender);
  border: 1px solid var(--lavender-mid);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text);
  margin: 24px 0;
}
.info-box p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   34. Responsive breakpoints — MOBILE FIRST
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  .site-nav .nav-progress {
    display: none; /* show progress text only on desktop */
  }

  .profile-badge-name {
    display: none; /* avatar only on mobile, saves space */
  }
  .profile-badge {
    padding: 0;
    background: transparent;
  }

  .modules-grid {
    grid-template-columns: 1fr; /* single column */
  }

  .bio-inner {
    flex-direction: column;
    text-align: center;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .modal-box {
    margin: 16px;
    padding: 24px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

  .score-comparison {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .score-comparison .score-arrow {
    transform: rotate(90deg);
  }

  .next-steps-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }

  .share-buttons {
    flex-direction: column;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 14px 24px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .module-hero h1 {
    font-size: 1.5rem;
  }

  .rtcf-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns on small mobile */
  }

  .terminal-steps {
    overflow-x: auto; /* prevent horizontal scroll breaking layout */
  }

  .follow-strip a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .cost-cards {
    flex-direction: column;
  }
}

/* RTCF grid base (used in Module 2) */
.rtcf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.rtcf-card {
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(45,27,105,0.06);
}
.rtcf-card .rtcf-letter {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.rtcf-card .rtcf-name { font-weight: 700; margin-bottom: 6px; }
.rtcf-card p { font-size: 0.92rem; color: var(--text); margin-bottom: 0; }
.rtcf-card.rtcf-r { background: var(--lavender); }
.rtcf-card.rtcf-r .rtcf-letter { color: var(--purple); }
.rtcf-card.rtcf-t { background: var(--pink-light); }
.rtcf-card.rtcf-t .rtcf-letter { color: var(--pink); }
.rtcf-card.rtcf-c { background: var(--teal-light); }
.rtcf-card.rtcf-c .rtcf-letter { color: var(--teal); }
.rtcf-card.rtcf-f { background: var(--gold-light); }
.rtcf-card.rtcf-f .rtcf-letter { color: var(--gold); }

/* before / after comparison blocks (Module 2) */
.ba-block {
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 16px 0;
}
.ba-vague {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
}
.ba-rtcf {
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
}
.ba-block .ba-label { font-weight: 700; margin-bottom: 8px; }
.ba-vague .ba-label { color: #B91C1C; }
.ba-rtcf .ba-label { color: #047857; }
.ba-block .ba-prompt {
  font-style: italic;
  color: var(--text);
  margin-bottom: 8px;
}
.ba-block .ba-result { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* RTCF tag line under prompt labels */
.rtcf-tags {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-mid);
  background: var(--lavender);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.prompt-tip {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* generic tool-mixup callout */
.warn-callout {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
}

/* ============================================================
   Bonus page specifics
   ============================================================ */

/* 3-tool weekly system cards (plain divs, left border) */
.tool-row {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  margin: 16px 0;
  border-left: 5px solid var(--lavender-mid);
}
.tool-row h3 { margin-bottom: 4px; }
.tool-row p { margin-bottom: 0; color: var(--text-muted); }
.tool-row.tool-claudeai { border-left-color: var(--lavender-mid); }
.tool-row.tool-cowork   { border-left-color: var(--teal); }
.tool-row.tool-code     { border-left-color: var(--gold); }

/* 30-day challenge cards */
.challenge-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--lavender);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  margin: 16px 0;
}
.challenge-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}
.challenge-num.c-purple { background: var(--purple); }
.challenge-num.c-pink   { background: var(--pink); }
.challenge-num.c-teal   { background: var(--teal); }
.challenge-num.c-gold   { background: var(--gold); }
.challenge-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.challenge-card p { margin-bottom: 0; color: var(--text-muted); font-size: 0.95rem; }

/* share result card extra bits */
.share-card-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.share-card-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.share-result-card .btn-primary,
.share-result-card .btn-outline-white {
  margin: 6px;
}

/* course 2 teaser */
.course2-section {
  background: #fff;
  max-width: 720px;
  margin: 48px auto;
  padding: 48px 24px;
  text-align: center;
}
.waitlist-box {
  background: var(--lavender);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
}
.waitlist-box .form-input { text-align: left; }
.waitlist-fineprint { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; }

/* stay connected card */
.stay-connected {
  background: linear-gradient(135deg, var(--purple) 0%, #5B3EC8 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  margin: 48px 0;
}
.stay-connected h2 { color: #fff; margin-bottom: 12px; }
.stay-connected p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 14px; }
.stay-connected .stay-icon { font-size: 2rem; margin-bottom: 12px; }
.stay-connected .form-input {
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.30);
  color: #fff;
  text-align: left;
}
.stay-connected .form-input::placeholder { color: rgba(255,255,255,0.65); }
.stay-connected .consent-row { color: rgba(255,255,255,0.85); justify-content: flex-start; text-align: left; }
.stay-connected .privacy-link { color: #fff; opacity: 0.7; font-size: 0.8rem; }
.stay-form-wrap { max-width: 420px; margin: 20px auto 0; }
.success-msg {
  background: rgba(16,185,129,0.15);
  border: 1px solid var(--green);
  color: var(--text);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 12px;
  font-weight: 600;
}
.stay-connected .success-msg { color: #fff; }

/* cost-cards base (used in module pages) */
.cost-cards {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

/* ============================================================
   Stage 2 additions — landing page specifics
   ============================================================ */

/* reusable small label pill */
.section-label {
  display: inline-block;
  background: var(--lavender);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* hero accent span */
.hero h1 .accent { color: var(--pink); }

/* inline Claude Pro pill (workflow list) */
.pill-pro {
  display: inline-block;
  background: var(--lavender);
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}

/* full follow section box (module pages) */
.follow-box {
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
  text-align: center;
}
.follow-box .share-buttons { margin-top: 16px; flex-wrap: wrap; }
.follow-box .follow-fineprint { font-size: 0.85rem; color: var(--text-muted); margin: 16px 0 0; }

/* hero CTA row */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* follow strip lead line */
.follow-strip-lead {
  width: 100%;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 4px;
}

/* forces a line break in flex-wrap follow strips */
.follow-strip-break {
  flex-basis: 100%;
  height: 0;
}

/* module card pill badge */
.module-card .card-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.card-pill.free  { background: #D1FAE5; color: #065F46; font-weight: 700; }
.card-pill.pro   { background: #F1F0F4; color: #8A8494; font-weight: 500; font-size: 0.65rem; }
.card-pill.white-pill { background: rgba(255,255,255,0.22); color: #fff; }

.module-card .module-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

/* bonus card — purple gradient */
.module-card.bonus-card {
  background: linear-gradient(135deg, #2D1B69, #5B3EC8);
  color: #fff;
}
.module-card.bonus-card h3,
.module-card.bonus-card .module-card-num { color: #fff; }
.module-card.bonus-card p { color: rgba(255,255,255,0.85); }
.module-card.bonus-card .module-card-foot { color: rgba(255,255,255,0.75); }

/* What this costs section */
.cost-section {
  background: var(--lavender);
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.cost-section .cost-intro { color: var(--text-muted); margin-bottom: 28px; }
.cost-cards .cost-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--lavender-mid);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: left;
  box-shadow: var(--shadow);
}
.cost-card .cost-tool { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.cost-card .cost-price { color: var(--pink); font-weight: 600; margin-bottom: 8px; }
.cost-card .cost-used { font-size: 0.85rem; color: var(--text-muted); }
.cost-card .cost-note { font-size: 0.85rem; color: var(--text); margin-top: 8px; }
.cost-closing { font-size: 0.85rem; color: var(--text-muted); margin: 24px 0; }

/* Why different section */
.why-section {
  background: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}
.why-intro { color: var(--text-muted); max-width: 620px; margin: 0 auto 32px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}
.why-card {
  background: #fff;
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* FAQ section (native details/summary, no JS) */
.faq-section {
  background: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px;
}
.faq-section .faq-head {
  text-align: center;
  margin-bottom: 32px;
}
.faq-item {
  border-bottom: 1px solid var(--lavender);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  padding: 18px 40px 18px 0;
  position: relative;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pink);
  transition: var(--transition);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { color: var(--purple-mid); }
.faq-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
  padding: 0 40px 20px 0;
  margin: 0;
}

/* generic centered CTA section */
.cta-section { text-align: center; padding: 64px 24px; }
.cta-section p { color: var(--text-muted); max-width: 480px; margin: 0 auto 24px; }

/* ---------------------------------------------------------
   Testimonials (social proof before final CTA)
   ui-ux-pro-max landing guidance: 3-5 quotes, light bg,
   italic, attribution with source, placed before CTA.
   --------------------------------------------------------- */
.testimonials-section {
  background: var(--lavender);
  padding: 72px 0;
}
.testimonials-section .section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.testimonials-section .section-head p {
  color: var(--text-muted);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}
.testimonial-meta .testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.testimonial-meta .testimonial-source {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.testimonials-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 28px;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* modal note + recovery */
.modal-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; text-align: center; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 4px 0 16px;
  text-align: left;
}
.consent-row input { margin-top: 3px; flex-shrink: 0; }
.recovery-line { font-size: 0.85rem; text-align: center; margin-top: 18px; }
.recovery-form { display: none; margin-top: 12px; }
.recovery-form.show { display: block; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .cost-cards { flex-direction: column; }
}
