/* Academy Page Specific Styles - Moved from inline styles */

/* Academy Header Sticky - Transparent */
.academy-header-sticky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.academy-header-sticky.scrolled {
  position: fixed;
  background: rgba(255, 251, 248, 0.98);
  backdrop-filter: saturate(120%) blur(12px);
  -webkit-backdrop-filter: saturate(120%) blur(12px);
  border-bottom: 1px solid var(--tsc-color-stroke);
  box-shadow: 0 2px 12px rgba(8, 61, 58, 0.08);
}

.academy-header-sticky .header-inner {
  height: 90px;
}

.academy-header-sticky .main-nav a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.academy-header-sticky.scrolled .main-nav a {
  color: var(--tsc-color-ink);
  text-shadow: none;
}

.academy-header-sticky .brand-logo {
  filter: brightness(1.1);
}

.academy-header-sticky.scrolled .brand-logo {
  filter: none;
}

.academy-header-sticky .btn-primary.header-cta {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--tsc-color-bg);
  backdrop-filter: blur(10px);
}

.academy-header-sticky.scrolled .btn-primary.header-cta {
  background: var(--tsc-color-primary);
  border: 1px solid var(--tsc-color-primary);
  color: var(--tsc-color-primary-ink);
}

/* Academy Hero Styles - Split Layout */
.academy-hero {
  min-height: 80vh;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

.academy-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: url('./assets/images/hero-academy.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.academy-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(18, 109, 94, 0.5) 0%, 
    rgba(8, 61, 58, 0.7) 30%,
    rgba(183, 75, 2, 0.6) 70%,
    rgba(139, 40, 28, 0.5) 100%);
  z-index: 2;
}

.academy-hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  left: -200px;
  top: 20%;
  background: radial-gradient(circle, 
    rgba(18, 109, 94, 0.6) 0%,
    rgba(183, 75, 2, 0.4) 50%,
    transparent 100%);
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
  z-index: 2;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
}

.academy-hero-smoke {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 60%, rgba(255, 236, 209, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 40%, rgba(18, 109, 94, 0.1) 0%, transparent 50%);
  opacity: 0.6;
  z-index: 2;
}

.academy-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hide the visual section since we're using full-screen background */
.academy-hero-visual {
  display: none;
}

.academy-hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(18, 109, 94, 0.3) 0%,
    rgba(183, 75, 2, 0.2) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.academy-hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, 
    rgba(255, 236, 209, 0.2) 0%,
    transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.academy-hero-image-icon {
  font-size: 120px;
  opacity: 0.3;
  position: relative;
  z-index: 1;
}

.academy-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.academy-hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(135deg, rgba(18, 109, 94, 0.1) 0%, rgba(183, 75, 2, 0.1) 100%);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}

.academy-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  color: var(--tsc-color-bg);
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.academy-hero-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-family: var(--tsc-font-body);
}

.academy-hero-title {
  font-size: 84px;
  font-weight: 700;
  margin: 0 0 32px;
  color: var(--tsc-color-bg);
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: var(--tsc-font-heading);
}

.academy-hero-separator {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(18, 109, 94, 0.8) 0%,
    rgba(183, 75, 2, 0.8) 100%);
  margin: 0 0 32px;
  border-radius: 2px;
}

.academy-hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 48px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  font-family: var(--tsc-font-body);
}

.academy-hero .hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.academy-hero-btn-primary {
  background: linear-gradient(135deg, 
    rgba(183, 75, 2, 0.9) 0%,
    rgba(18, 109, 94, 0.9) 100%);
  border: none;
  color: var(--tsc-color-bg);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(183, 75, 2, 0.3);
}

.academy-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(183, 75, 2, 0.4);
}

.academy-hero-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--tsc-color-bg);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.academy-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* About Section Enhancements - Two Column Layout */
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  padding: 60px 0;
}

.about-left {
  display: flex;
  flex-direction: column;
}

.about-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tsc-color-primary);
  margin-bottom: 24px;
  font-family: var(--tsc-font-body);
}

.about-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tsc-color-ink-strong);
  margin: 0;
  font-family: var(--tsc-font-heading);
  letter-spacing: -1px;
}

.about-right {
  display: flex;
  align-items: center;
}

.about-story {
  max-width: 100%;
  margin: 0;
}

.about-story-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--tsc-color-ink-muted);
  margin: 0 0 24px;
  font-family: var(--tsc-font-body);
}

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

/* Vision Cards Grid in About Section */
.vision-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.vision-card {
  background: var(--tsc-color-bg);
  border: 2px solid var(--tsc-color-stroke);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(8, 61, 58, 0.08);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--tsc-color-primary) 0%,
    var(--tsc-color-accent) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.vision-card:hover::before {
  transform: scaleX(1);
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(8, 61, 58, 0.15);
  border-color: var(--tsc-color-primary);
}

