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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
}

/* Smooth scroll reveal animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER + MENU */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  color: #fff;
  padding: 40px 20px 60px;
  text-align: center;
  position: relative;
  overflow: visible;
  z-index: 100;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 208, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.menu {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00d0ff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu a:hover {
  color: #00d0ff;
  transform: translateY(-2px);
}

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

.menu a.cta-menu {
  background: #00d0ff;
  color: #0d0d0d;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s;
}

.menu a.cta-menu:hover {
  background: #00b8e6;
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 208, 255, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff 0%, #00d0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 500;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.6;
}

.hero-tagline {
  font-size: 1.1rem;
  opacity: 0.85;
  font-weight: 400;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  font-style: italic;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 400;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* INTRO */
.intro {
  max-width: 1000px;
  margin: 80px auto 60px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro p {
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}

.intro p:last-of-type {
  margin-top: 20px;
  margin-bottom: 0;
}

.intro-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.intro-benefits li {
  padding: 12px 0;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 30px;
  position: relative;
  display: block;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: #00d0ff;
  font-weight: 700;
  font-size: 1.2rem;
}

.intro:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 70px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.05), 0 0 40px rgba(0, 208, 255, 0.1);
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00d0ff, #00b8e6);
}

.intro h2 {
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.3;
}

.intro-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #00d0ff;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
}

.intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

/* SECTIONS COMMON */
.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d0d0d;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FORMATIONS SECTION */
.formations {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.formations-categories {
  margin-bottom: 60px;
}

.formations-categories:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 3px solid #00d0ff;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #00d0ff;
}

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

.formation-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.formation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00d0ff, #00b8e6, #00d0ff);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s infinite;
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.formation-card.featured {
  border-color: #00d0ff;
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 208, 255, 0.05) 100%);
}

.formation-badge {
  display: inline-block;
  background: #e9ecef;
  color: #495057;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.formation-badge.featured-badge {
  background: #00d0ff;
  color: #0d0d0d;
}

.formation-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 20px;
  text-align: center;
}

.formation-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00d0ff;
  margin: 20px 0 25px;
  text-align: center;
  line-height: 1;
}

.price-from {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
}

.price-amount {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #00d0ff;
}

.formation-note {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin: -15px 0 20px;
  font-style: italic;
}

.consulting-note {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin: -10px 0 20px;
  font-style: italic;
}

.guarantee-badge {
  background: linear-gradient(135deg, rgba(0, 208, 255, 0.1) 0%, rgba(0, 184, 230, 0.1) 100%);
  border: 2px solid rgba(0, 208, 255, 0.3);
  border-radius: 15px;
  padding: 20px 30px;
  margin: 30px auto 50px;
  text-align: center;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.guarantee-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.5;
}

.guarantee-text strong {
  color: #0d0d0d;
  font-weight: 700;
}

.formation-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.formation-list li {
  padding: 10px 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}


.btn-formation {
  display: block;
  text-align: center;
  background: #00d0ff;
  color: #0d0d0d;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-formation:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 208, 255, 0.3);
}

/* TRANSFORMATION SECTION */
.transformation {
  padding: 80px 0;
  background: #fff;
}

.transformation-content {
  max-width: 900px;
  margin: 0 auto;
}

.transformation-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 25px;
}

.transformation-text > p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

.transformation-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border-left: 4px solid #00d0ff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.benefit-item:hover {
  transform: translateX(5px) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 208, 255, 0.15);
  border-left-width: 6px;
}

.benefit-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CLUB SECTION */
.club {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
}

.club .section-content h2,
.club .section-subtitle {
  color: #fff;
}

.club-waitlist-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 30px;
  background: rgba(255, 193, 7, 0.2);
  border: 2px solid rgba(255, 193, 7, 0.5);
  border-radius: 25px;
  margin: 30px auto 40px;
  max-width: 600px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
  }
}

.waitlist-icon {
  font-size: 1.5rem;
}

.waitlist-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.club-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.club-benefit {
  text-align: center;
  padding: 30px 20px;
}

.club-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.club-benefit h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.club-benefit p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.club-pricing {
  display: flex;
  justify-content: center;
  margin: 50px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 208, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 208, 255, 0.2);
}

