/* ===========================
   REIKI TRAINING — DESIGN SYSTEM
   Premium Spiritual Brand
   =========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --purple-deep: #4A1A6B;
  --purple-medium: #6B3FA0;
  --purple-light: #8B5FBF;
  --purple-soft: #B48AD8;
  --lavender: #E8D5F5;
  --lavender-light: #F3EAFA;
  --gold: #D4A843;
  --gold-light: #F0D68A;
  --gold-glow: rgba(212, 168, 67, 0.3);
  --beige: #FDF6EC;
  --beige-warm: #F9EDD8;
  --white: #FFFFFF;
  --white-soft: #FAFAFA;
  --dark: #1A0A2E;
  --dark-medium: #2D1B4E;
  --text-primary: #2D1B4E;
  --text-secondary: #5A4478;
  --text-light: #8B7BA0;
  --text-on-dark: #F0E6FA;
  --text-on-dark-secondary: #C8B4DE;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --container-padding: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(74, 26, 107, 0.06);
  --shadow-md: 0 4px 24px rgba(74, 26, 107, 0.1);
  --shadow-lg: 0 8px 40px rgba(74, 26, 107, 0.14);
  --shadow-xl: 0 16px 64px rgba(74, 26, 107, 0.18);
  --shadow-glow-purple: 0 0 40px rgba(139, 95, 191, 0.25);
  --shadow-glow-gold: 0 0 40px rgba(212, 168, 67, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--text-on-dark-secondary);
}

.section--lavender {
  background: linear-gradient(180deg, var(--lavender-light) 0%, var(--white) 100%);
}

.section--beige {
  background: linear-gradient(180deg, var(--beige) 0%, var(--white) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header .section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.1), rgba(212, 168, 67, 0.1));
  border: 1px solid rgba(139, 95, 191, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-medium));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74, 26, 107, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 26, 107, 0.4);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-medium), var(--purple-light));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn--primary:hover::after {
  opacity: 1;
}

.btn--primary span {
  position: relative;
  z-index: 1;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #E8BD5A);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--purple-light);
  color: var(--purple-deep);
}

.btn--outline:hover {
  background: var(--purple-deep);
  color: var(--white);
  border-color: var(--purple-deep);
}

.btn--white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* Pulse animation for CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(74, 26, 107, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(74, 26, 107, 0.5), 0 0 60px rgba(139, 95, 191, 0.2); }
}

.btn--pulse {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ============================
   1. HEADER / NAVIGATION
   ============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-base);
}

.header.scrolled .logo {
  color: var(--purple-deep);
}

.logo svg {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-base);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav a:hover::after {
  width: 100%;
}

.header.scrolled .nav a {
  color: var(--text-secondary);
}

.header.scrolled .nav a:hover {
  color: var(--purple-deep);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

.header.scrolled .mobile-menu-btn span {
  background: var(--purple-deep);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 46, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  transition: color var(--transition-base);
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================
   2. HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--purple-deep) 40%, var(--dark-medium) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Floating lotus petals */
.hero-bg .lotus-float {
  position: absolute;
  opacity: 0.06;
  animation: floatLotus 20s ease-in-out infinite;
}

.hero-bg .lotus-float:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 200px;
  animation-delay: 0s;
}

.hero-bg .lotus-float:nth-child(2) {
  top: 60%;
  right: 5%;
  width: 160px;
  animation-delay: -7s;
}

.hero-bg .lotus-float:nth-child(3) {
  bottom: 10%;
  left: 30%;
  width: 120px;
  animation-delay: -14s;
}

@keyframes floatLotus {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-25px) rotate(2deg); }
}

/* Radial glow */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.hero-glow--1 {
  top: -200px;
  right: -100px;
  background: var(--purple-medium);
}

.hero-glow--2 {
  bottom: -200px;
  left: -100px;
  background: var(--gold);
  opacity: 0.15;
}

/* Animated lotus center */
.hero-lotus-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  opacity: 0.08;
  animation: rotateLotus 60s linear infinite;
}

@keyframes rotateLotus {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-on-dark-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-on-dark-secondary);
  margin-top: 4px;
}

/* Hero wave separator */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================
   3. TRUST / BENEFITS SECTION
   ============================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(139, 95, 191, 0.08);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 95, 191, 0.15);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--lavender-light), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-medium));
  box-shadow: var(--shadow-glow-purple);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--purple-medium);
  transition: color var(--transition-base);
}

.benefit-card:hover .benefit-icon svg {
  color: var(--white);
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.95rem;
}

/* ============================
   4. COURSE TYPES SECTION
   ============================ */
.course-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.course-type-card {
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.course-type-card--live {
  background: linear-gradient(135deg, var(--dark) 0%, var(--purple-deep) 100%);
  color: var(--text-on-dark);
}

.course-type-card--video {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-warm) 100%);
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.course-type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.course-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.course-type-card--live .course-type-badge {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
}

.course-type-card--video .course-type-badge {
  background: rgba(74, 26, 107, 0.1);
  color: var(--purple-deep);
}

.course-type-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.course-type-card--live h3 { color: var(--white); }
.course-type-card--video h3 { color: var(--text-primary); }

.course-type-card--live p { color: var(--text-on-dark-secondary); }

.course-type-features {
  margin: 24px 0 32px;
}

.course-type-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.course-type-card--video .course-type-features li {
  border-bottom-color: rgba(74, 26, 107, 0.06);
}

.course-type-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.course-type-card--live .course-type-features li svg {
  color: var(--gold-light);
}

