/* fonts loaded via <link> in index.html */

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #142B72;
  --navy-dark: #0D1F5C;
  --navy-deep: #091540;
  --red: #D91F26;
  --red-light: #F03A40;
  --off-white: #F8F8F8;
  --white: #FFFFFF;
  --text: #333;
  --text-mid: #555;
  --text-light: #888;
  --border: rgba(20,43,114,0.1);
  --shadow: 0 18px 45px rgba(0,0,0,0.07);
  --shadow-lg: 0 30px 70px rgba(20,43,114,0.13);
  --radius: 20px;
  --radius-sm: 10px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* ── TOP BAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
  max-width: 1400px;
  margin: auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 90px;
}

.logo-img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.logo-fallback {
  display: none;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-fallback em {
  font-style: normal;
  color: var(--red-light);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-home {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.topbar-home:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.topbar-cta {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.topbar-cta:hover { transform: translateY(-1px); }

/* ── SIDEBAR BACK BUTTON ── */
.sidebar-back {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: background 0.18s ease, color 0.18s ease;
  letter-spacing: 0.02em;
}
.sidebar-back:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* ── SCREENS ── */
.screen { display: none; }
.screen.active { display: block; }

/* ── WELCOME SCREEN ── */
.welcome-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(50px, 6vw, 90px) 24px;
}

.welcome-eyebrow {
  display: inline-block;
  background: rgba(217,31,38,0.1);
  border: 1px solid rgba(217,31,38,0.3);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}
.welcome-title em {
  font-style: normal;
  color: var(--red);
}

.welcome-sub {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ── INDUSTRY GRID ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: left;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.industry-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.industry-card-body {}

.industry-card-name {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.industry-card-tagline {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.industry-card-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--red);
  align-self: center;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.industry-card:hover .industry-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── WEEK SCREEN LAYOUT ── */
.week-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 120px);
}

/* ── SIDEBAR ── */
.week-sidebar {
  background: var(--navy-dark);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 120px;
  height: calc(100vh - 120px);
  overflow-y: auto;
}

.sidebar-industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.week-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.week-nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease;
  width: 100%;
}
.week-nav-btn:hover { background: rgba(255,255,255,0.07); }
.week-nav-btn.active { background: rgba(217,31,38,0.18); }

.week-nav-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease;
}
.week-nav-btn.active .week-nav-num {
  background: var(--red);
  color: #fff;
}

.week-nav-info {}
.week-nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
}
.week-nav-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 1px;
}
.week-nav-btn.active .week-nav-title { color: #fff; }

/* Sidebar summary CTA */
.sidebar-cta {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.sidebar-cta p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ── WEEK MAIN ── */
.week-main {
  padding: clamp(32px, 4vw, 56px);
  max-width: 860px;
}

.week-header {
  margin-bottom: 40px;
}

.week-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,31,38,0.08);
  border: 1px solid rgba(217,31,38,0.25);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.week-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.week-focus {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}

/* ── CONTENT BLOCKS ── */
.week-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
}

.block-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.block-icon { font-size: 1.3rem; }

.block-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}

.block-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  width: 100%;
  line-height: 1.5;
}

/* Questions */
.questions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.question-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
  cursor: pointer;
  transition: background 0.18s ease;
}
.question-item:hover { background: #f0f0f0; }
.question-item.checked { background: rgba(20,43,114,0.04); border-left-color: var(--navy); }

.question-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(217,31,38,0.4);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  transition: all 0.18s ease;
  background: white;
}
.question-item.checked .question-check {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.question-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}
.question-item.checked .question-text { color: var(--text-light); }

/* Workshops */
.workshops-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.workshop-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(20,43,114,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.workshop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 6px;
}

.workshop-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}

.workshop-title {
  font-weight: 700;
  color: var(--navy);
}

/* Training */
.training-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.training-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  background: rgba(217,31,38,0.03);
  border-radius: var(--radius-sm);
}

.training-arrow {
  color: var(--red);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 4px;
  font-weight: 700;
}

.training-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* Deliverable */
.deliverable-block {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.deliverable-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  margin-top: 3px;
  white-space: nowrap;
}

.deliverable-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-weight: 500;
}

/* ── WEEK FOOTER ── */
.week-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
}

.progress-dots {
  display: flex;
  gap: 8px;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.progress-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
.progress-dot.done { background: var(--navy); }

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,31,38,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(20,43,114,0.04);
}

/* ── SUMMARY SCREEN ── */
.summary-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px) 24px;
}

.summary-header {
  margin-bottom: 48px;
}

.summary-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin: 14px 0 10px;
}

.summary-sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}

.summary-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.summary-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.summary-week-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.summary-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.summary-card-focus {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1px;
}

.summary-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 14px 0 8px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.summary-item {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.summary-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.75rem;
}

.summary-deliverable {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(20,43,114,0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--navy);
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

.summary-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}
.summary-footer a { color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .week-layout {
    grid-template-columns: 1fr;
  }
  .week-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .sidebar-industry { display: none; }
  .week-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .week-nav-btn {
    padding: 8px 14px;
    gap: 8px;
  }
  .week-nav-label { display: none; }
  .sidebar-cta { display: none; }
  .summary-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .welcome-title { font-size: 1.9rem; }
  .industry-grid { grid-template-columns: 1fr; }
  .week-footer { flex-wrap: wrap; justify-content: center; }
  .summary-actions { flex-direction: column; }
}

/* ── PRINT STYLES ── */
@media print {
  .topbar, .week-sidebar, .week-footer, .summary-actions { display: none !important; }
  .week-layout { grid-template-columns: 1fr; }
  .week-main { max-width: 100%; padding: 0; }
  .screen { display: block !important; }
  #screen-welcome, #screen-week { display: none !important; }
  #screen-summary { display: block !important; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .summary-card { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; }
  body { background: white; }
}

/* ══ SITE FOOTER ══ */

.site-footer {
  background: var(--navy-deep);
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  align-items: start;
}

/* Brand column */
.footer-brand {}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 16px;
  display: block;
}

.footer-logo-fallback {
  display: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo-fallback em {
  font-style: normal;
  color: var(--red-light);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 4px;
}

/* Links columns */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.18s ease;
  line-height: 1.4;
}
.footer-col a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 32px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.footer-legal {
  font-style: italic;
}

/* Responsive footer */
@media (max-width: 768px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 20px 28px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

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

/* Print — hide footer */
@media print {
  .site-footer { display: none !important; }
}

/* ── FOOTER SOCIAL ICONS ── */
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1;
}

.footer-col a {
  display: flex !important;
  align-items: center;
}