.pricing-card.featured-pricing {
  border-color: #00d0ff;
  background: rgba(0, 208, 255, 0.1);
  box-shadow: 0 5px 25px rgba(0, 208, 255, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #00d0ff;
  color: #0d0d0d;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #00d0ff;
  line-height: 1;
}

.period {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-savings {
  font-size: 0.95rem;
  color: #ffc107;
  font-weight: 600;
  margin-top: 10px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.club-cta {
  text-align: center;
  padding: 50px 30px;
  background: rgba(0, 208, 255, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(0, 208, 255, 0.3);
  margin-top: 50px;
}

.waitlist-notice {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffc107;
  font-weight: 600;
  padding: 15px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 10px;
  border-left: 4px solid #ffc107;
}

.club-cta p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
}

.btn-club {
  display: inline-block;
  background: #00d0ff;
  color: #0d0d0d;
  padding: 18px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-club:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 208, 255, 0.4);
}

/* CONSULTING SECTION */
.consulting {
  padding: 80px 0;
  background: #fff;
}

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

.consulting-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.consulting-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 2px rgba(0, 208, 255, 0.2), 0 0 40px rgba(0, 208, 255, 0.15);
  background: rgba(255, 255, 255, 1);
}

.consulting-card.featured {
  border-color: #00d0ff;
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 208, 255, 0.05) 100%);
}

.consulting-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #00d0ff;
  color: #0d0d0d;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.consulting-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 15px;
}

.consulting-duration {
  font-size: 1.1rem;
  color: #00d0ff;
  font-weight: 600;
  margin-bottom: 25px;
}

.consulting-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.consulting-card ul li {
  padding: 10px 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.consulting-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d0ff;
  font-weight: 700;
}

.btn-consulting {
  display: block;
  text-align: center;
  background: #00d0ff;
  color: #0d0d0d;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-consulting:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 208, 255, 0.3);
}

/* CONTACT SECTION */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
}

.contact .section-content h2,
.contact .section-subtitle {
  color: #fff;
}

.contact-content {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-link {
  color: #00d0ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #00b8e6;
  text-decoration: underline;
}

.contact-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-contact {
  display: inline-block;
  background: #00d0ff;
  color: #0d0d0d;
  padding: 18px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 208, 255, 0.3);
}

.btn-contact:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 208, 255, 0.4);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d0ff;
  box-shadow: 0 0 0 3px rgba(0, 208, 255, 0.1);
}

.btn-submit {
  width: 100%;
  background: #00d0ff;
  color: #0d0d0d;
  padding: 18px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-submit:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 208, 255, 0.3);
}

/* NEWSLETTER SECTION */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: #222;
}

.newsletter .section-content h2,
.newsletter .section-subtitle {
  color: #0d0d0d;
}

.newsletter-content {
  max-width: 700px;
  margin: 50px auto 0;
  text-align: center;
}

.newsletter-benefits {
  background: rgba(0, 208, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 208, 255, 0.2);
}

.newsletter-benefits p {
  font-size: 1.1rem;
  margin: 15px 0;
  color: #444;
  text-align: left;
}

.telegram-cta {
  text-align: center;
  padding: 40px 30px;
  background: rgba(0, 208, 255, 0.05);
  border-radius: 20px;
  border: 2px solid rgba(0, 208, 255, 0.3);
  margin-top: 30px;
}

.telegram-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.telegram-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 15px;
}

.telegram-cta > p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.telegram-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  font-family: inherit;
  text-align: center;
  min-width: 280px;
  justify-content: center;
}

.btn-telegram.btn-primary {
  background: #00d0ff;
  color: #0d0d0d;
  box-shadow: 0 5px 15px rgba(0, 208, 255, 0.3);
}

.btn-telegram.btn-primary:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 208, 255, 0.4);
}

.btn-telegram.btn-secondary {
  background: transparent;
  color: #00d0ff;
  border: 2px solid #00d0ff;
  box-shadow: none;
}

.btn-telegram.btn-secondary:hover {
  background: rgba(0, 208, 255, 0.1);
  transform: translateY(-2px);
  border-color: #00b8e6;
  color: #00b8e6;
}

.btn-telegram:hover {
  background: #00b8e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 208, 255, 0.4);
}

.telegram-logo {
  font-size: 1.3rem;
}