.course-type-card--video .course-type-features li svg {
  color: var(--purple-medium);
}

/* Limited spots badge */
.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: var(--radius-full);
  color: #FF6B6B;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.limited-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B6B;
  animation: blink 1.5s ease-in-out infinite;
}

/* Decorative lotus on cards */
.course-type-card .card-lotus {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  opacity: 0.05;
}

/* ============================
   5. COURSE DETAILS / LEVELS
   ============================ */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.level-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.level-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.level-card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--gold);
}

.level-card--featured::before {
  content: 'En Popüler';
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, var(--gold), #E8BD5A);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.level-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-medium));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.level-card h3 {
  margin-bottom: 8px;
}

.level-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.level-details {
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(139, 95, 191, 0.08);
  border-bottom: 1px solid rgba(139, 95, 191, 0.08);
}

.level-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.level-details li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--purple-light);
  margin-top: 2px;
}

.level-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.level-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================
   6. INSTRUCTOR SECTION
   ============================ */
.instructor-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

.instructor-image {
  width: 360px;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

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

.instructor-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(212, 168, 67, 0.3);
  pointer-events: none;
}

/* Decorative glow behind image */
.instructor-image-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  opacity: 0.15;
  border-radius: var(--radius-xl);
  filter: blur(40px);
  z-index: -1;
}

.instructor-info h2 {
  margin-bottom: 8px;
}

.instructor-title {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.instructor-info p {
  margin-bottom: 16px;
}

.instructor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--lavender-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-deep);
}

.credential-tag svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ============================
   7. TESTIMONIALS / SOCIAL PROOF
   ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(139, 95, 191, 0.08);
  transition: all var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -8px;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--lavender);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-author-detail {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Before/After transformation */
.transformation-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin: 48px auto 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(74, 26, 107, 0.04), rgba(212, 168, 67, 0.04));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 95, 191, 0.1);
}

.transform-side {
  text-align: center;
}

.transform-side .transform-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.transform-before .transform-label { color: var(--text-light); }
.transform-after .transform-label { color: var(--gold); }

.transform-side p {
  font-size: 0.95rem;
}

.transform-arrow {
  color: var(--purple-light);
}

/* ============================
   8. FAQ SECTION
   ============================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--purple-medium);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
  background: var(--purple-deep);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--purple-medium);
  transition: color var(--transition-base);
}

.faq-item.active .faq-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================
   9. PRICING SECTION
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--purple-deep) 100%);
  border: 2px solid var(--gold);
  color: var(--text-on-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-card--featured h3,
.pricing-card--featured h4 {
  color: var(--white);
}

.pricing-card--featured p {
  color: var(--text-on-dark-secondary);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #E8BD5A);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card .pricing-desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 28px;
}

.pricing-amount .price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-card--featured .price {
  color: var(--gold-light);
}

.pricing-amount .currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-amount .period {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

.pricing-card--featured .period {
  color: var(--text-on-dark-secondary);
}

.pricing-old-price {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-features {
  margin: 0 0 32px;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(139, 95, 191, 0.06);
}

.pricing-card--featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark-secondary);
}

.pricing-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--purple-light);
}

.pricing-card--featured .pricing-features li svg {
  color: var(--gold-light);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Countdown timer */
.countdown-wrapper {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), rgba(139, 95, 191, 0.08));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.countdown-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.countdown-unit {
  text-align: center;
}

.countdown-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple-deep);
  box-shadow: var(--shadow-sm);
}

.countdown-unit-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-separator {
  font-size: 1.8rem;
  color: var(--text-light);
  align-self: center;
  margin-bottom: 20px;
}

/* ============================
   10. FINAL CTA SECTION
   ============================ */
.final-cta {
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--purple-deep) 50%, var(--dark-medium) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--purple-medium);
  filter: blur(150px);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
}

.final-cta h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.final-cta p {
  color: var(--text-on-dark-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Lead capture form */
.lead-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form input {
  padding: 16px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-base);
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.lead-form .btn {
  width: 100%;
}

.lead-form-note {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 8px;
}

/* ============================
   11. FOOTER
   ============================ */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
  color: var(--text-on-dark-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.9rem;
  color: var(--text-on-dark-secondary);
  transition: color var(--transition-base);
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-socials a:hover {
  background: var(--purple-medium);
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  color: var(--text-on-dark-secondary);
}

/* ============================
   12. WHATSAPP FLOATING BUTTON
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* Tooltip */
.whatsapp-float::before {
  content: 'Bize yazın!';
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: var(--white);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ============================
   13. STICKY MOBILE CTA
   ============================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta .btn {
  width: 100%;
}

/* ============================
   SECTION DIVIDERS
   ============================ */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Lotus accent divider */
.lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}

.lotus-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}

.lotus-divider svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  opacity: 0.5;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: flex; }

  .course-types-grid { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }

  .instructor-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .instructor-image {
    width: 280px;
    height: 340px;
    margin: 0 auto;
  }

  .instructor-credentials { justify-content: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-stats { gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --container-padding: 20px;
  }

  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .transformation-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

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

  .countdown-timer { gap: 8px; }
  .countdown-number { width: 52px; height: 52px; font-size: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .sticky-cta { display: block; }
  .whatsapp-float { bottom: 80px; }

  .lead-form {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .benefit-card { padding: 32px 24px; }
  .course-type-card { padding: 32px 24px; }
  .level-card { padding: 32px 24px; }
  .pricing-card { padding: 32px 24px; }
}
