/* Custom Styles from Power BI Architecture */
:root {
  --color-bg: #0a0a0a;
  --color-primary: #7F63F6;
  /* New Logo Color */
  --color-secondary: #00D2FF;
  /* Cyan Accents */
  --color-cream: #EFE8D6;
  /* Vintage Cream */
}

/* Retro Grid Pattern */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, #222222 1px, transparent 1px),
    linear-gradient(to bottom, #222222 1px, transparent 1px);
}

/* Smooth 3D Shadow Utilities */
.shadow-hard {
  box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.6), inset 0px 1px 1px rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.shadow-hard-sm {
  box-shadow: 0px 6px 15px -3px rgba(0, 0, 0, 0.5), inset 0px 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.shadow-hard-lg {
  box-shadow: 0px 20px 40px -10px rgba(0, 0, 0, 0.8), inset 0px 2px 2px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* New Pricing Toggle Styles (Matched to Screenshot) */
.toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: #111;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  border: 2px solid #222;
  box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.8), inset 0px 1px 2px rgba(255, 255, 255, 0.1);
}

.toggle-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #EFE8D6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-label.inactive {
  opacity: 0.4;
}

.toggle-switch-case {
  width: 70px;
  height: 34px;
  background: #000;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  border: 1.5px solid #EFE8D6;
}

.toggle-knob {
  width: 24px;
  height: 24px;
  background: #FFB800;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-switch-case.active .toggle-knob {
  left: calc(100% - 28px);
}