.vision-card-highlight {
  border: 3px solid var(--tsc-color-accent);
  background: linear-gradient(135deg, 
    rgba(255, 251, 248, 0.5) 0%,
    var(--tsc-color-bg) 100%);
  box-shadow: 0 6px 20px rgba(183, 75, 2, 0.2);
}

.vision-card-highlight::before {
  height: 6px;
  background: linear-gradient(90deg, 
    var(--tsc-color-accent) 0%,
    var(--tsc-color-primary) 100%);
  transform: scaleX(1);
}

.vision-card-final {
  grid-column: span 3;
  background: linear-gradient(135deg, 
    rgba(8, 61, 58, 0.03) 0%,
    rgba(183, 75, 2, 0.03) 100%);
  border-color: var(--tsc-color-primary);
  padding: 48px 40px;
}

.vision-card-icon {
  font-size: 56px;
  margin-bottom: 20px;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.vision-card-title {
  font-family: var(--tsc-font-heading);
  color: var(--tsc-color-ink-strong);
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 16px 0;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.vision-card-desc {
  color: var(--tsc-color-ink-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-family: var(--tsc-font-body);
}

/* Initiatives Section */
.initiatives-section {
  background: var(--tsc-color-bg-soft);
  padding: 80px 0;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.initiative-card {
  background: var(--tsc-color-bg);
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(8, 61, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(8, 61, 58, 0.15);
}

.initiative-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.initiative-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.initiative-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--tsc-color-ink-strong);
}

.initiative-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--tsc-color-ink-muted);
  margin: 0 0 20px;
  flex-grow: 1;
}

.initiative-link {
  color: var(--tsc-color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.initiative-link:hover {
  color: var(--tsc-color-ink-strong);
}

/* Initiatives WhatsApp CTA */
.initiatives-cta {
  text-align: center;
  margin-top: 64px;
  padding: 48px 24px;
  background: var(--tsc-color-bg);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(8, 61, 58, 0.1);
}

.initiatives-cta-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--tsc-color-ink-strong);
  margin: 0 0 24px;
  font-family: var(--tsc-font-heading);
}

.initiatives-wa-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--tsc-color-bg);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  font-family: var(--tsc-font-body);
}

.initiatives-wa-button:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.initiatives-wa-button:active {
  transform: translateY(0);
}

.wa-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Mentors Section */
.mentors-section {
  padding: 80px 0;
}

.mentors-intro {
  text-align: center;
  margin-bottom: 60px;
}

.mentors-subsection {
  margin-bottom: 60px;
}

.mentors-subsection:last-child {
  margin-bottom: 0;
}

.mentors-subsection-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--tsc-color-ink-strong);
  margin: 0 0 16px;
  text-align: center;
}

.mentors-coming-soon-intro {
  text-align: center;
  font-size: 18px;
  color: var(--tsc-color-ink-muted);
  margin: 0 0 40px;
}

.mentors-grid {
  margin-top: 40px;
}

.mentor-card {
  position: relative;
}

.mentor-card-coming-soon {
  opacity: 0.85;
  position: relative;
}

.mentor-card-coming-soon .jury-name {
  margin-top: 0;
  padding-right: 130px;
}

.mentor-coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--tsc-color-accent);
  color: var(--tsc-color-bg);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  white-space: nowrap;
}

.mentor-anonymous-name {
  color: var(--tsc-color-ink-muted);
}

.mentor-placeholder-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--tsc-color-bg-soft) 0%, rgba(255, 236, 209, 0.5) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.mentor-placeholder-icon {
  font-size: 80px;
  opacity: 0.4;
}

.mentor-placeholder-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.logo-item-placeholder {
  aspect-ratio: 1;
  background: var(--tsc-color-bg-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  opacity: 0.5;
}

/* Courses Section - Full Image Cards with Horizontal Scroll */
.courses-section {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
}

.courses-section .section-title,
.courses-section .section-lead {
  color: var(--tsc-color-bg);
}

.courses-scroll-wrapper {
  margin-top: 60px;
  position: relative;
  overflow: visible;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 0;
}

.courses-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0 40px 0;
  padding-right: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.courses-scroll-container::-webkit-scrollbar {
  display: none;
}

.course-card-full {
  flex: 0 0 calc(29% - 14px);
  min-width: calc(29% - 14px);
  width: calc(29% - 14px);
  height: 480px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.course-card-full:hover {
  transform: scale(1.02);
}

/* Fourth card peeking - smaller width */
.course-card-full:nth-child(4) {
  flex: 0 0 calc(28% - 14px);
  min-width: calc(28% - 14px);
  width: calc(28% - 14px);
}

.course-card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card-full:hover .course-card-image img {
  transform: scale(1.1);
}

.course-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
}

.course-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 3;
  color: var(--tsc-color-bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.course-card-pagination {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: var(--tsc-font-heading);
}

.course-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--tsc-color-bg);
  line-height: 1.3;
  font-family: var(--tsc-font-heading);
  letter-spacing: -0.3px;
}