.telegram-note {
  font-size: 0.95rem;
  color: #666;
  margin-top: 25px;
  font-style: italic;
}

/* ABOUT SECTION */
.about {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-content {
  background: #fff;
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00d0ff, #00b8e6);
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  gap: 25px;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #00d0ff;
  box-shadow: 0 10px 30px rgba(0, 208, 255, 0.3);
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 208, 255, 0.4);
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-intro {
  max-width: 600px;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.about-name {
  font-size: 2rem;
  font-weight: 700;
  color: #00d0ff;
  margin: 10px 0;
  letter-spacing: -0.01em;
}

.about-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.about-card {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: rgba(0, 208, 255, 0.3);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.about-story {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(0, 208, 255, 0.05) 0%, rgba(0, 184, 230, 0.05) 100%);
  border-radius: 15px;
  border-left: 4px solid #00d0ff;
}

.about-story p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.about-story strong {
  color: #0d0d0d;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
  padding: 60px 25px 30px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  text-align: center;
  margin-bottom: 50px;
}

.footer-main h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00d0ff;
  margin-bottom: 15px;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00d0ff;
  padding-left: 5px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-link:hover {
  color: #00d0ff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #00d0ff;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

footer p {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* BURGER MENU */
.burger {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
  flex-direction: column;
  padding: 5px;
  background: transparent;
  border: none;
  outline: none;
  pointer-events: auto;
}

.burger:focus-visible {
  outline: 2px solid #00d0ff;
  border-radius: 8px;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  transition: 0.3s;
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu {
  transition: 0.3s ease;
}

.menu.hidden {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .burger {
    display: flex !important;
  }

  .menu {
    display: none !important;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    padding: 80px 0 20px;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    overflow-y: auto;
  }

  .menu.active {
    display: block !important;
  }

  .menu ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .menu li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

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

  .menu a {
    display: block;
    padding: 10px;
    font-size: 1.1rem;
  }

  .menu a.cta-menu {
    margin: 10px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .intro {
    margin: 40px 15px 30px;
    padding: 30px 20px;
    z-index: 1;
  }

  .about {
    margin: 50px auto;
    padding: 0 15px;
  }

  .about-content {
    padding: 40px 25px;
  }

  .about-header {
    gap: 20px;
  }

  .about-photo {
    width: 180px;
    height: 180px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-name {
    font-size: 1.6rem;
  }

  .about-title {
    font-size: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }

  .about-story {
    padding: 30px 20px;
  }

  .about-story p {
    font-size: 1rem;
  }

  .about-header {
    gap: 20px;
  }

  .about-photo {
    width: 180px;
    height: 180px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-name {
    font-size: 1.6rem;
  }

  .about-title {
    font-size: 1.1rem;
  }

  .section-content h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .formations {
    padding: 50px 0;
  }

  .formations-categories {
    margin-bottom: 50px;
  }

  .category-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .formations-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .formation-card {
    padding: 30px 25px;
  }

  .transformation {
    padding: 50px 0;
  }

  .transformation-text h3 {
    font-size: 1.6rem;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }

  .footer-legal span {
    display: none;
  }

  .contact-cta {
    margin-top: 30px;
    padding-top: 30px;
  }

  .btn-contact {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .club {
    padding: 50px 0;
  }

  .club-waitlist-badge {
    flex-direction: column;
    padding: 15px 20px;
    margin: 20px 15px 30px;
  }

  .waitlist-text {
    font-size: 0.9rem;
    text-align: center;
  }

  .club-benefits {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .club-pricing {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-card {
    padding: 30px 25px;
  }

  .price {
    font-size: 2.5rem;
  }

  .club-cta {
    padding: 40px 20px;
  }

  .waitlist-notice {
    font-size: 1rem;
    padding: 12px;
  }

  .club-cta p {
    font-size: 1.1rem;
  }

  .btn-club {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
  }

  .guarantee-badge {
    flex-direction: column;
    padding: 15px 20px;
    margin: 20px 15px 30px;
    gap: 10px;
  }

  .guarantee-icon {
    font-size: 1.5rem;
  }

  .guarantee-text {
    font-size: 0.95rem;
  }

  .formation-note,
  .consulting-note {
    font-size: 0.85rem;
    margin: -10px 0 15px;
  }

  .price-from {
    font-size: 0.8rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .consulting {
    padding: 50px 0;
  }

  .consulting-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact {
    padding: 50px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter {
    padding: 50px 0;
  }

  .telegram-cta {
    padding: 30px 20px;
  }

  .telegram-icon {
    font-size: 3rem;
  }

  .telegram-cta h3 {
    font-size: 1.5rem;
  }

  .telegram-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-telegram {
    padding: 15px 30px;
    font-size: 1rem;
    min-width: 100%;
  }

  .intro-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Orientation paysage mobile */
@media (max-width: 1024px) and (orientation: landscape) {
  .intro {
    max-width: 95%;
    padding: 40px 30px;
    margin: 60px auto 40px;
  }

  .intro h2 {
    font-size: 1.8rem;
  }

  .intro p {
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
  }

  .intro-benefits {
    flex-direction: column;
    gap: 12px;
  }

  .intro-benefits li {
    font-size: 0.95rem;
    padding-left: 25px;
    width: 100%;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .intro {
    max-width: 100%;
    padding: 30px 20px;
    margin: 40px 15px 30px;
    box-sizing: border-box;
  }

  .intro h2 {
    font-size: 1.6rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .intro p {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  .intro-benefits {
    flex-direction: column;
    gap: 10px;
  }

  .intro-benefits li {
    font-size: 0.9rem;
    padding: 8px 0 8px 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    display: block;
  }
}

/* Pour les très petits écrans en paysage */
@media (max-width: 667px) and (orientation: landscape) {
  .intro {
    padding: 25px 15px;
    margin: 30px 10px 20px;
  }

  .intro h2 {
    font-size: 1.4rem;
  }

  .intro p {
    font-size: 0.85rem;
  }

  .intro-benefits {
    flex-direction: column;
  }

  .intro-benefits li {
    width: 100%;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 15px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .intro h2 {
    font-size: 1.8rem;
  }

  .intro-subtitle {
    font-size: 1.2rem;
  }

  .intro {
    margin: 30px 15px 30px;
    padding: 30px 20px;
  }

  .intro h2 {
    font-size: 1.6rem;
  }

  .about {
    margin: 40px auto;
  }

  .about-content {
    padding: 30px 20px;
  }

  .about-header {
    gap: 15px;
  }

  .about-photo {
    width: 150px;
    height: 150px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-name {
    font-size: 1.4rem;
  }

  .about-title {
    font-size: 1rem;
  }

  .about-card {
    padding: 25px 15px;
  }

  .about-icon {
    font-size: 2.5rem;
  }

  .about-card h3 {
    font-size: 1.3rem;
  }

  .about-story {
    padding: 25px 15px;
  }

  .about-story p {
    font-size: 0.95rem;
  }

  .section-content h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .formations-categories {
    margin-bottom: 40px;
  }

  .category-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
  }

  .formation-card {
    padding: 25px 20px;
  }

  .formation-card h3 {
    font-size: 1.5rem;
  }

  .club-waitlist-badge {
    padding: 12px 15px;
    margin: 15px 10px 25px;
  }

  .waitlist-text {
    font-size: 0.85rem;
  }

  .club-pricing {
    gap: 20px;
  }

  .pricing-card {
    padding: 25px 20px;
  }

  .price {
    font-size: 2rem;
  }

  .period {
    font-size: 1rem;
  }

  .club-cta {
    padding: 30px 15px;
  }

  .waitlist-notice {
    font-size: 0.95rem;
    padding: 10px;
  }

  .club-cta p {
    font-size: 1rem;
  }

  .btn-club {
    padding: 15px 25px;
    font-size: 0.95rem;
    width: 100%;
  }

  .transformation-text h3 {
    font-size: 1.4rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .telegram-cta {
    padding: 25px 15px;
  }

  .telegram-icon {
    font-size: 2.5rem;
  }

  .telegram-cta h3 {
    font-size: 1.3rem;
  }

  .telegram-cta > p {
    font-size: 1rem;
  }

  .telegram-actions {
    gap: 10px;
  }

  .btn-telegram {
    padding: 15px 25px;
    font-size: 0.95rem;
    min-width: 100%;
  }

  .intro-benefits {
    grid-template-columns: 1fr;
  }

  .menu ul {
    gap: 10px;
  }

  .menu a {
    font-size: 0.9rem;
  }
}
