:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --accent: #f59e0b;
  --bg-light: #fdfbf7;
  --bg-cream: #f5f1e8;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8a8a8a;
  --white: #ffffff;
  --border: #e0ddd3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(to bottom, rgba(91, 33, 182, 0.7) 0%, rgba(91, 33, 182, 0.5) 40%, rgba(91, 33, 182, 0.3) 70%, rgba(91, 33, 182, 0.15) 100%),
    url('https://belsoerotrening.hu/wp-content/uploads/2024/12/34752.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  padding: 60px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: floatGlow 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 50px 0;
  text-align: left;
}

.hero-benefit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-benefit:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-benefit-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.hero-benefit h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.hero-benefit p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  border: 2px solid var(--accent);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
  background: #f59e0b;
  filter: brightness(1.1);
}

.trust-badge {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.trust-badge strong { color: var(--accent); }

/* Countdown Timer */
.countdown-container {
  margin: 40px 0 20px;
  position: relative;
  z-index: 1;
}

.countdown-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 15px 20px;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.countdown-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  display: block;
  margin-bottom: 5px;
  font-family: 'Crimson Pro', serif;
}

.countdown-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.countdown-separator {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px;
}

/* Final CTA Countdown variation */
.countdown-final .countdown-item {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.countdown-final .countdown-item:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section */
.section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* How it works */
.how-it-works { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(45, 95, 63, 0.3);
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.step p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* What you get */
.what-you-get {
  background:
    linear-gradient(to bottom, rgba(91, 33, 182, 0.75) 0%, rgba(91, 33, 182, 0.55) 40%, rgba(91, 33, 182, 0.4) 70%, rgba(91, 33, 182, 0.3) 100%),
    url('https://belsoerotrening.hu/wp-content/uploads/2024/11/301204.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
}

.what-you-get .section-header h2,
.what-you-get .section-header p {
  color: var(--white);
}

.what-you-get .content-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
}

.what-you-get .content-card h3 {
  color: var(--text-dark);
}

.what-you-get .content-card p,
.what-you-get .content-card li {
  color: var(--text-medium);
}

/* Why Section */
.why-section {
  background: linear-gradient(to bottom, var(--bg-light) 0%, var(--white) 50%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-content {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-problem,
.why-solution {
  background: var(--white);
  padding: 45px;
  border-radius: 24px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-problem::before,
.why-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  transition: all 0.4s ease;
}

.why-problem::before {
  background: linear-gradient(to bottom, #e5e7eb 0%, #d1d5db 100%);
}

.why-solution::before {
  background: linear-gradient(to bottom, var(--primary-light) 0%, var(--primary) 100%);
}

.why-problem::after,
.why-solution::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.why-problem::after {
  background: radial-gradient(circle, rgba(229, 231, 235, 0.3) 0%, transparent 70%);
}

.why-solution::after {
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
}

.why-problem:hover,
.why-solution:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.08);
  border-color: var(--primary-light);
}

.why-problem:hover::after,
.why-solution:hover::after {
  opacity: 1;
  right: -50px;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--bg-cream);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.why-problem:hover .why-icon,
.why-solution:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-problem h3,
.why-solution h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.why-problem p,
.why-solution p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 15px;
}

.why-problem p strong,
.why-solution p strong {
  color: var(--text-dark);
  font-weight: 600;
}

.why-arrow {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.why-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.why-arrow svg {
  position: relative;
  z-index: 1;
  color: var(--primary);
  filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.2));
}

.why-benefits {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-light), var(--primary));
  opacity: 0;
  transition: all 0.3s ease;
}

.why-benefit-item:hover {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  border-color: var(--primary-light);
  transform: translateX(8px);
}

.why-benefit-item:hover::before { opacity: 1; }

.check-icon {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(167, 139, 250, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-benefit-item:hover .check-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.why-benefit-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.why-benefit-item div {
  line-height: 1.7;
  color: var(--text-medium);
}

.why-quote {
  max-width: 100%;
  margin: 60px auto;
  padding: 45px 50px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  border-radius: 24px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.why-quote::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 6rem;
  font-family: 'Crimson Pro', serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}

.why-quote p {
  font-size: 1.25rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--text-dark);
}

.why-quote strong {
  font-weight: 700;
  color: var(--primary);
}

.why-cta {
  text-align: center;
  margin-top: 50px;
}

.why-cta p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 500;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.content-card {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-light);
}

.content-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), #e0b88c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.content-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.content-card p {
  color: var(--text-medium);
  margin-bottom: 15px;
  line-height: 1.7;
}

.content-card ul {
  list-style: none;
  margin-top: 15px;
}

.content-card li {
  padding: 8px 0;
  color: var(--text-medium);
  position: relative;
  padding-left: 25px;
}

.content-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Training Levels Detailed */
.training-levels { background: var(--white); }

/* Slider wrapper - full width */
.levels-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Gradient fades on sides */
.levels-slider-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}