.course-card-features {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.course-feature-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.course-feature-separator {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.course-card-description {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
  max-width: 100%;
  font-family: var(--tsc-font-body);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-card-instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.course-card-instructor-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.course-card-instructor-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--tsc-font-body);
}

.course-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex: 0 0 calc(29% - 14px);
  min-width: calc(29% - 14px);
  width: calc(29% - 14px);
  height: 480px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.course-card-link:hover {
  transform: scale(1.02);
}

.course-card-link .course-card-full {
  width: 100%;
  height: 100%;
  flex: none;
  transform: none;
  min-width: 100%;
}

.course-card-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--tsc-color-accent);
  color: var(--tsc-color-bg);
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 4px;
  align-self: flex-start;
  font-family: var(--tsc-font-body);
}

/* Coming Soon Notification Pill */
.coming-soon-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--tsc-color-accent);
  color: var(--tsc-color-bg);
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(183, 75, 2, 0.3);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  font-family: var(--tsc-font-body);
}

.coming-soon-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.course-card-button:hover {
  background: rgba(183, 75, 2, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(183, 75, 2, 0.4);
}

.course-card-coming-soon {
  cursor: pointer;
}

.course-card-coming-soon::before {
  content: "Coming Soon";
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--tsc-color-accent);
  color: var(--tsc-color-bg);
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.course-card-live::before {
  content: "Live";
  position: absolute;
  top: 16px;
  right: 16px;
  background: #25D366;
  color: var(--tsc-color-bg);
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.course-placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(18, 109, 94, 0.3) 0%,
    rgba(183, 75, 2, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-placeholder-icon {
  font-size: 64px;
  opacity: 0.4;
}

/* Plans Section */
.plans-section {
  background: var(--tsc-color-bg-soft);
  padding: 80px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.plan-item {
  background: var(--tsc-color-bg);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(8, 61, 58, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(8, 61, 58, 0.12);
}

.plan-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.plan-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--tsc-color-ink-strong);
}

.plan-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--tsc-color-ink-muted);
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at center, 
    rgba(183, 75, 2, 0.15) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.testimonials-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.testimonials-quote-mark {
  font-size: 120px;
  font-weight: 300;
  color: rgba(183, 75, 2, 0.4);
  line-height: 1;
  font-family: Georgia, serif;
  margin-top: -20px;
}

.testimonials-title {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: 2px;
  font-family: var(--tsc-font-heading);
}

.testimonials-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.testimonials-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(183, 75, 2, 0.5);
  background: transparent;
  color: rgba(183, 75, 2, 0.8);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: var(--tsc-font-heading);
}

.testimonials-nav-btn:hover {
  background: rgba(183, 75, 2, 0.2);
  border-color: rgba(183, 75, 2, 0.8);
  color: rgba(183, 75, 2, 1);
  transform: scale(1.1);
}

.testimonials-nav-btn:active {
  transform: scale(0.95);
}

.testimonials-scroll-wrapper {
  position: relative;
  overflow: visible;
  padding-right: 0;
}

.testimonials-scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0 40px 0;
  padding-right: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.testimonials-scroll-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(40% - 12px);
  min-width: calc(40% - 12px);
  width: calc(40% - 12px);
  background: rgba(40, 40, 40, 0.8);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  height: auto;
  align-items: flex-start;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(50, 50, 50, 0.9);
}

/* Third and fourth cards peeking - smaller width */
.testimonial-card:nth-child(3),
.testimonial-card:nth-child(4) {
  flex: 0 0 calc(40% - 12px);
  min-width: calc(40% - 12px);
  width: calc(40% - 12px);
}

.testimonial-image-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.testimonial-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
  flex-grow: 1;
}