/* 4-column footer grid */
.footer-links {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 900px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════
   QUESTION ACCORDION — WORST / BEST CASES
══════════════════════════════════════════ */
.question-item {
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}

.question-item.checked {
  border-color: rgba(255,255,255,0.15);
}

.question-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  transition: background 0.15s;
}

.question-row:hover {
  background: rgba(255,255,255,0.06);
}

.question-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: all 0.2s;
  margin-top: 1px;
}

.question-item.checked .question-check {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.question-text {
  flex: 1;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-high);
}

.question-expand-btn {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  padding: 0;
  margin-top: 1px;
}

.question-expand-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.question-expand-btn.expanded {
  border-color: var(--red);
  color: var(--red);
  background: rgba(217,31,38,0.1);
}

/* ── SCENARIO PANELS ── */
.question-scenarios {
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scenario-panel {
  border-radius: 8px;
  padding: 12px 14px;
}

.scenario-panel.worst {
  background: rgba(180, 40, 30, 0.12);
  border-left: 3px solid #c0392b;
}

.scenario-panel.best {
  background: rgba(26, 107, 60, 0.12);
  border-left: 3px solid #1a6b3c;
}

.scenario-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.scenario-panel.worst .scenario-label { color: #e57373; }
.scenario-panel.best  .scenario-label { color: #66bb6a; }

.scenario-text {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════
   HOME SCREEN BELOW-GRID SECTIONS
══════════════════════════════════════════ */
.home-extra {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Supplier Diversity block — navy brand colour, not near-black */
.supplier-block {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border: 1.5px solid rgba(255,255,255,0.08);
}

.supplier-block-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.supplier-block-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.supplier-block-content p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
}

.supplier-block-content strong {
  color: var(--red);
  font-weight: 700;
}

/* Expertise block — white background, on-brand colours */
.expertise-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}

.expertise-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.expertise-headline {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 36px;
}

.expertise-headline em {
  color: var(--red);
  font-style: normal;
}

.expertise-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: start;
}

/* Credentials card — navy brand */
.expertise-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 30px 26px;
  color: #fff;
}

/* Each credential row */
.expertise-credential {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.expertise-credential:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.expertise-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 5px;
  line-height: 1.2;
}

.expertise-card-desc {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.expertise-prose p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}

.expertise-prose p:last-child { margin-bottom: 0; }

@media (max-width: 800px) {
  .expertise-body {
    grid-template-columns: 1fr;
  }
  .expertise-headline {
    font-size: 1.5rem;
  }
  .supplier-block {
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
  }
  .expertise-block {
    padding: 32px 20px;
  }
  .expertise-card-title {
    font-size: 1.15rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   WORKSHOP ACCORDION + SLIDE PLAYER STYLES
══════════════════════════════════════════════════════════════ */

/* ── Accordion item ── */
.ws-accordion-item {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(20,43,114,0.12);
  background: var(--white);
}

.ws-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  gap: 12px;
  transition: background 0.18s;
}
.ws-accordion-header:hover { background: rgba(20,43,114,0.03); }

.ws-accordion-title-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ws-accordion-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.ws-accordion-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

.ws-toggle-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ws-toggle-btn:hover, .ws-toggle-btn.open {
  background: var(--red);
}
.ws-toggle-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  transition: color 0.2s;
}
.ws-toggle-btn:hover .ws-toggle-icon,
.ws-toggle-btn.open .ws-toggle-icon {
  color: #fff;
}

/* ── Coming soon panel ── */
.ws-coming-soon {
  padding: 32px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}
.ws-coming-soon span { font-size: 2rem; display: block; margin-bottom: 10px; }

/* ── Slide Player ── */
.ws-player {
  border-top: 1.5px solid rgba(20,43,114,0.1);
}

.ws-player-header {
  background: var(--navy);
  padding: 20px 28px 16px;
  color: #fff;
}

.ws-player-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ws-player-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.ws-player-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.ws-player-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ws-player-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.ws-player-body {
  padding: 0 0 20px;
}

/* ── Slide area ── */
.ws-slide-area {
  min-height: 400px;
  padding: 24px 28px 12px;
}

@keyframes ws-slide-in {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Nav bar ── */
.ws-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px 4px;
  gap: 12px;
  border-top: 1px solid rgba(20,43,114,0.08);
}

.ws-nav-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.18s, opacity 0.18s;
}
.ws-nav-btn:hover { background: var(--red); }
.ws-nav-btn:disabled { opacity: 0.3; cursor: default; background: var(--navy); }