/* FAQ SECTION - ENTERPRISE COMPONENT (From Service Pages) */
.faq-section {
  background: #0a0a0a;
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header-title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

/* FAQ Item - Card Style */
.faq-item {
  background: rgba(15, 15, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
}

.faq-item.is-open {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question:focus {
  outline: none;
  background: rgba(139, 92, 246, 0.05);
}

.faq-question-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  flex: 1;
}

/* Toggle Icon */
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-toggle-icon {
  width: 14px;
  height: 14px;
  position: relative;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background: #8b5cf6;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal line */
.faq-toggle-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Vertical line */
.faq-toggle-icon::after {
  width: 2px;
  height: 14px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* Open state - rotate */
.faq-item.is-open .faq-toggle {
  background: rgba(139, 92, 246, 0.2);
}

.faq-item.is-open .faq-toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Answer Container */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: #9ca3af;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* =========================================
   HERO IMAGE (Transparent PNG)
   ========================================= */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-computer-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-computer-img:hover {
  transform: scale(1.02);
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
    /* Gentle float */
  }
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .hero-image-wrapper {
    max-width: 400px;
  }
}


/* =========================================
   REVIEWS SECTION (3D Slider)
   ========================================= */
.reviews-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #0a0a0a;
  z-index: 10;
}

/* Background Gradients for Depth */
.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 600px;
  background: radial-gradient(circle at center, rgba(127, 99, 246, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.reviews-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.reviews-header p {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

/* Carousel Track & Mask */
.reviews-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* Allow full width for mobile */
  margin: 0 auto;
  height: 500px;
  /* Adjust based on card height */
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: visible; Let it bleed slightly or hidden? User asked for side cards visible */
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* cursor: grab; */
}

/* Individual Review Card */
.review-card {
  width: 400px;
  min-width: 400px;
  height: auto;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  margin: 0 1.5rem;
  /* Gap between cards */
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0.4;
  transform: scale(0.85);
  filter: blur(2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  user-select: none;
  cursor: pointer;
}

.review-card.active {
  opacity: 1;
  transform: scale(1.1);
  /* Center focus scale */
  filter: blur(0);
  border-color: rgba(127, 99, 246, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(127, 99, 246, 0.3);
  z-index: 10;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .review-card {
    width: 300px;
    min-width: 300px;
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .reviews-carousel {
    height: 450px;
  }

  .reviews-header h2 {
    font-size: 2.25rem;
  }
}

/* Content Styles */
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #333;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-info h4 {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.review-info span {
  color: #6b7280;
  font-size: 0.85rem;
  display: block;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.5rem;
}

.star {
  color: #FFB800;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Quote Icon */
.review-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  opacity: 0.1;
  color: white;
  width: 40px;
  height: 40px;
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  backdrop-filter: blur(5px);
}

.carousel-nav:hover {
  background: rgba(127, 99, 246, 0.2);
  border-color: rgba(127, 99, 246, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 20px;
  /* Or optimize for container width */
}

.carousel-nav.next {
  right: 20px;
}

@media (min-width: 1400px) {
  .carousel-nav.prev {
    left: -60px;
  }

  .carousel-nav.next {
    right: -60px;
  }
}

/* Training hero heading aligned with homepage/contact treatment */
.training-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7f63f6;
  margin-bottom: 1.5rem;
}

.training-hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #7f63f6;
  border-radius: 2px;
}

.training-hero-title {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(3rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
  color: #ffffff;
  animation: coolPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.training-hero-title .grad {
  background: linear-gradient(130deg, #ffffff 0%, #c4b5ff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .training-hero-title {
    font-size: clamp(3rem, 5vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .training-hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .training-hero-title {
    font-size: clamp(3rem, 5vw, 3.5rem);
  }
}

/* =========================================
   LIGHT THEME REFINEMENTS
   Keep structure intact, only convert surfaces/spacing for light mode
   ========================================= */

body.light-theme .training-hero-title .grad {
  background: linear-gradient(130deg, #0F172A 0%, #7F63F6 55%, #00B8F0 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body.light-theme .decor-card,
body.light-theme [class*="bg-[#18181b]"].decor-card,
body.light-theme [class*="bg-[#111]"].decor-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .decor-card [class*="bg-[#222]"],
body.light-theme .decor-card [class*="bg-[#111]"],
body.light-theme .decor-card [class*="bg-[#1e1e1e]"],
body.light-theme .decor-card [class*="bg-black"] {
  background: #F8FAFC !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: none !important;
}

body.light-theme .decor-card .text-white,
body.light-theme .decor-card-title,
body.light-theme .decor-card h4,
body.light-theme .decor-card h5 {
  color: #111827 !important;
}

body.light-theme .decor-card p,
body.light-theme .decor-card [class*="text-gray-300"],
body.light-theme .decor-card [class*="text-gray-400"],
body.light-theme .decor-card [class*="text-gray-500"] {
  color: #374151 !important;
}

body.light-theme #pricing-section .mb-12.p-8.rounded-2xl {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme #pricing-section .mb-12.p-8.rounded-2xl h2,
body.light-theme #pricing-section .mb-12.p-8.rounded-2xl p {
  color: #111827 !important;
}

body.light-theme #pricing-section .mb-12.p-8.rounded-2xl p:last-child,
body.light-theme #pricing-section .mb-12.p-8.rounded-2xl [class*="text-gray-500"] {
  color: #475569 !important;
}

body.light-theme .toggle-wrapper {
  background: #F3F4F6 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .toggle-switch-case {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

body.light-theme .toggle-label {
  color: #111827 !important;
}

body.light-theme .toggle-label.inactive {
  color: #6B7280 !important;
  opacity: 1 !important;
}

body.light-theme #pricing-individual > div {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme #pricing-individual > div > div:first-child {
  background: #F3F4F6 !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-theme #pricing-individual > div:nth-child(2) > div:first-child {
  background: #7F63F6 !important;
}

body.light-theme #pricing-individual > div h3,
body.light-theme #pricing-individual > div .text-5xl,
body.light-theme #pricing-individual > div [class*="text-white"] {
  color: #111827 !important;
}

body.light-theme #pricing-individual > div:nth-child(2) h3,
body.light-theme #pricing-individual > div:nth-child(2) a,
body.light-theme #pricing-individual > div:nth-child(2) .text-5xl {
  color: inherit !important;
}

body.light-theme #pricing-individual > div p,
body.light-theme #pricing-individual > div li,
body.light-theme #pricing-individual > div [class*="text-gray-300"],
body.light-theme #pricing-individual > div [class*="text-gray-400"],
body.light-theme #pricing-individual > div [class*="text-gray-500"] {
  color: #475569 !important;
}

body.light-theme #pricing-individual > div ul li:first-child,
body.light-theme #pricing-individual > div ul li[class*="text-white"] {
  color: #111827 !important;
}

body.light-theme #pricing-individual > .max-w-6xl {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme #pricing-individual [class*="bg-[#0A0A0A]"],
body.light-theme #pricing-individual [class*="bg-[#0F0F0F]"],
body.light-theme #pricing-individual [class*="bg-[#111]"],
body.light-theme #pricing-individual [class*="from-[#111]"],
body.light-theme #pricing-individual [class*="to-[#050505]"] {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme #pricing-individual h3,
body.light-theme #pricing-individual h4,
body.light-theme #pricing-individual h5,
body.light-theme #pricing-individual .text-white,
body.light-theme #pricing-individual blockquote,
body.light-theme #pricing-individual span {
  color: #111827 !important;
}

body.light-theme #pricing-individual p,
body.light-theme #pricing-individual [class*="text-gray-200"],
body.light-theme #pricing-individual [class*="text-gray-300"],
body.light-theme #pricing-individual [class*="text-gray-400"],
body.light-theme #pricing-individual [class*="text-gray-500"] {
  color: #475569 !important;
}

body.light-theme #pricing-individual .text-primary {
  color: #7F63F6 !important;
}

body.light-theme #pricing-individual .text-secondary {
  color: #0EA5E9 !important;
}

body.light-theme #pricing-individual .bg-primary {
  background: linear-gradient(135deg, #3B82F6, #7F63F6) !important;
  color: #FFFFFF !important;
}

body.light-theme #pricing-individual > .max-w-6xl > div:first-child {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body.light-theme #pricing-individual .individual-pricing-grid > div {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme #pricing-individual .individual-pricing-grid > div > div:first-child {
  background: #F3F4F6 !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-theme #pricing-individual .individual-pricing-grid > div:nth-child(2) > div:first-child {
  background: linear-gradient(135deg, #3B82F6, #7F63F6) !important;
}

body.light-theme #pricing-individual .individual-pricing-grid > div:nth-child(2) > div:first-child h3,
body.light-theme #pricing-individual .individual-pricing-grid > div:nth-child(2) a.bg-primary {
  color: #FFFFFF !important;
}