.levels-slider-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, var(--white) 20%, transparent 100%);
}

.levels-slider-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, var(--white) 20%, transparent 100%);
}

/* Slider track */
.levels-slider {
  display: flex;
  gap: 40px;
  padding: 20px 0;
}

.levels-slider .level-card {
  flex: 0 0 1000px;
  max-width: 1000px;
  opacity: 1;
  transform: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Slider Navigation Arrows */
.levels-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.levels-slider-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.3);
}

.levels-slider-nav:hover svg {
  stroke: var(--white);
}

.levels-slider-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.levels-slider-nav-prev {
  left: 40px;
}

.levels-slider-nav-next {
  right: 40px;
}

/* Mobile: stack vertically, no slider */
@media (max-width: 1024px) {
  .levels-slider-wrapper {
    overflow: visible;
    padding: 0;
  }

  .levels-slider-fade {
    display: none;
  }

  .levels-slider-nav {
    display: none;
  }

  .levels-slider .level-card.clone {
    display: none;
  }

  .levels-slider {
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    cursor: default;
  }

  .levels-slider .level-card {
    flex: 1 1 auto;
    max-width: 100%;
  }
}

.level-card {
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
}

.level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.2);
  border-color: var(--primary);
}

.level-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 35px 40px;
  position: relative;
  overflow: hidden;
}

.level-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.level-header::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.level-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.level-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.level-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 400;
}

.level-content { padding: 40px; }

.level-content h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

.level-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.level-content li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 30px;
  line-height: 1.7;
  color: var(--text-medium);
}

.level-content li:last-child { border-bottom: none; }

.level-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
}

.level-content li strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.level-outcome {
  background: var(--bg-cream);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  margin-top: 20px;
}

.level-outcome strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Variations for each level */
.level-basic .level-header {
  background:
    linear-gradient(to right, rgba(91, 33, 182, 0.75) 0%, rgba(91, 33, 182, 0.5) 50%, rgba(91, 33, 182, 0.3) 100%),
    url('https://belsoerotrening.hu/wp-content/uploads/2024/12/30370160.jpg') center/cover no-repeat;
}

.level-basic .level-header::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.level-advanced .level-header {
  background:
    linear-gradient(to right, rgba(91, 33, 182, 0.75) 0%, rgba(91, 33, 182, 0.5) 50%, rgba(91, 33, 182, 0.3) 100%),
    url('https://belsoerotrening.hu/wp-content/uploads/2024/12/38336-dark.jpg') center/cover no-repeat;
}