.ws-next-btn { background: var(--red); }
.ws-next-btn:hover { background: #b5171d; }
.ws-next-btn:disabled { opacity: 0.3; background: var(--red); }

.ws-slide-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.ws-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(20,43,114,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.ws-dot.active {
  background: var(--red);
  transform: scale(1.4);
}

/* ══ SLIDE CONTENT ══ */
.ws-slide {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ws-slide-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.ws-slide-type-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(217,31,38,0.1);
  color: var(--red);
  border: 1px solid rgba(217,31,38,0.2);
}

.slide-type-exercise .ws-slide-type-badge { background: rgba(26,107,60,0.1); color: #1a6b3c; border-color: rgba(26,107,60,0.2); }
.slide-type-tools .ws-slide-type-badge { background: rgba(44,62,122,0.1); color: var(--navy); border-color: rgba(44,62,122,0.2); }
.slide-type-deliverable .ws-slide-type-badge { background: rgba(176,122,0,0.1); color: #b07a00; border-color: rgba(176,122,0,0.2); }
.slide-type-training-summary .ws-slide-type-badge { background: var(--navy); color: #fff; border-color: var(--navy); }

.ws-slide-num {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.ws-slide-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}

.ws-slide-body-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #444;
}

/* ══ VISUALS ══ */
.ws-visual {
  background: rgba(20,43,114,0.03);
  border: 1px solid rgba(20,43,114,0.1);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 4px 0;
}

.ws-visual-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Flowchart */
.ws-flowchart {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.ws-flow-node {
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  align-self: stretch;
}
.ws-flow-arrow {
  color: var(--red);
  font-size: 1.1rem;
  padding: 2px 16px;
  align-self: flex-start;
}
.ws-annotations {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ws-flow-annotation {
  background: rgba(217,31,38,0.08);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Table */
.ws-table-wrap { overflow-x: auto; }
.ws-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.ws-table th {
  background: var(--navy);
  color: #fff;
  padding: 8px 10px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.ws-table td {
  padding: 7px 10px;
  border-bottom: 1px solid rgba(20,43,114,0.08);
  color: #444;
  vertical-align: top;
}
.ws-table tr:last-child td { border-bottom: none; }
.ws-table tr:nth-child(even) td { background: rgba(20,43,114,0.02); }

/* Diagram */
.ws-diagram { display: flex; flex-direction: column; gap: 8px; }
.ws-diag-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(20,43,114,0.08);
}
.ws-diag-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 1px;
}
.ws-diag-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.ws-diag-desc { font-size: 0.78rem; color: #555; line-height: 1.5; }
.ws-diag-connects { font-size: 0.72rem; color: var(--text-light); margin-top: 3px; }

/* Checklist */
.ws-checklist { display: flex; flex-direction: column; gap: 6px; }
.ws-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(20,43,114,0.08);
}
.ws-check-box {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(26,107,60,0.15);
  color: #1a6b3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.ws-check-content { display: flex; flex-direction: column; gap: 2px; }
.ws-check-text { font-size: 0.82rem; color: #333; line-height: 1.4; }
.ws-check-owner { font-size: 0.72rem; color: var(--red); font-weight: 600; }
.ws-check-cat { font-size: 0.68rem; background: rgba(20,43,114,0.08); color: var(--navy); padding: 1px 8px; border-radius: 20px; align-self: flex-start; }

/* Quadrant */
.ws-quadrant-wrap { display: flex; flex-direction: column; gap: 4px; }
.ws-quadrant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 200px;
}
.ws-quadrant-cell {
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(20,43,114,0.1);
}
.ws-q-tl { background: rgba(176,122,0,0.06); border-color: rgba(176,122,0,0.2); }
.ws-q-tr { background: rgba(26,107,60,0.06); border-color: rgba(26,107,60,0.2); }
.ws-q-bl { background: rgba(20,43,114,0.04); }
.ws-q-br { background: rgba(217,31,38,0.04); border-color: rgba(217,31,38,0.15); }
.ws-q-label { font-weight: 700; font-size: 0.8rem; color: var(--navy); margin-bottom: 4px; }
.ws-q-desc { font-size: 0.74rem; color: #555; line-height: 1.4; }
.ws-q-y-axis, .ws-q-x-axis { font-size: 0.68rem; color: var(--text-light); text-align: center; letter-spacing: 0.05em; text-transform: uppercase; }

/* Timeline */
.ws-timeline { display: flex; flex-direction: column; gap: 10px; }
.ws-tl-phase { border-radius: 10px; overflow: hidden; border: 1px solid rgba(20,43,114,0.1); }
.ws-tl-phase-label { background: var(--navy); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 6px 12px; }
.ws-tl-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.ws-tl-card { padding: 10px 12px; font-size: 0.75rem; color: #444; line-height: 1.4; border-right: 1px solid rgba(20,43,114,0.08); }
.ws-tl-card:last-child { border-right: none; }
.ws-tl-card.best { background: rgba(26,107,60,0.04); }
.ws-tl-card.worst { background: rgba(217,31,38,0.04); }
.ws-tl-tag { display: block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; color: var(--text-light); }
.ws-tl-tag.best { color: #1a6b3c; }
.ws-tl-tag.worst { color: var(--red); }

/* Swimlane */
.ws-swimlane { overflow-x: auto; }
.ws-swim-headers {
  display: grid;
  grid-template-columns: repeat(var(--lanes,4), 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.ws-lane-header {
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 8px;
  border-radius: 4px;
}
.ws-swim-row {
  display: grid;
  grid-template-columns: repeat(var(--lanes,4), 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.ws-lane-cell {
  background: rgba(20,43,114,0.02);
  border: 1px dashed rgba(20,43,114,0.1);
  border-radius: 4px;
  min-height: 44px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-lane-step {
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.3;
}

/* Pyramid */
.ws-pyramid { display: flex; flex-direction: column; gap: 3px; }
.ws-pyr-layer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, var(--navy), rgba(20,43,114,0.7));
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  margin-left: calc(var(--depth, 0) * 16px);
}
.ws-pyr-num { font-size: 0.7rem; font-weight: 700; opacity: 0.6; min-width: 20px; }
.ws-pyr-label { font-weight: 700; font-size: 0.82rem; }
.ws-pyr-desc { font-size: 0.75rem; opacity: 0.8; margin-left: 8px; }

/* Tool grid */
.ws-toolgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.ws-tool-card {
  background: #fff;
  border: 1.5px solid rgba(20,43,114,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ws-tool-card:hover { border-color: var(--navy); box-shadow: 0 4px 12px rgba(20,43,114,0.1); }
.ws-tool-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.ws-tool-use { font-size: 0.76rem; color: #555; line-height: 1.45; flex: 1; }
.ws-tool-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.ws-tool-level { font-size: 0.65rem; background: rgba(20,43,114,0.08); color: var(--navy); padding: 2px 8px; border-radius: 20px; font-weight: 600; }
.ws-tool-cost { font-size: 0.65rem; background: rgba(217,31,38,0.08); color: var(--red); padding: 2px 8px; border-radius: 20px; font-weight: 600; }

/* Key points */
.ws-keypoints { display: flex; flex-direction: column; gap: 8px; }
.ws-kp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(20,43,114,0.08);
}
.ws-kp-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.5;
  min-width: 28px;
  line-height: 1;
  margin-top: 2px;
}
.ws-kp-point { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 3px; }
.ws-kp-detail { font-size: 0.78rem; color: #555; line-height: 1.5; }

/* Triangle */
.ws-triangle {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.ws-tri-point {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}
.ws-tri-label { font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; color: #fff; }
.ws-tri-desc { font-size: 0.74rem; color: rgba(255,255,255,0.7); }
.ws-tri-note { font-size: 0.78rem; color: var(--red); font-style: italic; text-align: center; margin-top: 8px; }

/* Template */
.ws-template { display: flex; flex-direction: column; gap: 8px; }
.ws-tmpl-field { border-radius: 8px; overflow: hidden; border: 1px solid rgba(20,43,114,0.1); }
.ws-tmpl-field-label { background: var(--navy); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 12px; }
.ws-tmpl-field-input { background: #fff; font-size: 0.78rem; color: var(--text-light); padding: 8px 12px; font-style: italic; line-height: 1.4; }

/* Training block */
.ws-training-block {
  background: rgba(20,43,114,0.04);
  border-left: 3px solid var(--navy);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ws-training-block-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.ws-training-pt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: #333;
  line-height: 1.5;
}
.ws-tp-icon { flex-shrink: 0; margin-top: 1px; }

/* Exercise block */
.ws-exercise-block {
  border: 1.5px solid rgba(26,107,60,0.2);
  border-radius: 10px;
  overflow: hidden;
}
.ws-ex-header {
  background: rgba(26,107,60,0.08);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ws-ex-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #1a6b3c;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
}
.ws-ex-prompt {
  padding: 12px 14px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a6b3c;
  line-height: 1.5;
  border-bottom: 1px solid rgba(26,107,60,0.1);
}
.ws-ex-steps-toggle { padding: 8px 14px 12px; }
.ws-ex-expand-btn {
  background: none;
  border: 1.5px solid rgba(26,107,60,0.3);
  color: #1a6b3c;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
}
.ws-ex-expand-btn:hover { background: rgba(26,107,60,0.08); }
.ws-ex-steps { display: flex; flex-direction: column; gap: 6px; }
.ws-ex-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #333;
  line-height: 1.5;
}
.ws-ex-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a6b3c;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ws-ex-reflection {
  background: rgba(26,107,60,0.06);
  border-left: 3px solid #1a6b3c;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: #1a6b3c;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
  line-height: 1.5;
}
.ws-ex-refl-label { font-weight: 700; }

/* Mobile responsive */
@media (max-width: 640px) {
  .ws-tl-cards { grid-template-columns: 1fr; }
  .ws-toolgrid { grid-template-columns: 1fr; }
  .ws-triangle { grid-template-columns: 1fr; }
  .ws-slide-area { padding: 16px 16px 8px; }
  .ws-nav-bar { padding: 8px 16px 4px; }
  .ws-player-header { padding: 16px 20px 12px; }
  .ws-quadrant-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   FULLSCREEN PRESENTATION MODE
   Fills the viewport with the slide — like a real presentation
══════════════════════════════════════════════════════════════ */

/* Lock body scroll when fullscreen */
.ws-fs-body-lock { overflow: hidden; }

/* The overlay fills the entire screen */
#ws-fullscreen-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f0f2f8;   /* light neutral — matches slide backgrounds */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  outline: none;
  overflow: hidden;
}

/* Fullscreen slide area — fills the viewport */
.ws-fs-slide-area {
  flex: 1;
  overflow-y: auto;
  padding: 28px 40px 12px;
  background: #f0f2f8;
}

/* Nav bar at the bottom — slim, on-brand */
.ws-fs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 40px 14px;
  background: #fff;
  border-top: 1.5px solid rgba(20,43,114,0.1);
  flex-shrink: 0;
}

/* Enlarged slide content in fullscreen */
#ws-fullscreen-overlay .ws-slide { gap: 18px; }
#ws-fullscreen-overlay .ws-slide-title { font-size: 1.6rem; }
#ws-fullscreen-overlay .ws-slide-body-text { font-size: 0.98rem; line-height: 1.8; }
#ws-fullscreen-overlay .ws-slide-type-badge { font-size: 0.72rem; padding: 4px 14px; }
#ws-fullscreen-overlay .ws-slide-num { font-size: 0.82rem; }

/* Title slide fills the slide area naturally */
#ws-fullscreen-overlay .ws-title-slide {
  min-height: calc(100vh - 120px);
  border-radius: 16px;
  padding: 60px 80px;
}
#ws-fullscreen-overlay .ws-title-main   { font-size: 2.8rem; }
#ws-fullscreen-overlay .ws-title-logo   { height: 72px; }
#ws-fullscreen-overlay .ws-title-author-name { font-size: 1.25rem; }
#ws-fullscreen-overlay .ws-title-author-role { font-size: 0.85rem; }
#ws-fullscreen-overlay .ws-title-author-org  { font-size: 0.8rem; }
#ws-fullscreen-overlay .ws-title-footer-note { font-size: 0.75rem; bottom: 24px; }

/* TOC and overview slides: more breathing room */
#ws-fullscreen-overlay .ws-toc-grid   { max-height: calc(100vh - 260px); }
#ws-fullscreen-overlay .ws-toc-title  { font-size: 0.9rem; }
#ws-fullscreen-overlay .ws-toc-brief  { font-size: 0.8rem; }
#ws-fullscreen-overlay .ws-toc-item   { padding: 9px 12px; }
#ws-fullscreen-overlay .ws-ov-card p  { font-size: 0.88rem; line-height: 1.6; }
#ws-fullscreen-overlay .ws-ov-question { font-size: 0.88rem; }
#ws-fullscreen-overlay .ws-ov-answer  { font-size: 0.84rem; }

/* Closing slide */
#ws-fullscreen-overlay .ws-closing-slide { min-height: calc(100vh - 120px); border-radius: 16px; padding: 40px 60px; }
#ws-fullscreen-overlay .ws-closing-thanks h2 { font-size: 1.5rem; }
#ws-fullscreen-overlay .ws-closing-qs  { max-height: calc(100vh - 380px); }
#ws-fullscreen-overlay .ws-cq-question { font-size: 0.88rem; }

/* Larger nav buttons in fullscreen */
#ws-fullscreen-overlay .ws-nav-btn { padding: 10px 28px; font-size: 0.88rem; }

/* Dots in fullscreen */
#ws-fullscreen-overlay .ws-slide-dots { gap: 6px; }
#ws-fullscreen-overlay .ws-dot        { width: 9px; height: 9px; }

/* Tables and tool grids: more space */
#ws-fullscreen-overlay .ws-table     { font-size: 0.84rem; }
#ws-fullscreen-overlay .ws-table th  { font-size: 0.77rem; padding: 9px 12px; }
#ws-fullscreen-overlay .ws-table td  { padding: 8px 12px; }
#ws-fullscreen-overlay .ws-toolgrid  { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
#ws-fullscreen-overlay .ws-tool-card { padding: 14px 16px; }
#ws-fullscreen-overlay .ws-tool-name { font-size: 0.95rem; }
#ws-fullscreen-overlay .ws-tool-use  { font-size: 0.82rem; }

/* Keypoints: larger */
#ws-fullscreen-overlay .ws-kp-point  { font-size: 0.95rem; }
#ws-fullscreen-overlay .ws-kp-detail { font-size: 0.84rem; }

/* Training block */
#ws-fullscreen-overlay .ws-training-pt { font-size: 0.86rem; }

/* Exercise */
#ws-fullscreen-overlay .ws-ex-prompt   { font-size: 0.9rem; }
#ws-fullscreen-overlay .ws-ex-step     { font-size: 0.86rem; }
#ws-fullscreen-overlay .ws-ex-reflection { font-size: 0.86rem; }

/* Flowchart nodes */
#ws-fullscreen-overlay .ws-flow-node { font-size: 0.88rem; padding: 10px 18px; }

/* ── The ⛶ button inside the player header ── */
.ws-fullscreen-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
  margin-top: 2px;
}
.ws-fullscreen-btn:hover { background: rgba(255,255,255,0.3); }

/* When in fullscreen, button sits in the nav bar */
#ws-fullscreen-overlay .ws-fullscreen-exit-btn {
  background: var(--navy);
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}
#ws-fullscreen-overlay .ws-fullscreen-exit-btn:hover { background: var(--red); }

/* ── Slides 1 & 20: special full-bleed within the slide area ── */
#ws-fullscreen-overlay .ws-slide-num-overlay {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ── Title/Logo image: rounded corners everywhere ── */
.ws-title-logo,
.ws-closing-logo,
img[src="TechSyntar.png"] {
  border-radius: 12px;
}

/* ══════════════════════════════════════════════════════════════
   SLIDE 1 — TITLE / WAITING SLIDE
══════════════════════════════════════════════════════════════ */
.ws-title-slide {
  background: linear-gradient(135deg, #091540 0%, #142B72 55%, #1a3590 100%);
  color: #fff;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 44px;
  position: relative;
  border-radius: 14px;
  gap: 0;
}
.ws-slide-num-overlay {
  position: absolute; top: 14px; right: 18px;
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
}
.ws-title-logo-wrap { margin-bottom: 20px; }
.ws-title-logo {
  height: 54px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  object-fit: contain;
  border-radius: 10px;
}
.ws-title-industry-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(217,31,38,0.9);
  background: rgba(217,31,38,0.12); border: 1px solid rgba(217,31,38,0.3);
  padding: 4px 16px; border-radius: 30px; margin-bottom: 18px;
}
.ws-title-main {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700;
  color: #fff; line-height: 1.2; margin: 0 0 12px; max-width: 700px;
}
.ws-title-subtitle {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  line-height: 1.55; max-width: 560px; margin: 0;
}
.ws-title-divider {
  width: 60px; height: 2px; background: var(--red);
  margin: 22px auto; border-radius: 2px;
}
.ws-title-author {
  display: flex; flex-direction: column; gap: 5px; align-items: center;
}
.ws-title-author-name {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; color: #fff;
}
.ws-title-author-role { font-size: 0.75rem; color: rgba(255,255,255,0.65); }
.ws-title-author-org  { font-size: 0.72rem; color: var(--red); font-weight: 600; letter-spacing: 0.04em; }
.ws-title-footer-note {
  position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  font-size: 0.68rem; color: rgba(255,255,255,0.28); letter-spacing: 0.05em;
}

/* ══ SLIDE 2 — TABLE OF CONTENTS ══ */
.ws-toc-slide { padding-bottom: 8px; }
.ws-toc-grid {
  display: flex; flex-direction: column; gap: 5px;
  margin-top: 10px; max-height: 340px; overflow-y: auto;
}
.ws-toc-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 10px; border-radius: 8px;
  background: rgba(20,43,114,0.03); border: 1px solid rgba(20,43,114,0.07);
  transition: background 0.15s;
}
.ws-toc-item:hover { background: rgba(20,43,114,0.07); }
.ws-toc-num  { font-size: 0.65rem; font-weight: 700; color: var(--red); min-width: 26px; padding-top: 2px; opacity: 0.7; }
.ws-toc-content { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.ws-toc-title { font-size: 0.82rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.ws-toc-brief { font-size: 0.72rem; color: var(--text-light); line-height: 1.3; }
.ws-toc-badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 10px; flex-shrink: 0; margin-top: 2px;
}
.toc-badge-concept  { background: rgba(217,31,38,0.1); color: var(--red); }
.toc-badge-framework{ background: rgba(44,62,122,0.1); color: var(--navy); }
.toc-badge-exercise { background: rgba(26,107,60,0.1); color: #1a6b3c; }
.toc-badge-tools    { background: rgba(100,60,160,0.1); color: #643ca0; }
.toc-badge-deliverable{ background: rgba(176,122,0,0.1); color: #b07a00; }
.toc-badge-case     { background: rgba(0,100,150,0.1); color: #006496; }
.toc-badge-training { background: rgba(20,43,114,0.9); color: #fff; }

/* ══ SLIDE 3 — OVERVIEW / DEEP-DIVE ══ */
.ws-overview-slide { padding-bottom: 8px; }
.ws-ov-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 10px 0;
}
.ws-ov-card { border-radius: 10px; padding: 12px 14px; border: 1.5px solid transparent; }
.ws-ov-card-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.ws-ov-card p { font-size: 0.78rem; line-height: 1.55; margin: 0; }
.ws-ov-why     { background: rgba(20,43,114,0.04); border-color: rgba(20,43,114,0.15); }
.ws-ov-why .ws-ov-card-label { color: var(--navy); }
.ws-ov-slow    { background: rgba(217,31,38,0.04); border-color: rgba(217,31,38,0.15); }
.ws-ov-slow .ws-ov-card-label { color: var(--red); }
.ws-ov-fast    { background: rgba(26,107,60,0.04); border-color: rgba(26,107,60,0.15); }
.ws-ov-fast .ws-ov-card-label { color: #1a6b3c; }
.ws-ov-optimal { background: rgba(124,58,237,0.04); border-color: rgba(124,58,237,0.15); }
.ws-ov-optimal .ws-ov-card-label { color: #7c3aed; }
.ws-ov-questions { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.ws-ov-q-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; }
.ws-ov-qa { display: flex; flex-direction: column; gap: 2px; background: #fff; border-radius: 8px; padding: 8px 12px; border: 1px solid rgba(20,43,114,0.08); }
.ws-ov-question { font-size: 0.8rem; font-weight: 600; color: var(--navy); font-style: italic; }
.ws-ov-answer { font-size: 0.77rem; color: #444; line-height: 1.45; }
@media (max-width: 640px) { .ws-ov-grid { grid-template-columns: 1fr; } }

/* ══ SLIDE 20 — CLOSING ══ */
.ws-closing-slide {
  background: linear-gradient(135deg, #091540 0%, #142B72 100%);
  color: #fff; min-height: 420px; padding: 28px 32px;
  border-radius: 14px; display: flex; flex-direction: column; gap: 14px; position: relative;
}
.ws-closing-top {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ws-closing-logo {
  height: 42px; width: auto; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  object-fit: contain; border-radius: 10px;
}
.ws-closing-thanks h2 { font-family: var(--font-display); font-size: 1.1rem; color: #fff; margin: 0 0 6px; }
.ws-closing-thanks p  { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0 0 6px; }
.ws-closing-author    { font-size: 0.72rem; color: var(--red); font-weight: 600; }
.ws-closing-qs-label  { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ws-closing-qs        { display: flex; flex-direction: column; gap: 6px; overflow-y: auto; max-height: 300px; }
.ws-cq-item           { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 9px 12px; }
.ws-cq-num            { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--red); opacity: 0.7; min-width: 22px; line-height: 1; margin-top: 1px; }
.ws-cq-question       { font-size: 0.8rem; color: rgba(255,255,255,0.9); line-height: 1.45; font-weight: 500; margin-bottom: 3px; }
.ws-cq-source         { font-size: 0.68rem; color: rgba(255,255,255,0.35); font-style: italic; }

/* ══ TRAINING MAP BADGE ══ */
.ws-map-badge {
  background: var(--navy); color: #fff; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}
.ws-training-map-slide {
  background: linear-gradient(135deg, rgba(20,43,114,0.04) 0%, rgba(217,31,38,0.03) 100%);
  border-radius: 12px; padding: 4px;
}

/* ══ PLAYER HEADER TITLE ROW ══ */
.ws-player-title-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}

/* ══ CLOSING SLIDE EXPANDABLE Q&A ══ */
.ws-cq-q-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ws-cq-question { flex: 1; }

.ws-cq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s;
  margin-top: 1px;
  line-height: 1;
}
.ws-cq-toggle:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

.ws-cq-answers {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ws-cq-good {
  background: rgba(26,107,60,0.2);
  border: 1px solid rgba(26,107,60,0.4);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.ws-cq-modest {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.ws-cq-ans-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
  opacity: 0.7;
}

/* Fullscreen closing Q&A larger */
#ws-fullscreen-overlay .ws-cq-toggle { width: 32px; height: 32px; font-size: 1.1rem; }
#ws-fullscreen-overlay .ws-cq-good,
#ws-fullscreen-overlay .ws-cq-modest { font-size: 0.82rem; }

/* ══ OVERVIEW SLIDE (SLIDE 3) — ANALOGY + Q&A TOGGLES ══ */

.ws-ov-analogy {
  background: linear-gradient(135deg, rgba(20,43,114,0.06) 0%, rgba(124,58,237,0.05) 100%);
  border: 1.5px solid rgba(124,58,237,0.15);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Q&A row with toggle */
.ws-ov-q-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ws-ov-question { flex: 1; font-size: 0.82rem; font-weight: 600; color: var(--navy); font-style: italic; line-height: 1.45; }

.ws-ov-q-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, color 0.18s;
  line-height: 1;
  margin-top: 1px;
}
.ws-ov-q-toggle:hover { background: var(--navy); color: #fff; }

.ws-ov-qa-body {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ws-ov-ans {
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.77rem;
  line-height: 1.5;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.ws-ov-ans-icon { flex-shrink: 0; font-size: 0.85rem; margin-top: 1px; }

.ws-ov-plus  { background: rgba(26,107,60,0.08);  border: 1px solid rgba(26,107,60,0.2);  color: #1a4a30; }
.ws-ov-minus { background: rgba(217,31,38,0.06);  border: 1px solid rgba(217,31,38,0.18); color: #6b1218; }

/* Fullscreen enlargements */
#ws-fullscreen-overlay .ws-ov-analogy   { font-size: 0.96rem; padding: 12px 18px; }
#ws-fullscreen-overlay .ws-ov-question  { font-size: 0.88rem; }
#ws-fullscreen-overlay .ws-ov-ans       { font-size: 0.84rem; }
#ws-fullscreen-overlay .ws-ov-q-toggle  { width: 30px; height: 30px; font-size: 1rem; }

/* ══ KEY TERMS ON SLIDE 3 ══ */
.ws-ov-terms {
  background: rgba(124,58,237,0.04);
  border: 1.5px solid rgba(124,58,237,0.12);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
}
.ws-ov-terms-label {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #7c3aed; margin-bottom: 7px;
}
.ws-ov-term {
  display: flex; gap: 8px; align-items: baseline;
  padding: 4px 0; border-bottom: 1px solid rgba(124,58,237,0.08);
  line-height: 1.4;
}
.ws-ov-term:last-child { border-bottom: none; }
.ws-ov-term-name {
  font-size: 0.75rem; font-weight: 700; color: var(--navy);
  min-width: 140px; flex-shrink: 0;
}
.ws-ov-term-def { font-size: 0.74rem; color: #444; line-height: 1.45; }

#ws-fullscreen-overlay .ws-ov-term-name { font-size: 0.82rem; min-width: 160px; }
#ws-fullscreen-overlay .ws-ov-term-def  { font-size: 0.82rem; }

/* ══ SEARCH — integrated into topbar ══ */
/* The topbar already has position:sticky via its own rules */
#ws-search-panel {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 520px;
  position: relative;
}
.topbar-center {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 540px;
  position: relative;
  margin: 0 12px;
}
.ws-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 7px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.2s, border-color 0.2s;
}
/* focus-within handled below in topbar block */
.ws-search-clear {
  background: none; border: none; cursor: pointer; font-size: 1rem;
  color: #9ca3af; padding: 0; line-height: 1; flex-shrink: 0;
  display: none;
}
.ws-search-clear.visible { display: block; }

/* Search results dropdown */
#ws-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 20px;
  width: min(520px, calc(100vw - 40px));
  background: #fff;
  border: 1.5px solid rgba(20,43,114,0.15);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(20,43,114,0.14);
  max-height: 420px;
  overflow-y: auto;
  z-index: 900;
  display: none;
}
#ws-search-results.open { display: block; }

.ws-sr-header {
  padding: 10px 14px 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light);
  border-bottom: 1px solid rgba(20,43,114,0.07);
}
.ws-sr-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 14px; cursor: pointer;
  border-bottom: 1px solid rgba(20,43,114,0.05);
  transition: background 0.15s;
}
.ws-sr-item:last-child { border-bottom: none; }
.ws-sr-item:hover { background: rgba(20,43,114,0.04); }
.ws-sr-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.ws-sr-info { flex: 1; min-width: 0; }
.ws-sr-title { font-size: 0.83rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.ws-sr-title mark { background: rgba(217,31,38,0.12); color: var(--red); border-radius: 3px; padding: 0 2px; font-weight: 700; }
.ws-sr-meta { font-size: 0.71rem; color: var(--text-light); margin-top: 2px; }
.ws-sr-empty { padding: 20px 14px; text-align: center; color: var(--text-light); font-size: 0.82rem; }

/* Inline search on industry home page */
#ws-home-search-wrap {
  max-width: 520px; margin: 0 auto 24px; 
}
#ws-home-search-wrap .ws-search-wrap { max-width: 100%; }

/* Search result count badge */
.ws-search-count {
  font-size: 0.75rem; color: var(--text-light); flex-shrink: 0; white-space: nowrap;
}

/* ══ HOME PAGE SEARCH ══ */
#ws-home-search-wrap {
  margin: 0 0 20px 0;
  position: relative;
}
.ws-home-results-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid rgba(20,43,114,0.15);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(20,43,114,0.14);
  max-height: 400px;
  overflow-y: auto;
  z-index: 900;
  display: none;
}
.ws-home-results-panel.open { display: block; }

/* ══ BONUS WORKSHOP CARDS ══ */
.bonus-cards-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px dashed rgba(20,43,114,0.12);
}
.bonus-cards-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy); opacity: 0.6;
  margin-bottom: 14px;
}
.bonus-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 640px) { .bonus-cards-grid { grid-template-columns: 1fr; } }

.bonus-card {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, rgba(20,43,114,0.03) 100%);
  border: 1.5px solid rgba(124,58,237,0.18);
  border-radius: 16px; padding: 16px 18px;
  cursor: pointer; transition: all 0.2s;
}
.bonus-card:hover {
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(20,43,114,0.06) 100%);
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124,58,237,0.12);
}
.bonus-card-icon { font-size: 1.8rem; flex-shrink: 0; }
.bonus-card-content { flex: 1; min-width: 0; }
.bonus-card-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.bonus-card-sub   { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; }
.bonus-card-arrow { font-size: 1.1rem; color: #7c3aed; flex-shrink: 0; opacity: 0.7; }

/* ══ BONUS PAGE SPECIFIC ══ */
.bonus-cal-embed {
  padding: 12px 14px 16px;
  margin-top: 8px;
}
.bonus-cal-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy); opacity: 0.7;
  margin-bottom: 10px;
}
.bonus-bottom-cta {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(20,43,114,0.04) 0%, rgba(217,31,38,0.03) 100%);
  border: 1.5px solid rgba(20,43,114,0.12);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bonus-cta-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* Search input — canonical rules below in topbar block */

/* ══ TOPBAR SEARCH INTEGRATION ══ */
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 60px;
}
/* ── Search input: white text on navy topbar; dark text when focused (dropdown open) ── */
#ws-search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #fff;           /* white on navy topbar */
  width: 100%;
  min-width: 0;
  flex: 1 1 0%;
  caret-color: #fff;     /* visible cursor */
}
#ws-search-input::placeholder { color: rgba(255,255,255,0.5); }

/* When focused: keep semi-transparent background, keep white text — cursor stays visible */
.ws-search-wrap:focus-within {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
}
/* Make sure text stays white even when focused — do NOT flip to white background */
.ws-search-wrap:focus-within #ws-search-input {
  color: #fff;
  caret-color: #fff;
}

.ws-search-icon { color: rgba(255,255,255,0.65); font-size: 0.88rem; flex-shrink: 0; }
.ws-search-clear {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.55); font-size: 0.9rem; padding: 0;
  display: none; flex-shrink: 0; line-height: 1;
}
.ws-search-clear.visible { display: block; }

/* Search results dropdown */
#ws-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(540px, 90vw);
  background: #fff;
  border: 1.5px solid rgba(20,43,114,0.15);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(20,43,114,0.18);
  max-height: 440px;
  overflow-y: auto;
  z-index: 9000;
  display: none;
}
#ws-search-results.open { display: block; }
.ws-sr-header {
  padding: 10px 14px 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light);
  border-bottom: 1px solid rgba(20,43,114,0.07);
}
.ws-sr-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 14px; cursor: pointer;
  border-bottom: 1px solid rgba(20,43,114,0.05);
  transition: background 0.15s;
}
.ws-sr-item:last-child { border-bottom: none; }
.ws-sr-item:hover { background: rgba(20,43,114,0.04); }
.ws-sr-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.ws-sr-info { flex: 1; min-width: 0; }
.ws-sr-title { font-size: 0.83rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.ws-sr-title mark { background: rgba(217,31,38,0.12); color: var(--red); border-radius: 3px; padding: 0 2px; font-weight: 700; }
.ws-sr-meta { font-size: 0.71rem; color: var(--text-light); margin-top: 2px; }
.ws-sr-empty { padding: 20px 14px; text-align: center; color: var(--text-light); font-size: 0.82rem; }

/* ── Bonus page button in topbar ── */
.topbar-bonus-btn {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
  flex-shrink: 0;
}
.topbar-bonus-btn:hover { background: rgba(255,255,255,0.28); }

/* ── Bonus page full-width layout ── */
.bonus-page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}
.bonus-page-header {
  margin-bottom: 28px;
}
.bonus-cta-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(20,43,114,0.05) 0%, rgba(217,31,38,0.04) 100%);
  border: 1.5px solid rgba(20,43,114,0.12);
  border-radius: 16px;
  padding: 24px 28px;
}
.bonus-cal-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid rgba(20,43,114,0.08);
}
.bonus-cal-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.bonus-cal-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ══ TOC — CLICKABLE ENTRIES ══ */
.ws-toc-hint {
  font-size: 0.72rem;
  color: var(--text-light);
  margin: -4px 0 8px;
  font-style: italic;
}
.ws-toc-link {
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.ws-toc-link:hover {
  background: rgba(20,43,114,0.07);
  border-color: rgba(20,43,114,0.18);
  transform: translateX(2px);
}
.ws-toc-link:hover .ws-toc-title {
  color: var(--red);
}
.ws-toc-link:active {
  transform: translateX(4px);
  background: rgba(20,43,114,0.1);
}
.ws-toc-link:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.ws-toc-arrow {
  font-size: 0.75rem;
  color: var(--navy);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
  margin-left: 4px;
}
.ws-toc-link:hover .ws-toc-arrow {
  opacity: 0.6;
  transform: translateX(3px);
}

/* ══ PLAIN-LANGUAGE "WHAT YOU'LL GAIN" CARD ON EVERY SLIDE ══ */
.ws-plain-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(20,43,114,0.05) 0%, rgba(124,58,237,0.04) 100%);
  border: 1.5px solid rgba(20,43,114,0.1);
  border-left: 4px solid var(--navy);
  border-radius: 0 10px 10px 0;
  padding: 10px 14px;
  margin: 6px 0 12px;
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.55;
  font-style: italic;
}
.ws-plain-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Fullscreen: slightly larger */
#ws-fullscreen-overlay .ws-plain-card { font-size: 0.9rem; padding: 12px 16px; }


/* ══════════════════════════════════════════════
   RESOURCES PAGE STYLES
══════════════════════════════════════════════ */

/* Resources cards section on welcome screen */
.resources-cards-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #e8eaf6;
}

.resources-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #555;
  max-width: 700px;
  margin: 8px auto 24px auto;
  text-align: center;
  line-height: 1.6;
}

.resources-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.resource-card {
  border-left: 4px solid #142B72 !important;
}

.resource-card-featured {
  border-left: 4px solid #D91F26 !important;
  background: linear-gradient(135deg, #fff 80%, #fff5f5 100%) !important;
}

.resource-card-featured .bonus-card-title {
  color: #D91F26;
}

/* Resources page layout */
.resources-nav {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.resources-back-btn {
  background: #142B72;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.resources-back-btn:hover { background: #D91F26; }

.resources-sibling-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.resources-sibling-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: #142B72;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #d0d4f0;
  white-space: nowrap;
  transition: all 0.2s;
}

.resources-sibling-link:hover {
  background: #142B72;
  color: #fff;
  border-color: #142B72;
}

.resources-workshop-section {
  margin: 24px 0;
}

.resources-ws-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #142B72;
  margin-bottom: 16px;
}

.resources-accordion-item {
  border: 1px solid #e0e4f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

/* ── Slide Read-Aloud Button ── */
.ws-read-btn {
  background: #142B72;
  border: none;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  letter-spacing: 0.02em;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  flex-shrink: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.ws-read-btn .ws-read-icon {
  font-size: 1rem;
  line-height: 1;
}
.ws-read-btn:hover {
  background: #0D1F5C;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(20,43,114,0.3);
}
.ws-read-btn--active {
  background: #D91F26;
  animation: ws-read-pulse 1.8s ease-in-out infinite;
}
.ws-read-btn--active:hover {
  background: #b5171d;
}
@keyframes ws-read-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,31,38,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(217,31,38,0.0); }
}

/* Fullscreen read button — same solid style works on the dark overlay */
#ws-fullscreen-overlay .ws-read-btn {
  background: #142B72;
  border: none;
  color: #fff;
}
#ws-fullscreen-overlay .ws-read-btn:hover {
  background: #0D1F5C;
  color: #fff;
  transform: scale(1.05);
}
#ws-fullscreen-overlay .ws-read-btn--active {
  background: #D91F26 !important;
  color: #fff !important;
  border: none;
}
#ws-fullscreen-overlay .ws-read-btn--active:hover {
  background: #b5171d !important;
  color: #fff !important;
}

