/* ============================================
   EnglishLeap KZ — style.css
   Dynamic Orange #F97316 + Dark Grey
   Font: Figtree | Diagonal sections
   Prefix: el-
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Figtree', sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: #F97316; text-decoration: none; transition: color .3s; }
a:hover { color: #ea580c; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Utility --- */
.el-container { width: 90%; max-width: 1200px; margin: 0 auto; }
.el-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 700;
  font-size: 1rem; cursor: pointer; border: none;
  transition: all .3s ease; text-align: center;
}
.el-btn-primary { background: #F97316; color: #fff; }
.el-btn-primary:hover { background: #ea580c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.35); }
.el-btn-outline { background: transparent; color: #F97316; border: 2px solid #F97316; }
.el-btn-outline:hover { background: #F97316; color: #fff; }
.el-btn-white { background: #fff; color: #F97316; }
.el-btn-white:hover { background: #f1f5f9; transform: translateY(-2px); }
.el-section { padding: 80px 0; position: relative; }
.el-section-grey { background: #f8fafc; }
.el-section-dark { background: #1f2937; color: #fff; }
.el-section-orange { background: #F97316; color: #fff; }
.el-section-title {
  font-size: 2.25rem; font-weight: 800; margin-bottom: 16px;
  line-height: 1.2;
}
.el-section-subtitle { font-size: 1.125rem; color: #6b7280; margin-bottom: 48px; max-width: 640px; }
.el-section-dark .el-section-subtitle { color: #d1d5db; }
.el-text-center { text-align: center; }
.el-mx-auto { margin-left: auto; margin-right: auto; }
.el-text-orange { color: #F97316; }
.el-text-white { color: #fff; }
.el-mb-16 { margin-bottom: 16px; }
.el-mb-24 { margin-bottom: 24px; }
.el-mb-32 { margin-bottom: 32px; }
.el-mb-48 { margin-bottom: 48px; }
.el-mt-24 { margin-top: 24px; }
.el-gap-24 { gap: 24px; }
.el-gap-32 { gap: 32px; }

/* --- Diagonal / Skew Sections --- */
.el-skew-top { position: relative; }
.el-skew-top::before {
  content: ''; position: absolute; top: -50px; left: 0; right: 0;
  height: 100px; background: inherit;
  transform: skewY(-3deg); z-index: 1;
}
.el-skew-bottom { position: relative; }
.el-skew-bottom::after {
  content: ''; position: absolute; bottom: -50px; left: 0; right: 0;
  height: 100px; background: inherit;
  transform: skewY(-3deg); z-index: 1;
}
.el-skew-content { position: relative; z-index: 2; }
.el-diagonal-bg {
  position: relative; overflow: hidden;
}
.el-diagonal-bg::before {
  content: ''; position: absolute; top: 0; left: -10%; right: -10%;
  height: 100%; background: rgba(249,115,22,.06);
  transform: skewY(-5deg); transform-origin: top left;
}

/* --- Header --- */
.el-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow .3s;
}
.el-header.el-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.el-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; min-height: 72px;
}
.el-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.5rem; color: #1f2937; }
.el-logo-icon { color: #F97316; font-size: 2rem; }
.el-logo span { color: #F97316; }
.el-nav { display: flex; align-items: center; gap: 32px; }
.el-nav a { color: #374151; font-weight: 600; font-size: .95rem; transition: color .3s; position: relative; }
.el-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: #F97316; transition: width .3s;
}
.el-nav a:hover, .el-nav a.el-active { color: #F97316; }
.el-nav a:hover::after, .el-nav a.el-active::after { width: 100%; }
.el-header-cta { display: none; }
.el-burger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.el-burger span {
  display: block; width: 24px; height: 2px; background: #1f2937;
  transition: all .3s; border-radius: 2px;
}
.el-burger.el-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.el-burger.el-open span:nth-child(2) { opacity: 0; }
.el-burger.el-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.el-mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999; padding: 32px 24px;
  flex-direction: column; gap: 24px; overflow-y: auto;
}
.el-mobile-menu.el-open { display: flex; }
.el-mobile-menu a {
  font-size: 1.25rem; font-weight: 600; color: #374151;
  padding: 12px 0; border-bottom: 1px solid #f3f4f6;
}
.el-mobile-menu a:hover { color: #F97316; }

/* --- Hero --- */
.el-hero {
  padding: 140px 0 100px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
}
.el-hero::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,.25) 0%, transparent 70%);
  border-radius: 50%;
}
.el-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: #fff; transform: skewY(-3deg); transform-origin: bottom right;
}
.el-hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  position: relative; z-index: 2;
}
.el-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.15); color: #F97316;
  padding: 8px 16px; border-radius: 50px; font-weight: 600;
  font-size: .875rem; margin-bottom: 24px;
}
.el-hero h1 {
  font-size: 2.5rem; font-weight: 900; line-height: 1.15;
  margin-bottom: 24px;
}
.el-hero h1 span { color: #F97316; display: inline; }
.el-hero-text { font-size: 1.125rem; color: #d1d5db; margin-bottom: 32px; max-width: 540px; }
.el-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.el-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.el-hero-stat { text-align: center; }
.el-hero-stat-num { font-size: 2rem; font-weight: 900; color: #F97316; }
.el-hero-stat-label { font-size: .875rem; color: #9ca3af; margin-top: 4px; }

/* --- Features Grid --- */
.el-features-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.el-feature-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid #e5e7eb; transition: all .3s;
  position: relative; overflow: hidden;
}
.el-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: #F97316; transform: scaleX(0);
  transition: transform .3s; transform-origin: left;
}
.el-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.el-feature-card:hover::before { transform: scaleX(1); }
.el-feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(249,115,22,.1); color: #F97316;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 20px;
}
.el-feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.el-feature-card p { color: #6b7280; font-size: .95rem; }

/* --- Courses Section --- */
.el-courses-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.el-course-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06); transition: all .3s;
  border: 1px solid #e5e7eb;
}
.el-course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.el-course-header {
  padding: 24px 28px; background: linear-gradient(135deg, #F97316, #fb923c);
  color: #fff; position: relative;
}
.el-course-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 30px; background: #fff; transform: skewY(-2deg);
  transform-origin: bottom left;
}
.el-course-level {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; opacity: .8; margin-bottom: 8px;
}
.el-course-header h3 { font-size: 1.5rem; font-weight: 800; }
.el-course-body { padding: 28px; }
.el-course-body p { color: #6b7280; margin-bottom: 20px; }
.el-course-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.el-course-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; color: #374151;
}
.el-course-feat iconify-icon { color: #F97316; font-size: 1.25rem; }

/* --- Pricing --- */
.el-pricing-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.el-price-card {
  background: #fff; border-radius: 20px; padding: 40px 32px;
  text-align: center; border: 2px solid #e5e7eb;
  transition: all .3s; position: relative;
}
.el-price-card:hover { border-color: #F97316; }
.el-price-card.el-popular {
  border-color: #F97316; transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(249,115,22,.15);
}
.el-price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #F97316; color: #fff; padding: 6px 20px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.el-price-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.el-price-desc { color: #6b7280; font-size: .9rem; margin-bottom: 24px; }
.el-price-amount {
  font-size: 2.75rem; font-weight: 900; color: #1f2937; margin-bottom: 4px;
}
.el-price-amount span { font-size: 1rem; font-weight: 600; color: #9ca3af; }
.el-price-period { color: #9ca3af; font-size: .875rem; margin-bottom: 32px; }
.el-price-features { text-align: left; margin-bottom: 32px; }
.el-price-feat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid #f3f4f6;
  font-size: .95rem; color: #374151;
}
.el-price-feat iconify-icon { color: #F97316; font-size: 1.125rem; }

/* --- Teachers --- */
.el-teachers-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.el-teacher-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06); transition: all .3s;
}
.el-teacher-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.el-teacher-img {
  height: 240px; background: linear-gradient(135deg, #1f2937, #374151);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.el-teacher-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px; background: #fff; transform: skewY(-2deg);
  transform-origin: bottom right;
}
.el-teacher-img iconify-icon { font-size: 5rem; color: rgba(249,115,22,.3); }
.el-teacher-info { padding: 24px 28px; }
.el-teacher-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.el-teacher-role { color: #F97316; font-weight: 600; font-size: .9rem; margin-bottom: 12px; }
.el-teacher-info p { color: #6b7280; font-size: .9rem; }
.el-teacher-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.el-teacher-badge {
  background: rgba(249,115,22,.1); color: #F97316; padding: 4px 12px;
  border-radius: 50px; font-size: .8rem; font-weight: 600;
}

/* --- Reviews --- */
.el-reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.el-review-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid #e5e7eb; position: relative;
}
.el-review-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 24px;
  font-size: 4rem; color: rgba(249,115,22,.1); font-family: Georgia, serif;
  line-height: 1;
}
.el-review-stars { color: #F97316; font-size: 1.25rem; margin-bottom: 16px; display: flex; gap: 4px; }
.el-review-text { color: #374151; font-size: .95rem; margin-bottom: 20px; font-style: italic; }
.el-review-author { display: flex; align-items: center; gap: 12px; }
.el-review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #fb923c);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.125rem;
}
.el-review-name { font-weight: 700; font-size: .95rem; }
.el-review-meta { color: #9ca3af; font-size: .8rem; margin-top: 2px; }

/* --- FAQ --- */
.el-faq-list { max-width: 800px; margin: 0 auto; }
.el-faq-item {
  border: 1px solid #e5e7eb; border-radius: 12px;
  margin-bottom: 12px; overflow: hidden; transition: all .3s;
}
.el-faq-item.el-open { border-color: #F97316; }
.el-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 600;
  font-size: 1rem; background: #fff; border: none; width: 100%;
  text-align: left; color: #1f2937; gap: 16px;
  font-family: 'Figtree', sans-serif;
}
.el-faq-q:hover { color: #F97316; }
.el-faq-q iconify-icon { font-size: 1.25rem; color: #F97316; transition: transform .3s; flex-shrink: 0; }
.el-faq-item.el-open .el-faq-q iconify-icon { transform: rotate(180deg); }
.el-faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
  padding: 0 24px;
}
.el-faq-item.el-open .el-faq-a { max-height: 300px; padding: 0 24px 20px; }
.el-faq-a p { color: #6b7280; font-size: .95rem; line-height: 1.7; }

/* --- Contact Form --- */
.el-contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.el-form-group { margin-bottom: 20px; }
.el-form-label {
  display: block; font-weight: 600; font-size: .9rem;
  margin-bottom: 8px; color: #374151;
}
.el-form-input, .el-form-textarea, .el-form-select {
  width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb;
  border-radius: 10px; font-size: 1rem; transition: border-color .3s;
  background: #fff; color: #1f2937;
}
.el-form-input:focus, .el-form-textarea:focus, .el-form-select:focus {
  outline: none; border-color: #F97316;
}
.el-form-textarea { resize: vertical; min-height: 120px; }
.el-consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: #6b7280; cursor: pointer;
}
.el-consent-label input { margin-top: 3px; accent-color: #F97316; }
.el-consent-label iconify-icon { color: #F97316; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --- Contact Info Sidebar --- */
.el-contact-info { display: flex; flex-direction: column; gap: 24px; }
.el-contact-block {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: #f8fafc; border-radius: 12px;
}
.el-contact-block iconify-icon { font-size: 1.5rem; color: #F97316; flex-shrink: 0; margin-top: 2px; }
.el-contact-block h4 { font-weight: 700; margin-bottom: 4px; }
.el-contact-block p, .el-contact-block a { color: #6b7280; font-size: .95rem; }

/* --- CTA Banner --- */
.el-cta-banner {
  padding: 80px 0; background: linear-gradient(135deg, #F97316, #ea580c);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.el-cta-banner::before {
  content: ''; position: absolute; top: -40px; left: 0; right: 0;
  height: 80px; background: #fff; transform: skewY(3deg);
}
.el-cta-banner::after {
  content: ''; position: absolute; bottom: -40px; left: 0; right: 0;
  height: 80px; background: #fff; transform: skewY(3deg);
}
.el-cta-banner .el-skew-content { position: relative; z-index: 2; }
.el-cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.el-cta-banner p { font-size: 1.125rem; opacity: .9; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* --- Blog --- */
.el-blog-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.el-blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #e5e7eb; transition: all .3s;
}
.el-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.el-blog-thumb {
  height: 200px; background: linear-gradient(135deg, #1f2937, #374151);
  display: flex; align-items: center; justify-content: center;
}
.el-blog-thumb iconify-icon { font-size: 3rem; color: rgba(249,115,22,.4); }
.el-blog-body { padding: 24px; }
.el-blog-date { font-size: .8rem; color: #9ca3af; margin-bottom: 8px; }
.el-blog-body h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.el-blog-body h3 a { color: #1f2937; }
.el-blog-body h3 a:hover { color: #F97316; }
.el-blog-body p { color: #6b7280; font-size: .9rem; margin-bottom: 16px; }
.el-blog-link { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* --- Footer --- */
.el-footer {
  background: #111827; color: #d1d5db; padding: 64px 0 0;
}
.el-footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid #1f2937;
}
.el-footer-brand { max-width: 320px; }
.el-footer-brand .el-logo { color: #fff; margin-bottom: 16px; }
.el-footer-brand p { font-size: .9rem; color: #9ca3af; }
.el-footer h4 { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: 1rem; }
.el-footer-links { display: flex; flex-direction: column; gap: 10px; }
.el-footer-links a { color: #9ca3af; font-size: .9rem; transition: color .3s; }
.el-footer-links a:hover { color: #F97316; }
.el-footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.el-footer-socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: #1f2937; color: #9ca3af;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; transition: all .3s;
}
.el-footer-socials a:hover { background: #F97316; color: #fff; }
.el-footer-bottom {
  padding: 24px 0; text-align: center; font-size: .8rem; color: #6b7280;
}

/* --- Breadcrumbs --- */
.el-breadcrumbs {
  padding: 100px 0 20px;
  background: #f8fafc;
}
.el-breadcrumbs-list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .875rem; color: #9ca3af;
}
.el-breadcrumbs-list a { color: #6b7280; }
.el-breadcrumbs-list a:hover { color: #F97316; }
.el-breadcrumbs-sep { color: #d1d5db; }

/* --- Page Header --- */
.el-page-header {
  padding: 20px 0 60px; background: #f8fafc;
  text-align: center; position: relative;
}
.el-page-header::after {
  content: ''; position: absolute; bottom: -40px; left: 0; right: 0;
  height: 80px; background: #fff; transform: skewY(-2deg);
  z-index: 1;
}
.el-page-header h1 {
  font-size: 2.5rem; font-weight: 900; margin-bottom: 12px;
  position: relative; z-index: 2;
}
.el-page-header p {
  font-size: 1.125rem; color: #6b7280; max-width: 560px;
  margin: 0 auto; position: relative; z-index: 2;
}

/* --- Legal Pages --- */
.el-legal-content {
  padding: 80px 0; max-width: 800px; margin: 0 auto;
}
.el-legal-content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 12px; color: #1f2937; }
.el-legal-content h3 { font-size: 1.25rem; font-weight: 600; margin: 24px 0 8px; color: #374151; }
.el-legal-content p { color: #6b7280; margin-bottom: 16px; }
.el-legal-content ul { margin-bottom: 16px; }
.el-legal-content li { color: #6b7280; padding-left: 20px; position: relative; margin-bottom: 8px; }
.el-legal-content li::before { content: '\2014'; position: absolute; left: 0; color: #F97316; }

/* --- Thank You --- */
.el-thankyou {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 40px 20px;
}
.el-thankyou-card {
  background: #fff; padding: 60px 40px; border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08); max-width: 520px;
}
.el-thankyou-icon {
  width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%;
  background: rgba(249,115,22,.1); display: flex; align-items: center;
  justify-content: center; font-size: 2.5rem; color: #F97316;
}
.el-thankyou-card h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.el-thankyou-card p { color: #6b7280; margin-bottom: 32px; }

/* --- 404 --- */
.el-error-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 40px 20px;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #fff;
}
.el-error-code { font-size: 8rem; font-weight: 900; color: #F97316; line-height: 1; }
.el-error-page h1 { font-size: 2rem; font-weight: 800; margin: 16px 0; }
.el-error-page p { color: #9ca3af; margin-bottom: 32px; font-size: 1.125rem; }

/* --- Cookie Banner --- */
.el-cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1f2937; color: #d1d5db; padding: 20px;
  transform: translateY(100%); transition: transform .4s;
  border-top: 3px solid #F97316;
}
.el-cookie.el-show { transform: translateY(0); }
.el-cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; text-align: center;
}
.el-cookie p { font-size: .875rem; }
.el-cookie a { color: #F97316; text-decoration: underline; }
.el-cookie-btn {
  padding: 10px 24px; background: #F97316; color: #fff;
  border: none; border-radius: 8px; font-weight: 700;
  cursor: pointer; font-size: .875rem; transition: background .3s;
  font-family: 'Figtree', sans-serif;
}
.el-cookie-btn:hover { background: #ea580c; }

/* --- Steps / Process --- */
.el-steps { display: grid; grid-template-columns: 1fr; gap: 32px; counter-reset: step-counter; }
.el-step {
  position: relative; padding: 32px; padding-left: 80px;
  background: #fff; border-radius: 16px; border: 1px solid #e5e7eb;
}
.el-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute; left: 24px; top: 28px;
  width: 44px; height: 44px; border-radius: 12px;
  background: #F97316; color: #fff; font-weight: 800;
  font-size: 1.25rem; display: flex; align-items: center;
  justify-content: center;
}
.el-step h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.el-step p { color: #6b7280; font-size: .9rem; }

/* --- Stats Bar --- */
.el-stats-bar {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  padding: 40px 0;
}
.el-stat-item { text-align: center; }
.el-stat-num { font-size: 2.5rem; font-weight: 900; color: #F97316; }
.el-stat-label { font-size: .9rem; color: #6b7280; margin-top: 4px; }
.el-section-dark .el-stat-label { color: #d1d5db; }

.el-section-orange .el-section-subtitle { color: rgba(255,255,255,.8); }

.el-gradient-text {
  background: linear-gradient(135deg, #F97316, #ea580c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.el-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600;
}
.el-badge-orange { background: rgba(249,115,22,.1); color: #F97316; }
.el-badge-dark { background: #1f2937; color: #fff; }
.el-divider { height: 1px; background: #e5e7eb; margin: 32px 0; }
.el-divider-orange { height: 3px; width: 60px; background: #F97316; margin: 16px 0; border-radius: 3px; }

.el-card-hover { transition: all .3s ease; }
.el-card-hover:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }

.el-icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.el-icon-circle-orange { background: rgba(249,115,22,.1); color: #F97316; }
.el-icon-circle-dark { background: #1f2937; color: #fff; }
.el-icon-circle-white { background: #fff; color: #F97316; }

.el-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,41,55,.6); z-index: 1;
}

.el-tag {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px;
}
.el-tag-orange { background: #F97316; color: #fff; }
.el-tag-grey { background: #f3f4f6; color: #6b7280; }
.el-tag-dark { background: #1f2937; color: #fff; }

.el-progress-bar {
  height: 8px; background: #e5e7eb; border-radius: 4px; overflow: hidden;
}
.el-progress-fill {
  height: 100%; background: linear-gradient(90deg, #F97316, #fb923c);
  border-radius: 4px; transition: width .6s ease;
}

.el-testimonial-large {
  background: #fff; border-radius: 24px; padding: 48px;
  border: 1px solid #e5e7eb; text-align: center;
  max-width: 800px; margin: 0 auto;
}
.el-testimonial-large blockquote {
  font-size: 1.25rem; color: #374151; font-style: italic;
  line-height: 1.8; margin-bottom: 24px;
}

.el-timeline { position: relative; padding-left: 32px; }
.el-timeline::before {
  content: ''; position: absolute; left: 11px; top: 0; bottom: 0;
  width: 2px; background: #e5e7eb;
}
.el-timeline-item { position: relative; padding-bottom: 32px; }
.el-timeline-item::before {
  content: ''; position: absolute; left: -25px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #F97316; border: 3px solid #fff;
  box-shadow: 0 0 0 2px #F97316;
}
.el-timeline-item h4 { font-weight: 700; margin-bottom: 4px; }
.el-timeline-item p { color: #6b7280; font-size: .9rem; }

.el-counter {
  font-size: 3.5rem; font-weight: 900; color: #F97316;
  line-height: 1; margin-bottom: 8px;
}

.el-grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.el-grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.el-grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.el-flex { display: flex; }
.el-flex-col { flex-direction: column; }
.el-flex-center { align-items: center; justify-content: center; }
.el-flex-between { justify-content: space-between; }
.el-flex-wrap { flex-wrap: wrap; }
.el-w-full { width: 100%; }
.el-h-full { height: 100%; }
.el-relative { position: relative; }
.el-overflow-hidden { overflow: hidden; }
.el-rounded-lg { border-radius: 16px; }
.el-rounded-xl { border-radius: 24px; }
.el-rounded-full { border-radius: 9999px; }
.el-shadow-sm { box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.el-shadow-md { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.el-shadow-lg { box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.el-shadow-xl { box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.el-p-16 { padding: 16px; }
.el-p-24 { padding: 24px; }
.el-p-32 { padding: 32px; }
.el-p-48 { padding: 48px; }
.el-mb-8 { margin-bottom: 8px; }
.el-mb-12 { margin-bottom: 12px; }
.el-mt-16 { margin-top: 16px; }
.el-mt-32 { margin-top: 32px; }
.el-mt-48 { margin-top: 48px; }
.el-gap-8 { gap: 8px; }
.el-gap-12 { gap: 12px; }
.el-gap-16 { gap: 16px; }
.el-gap-48 { gap: 48px; }
.el-text-sm { font-size: .875rem; }
.el-text-lg { font-size: 1.125rem; }
.el-text-xl { font-size: 1.25rem; }
.el-text-2xl { font-size: 1.5rem; }
.el-text-grey { color: #6b7280; }
.el-font-bold { font-weight: 700; }
.el-font-extrabold { font-weight: 800; }
.el-font-black { font-weight: 900; }
.el-border { border: 1px solid #e5e7eb; }
.el-border-orange { border: 2px solid #F97316; }
.el-bg-white { background: #fff; }
.el-bg-grey { background: #f8fafc; }
.el-bg-dark { background: #1f2937; }
.el-bg-orange { background: #F97316; }

.el-pulse { animation: el-pulse 2s infinite; }
@keyframes el-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}
.el-fade-in { animation: el-fadeIn .6s ease forwards; }
@keyframes el-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.el-slide-up { animation: el-slideUp .5s ease forwards; }
@keyframes el-slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.el-skew-section {
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.el-skew-section::before {
  content: ''; position: absolute; top: -60px; left: -5%; right: -5%;
  height: 120px; background: inherit; transform: skewY(-3deg);
}
.el-skew-section::after {
  content: ''; position: absolute; bottom: -60px; left: -5%; right: -5%;
  height: 120px; background: inherit; transform: skewY(-3deg);
}

.el-stripe-bg {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(249,115,22,.03) 40px,
    rgba(249,115,22,.03) 80px
  );
}

.el-dot-pattern {
  background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
}

.el-highlight {
  position: relative; display: inline;
}
.el-highlight::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%; background: rgba(249,115,22,.2); z-index: -1;
}

.el-list-check { display: flex; flex-direction: column; gap: 12px; }
.el-list-check li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #374151; font-size: .95rem;
}
.el-list-check li iconify-icon { color: #F97316; font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }

.el-accordion { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.el-accordion + .el-accordion { margin-top: 8px; }

.el-banner {
  padding: 24px 32px; border-radius: 16px;
  display: flex; align-items: center; gap: 16px;
}
.el-banner-orange { background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.2); }
.el-banner-dark { background: #1f2937; color: #fff; }

.el-avatar-group { display: flex; }
.el-avatar-group .el-review-avatar { margin-left: -12px; border: 3px solid #fff; }
.el-avatar-group .el-review-avatar:first-child { margin-left: 0; }

.el-tooltip { position: relative; cursor: help; }
.el-tooltip::after {
  content: attr(data-tooltip); position: absolute; bottom: 100%;
  left: 50%; transform: translateX(-50%); padding: 6px 12px;
  background: #1f2937; color: #fff; font-size: .75rem;
  border-radius: 6px; white-space: nowrap; opacity: 0;
  pointer-events: none; transition: opacity .3s;
}
.el-tooltip:hover::after { opacity: 1; }

.el-back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 48px; height: 48px; border-radius: 12px;
  background: #F97316; color: #fff; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 16px rgba(249,115,22,.3);
  transition: all .3s;
}
.el-back-to-top:hover { background: #ea580c; transform: translateY(-2px); }
.el-back-to-top.el-visible { display: flex; }

.el-notification {
  padding: 16px 24px; border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem;
}
.el-notification-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.el-notification-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.el-notification-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.el-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  background: #f3f4f6; color: #374151;
}
.el-chip-orange { background: rgba(249,115,22,.1); color: #F97316; }

@media (min-width: 768px) {
  .el-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .el-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .el-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .el-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .el-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================
   RESPONSIVE
   ============================ */

/* Tablet 768+ */
@media (min-width: 768px) {
  .el-hero h1 { font-size: 3rem; }
  .el-section-title { font-size: 2.5rem; }
  .el-features-grid { grid-template-columns: repeat(2, 1fr); }
  .el-courses-grid { grid-template-columns: repeat(2, 1fr); }
  .el-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .el-teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .el-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .el-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .el-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .el-contact-grid { grid-template-columns: 1fr 1fr; }
  .el-stats-bar { grid-template-columns: repeat(4, 1fr); }
  .el-steps { grid-template-columns: repeat(2, 1fr); }
  .el-cookie-inner { flex-direction: row; text-align: left; }
}

/* Desktop 1024+ */
@media (min-width: 1024px) {
  .el-hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .el-hero h1 { font-size: 3.5rem; }
  .el-section-title { font-size: 2.75rem; }
  .el-features-grid { grid-template-columns: repeat(3, 1fr); }
  .el-courses-grid { grid-template-columns: repeat(3, 1fr); }
  .el-pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .el-teachers-grid { grid-template-columns: repeat(3, 1fr); }
  .el-reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .el-blog-grid { grid-template-columns: repeat(3, 1fr); }
  .el-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .el-nav { display: flex; }
  .el-burger { display: none; }
  .el-header-cta { display: inline-flex; }
  .el-steps { grid-template-columns: repeat(4, 1fr); }
}

/* Large 1280+ */
@media (min-width: 1280px) {
  .el-hero h1 { font-size: 4rem; }
  .el-section { padding: 100px 0; }
  .el-contact-grid { grid-template-columns: 1.5fr 1fr; gap: 64px; }
}

/* Small 480- */
@media (max-width: 480px) {
  .el-hero h1 { font-size: 2rem; }
  .el-section-title { font-size: 1.75rem; }
  .el-hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .el-price-amount { font-size: 2.25rem; }
  .el-btn { width: 100%; justify-content: center; }
  .el-hero-actions { flex-direction: column; }
}

.el-marquee { overflow: hidden; white-space: nowrap; }
.el-marquee-inner {
  display: inline-flex; animation: el-marquee 30s linear infinite;
}
@keyframes el-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.el-marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: 1.25rem; font-weight: 700; color: #d1d5db;
}
.el-marquee-item iconify-icon { color: #F97316; }

.el-floating {
  animation: el-float 3s ease-in-out infinite;
}
@keyframes el-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.el-blob {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(249,115,22,.05));
}

.el-glass {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
}

.el-number-badge {
  width: 32px; height: 32px; border-radius: 50%;
  background: #F97316; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; flex-shrink: 0;
}

.el-comparison-table { width: 100%; border-collapse: collapse; }
.el-comparison-table th {
  padding: 16px; text-align: left; font-weight: 700;
  border-bottom: 2px solid #F97316; font-size: .9rem;
}
.el-comparison-table td {
  padding: 14px 16px; border-bottom: 1px solid #f3f4f6;
  font-size: .9rem; color: #374151;
}
.el-comparison-table tr:hover td { background: #fafafa; }

.el-info-box {
  padding: 24px; border-radius: 12px;
  border-left: 4px solid #F97316;
  background: rgba(249,115,22,.04);
}
.el-info-box p { color: #6b7280; margin: 0; }

.el-level-indicator { display: flex; gap: 4px; }
.el-level-dot {
  width: 12px; height: 12px; border-radius: 3px;
  background: #e5e7eb;
}
.el-level-dot.el-active { background: #F97316; }

.el-split-section {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media (min-width: 768px) {
  .el-split-section { grid-template-columns: 1fr 1fr; }
}

.el-feature-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid #f3f4f6;
}
.el-feature-row:last-child { border-bottom: none; }
.el-feature-row iconify-icon {
  font-size: 1.5rem; color: #F97316; flex-shrink: 0; margin-top: 2px;
}

.el-rating { display: flex; align-items: center; gap: 4px; }
.el-rating iconify-icon { color: #F97316; font-size: 1.125rem; }
.el-rating-text { font-size: .875rem; color: #6b7280; margin-left: 8px; }

.el-input-group {
  display: flex; border-radius: 10px; overflow: hidden;
  border: 2px solid #e5e7eb;
}
.el-input-group input {
  flex: 1; padding: 14px 16px; border: none; outline: none;
  font-size: 1rem;
}
.el-input-group button {
  padding: 14px 24px; background: #F97316; color: #fff;
  border: none; font-weight: 700; cursor: pointer;
  transition: background .3s;
}
.el-input-group button:hover { background: #ea580c; }

.el-map-placeholder {
  height: 300px; border-radius: 16px; overflow: hidden;
  background: #f3f4f6; display: flex; align-items: center;
  justify-content: center; color: #9ca3af;
}

.el-social-proof {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px; background: rgba(249,115,22,.06);
  border-radius: 12px;
}
.el-social-proof iconify-icon { font-size: 2rem; color: #F97316; }

.el-schedule-table { width: 100%; border-collapse: collapse; }
.el-schedule-table th {
  padding: 12px 16px; background: #1f2937; color: #fff;
  font-weight: 600; font-size: .875rem; text-align: center;
}
.el-schedule-table th:first-child { border-radius: 8px 0 0 0; }
.el-schedule-table th:last-child { border-radius: 0 8px 0 0; }
.el-schedule-table td {
  padding: 12px 16px; text-align: center; font-size: .875rem;
  border-bottom: 1px solid #f3f4f6; color: #374151;
}
.el-schedule-table tr:hover td { background: #fafafa; }

.el-price-toggle {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-bottom: 48px;
}
.el-price-toggle span { font-weight: 600; color: #6b7280; }
.el-price-toggle span.el-active { color: #1f2937; }
.el-toggle-switch {
  width: 56px; height: 28px; border-radius: 14px;
  background: #e5e7eb; position: relative; cursor: pointer;
  transition: background .3s;
}
.el-toggle-switch.el-active { background: #F97316; }
.el-toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; transition: transform .3s;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.el-toggle-switch.el-active::after { transform: translateX(28px); }

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}