.level-advanced .level-header::before {
  background-image:
    radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.level-master .level-header {
  background:
    linear-gradient(to right, rgba(91, 33, 182, 0.75) 0%, rgba(91, 33, 182, 0.5) 50%, rgba(91, 33, 182, 0.3) 100%),
    url('https://belsoerotrening.hu/wp-content/uploads/2024/12/40989-1.jpg') center/cover no-repeat;
}

.level-master .level-header::before {
  background-image:
    radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
}

.level-master .level-header::after {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
  width: 250px;
  height: 250px;
}

.training-note {
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 35px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
  border-radius: 16px;
  border: 2px solid var(--primary-light);
}

.training-note h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.training-note p {
  color: var(--text-medium);
  line-height: 2;
  font-size: 1.05rem;
}

.training-note strong {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Instructors */
.instructors {
  background: var(--bg-cream);
}

.instructors-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.instructor-row {
  display: grid;
  grid-template-columns: 1fr 500px;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.instructor-row:first-child {
  border-radius: 24px 24px 0 0;
  border-bottom: none;
}

.instructor-row:nth-child(2) {
  border-radius: 0 0 24px 24px;
}

.instructor-row:hover {
  z-index: 2;
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.15);
}

.instructor-text {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.instructor-text::before {
  content: '';
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-light), var(--primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.instructor-row:not(.reverse) .instructor-text::before {
  left: 0;
}

.instructor-row.reverse .instructor-text::before {
  right: 0;
}

.instructor-row:hover .instructor-text::before {
  opacity: 1;
}

.instructor-text h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.instructor-role {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.instructor-bio {
  color: var(--text-medium);
  line-height: 1.85;
  font-size: 1.05rem;
}

.instructor-photo {
  width: 500px;
  height: 500px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.instructor-row:hover .instructor-photo img {
  transform: scale(1.05);
}

.instructor-photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.instructor-row:hover .instructor-photo::after {
  opacity: 1;
}

/* Reverse layout for Sylvia */
.instructor-row.reverse {
  grid-template-columns: 500px 1fr;
}

.instructor-row.reverse .instructor-photo {
  order: -1;
}

/* Connecting element between rows */
.instructor-row:first-child::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), var(--primary), var(--primary-light), transparent);
  z-index: 3;
}

/* Shared section */
.instructors-shared {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 40px 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.instructors-shared::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.shared-connector {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.shared-connector::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.9;
}

.instructors-shared p {
  font-size: 1.25rem;
  line-height: 1.85;
  color: var(--white);
  position: relative;
  z-index: 1;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .instructor-row {
    grid-template-columns: 1fr;
  }

  .instructor-row.reverse {
    grid-template-columns: 1fr;
  }

  .instructor-row:first-child {
    border-radius: 24px 24px 0 0;
    border-bottom: none;
  }

  .instructor-row:nth-child(2) {
    border-radius: 0 0 24px 24px;
  }

  .instructor-photo {
    width: 100%;
    height: 350px;
    order: -1;
  }

  .instructor-row.reverse .instructor-photo {
    order: -1;
  }

  .instructor-text {
    padding: 30px 25px;
  }

  .instructor-text h3 {
    font-size: 1.5rem;
  }

  .instructor-text::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
  }

  .instructor-row.reverse .instructor-text::before {
    right: auto;
    left: 0;
  }

  .instructors-shared {
    padding: 35px 25px;
    margin-top: 30px;
  }

  .instructors-shared p {
    font-size: 1.1rem;
  }

  .instructor-row:first-child::after {
    display: none;
  }
}

/* Pricing */
.pricing { background: linear-gradient(to bottom, var(--bg-light) 0%, var(--white) 50%, var(--bg-light) 100%); }

.trial-offer {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.trial-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.trial-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.trial-offer h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.trial-offer p {
  font-size: 1.1rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
  border-color: var(--primary);
}

.pricing-card.featured {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-note { color: var(--white); }

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.price-original {
  font-size: 1.3rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.pricing-card.featured .price-original { color: rgba(255, 255, 255, 0.6); }

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 20px;
  font-style: italic;
}

.trial-info {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.pricing-card.featured .trial-info { color: rgba(255, 255, 255, 0.8); }

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 30px;
}

.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255, 255, 255, 0.2); }

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.pricing-card.featured .pricing-features li::before { color: var(--accent); }

.cta-secondary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.cta-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
}

.pricing-card.featured .cta-secondary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.pricing-card.featured .cta-secondary:hover {
  background: #f59e0b;
  filter: brightness(1.1);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.pricing-note {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 30px;
  background: var(--bg-cream);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.pricing-note h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.pricing-note ul { list-style: none; }

.pricing-note li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.pricing-note li::before {
  content: '🎁';
  position: absolute;
  left: 0;
}

/* Guarantee */
.guarantee {
  background: linear-gradient(135deg, var(--accent), #e0b88c);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.guarantee-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.guarantee-badge {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.guarantee h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.guarantee p {
  font-size: 1.15rem;
  color: var(--primary-dark);
  line-height: 1.8;
}

/* Testimonials */
.testimonials {
  background: var(--white);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.testimonial {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-light) 60%, rgba(167, 139, 250, 0.1) 100%);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.12);
}


/* Simple text quotes around testimonial text */
.testimonial-text::before {
  content: '„';
}

.testimonial-text::after {
  content: '"';
}

.testimonial-text {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.testimonial-info h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ */
.faq { background: var(--bg-cream); }

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--primary); }

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question h3 {
  color: var(--primary);
  font-size: 1.2rem;
  flex: 1;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: var(--text-medium);
  line-height: 1.8;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.4) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.3) 0%, transparent 30%);
  animation: lightPlay 20s ease-in-out infinite;
}

.final-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 20%),
    radial-gradient(circle at 30% 80%, rgba(167, 139, 250, 0.35) 0%, transparent 20%);
  animation: lightPlay2 15s ease-in-out infinite reverse;
}

@keyframes lightPlay {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10%, 5%) rotate(5deg);
  }
  50% {
    transform: translate(5%, 10%) rotate(-3deg);
  }
  75% {
    transform: translate(-5%, 5%) rotate(3deg);
  }
}

@keyframes lightPlay2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-8%, 8%) rotate(-5deg);
  }
  66% {
    transform: translate(8%, -5%) rotate(5deg);
  }
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.footer p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .section { padding: 60px 0px; }
  .hero-benefits { grid-template-columns: 1fr; }
  .pricing-cards, .content-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .faq-list { flex-direction: column; }
  .faq-column { width: 100%; }

  .level-header { padding: 25px 20px; }
  .level-content { padding: 25px 20px; }
  .level-header h3 { font-size: 1.5rem; }

  .why-problem, .why-solution { padding: 25px 20px; }
  .why-problem h3, .why-solution h3 { font-size: 1.4rem; }

  .why-quote { padding: 30px 20px; }
  .why-quote p { font-size: 1.1rem; }

  .why-benefit-item { padding: 15px; }

  .countdown-timer { flex-wrap: nowrap; gap: 5px; }
  .countdown-item { min-width: 55px; padding: 10px 8px; }
  .countdown-value { font-size: 1.5rem; }
  .countdown-text { font-size: 0.65rem; }
  .countdown-separator { font-size: 1.2rem; margin: 0 1px; }
  .countdown-label { font-size: 0.9rem; }
}

/* Animations helpers */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