/* ── Voice Picker Dropdown ── */
.ws-voice-picker {
  background: #fff;
  border: 1.5px solid #142B72;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(20,43,114,0.18);
  z-index: 10000;
  min-width: 280px;
  max-width: 360px;
  overflow: hidden;
  font-family: var(--font-body, 'Montserrat', sans-serif);
}
.ws-voice-picker-label {
  background: #142B72;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 14px;
}
.ws-voice-picker-list {
  max-height: 280px;
  overflow-y: auto;
  padding: 4px 0;
}
.ws-voice-picker-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #1a2340;
  cursor: pointer;
  transition: background 0.12s;
  font-family: inherit;
  border-bottom: 1px solid #f0f0f8;
}
.ws-voice-picker-item:hover {
  background: #eef0fa;
  color: #142B72;
}
.ws-voice-picker-item.selected {
  background: #f0f4ff;
  color: #142B72;
  font-weight: 700;
}
.ws-voice-picker-item.selected::before {
  content: '✓ ';
}

/* ── Stop Reading Button ── */
.ws-stop-btn {
  background: #8B1A1A;
  border: none;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
}
.ws-stop-btn:hover { background: #6b1010; }
.ws-stop-btn .ws-read-icon { font-size: 0.9rem; }

/* Fullscreen stop button */
#ws-fullscreen-overlay .ws-stop-btn {
  background: #8B1A1A;
  color: #fff;
}
#ws-fullscreen-overlay .ws-stop-btn:hover { background: #6b1010; }