body.light-theme #pricing-individual .individual-pricing-grid a.bg-cream {
  color: #111827 !important;
}

.training-unified-card {
  isolation: isolate;
}

.training-unified-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.28), transparent);
}

.training-mini-card span,
.training-mini-list__item span {
  line-height: 1.45;
}

body.light-theme .training-unified-divider {
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.individual-credibility {
  max-width: 72rem;
  margin: 5rem auto 0;
  text-align: left;
}

.individual-proof-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: clamp(1.35rem, 3vw, 3rem);
  border: 2px solid #222;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 210, 255, 0.13), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(127, 99, 246, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(5, 5, 8, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

.individual-proof-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.individual-proof-intro {
  max-width: 760px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.individual-proof-kicker,
.individual-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  border: 1px solid rgba(0, 210, 255, 0.26);
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  color: #9edcff;
  background: rgba(0, 210, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.individual-proof-kicker::before,
.individual-section-label::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #00d2ff;
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.7);
}

.individual-proof-intro h3 {
  margin: 1.1rem 0 1rem;
  color: #fff;
  font-family: var(--font-heading, inherit);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.individual-proof-intro p,
.individual-section-copy p,
.individual-stat-panel p,
.individual-outcome-card p {
  color: #9ca3af;
  line-height: 1.7;
}

.individual-proof-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 3vw, 2.75rem);
  align-items: center;
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(15, 15, 15, 0.88), rgba(10, 10, 10, 0.74));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
  animation: individualProofFade 0.7s cubic-bezier(.16, 1, .3, 1) both;
}

.individual-proof-section:nth-of-type(2) {
  animation-delay: 0.06s;
}

.individual-proof-section:nth-of-type(3) {
  animation-delay: 0.12s;
}

.individual-proof-section:nth-of-type(4) {
  animation-delay: 0.18s;
}

.individual-proof-section:nth-of-type(5) {
  animation-delay: 0.24s;
}

.individual-proof-section:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.28);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.54), 0 0 34px rgba(127, 99, 246, 0.1);
}

@keyframes individualProofFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.individual-section-copy h4 {
  margin: 1rem 0 0.85rem;
  color: #fff;
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.08;
  font-weight: 900;
}

.individual-evidence-list,
.individual-academic-grid {
  display: grid;
  gap: 0.9rem;
}