.testimonial-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .academy-hero-container {
    grid-template-columns: 1fr;
  }
  
  .academy-hero-visual {
    padding: 80px 40px 40px;
    min-height: 50vh;
  }
  
  .academy-hero-content {
    padding: 60px 40px 80px;
    text-align: center;
  }
  
  .academy-hero-title {
    font-size: 56px;
  }
  
  .academy-hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .academy-hero .hero-actions {
    justify-content: center;
  }
  
  .testimonials-header {
    flex-direction: row;
    align-items: center;
  }
  
  .testimonials-title {
    font-size: 36px;
    letter-spacing: 2px;
  }
  
  .testimonials-quote-mark {
    font-size: 80px;
  }
  
  .testimonial-card {
    flex: 0 0 75%;
    min-width: 75%;
    width: 75%;
  }
  
  .testimonial-card:nth-child(3),
  .testimonial-card:nth-child(4) {
    flex: 0 0 75%;
    min-width: 75%;
    width: 75%;
  }
  
  .initiatives-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .academy-hero {
    min-height: 80vh;
  }
  
  .academy-hero-content {
    padding: 0;
  }
  
  .academy-hero-title {
    font-size: 42px;
    letter-spacing: -1px;
  }
  
  .academy-hero-description {
    font-size: 16px;
  }
  
  .academy-hero-btn-primary,
  .academy-hero-btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .academy-hero .hero-actions {
    flex-direction: column;
  }
  
  .academy-hero-orb {
    width: 400px;
    height: 400px;
  }
  
  .course-card-full {
    flex: 0 0 85%;
    min-width: 85%;
    width: 85%;
    height: 450px;
  }
  
  .course-card-full:nth-child(4) {
    flex: 0 0 85%;
    min-width: 85%;
    width: 85%;
  }
  
  .courses-scroll-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .courses-scroll-container {
    padding-right: 20px;
  }
  
  .course-card-title {
    font-size: 20px;
  }
  
  .course-card-features {
    font-size: 11px;
    gap: 6px;
  }
  
  .course-card-description {
    font-size: 12px;
    max-width: 100%;
    -webkit-line-clamp: 3;
  }
  
  .course-card-content {
    padding: 20px 18px;
    gap: 10px;
  }
  
  .course-card-pagination {
    font-size: 11px;
  }
  
  .course-card-button {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  
  .initiative-card {
    border-radius: 12px;
  }
  
  .initiative-image {
    height: 160px;
  }
  
  .initiative-card-content {
    padding: 16px;
  }
  
  .initiative-title {
    font-size: 18px;
    margin: 0 0 8px;
  }
  
  .initiative-description {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 12px;
  }
  
  .initiatives-cta {
    margin-top: 48px;
    padding: 32px 20px;
    border-radius: 16px;
  }
  
  .initiatives-cta-text {
    font-size: 16px;
    margin: 0 0 20px;
  }
  
  .initiatives-wa-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .mentors-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
    margin-bottom: 60px;
  }
  
  .about-label {
    font-size: 11px;
    margin-bottom: 20px;
  }
  
  .about-heading {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
  
  .about-story-text {
    font-size: 16px;
  }
  
  .vision-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  
  .vision-card {
    padding: 32px 24px;
  }
  
  .vision-card-final {
    grid-column: span 2;
    padding: 40px 28px;
  }
  
  .vision-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .vision-card-title {
    font-size: 18px;
  }
  
  .vision-card-desc {
    font-size: 14px;
  }
  
  .testimonials-container {
    padding: 0 24px;
  }
  
  .testimonials-title {
    font-size: 28px;
  }
  
  .testimonials-quote-mark {
    font-size: 60px;
  }
  
  .testimonial-card {
    flex-direction: row;
    padding: 24px 20px;
    flex: 0 0 85%;
    min-width: 85%;
    width: 85%;
  }
  
  .testimonial-card:nth-child(3),
  .testimonial-card:nth-child(4) {
    flex: 0 0 85%;
    min-width: 85%;
    width: 85%;
  }
  
  .vision-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .vision-card-final {
    grid-column: span 1;
  }
  
  .testimonial-image-wrapper {
    width: 70px;
    height: 70px;
    align-self: flex-start;
  }
  
  .testimonial-text {
    font-size: 12px;
  }
  
  .testimonial-name {
    font-size: 10px;
  }
}

/* Extra Small Mobile - Single Column for Initiatives */
@media (max-width: 480px) {
  .initiatives-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  
  .initiative-image {
    height: 180px;
  }
  
  .initiative-card-content {
    padding: 20px;
  }
  
  .initiative-title {
    font-size: 20px;
    margin: 0 0 10px;
  }
  
  .initiative-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
  }
  
  .initiatives-cta {
    margin-top: 40px;
    padding: 28px 16px;
  }
  
  .initiatives-cta-text {
    font-size: 15px;
    margin: 0 0 18px;
  }
  
  .initiatives-wa-button {
    padding: 14px 20px;
    font-size: 14px;
  }
}