/* ══════════════════════════════════════════════
   LANGUAGE SWITCHER — Footer flags
══════════════════════════════════════════════ */
.footer-lang-bar {
  text-align: center;
  padding: 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-lang-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.lang-flag-link {
  font-size: 1.1rem;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lang-flag-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.lang-active-flag {
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #C9A84C;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1.5px solid #C9A84C;
}

/* German content placeholder card */
.ws-de-placeholder {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ws-de-placeholder-body {
  text-align: center;
  padding: 40px 24px;
  background: #f8f9ff;
  border-radius: 12px;
  border: 2px dashed #d0d4f0;
}
.ws-de-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.ws-de-placeholder-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 20px;
}
.ws-de-en-link {
  display: inline-block;
  background: #142B72;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.ws-de-en-link:hover { background: #D91F26; }


/* ══ MOBILE RESPONSIVE — topbar, search, layout ══ */
.nav-toggle { display: none; background: none; border: 1.5px solid rgba(255,255,255,.3); color: #fff; font-size: 20px; line-height: 1; border-radius: 10px; padding: 8px 13px; cursor: pointer; }
/* Keep logo inside the bar and search usable at all widths */
.logo-link { max-height: 64px; }
.logo-img { max-height: 60px; }
.topbar-center { min-width: 180px; }
@media (max-width: 1150px) {
  .topbar-inner { flex-wrap: wrap; gap: 10px; padding: 10px 14px; position: relative; }
  .logo-link { height: 54px; }
  .logo-img { height: 50px; }
  .nav-toggle { display: block; margin-left: auto; }
  .topbar-center { order: 3; flex: 1 1 100%; max-width: none; margin: 0; }
  .ws-search-wrap { padding: 11px 16px; }
  #ws-search-input { font-size: 16px; width: 100%; }
  #ws-search-results { left: 0; width: calc(100vw - 28px); }
  .topbar-right { display: none; }
  .topbar-right.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: calc(100% + 6px); right: 8px; left: 8px;
    background: var(--navy-dark); border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px; padding: 16px; gap: 12px; z-index: 300;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
  }
  .topbar-right.open .topbar-cta, .topbar-right.open .topbar-bonus-btn, .topbar-right.open .topbar-home { width: 100%; text-align: center; display: block; }
  .topbar-right.open .topbar-label { max-width: none; text-align: center; }
  .topbar-right.open > span { justify-content: center; }
  .welcome-wrap { padding: 40px 16px 32px; }
  .week-main { padding: 22px 14px; }
  .bonus-page-wrap { padding: 24px 14px; }
  .home-extra { padding: 0 16px; }
  .supplier-block { flex-direction: column; }
  .week-footer { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .summary-actions { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .welcome-title { font-size: 1.65rem; }
  .expertise-headline { font-size: 1.5rem; }
  .bonus-card { padding: 14px; }
}