.individual-evidence-item,
.individual-org-grid span,
.individual-academic-grid div,
.individual-outcome-card,
.individual-stat-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 18, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.individual-evidence-item,
.individual-academic-grid div {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1rem;
  color: #d1d5db;
}

.individual-evidence-item svg,
.individual-academic-grid svg,
.individual-outcome-card svg {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  color: #00d2ff;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.28));
}

.individual-org-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.individual-org-grid span {
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 1rem;
  color: #fff;
  font-weight: 800;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.individual-org-grid span:hover,
.individual-academic-grid div:hover,
.individual-outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 99, 246, 0.38);
}

.individual-stat-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 10% 0%, rgba(127, 99, 246, 0.28), transparent 38%),
    rgba(9, 12, 18, 0.82);
}

.individual-stat-number {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: var(--font-heading, inherit);
  font-size: clamp(2.9rem, 8vw, 5.4rem);
  line-height: 0.86;
  font-weight: 950;
  background: linear-gradient(135deg, #fff, #8fbfff 48%, #7f63f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.individual-stat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.individual-stat-tags span {
  border: 1px solid rgba(127, 99, 246, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: #c4b5fd;
  background: rgba(127, 99, 246, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.individual-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.individual-outcome-card {
  border-radius: 1rem;
  padding: 1.05rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.individual-outcome-card h5 {
  margin: 0.8rem 0 0.35rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.individual-outcome-card p {
  margin: 0;
  font-size: 0.92rem;
}

body.light-theme .individual-proof-shell {
  border-color: rgba(15, 23, 42, 0.08) !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.1), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(127, 99, 246, 0.1), transparent 32%),
    linear-gradient(145deg, #ffffff, #f8fafc) !important;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .individual-proof-shell::before {
  opacity: 0.68;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
}

body.light-theme .individual-proof-section,
body.light-theme .individual-evidence-item,
body.light-theme .individual-org-grid span,
body.light-theme .individual-academic-grid div,
body.light-theme .individual-outcome-card,
body.light-theme .individual-stat-panel {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.055) !important;
}

body.light-theme .individual-proof-intro h3,
body.light-theme .individual-section-copy h4,
body.light-theme .individual-org-grid span,
body.light-theme .individual-outcome-card h5 {
  color: #111827 !important;
}

body.light-theme .individual-proof-intro p,
body.light-theme .individual-section-copy p,
body.light-theme .individual-evidence-item,
body.light-theme .individual-academic-grid div,
body.light-theme .individual-stat-panel p,
body.light-theme .individual-outcome-card p {
  color: #475569 !important;
}

body.light-theme .individual-stat-number {
  background: linear-gradient(135deg, #111827, #2563eb 48%, #7f63f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

body.light-theme #pricing-team > .max-w-6xl {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme #pricing-team [class*="bg-[#0A0A0A]"],
body.light-theme #pricing-team [class*="bg-[#0F0F0F]"],
body.light-theme #pricing-team [class*="bg-[#111]"],
body.light-theme #pricing-team [class*="bg-black/40"],
body.light-theme #pricing-team [class*="from-[#111]"],
body.light-theme #pricing-team [class*="to-[#050505]"] {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme #pricing-team .col-hover-block:hover {
  background: #F8FAFC !important;
}

body.light-theme #pricing-team h3,
body.light-theme #pricing-team h4,
body.light-theme #pricing-team h5,
body.light-theme #pricing-team .text-white,
body.light-theme #pricing-team blockquote,
body.light-theme #pricing-team span {
  color: #111827 !important;
}

body.light-theme #pricing-team p,
body.light-theme #pricing-team [class*="text-gray-200"],
body.light-theme #pricing-team [class*="text-gray-300"],
body.light-theme #pricing-team [class*="text-gray-400"],
body.light-theme #pricing-team [class*="text-gray-500"] {
  color: #475569 !important;
}

body.light-theme #pricing-team button[class*="bg-white"] {
  background: #0F172A !important;
  color: #FFFFFF !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .reviews-section {
  background: #F8FAFC !important;
}

body.light-theme .reviews-section::before {
  background: radial-gradient(circle at center, rgba(127, 99, 246, 0.08) 0%, transparent 70%) !important;
}

body.light-theme .reviews-header h2,
body.light-theme .reviews-header p {
  color: #111827 !important;
}

body.light-theme .reviews-header p {
  color: #475569 !important;
}

body.light-theme .review-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  opacity: 0.72;
  filter: none !important;
}

body.light-theme .review-card.active {
  border-color: rgba(127, 99, 246, 0.26) !important;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .review-info h4,
body.light-theme .review-text {
  color: #111827 !important;
}

body.light-theme .review-info span {
  color: #6B7280 !important;
}

body.light-theme .review-text {
  color: #374151 !important;
}

body.light-theme .review-quote-icon {
  color: #64748B !important;
  opacity: 0.18 !important;
}

body.light-theme .review-avatar {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .carousel-nav {
  background: #FFFFFF !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #111827 !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: none !important;
}

body.light-theme .faq-section {
  background: #F8FAFC !important;
}

body.light-theme .faq-header-title h2 {
  color: #111827 !important;
}

body.light-theme .faq-item {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  margin-bottom: 16px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .faq-question {
  background: transparent !important;
}

body.light-theme .faq-question:hover,
body.light-theme .faq-question:focus {
  background: #F8FAFC !important;
}

body.light-theme .faq-question-text {
  color: #111827 !important;
}

body.light-theme .faq-toggle {
  background: #F3E8FF !important;
}

body.light-theme .faq-toggle-icon::before,
body.light-theme .faq-toggle-icon::after {
  background: #7F63F6 !important;
}

body.light-theme .faq-answer-content {
  color: #374151 !important;
}

@media (prefers-reduced-motion: reduce) {
  .individual-proof-section {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .individual-credibility {
    margin-top: 3.5rem;
  }

  .individual-proof-section {
    grid-template-columns: 1fr;
  }

  .individual-org-grid,
  .individual-outcome-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   TRAINING MOBILE EXPERIENCE UPGRADE
   ========================================= */

@media (max-width: 768px) {
  .training-hero-title {
    font-size: clamp(2.15rem, 10vw, 3rem) !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
    animation-duration: 4s;
  }

  .training-hero-eyebrow {
    margin-bottom: 1rem !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.1em !important;
  }

  .training-hero-eyebrow::before {
    width: 18px !important;
  }

  .hero-image-wrapper {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-computer-img {
    max-height: 310px !important;
    object-fit: contain !important;
  }

  .decor-card,
  #pricing-individual > div,
  #pricing-team > .max-w-6xl,
  #pricing-section .mb-12.p-8.rounded-2xl {
    border-radius: 18px !important;
  }

  #pricing-section .mb-12.p-8.rounded-2xl,
  #pricing-individual > div,
  #pricing-team > .max-w-6xl {
    padding: 1.25rem !important;
  }

  #pricing-individual {
    gap: 1.25rem !important;
  }

  .individual-proof-shell {
    border-radius: 18px !important;
    padding: 1.2rem !important;
  }

  .individual-proof-intro {
    margin-bottom: 1.75rem !important;
  }

  .individual-proof-section {
    padding: 1rem !important;
    border-radius: 16px !important;
  }

  .individual-evidence-item,
  .individual-academic-grid div,
  .individual-outcome-card,
  .individual-stat-panel {
    border-radius: 14px !important;
  }

  #pricing-team .grid,
  #pricing-individual.grid {
    grid-template-columns: 1fr !important;
  }

  .review-card {
    width: min(84vw, 310px) !important;
    padding: 1.25rem !important;
  }

  .carousel-track {
    gap: 1rem !important;
  }

  .carousel-nav {
    width: 38px !important;
    height: 38px !important;
  }

  .carousel-nav.prev {
    left: 4px !important;
  }

  .carousel-nav.next {
    right: 4px !important;
  }

  button[class*="bg-gradient-to-r"],
  a[class*="bg-gradient-to-r"] {
    min-height: 44px !important;
    padding: 0.72rem 1rem !important;
    border-radius: 12px !important;
    font-size: 0.86rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.06em !important;
  }
}

@media (max-width: 480px) {
  .training-hero-title {
    font-size: clamp(2rem, 10vw, 2.55rem) !important;
  }

  .hero-image-wrapper {
    width: min(100%, 300px) !important;
  }
}
