/* ===== CONCEPT SELECTOR ===== */
.concept-selector {
  min-height: 100vh;
  background: #0a0a0a;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.selector-header {
  text-align: center;
  margin-bottom: 3rem;
}

.selector-title {
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.selector-subtitle {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}

.selector-description {
  font-size: 1rem;
  color: #666;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
  width: 100%;
}

.concept-card {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
  position: relative;
}

.concept-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--concept-color);
}

.concept-number {
  font-size: 0.6875rem;
  color: #666;
  margin-bottom: 0.25rem;
  font-family: system-ui, sans-serif;
}

.concept-label {
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.25rem;
}

.concept-sub {
  font-size: 0.6875rem;
  color: #555;
  font-family: system-ui, sans-serif;
}

.concept-explore {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.625rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--concept-color);
  font-family: system-ui, sans-serif;
}

.selector-footer {
  margin-top: 3rem;
  text-align: center;
}

.selector-footer p {
  font-size: 0.75rem;
  color: #555;
  font-family: system-ui, sans-serif;
}

/* ===== FRAMEWORK SECTION ===== */
.framework-section {
  padding: 3.5rem 2.5rem;
  background: var(--bg);
}

.framework-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.stage-item {
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.stage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.stage-icon svg {
  width: 32px;
  height: 32px;
}

.stage-name {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.stage-desc {
  font-size: 1.1875rem; /* 19px */
  color: var(--text-muted);
  line-height: 1.8;
}

.stage-connector {
  color: var(--primary);
  opacity: 0.5;
}

.stage-connector svg {
  width: 24px;
  height: 24px;
}

.framework-insight {
  text-align: center;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PERSONAL NOTE SECTION ===== */
.personal-note-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.personal-note {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.note-image {
  flex-shrink: 0;
}

.note-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.note-content {
  flex: 1;
}

.note-title {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.note-text {
  font-size: 1.375rem; /* 22px */
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.note-signature {
  margin-top: 1.5rem;
}

.signature-name {
  display: block;
  font-style: italic;
  color: var(--primary);
}

.signature-title {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.note-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.25rem;
}

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-section {
  padding: 3rem 2.5rem;
  background: var(--dark);
  color: #fff;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.75rem; /* 28px */
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  display: block;
  font-weight: 600;
}

.testimonial-title {
  display: block;
  font-size: 0.875rem;
  opacity: 0.7;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dot.active {
  background: var(--primary);
}

/* ===== BOOK PREVIEW ===== */
.book-preview-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.book-preview {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.book-preview .book-image {
  flex-shrink: 0;
}

.book-preview .book-image img {
  width: 220px;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.book-preview .book-content {
  flex: 1;
}

.book-label {
  font-size: 0.6875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.book-preview .book-title {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.book-preview .book-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.book-preview .book-description {
  font-size: 1.125rem; /* 18px */
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== FORUM PREVIEW ===== */
.forum-preview-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.forum-preview {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.forum-preview-content {
  flex: 1;
}

.forum-label {
  font-size: 0.6875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.forum-title {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.forum-description {
  font-size: 1.25rem; /* 20px */
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.forum-session-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.forum-session-info svg {
  color: var(--primary);
  flex-shrink: 0;
}

.forum-preview-image {
  flex: 1;
}

.forum-preview-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  padding: 3rem 2.5rem;
  text-align: center;
}

.cta-section-default {
  background: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-section-dark {
  background: var(--dark);
  color: #fff;
}

.cta-title {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.375rem; /* 22px */
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PROGRAM DETAILS ===== */
.program-details {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.program-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.program-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.program-icon svg {
  width: 24px;
  height: 24px;
}

.program-item-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.program-item-desc {
  font-size: 1.1875rem; /* 19px */
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== FIRST SESSION BANNER ===== */
.first-session-banner {
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 2.5rem;
}

.banner-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-icon svg {
  width: 32px;
  height: 32px;
}

.banner-text h3 {
  font-size: 0.6875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.session-location {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
}

.session-date {
  font-size: 0.875rem;
  opacity: 0.9;
}

.first-session-banner .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.first-session-banner .btn-secondary:hover {
  background: #fff;
  color: var(--primary);
}

/* ===== QUALIFICATION SECTION ===== */
.qualification-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.qualification-list {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.qualification-item:last-child {
  border-bottom: none;
}

.qualification-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.qualification-closing {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 3rem 2.5rem;
  background: var(--dark);
  color: #fff;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.pricing-amount {
  margin-bottom: 2rem;
}

.price {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
}

.price-note {
  display: block;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.pricing-includes h3 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.pricing-list {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: 2rem;
}

.pricing-note {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* ===== VENUE SECTION ===== */
.venue-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.venue-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.venue-image {
  flex: 1;
}

.venue-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.venue-text {
  flex: 1;
}

.venue-title {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.venue-text p {
  font-size: 1.25rem; /* 20px */
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ===== FORUM INTRO ===== */
.forum-intro {
  padding: 4rem 2.5rem;
  background: var(--bg);
}

.forum-bridge-message {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* ===== BOOK-FORUM BRIDGE ===== */
.forum-bridge-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
  text-align: center;
}

.forum-bridge-title {
  font-style: italic;
  color: var(--primary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.forum-bridge-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.intro-text {
  font-size: 1.5rem; /* 24px */
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.intro-text:last-child {
  margin-bottom: 0;
}

/* ===== BOOK PAGE ===== */
.key-points-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.key-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.key-point svg {
  color: var(--primary);
  flex-shrink: 0;
}

.five-levels-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.levels-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 3rem auto 0;
}

.level-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.level-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  flex-shrink: 0;
}

.level-title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.level-description {
  font-size: 1.0625rem; /* 17px */
  color: var(--text-muted);
  line-height: 1.7;
}

.authors-preview-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
  text-align: center;
}

.authors-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
}

.author-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.author-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.author-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.author-short-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.reviews-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  padding: 2rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-size: 1.375rem; /* 22px */
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.review-author strong {
  display: block;
  margin-bottom: 0.25rem;
}

.review-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.order-section {
  padding: 3rem 2.5rem;
  background: var(--dark);
  color: #fff;
}

.order-card {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.order-image {
  flex-shrink: 0;
}

.order-image img {
  width: 280px;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.order-content {
  flex: 1;
}

.order-title {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.order-description {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.order-buttons {
  margin-bottom: 2rem;
}

.bulk-order {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bulk-order h3 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.bulk-order p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.bulk-order-link {
  color: var(--primary);
}

/* ===== ABOUT PAGE ===== */
.story-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.story-content p {
  font-size: 1.375rem; /* 22px */
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.story-signature {
  text-align: right;
  font-style: italic;
  color: var(--primary);
  margin-top: 2rem;
}

.philosophy-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.philosophy-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.philosophy-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.philosophy-icon svg {
  width: 40px;
  height: 40px;
}

.philosophy-title {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.philosophy-content {
  font-size: 1.375rem; /* 22px */
  line-height: 1.9;
  color: var(--text-muted);
}

.mission-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
  text-align: center;
}

.mission-statement {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
}

.together-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.together-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.together-image {
  flex: 1;
}

.together-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.together-text {
  flex: 1;
}

.together-text h2 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.together-text p {
  font-size: 1.125rem; /* 18px */
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.impact-section {
  padding: 3rem 2.5rem;
  background: var(--dark);
  color: #fff;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.impact-item {
  text-align: center;
}

.impact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--primary);
}

.impact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* ===== TEAM PAGE ===== */
.author-profile {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.author-profile.profile-reverse .profile-content {
  flex-direction: row-reverse;
}

.profile-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-image {
  flex-shrink: 0;
}

.profile-image img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.profile-text {
  flex: 1;
}

.profile-name {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.profile-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.profile-credentials {
  list-style: none;
  margin-bottom: 2rem;
}

.profile-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1.1875rem; /* 19px */
  color: var(--text-muted);
}

.profile-credentials svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.profile-bio p {
  font-size: 1.25rem; /* 20px */
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Profile Impact Summary - founders' achievements */
.profile-impact {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

.impact-headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: normal;
}

.impact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.impact-point {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.impact-metric {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.2;
}

.impact-context {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.partnership-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.partnership-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.partnership-image {
  flex: 1;
}

.partnership-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.partnership-text {
  flex: 1;
}

.partnership-text h2 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.partnership-text p {
  font-size: 1.125rem; /* 18px */
  line-height: 1.8;
  color: var(--text-muted);
}

/* ===== STORIES PAGE ===== */
.stories-intro {
  padding: 3rem 2.5rem;
  background: var(--bg);
  text-align: center;
}

.stories-list {
  padding: 2rem 0;
  background: var(--bg);
}

.sage-story {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  padding: 4rem 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sage-story:last-child {
  border-bottom: none;
}

.sage-story.story-reverse {
  flex-direction: row-reverse;
}

.story-image {
  flex-shrink: 0;
}

.story-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.story-content {
  flex: 1;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 1.625rem; /* 26px */
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.story-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.story-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.story-bio p {
  font-size: 1.25rem; /* 20px */
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.your-story-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.your-story-card {
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.your-story-card h2 {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.your-story-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== CONTACT PAGE ===== */
.contact-form-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro p {
  font-size: 1.375rem; /* 22px */
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.required {
  color: var(--primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.125rem;
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-size: 1.25rem; /* 20px */
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-note svg {
  color: var(--primary);
  flex-shrink: 0;
}

.form-error {
  padding: 1rem;
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.3);
  border-radius: 4px;
  color: #8b2020;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.form-submit {
  width: 100%;
}

.form-success {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 60px;
  height: 60px;
}

.form-success h3 {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.faq-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.faq-list {
  max-width: 600px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0.5rem;
  min-height: 44px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  cursor: pointer;
  color: inherit;
}

.faq-question svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SAGE CARDS ===== */
.sage-grid-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.sage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.sage-card {
  padding: 1.5rem;
  border-top: 2px solid var(--primary);
  background: #fff;
}

.sage-image {
  margin-bottom: 1rem;
}

.sage-image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.sage-quote {
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sage-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.sage-title {
  font-size: 0.6875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}

/* ===== RESPONSIVE - PAGES ===== */
@media (max-width: 1024px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .framework-stages {
    flex-direction: column;
  }

  .stage-connector {
    transform: rotate(90deg);
  }

  .personal-note,
  .book-preview,
  .forum-preview,
  .venue-content,
  .together-content,
  .order-card,
  .profile-content,
  .partnership-content {
    flex-direction: column;
  }

  .impact-points {
    flex-direction: column;
    gap: 1rem;
  }

  .impact-point {
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
  }

  .impact-metric {
    font-size: 1.5rem;
    min-width: 70px;
  }

  .sage-story,
  .sage-story.story-reverse {
    flex-direction: column;
  }

  .note-image img,
  .profile-image img {
    width: 150px;
    height: 150px;
  }

  .profile-image img {
    height: auto;
  }

  .author-profile.profile-reverse .profile-content {
    flex-direction: column;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .sage-grid {
    grid-template-columns: 1fr;
  }

  .authors-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

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

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .story-image img {
    width: 180px;
    height: 180px;
  }
}

/* ===== ROADMAP PAGE ===== */
.roadmap-gate-section {
  padding: 3.5rem 2.5rem;
  background: var(--bg);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-gate-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.roadmap-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: sepia(1) hue-rotate(-10deg) saturate(2) brightness(0.7);
}

.roadmap-gate-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.roadmap-gate-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.roadmap-email-form {
  max-width: 400px;
  margin: 0 auto;
}

.roadmap-hero-section {
  background: var(--dark);
  padding: 3rem 2.5rem;
  text-align: center;
}

.roadmap-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.roadmap-hero-section .roadmap-logo {
  width: 50px;
  filter: brightness(10);
}

.roadmap-hero-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: #fff;
}

.roadmap-downloads-section {
  padding: 4rem 2.5rem 5rem;
  background: var(--bg);
}

.roadmap-downloads-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 1rem;
}

.roadmap-downloads-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.roadmap-download-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.roadmap-download-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.3s, transform 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.roadmap-download-card:hover {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.download-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(139, 105, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.download-icon svg {
  width: 24px;
  height: 24px;
}

.download-info {
  flex: 1;
}

.download-info h3 {
  font-size: 1.125rem;
  font-style: normal;
  margin-bottom: 0.25rem;
}

.download-format {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.download-action {
  color: var(--primary);
  flex-shrink: 0;
}

.download-action svg {
  width: 22px;
  height: 22px;
}

.roadmap-download-excel .download-icon {
  background: rgba(33, 115, 70, 0.1);
  color: #217346;
}

.roadmap-divider {
  max-width: 550px;
  margin: 2rem auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== MENTORING TOOLBOX PAGE ===== */
.toolbox-intro-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.toolbox-intro-content p {
  font-size: 1.375rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.toolbox-steps-section {
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.03);
}

.toolbox-steps {
  max-width: 700px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.toolbox-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 1.1875rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.toolbox-topics-section {
  padding: 3rem 2.5rem;
  background: var(--bg);
}

.toolbox-topics-intro {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.toolbox-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.toolbox-topic-card {
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.topic-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(139, 105, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.topic-icon svg {
  width: 24px;
  height: 24px;
}

.topic-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.topic-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== ADMIN PAGE ===== */
.admin-section {
  padding: 3rem 2.5rem 5rem;
  background: var(--bg);
  min-height: 70vh;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 2rem;
  text-align: center;
}

.admin-login-card {
  max-width: 400px;
  margin: 3rem auto;
  text-align: center;
  padding: 2.5rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.admin-login-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.admin-unauthorized-text {
  font-size: 1.125rem;
  color: #a33;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.admin-user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.admin-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.admin-user-name {
  font-size: 0.9375rem;
  font-weight: 500;
}

.admin-logout-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background 0.2s;
}

.admin-logout-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.admin-sections-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-section-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  width: 100%;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.admin-section-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.admin-section-header h3 {
  font-size: 1.0625rem;
  font-style: normal;
}

.admin-toggle-icon {
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}

.admin-section-body {
  padding: 0 1.5rem 1.5rem;
}

.admin-loading {
  padding: 1rem 0;
  color: var(--text-muted);
  font-style: italic;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-field-label {
  font-size: 0.6875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.admin-nested-label {
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  font-style: italic;
}

.admin-field-input,
.admin-field-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.admin-field-input:focus,
.admin-field-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.admin-field-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.admin-save-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.admin-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--dark);
  color: #fff;
  border-radius: 6px;
  font-size: 0.9375rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

/* ===== RESPONSIVE - NEW PAGES ===== */
@media (max-width: 768px) {
  .toolbox-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toolbox-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .admin-user-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

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

  .roadmap-gate-title {
    font-size: 1.75rem;
  }

  .roadmap-downloads-title {
    font-size: 1.5rem;
  }
}

/* ===== TOOLBOX LIBRARY (downloadable resources) ===== */

.tbl-intro {
  padding: 3rem 2.5rem 2rem;
}

.tbl-intro-text {
  font-size: 1.375rem;
  line-height: 2;
  color: var(--ss-text-muted);
  margin-bottom: 2rem;
}

.tbl-starter-title {
  font-family: var(--ss-font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  margin: 2.5rem 0 1rem;
  color: var(--ss-text);
}

/* Controls bar */
.tbl-controls {
  padding: 0.75rem 2.5rem 0;
  position: sticky;
  top: 72px;
  z-index: 5;
  background: var(--ss-bg);
  border-bottom: 1px solid rgba(139, 105, 20, 0.1);
}

.tbl-controls-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 0 1rem;
}

.tbl-controls-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.tbl-search-wrapper {
  position: relative;
  flex: 0 0 260px;
}

.tbl-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(139, 105, 20, 0.5);
  pointer-events: none;
}

.tbl-search {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid rgba(139, 105, 20, 0.2);
  border-radius: 4px;
  background: #fff;
  font-family: var(--ss-font-body);
  font-size: 1.0625rem;
  color: var(--ss-text);
  outline: none;
  transition: border-color 0.3s;
}

.tbl-search:focus {
  border-color: var(--ss-gold);
}

.tbl-search::placeholder {
  color: rgba(44, 44, 44, 0.35);
}

.tbl-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
}

.tbl-filter {
  padding: 0.5rem 1.125rem;
  border: 1px solid rgba(139, 105, 20, 0.18);
  border-radius: 100px;
  background: transparent;
  font-family: var(--ss-font-body);
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  color: var(--ss-text-muted);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.tbl-filter:hover {
  border-color: var(--ss-gold);
  color: var(--ss-gold);
}

.tbl-filter.active {
  background: var(--ss-gold);
  border-color: var(--ss-gold);
  color: #fff;
}

.tbl-filter[data-filter]:not([data-filter="all"]).active {
  background: var(--filter-color);
  border-color: var(--filter-color);
}

.tbl-filter[data-filter]:not([data-filter="all"]):hover {
  border-color: var(--filter-color);
  color: var(--filter-color);
}

.tbl-sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0 1rem;
}

.tbl-result-count {
  font-family: var(--ss-font-body);
  font-size: 1rem;
  color: var(--ss-text-muted);
  letter-spacing: 0.5px;
}

.tbl-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tbl-sort label {
  font-family: var(--ss-font-body);
  font-size: 0.9375rem;
  color: var(--ss-text-muted);
}

.tbl-sort-select {
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(139, 105, 20, 0.2);
  border-radius: 4px;
  background: #fff;
  font-family: var(--ss-font-body);
  font-size: 0.9375rem;
  color: var(--ss-text);
  cursor: pointer;
  outline: none;
}

.tbl-sort-select:focus {
  border-color: var(--ss-gold);
}

/* Card grid */
.tbl-grid-section {
  padding: 1.5rem 2.5rem 3rem;
}

.tbl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tbl-card {
  background: #fff;
  border-radius: 6px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(139, 105, 20, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.tbl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--cat-color, rgba(139, 105, 20, 0.2));
}

.tbl-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.tbl-card-num {
  font-family: var(--ss-font-display);
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(44, 44, 44, 0.3);
  font-weight: 600;
}

.tbl-card-category {
  font-family: var(--ss-font-body);
  font-size: 0.6875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tbl-card-stamp {
  position: absolute;
  top: -15px;
  right: -40px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg);
  pointer-events: none;
  opacity: 0.07;
  transition: opacity 0.3s;
}

.tbl-card:hover .tbl-card-stamp {
  opacity: 0.13;
}

.tbl-card-stamp i,
.tbl-card-stamp svg {
  width: 130px;
  height: 130px;
  stroke-width: 0.8;
}

.tbl-card-title {
  font-family: var(--ss-font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--ss-text);
}

.tbl-card-desc {
  font-family: var(--ss-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ss-text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

.tbl-card-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(139, 105, 20, 0.22);
  border-radius: 4px;
  font-family: var(--ss-font-body);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ss-gold);
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
  margin-top: auto;
  width: 100%;
}

.tbl-card-view i, .tbl-card-view svg {
  width: 16px;
  height: 16px;
}

.tbl-card-view:hover {
  background: var(--ss-gold);
  border-color: var(--ss-gold);
  color: #fff;
}

/* Empty state */
.tbl-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.tbl-empty i,
.tbl-empty svg {
  width: 48px;
  height: 48px;
  color: rgba(44, 44, 44, 0.2);
  margin-bottom: 1rem;
}

.tbl-empty p {
  font-family: var(--ss-font-body);
  font-size: 1.25rem;
  color: var(--ss-text-muted);
}

/* Full program upsell */
.tbl-full-program {
  padding: 3.5rem 2.5rem;
  background: rgba(26, 35, 50, 0.03);
  border-top: 1px solid rgba(139, 105, 20, 0.1);
}

.tbl-full-program-content {
  text-align: center;
}

.tbl-full-program-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139, 105, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.tbl-full-program-badge i,
.tbl-full-program-badge svg {
  width: 30px;
  height: 30px;
  color: var(--ss-gold);
}

.tbl-full-program-text {
  font-family: var(--ss-font-body);
  font-size: 1.1875rem;
  line-height: 1.9;
  color: var(--ss-text-muted);
  margin-bottom: 1rem;
}

.tbl-full-program-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.tbl-stat {
  text-align: center;
}

.tbl-stat-num {
  display: block;
  font-family: var(--ss-font-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--ss-gold);
  line-height: 1.1;
}

.tbl-stat-label {
  display: block;
  font-family: var(--ss-font-body);
  font-size: 0.8125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ss-text-muted);
  margin-top: 0.25rem;
}

.tbl-stat-arrow {
  color: rgba(139, 105, 20, 0.35);
}

.tbl-stat-arrow i,
.tbl-stat-arrow svg {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (max-width: 1100px) {
  .tbl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .tbl-controls {
    padding: 0 1.5rem;
    position: static;
  }

  .tbl-controls-row {
    flex-direction: column;
    align-items: stretch;
  }

  .tbl-search-wrapper {
    flex: none;
  }

  .tbl-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }

  .tbl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tbl-grid-section {
    padding: 1.5rem 1.5rem 3rem;
  }

  .tbl-intro {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .tbl-full-program {
    padding: 2.5rem 1.5rem;
  }
}

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

  .tbl-full-program-stats {
    gap: 1.5rem;
  }

  .tbl-stat-num {
    font-size: 2.25rem;
  }
}

/* ===== TOOLBOX MODAL ===== */
.tbl-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.tbl-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  animation: tbl-fade-in 0.2s ease-out;
}

@keyframes tbl-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tbl-modal-content {
  position: relative;
  background: var(--ss-bg, #f5f0e8);
  border-radius: 8px;
  width: 90%;
  max-width: 580px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: tbl-slide-up 0.25s ease-out;
}

@keyframes tbl-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tbl-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--ss-text-muted, #666);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 0;
  transition: color 0.2s;
}

.tbl-modal-close:hover {
  color: var(--ss-text, #2c2c2c);
}

.tbl-modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(139, 105, 20, 0.1);
}

.tbl-modal-title {
  font-family: var(--ss-font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 0.375rem;
}

.tbl-modal-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.875rem;
  color: var(--ss-text-muted);
  margin: 0;
}

.tbl-modal-files {
  padding: 1rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.tbl-modal-file {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(139, 105, 20, 0.06);
}

.tbl-modal-file:last-child {
  border-bottom: none;
}

.tbl-modal-file-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tbl-modal-file-icon i,
.tbl-modal-file-icon svg {
  width: 24px;
  height: 24px;
}

.tbl-custom-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.tbl-modal-file-info {
  flex: 1;
  min-width: 0;
}

.tbl-modal-file-name {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9375rem;
  color: var(--ss-text);
  line-height: 1.35;
  word-break: break-word;
}

.tbl-modal-file-meta {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.75rem;
  color: var(--ss-text-muted);
  letter-spacing: 0.25px;
}

.tbl-modal-file-preview,
.tbl-modal-file-dl {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--ss-gold);
  transition: all 0.2s;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.tbl-modal-file-preview:hover,
.tbl-modal-file-dl:hover {
  background: rgba(139, 105, 20, 0.08);
}

.tbl-modal-file-preview i, .tbl-modal-file-preview svg,
.tbl-modal-file-dl i, .tbl-modal-file-dl svg {
  width: 18px;
  height: 18px;
}

/* Preview panel */
.tbl-modal-preview {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.tbl-preview-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 2rem 0.5rem;
  background: none;
  border: none;
  color: var(--ss-gold);
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.tbl-preview-back:hover {
  opacity: 0.7;
}

.tbl-preview-filename {
  padding: 0 2rem 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8125rem;
  color: var(--ss-text-muted);
  border-bottom: 1px solid rgba(139, 105, 20, 0.1);
  margin: 0;
}

.tbl-preview-frame {
  flex: 1;
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #f0ece4;
}

.tbl-modal.previewing .tbl-modal-content {
  max-width: 900px;
  max-height: 90vh;
}

.tbl-preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 450px;
}

.tbl-preview-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.tbl-modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(139, 105, 20, 0.1);
  text-align: center;
}

.tbl-modal-download-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.tbl-modal-empty {
  padding: 2rem 0;
  text-align: center;
}

.tbl-modal-empty p {
  font-family: var(--ss-font-body);
  font-size: 1.125rem;
  color: var(--ss-text-muted);
  font-style: italic;
}

@media (max-width: 600px) {
  .tbl-modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .tbl-modal-header,
  .tbl-modal-files,
  .tbl-modal-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
