/*
Theme Name: LOEACADEMIE
Theme URI: https://loeacademie.com
Author: LOESAGA
Author URI: https://www.tiktok.com/@histoiredeloe
Description: Thème custom LOEACADEMIE — Landing page formation IA TikTok. Conçu pour Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Propriétaire
Text Domain: loeacademie
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --loe-black:   #080810;
  --loe-deep:    #0d0d1a;
  --loe-card:    #12121f;
  --loe-border:  rgba(255,255,255,0.07);
  --loe-accent:  #c8a96e;
  --loe-purple:  #7b6cf6;
  --loe-white:   #f5f0ea;
  --loe-muted:   rgba(245,240,234,0.45);
  --loe-glow:    rgba(123,108,246,0.18);
  --loe-font-title: 'Syne', sans-serif;
  --loe-font-body:  'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--loe-black);
  color: var(--loe-white);
  font-family: var(--loe-font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--loe-font-title);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--loe-white);
}

p { color: var(--loe-muted); }

/* ============================================================
   ELEMENTOR GLOBAL OVERRIDES
   ============================================================ */
.elementor-page { background: var(--loe-black); }
.e-con, .elementor-container { max-width: 960px; }

/* ============================================================
   NAVBAR — classe .loe-nav
   ============================================================ */
.loe-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2rem;
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--loe-border);
}
.loe-nav__left { display: flex; align-items: center; gap: 0.8rem; }
.loe-nav__logo {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--loe-accent);
}
.loe-nav__brand {
  font-family: var(--loe-font-title); font-weight: 800; font-size: 1rem;
  letter-spacing: 0.12em; color: var(--loe-accent); text-transform: uppercase;
}
.loe-nav__right { display: flex; align-items: center; gap: 1rem; }
.loe-nav__tiktok {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--loe-border);
  padding: 0.45rem 1rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--loe-white);
  transition: background 0.2s, border-color 0.2s;
}
.loe-nav__tiktok:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
.loe-nav__tiktok svg { width: 18px; height: 18px; fill: var(--loe-white); }
.loe-nav__cta {
  background: var(--loe-accent); color: var(--loe-black);
  padding: 0.5rem 1.3rem; border-radius: 100px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.loe-nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,169,110,0.4); }

/* ============================================================
   HERO SECTION — classe .loe-hero
   ============================================================ */
.loe-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 8rem 1.5rem 5rem;
  position: relative; overflow: hidden;
  background: var(--loe-black);
}
.loe-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(123,108,246,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(200,169,110,0.1) 0%, transparent 60%);
}
.loe-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(123,108,246,0.12); border: 1px solid rgba(123,108,246,0.3);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #a89cf5; margin-bottom: 2rem; position: relative; z-index: 1;
}
.loe-badge__dot {
  width: 6px; height: 6px; background: var(--loe-purple);
  border-radius: 50%; animation: loe-pulse 2s infinite;
}
@keyframes loe-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.7); }
}
.loe-hero__title {
  font-family: var(--loe-font-title); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  position: relative; z-index: 1;
}
.loe-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--loe-accent) 0%, #e8c98e 40%, var(--loe-purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.loe-hero__sub {
  max-width: 560px; font-size: 1.05rem; color: var(--loe-muted);
  margin: 1.5rem auto 0; position: relative; z-index: 1;
}
.loe-hero__stats {
  display: flex; gap: 2.5rem; justify-content: center;
  margin: 3rem 0 2.5rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.loe-stat__num {
  font-family: var(--loe-font-title); font-size: 2rem; font-weight: 800; color: var(--loe-white);
}
.loe-stat__num span { color: var(--loe-accent); }
.loe-stat__label { font-size: 0.75rem; color: var(--loe-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.loe-stat__divider { width: 1px; background: var(--loe-border); align-self: stretch; }

/* ============================================================
   BUTTONS
   ============================================================ */
.loe-btn {
  display: inline-block; padding: 1rem 2.5rem; border-radius: 100px;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s; text-align: center;
}
.loe-btn--gold {
  background: linear-gradient(135deg, var(--loe-accent), #e8c68a);
  color: var(--loe-black);
  box-shadow: 0 0 40px rgba(200,169,110,0.3);
}
.loe-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,169,110,0.5); }
.loe-btn--purple {
  background: linear-gradient(135deg, var(--loe-purple), #a89cf5);
  color: var(--loe-black);
  box-shadow: 0 0 30px rgba(123,108,246,0.25);
}
.loe-btn--purple:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(123,108,246,0.45); }
.loe-btn--outline {
  background: rgba(255,255,255,0.05); border: 1px solid var(--loe-border);
  color: var(--loe-white);
}
.loe-btn--outline:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   RESULTS BAR — classe .loe-results-bar
   ============================================================ */
.loe-results-bar {
  background: var(--loe-deep);
  border-top: 1px solid var(--loe-border);
  border-bottom: 1px solid var(--loe-border);
  padding: 2rem 1.5rem;
}
.loe-results-bar__label {
  text-align: center; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--loe-muted); margin-bottom: 1.5rem;
}
.loe-results-bar__grid { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.loe-result-card {
  background: var(--loe-card); border: 1px solid var(--loe-border);
  border-radius: 16px; padding: 1.2rem 1.6rem; min-width: 160px; text-align: center;
  position: relative; overflow: hidden;
}
.loe-result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--loe-purple), transparent);
}
.loe-result-card__views { font-family: var(--loe-font-title); font-weight: 800; font-size: 1.8rem; color: var(--loe-white); }
.loe-result-card__views--gold { color: var(--loe-accent); }
.loe-result-card__meta { font-size: 0.75rem; color: var(--loe-muted); margin-top: 0.2rem; }
.loe-result-card__sub { font-size: 0.7rem; color: var(--loe-purple); margin-top: 0.3rem; }

/* ============================================================
   SECTION LABELS & TITLES
   ============================================================ */
.loe-section { padding: 5rem 1.5rem; }
.loe-section--dark  { background: var(--loe-black); }
.loe-section--deep  { background: var(--loe-deep); }
.loe-section__label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--loe-accent); margin-bottom: 0.8rem; display: block;
}
.loe-section__title {
  font-family: var(--loe-font-title); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em;
  color: var(--loe-white);
}
.loe-section__sub { color: var(--loe-muted); font-size: 1rem; margin-top: 0.8rem; max-width: 520px; }
.loe-container { max-width: 960px; margin: 0 auto; }
.loe-text-center { text-align: center; }
.loe-text-center .loe-section__sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   INFO SPLIT SECTION — classe .loe-info
   ============================================================ */
.loe-info__inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.loe-info__img {
  flex: 1; min-width: 260px; max-width: 420px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--loe-border);
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
}
.loe-info__text { flex: 1; min-width: 260px; }
.loe-info__bullets { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.loe-info__bullets li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--loe-white);
}
.loe-info__bullets li::before { content: '→'; color: var(--loe-accent); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   MODULE CARDS — classe .loe-module-grid
   ============================================================ */
.loe-module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.2rem; }
.loe-module-card {
  background: var(--loe-card); border: 1px solid var(--loe-border);
  border-radius: 20px; padding: 1.8rem;
  transition: transform 0.25s, border-color 0.25s;
}
.loe-module-card:hover { transform: translateY(-4px); border-color: rgba(123,108,246,0.4); }
.loe-module-card__icon {
  width: 44px; height: 44px; background: rgba(123,108,246,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.loe-module-card__title { font-family: var(--loe-font-title); font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; color: var(--loe-white); }
.loe-module-card__desc { font-size: 0.875rem; color: var(--loe-muted); line-height: 1.55; }

/* ============================================================
   SCREENSHOT FRAMES — .loe-screenshots-row
   ============================================================ */
.loe-screenshots-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.loe-screenshot {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--loe-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  flex: 1; min-width: 180px; max-width: 220px; position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.loe-screenshot:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 60px rgba(123,108,246,0.25); }
.loe-screenshot img { width: 100%; height: auto; display: block; }
.loe-screenshot__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.95), transparent);
  padding: 1.2rem 0.8rem 0.7rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--loe-accent);
}
.loe-dm { max-width: 250px; }
.loe-dm:hover { box-shadow: 0 20px 60px rgba(200,169,110,0.2); }

/* ============================================================
   TESTIMONIAL CARDS — .loe-testi-grid
   ============================================================ */
.loe-testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.2rem; margin-top: 2rem; }
.loe-testi-card {
  background: var(--loe-card); border: 1px solid var(--loe-border);
  border-radius: 20px; padding: 1.8rem; display: flex; flex-direction: column;
  transition: transform 0.25s;
}
.loe-testi-card:hover { transform: translateY(-3px); }
.loe-testi-card__before {
  display: inline-block;
  background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.2);
  color: #ff8080; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 100px; margin-bottom: 0.8rem;
}
.loe-testi-card__result { font-family: var(--loe-font-title); font-size: 1.9rem; font-weight: 800; color: var(--loe-white); line-height: 1.1; }
.loe-testi-card__result span { color: var(--loe-accent); }
.loe-testi-card__timeframe { font-size: 0.78rem; color: var(--loe-muted); margin: 0.25rem 0 1rem; }
.loe-testi-card__quote { font-size: 0.9rem; color: var(--loe-muted); line-height: 1.6; font-style: italic; margin-bottom: 1rem; flex: 1; }
.loe-testi-card__author { display: flex; align-items: center; gap: 0.8rem; }
.loe-testi-card__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--loe-purple), var(--loe-accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--loe-black);
}
.loe-testi-card__name { font-size: 0.85rem; font-weight: 600; color: var(--loe-white); }
.loe-testi-card__handle { font-size: 0.75rem; color: var(--loe-muted); }

/* ============================================================
   VIDEO STAT CARDS — .loe-video-cards
   ============================================================ */
.loe-video-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.loe-video-card {
  background: var(--loe-card); border: 1px solid var(--loe-border);
  border-radius: 20px; padding: 1.6rem; position: relative; overflow: hidden;
}
.loe-video-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% -20%, var(--loe-glow), transparent 60%);
  pointer-events: none;
}
.loe-video-card__tag {
  display: inline-block; background: rgba(123,108,246,0.12); border: 1px solid rgba(123,108,246,0.25);
  color: #a89cf5; font-size: 0.68rem; letter-spacing: 0.08em; padding: 0.2rem 0.6rem;
  border-radius: 100px; font-weight: 600; text-transform: uppercase; margin-bottom: 0.8rem;
}
.loe-video-card__views { font-family: var(--loe-font-title); font-size: 2.5rem; font-weight: 800; color: var(--loe-white); line-height: 1; }
.loe-video-card__views--purple { color: var(--loe-purple); }
.loe-video-card__sub { font-size: 0.78rem; color: var(--loe-muted); margin-top: 0.3rem; }
.loe-video-card__metric { display: flex; justify-content: space-between; margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--loe-border); font-size: 0.78rem; }
.loe-video-card__metric-label { color: var(--loe-muted); }
.loe-video-card__metric-val { font-weight: 600; color: var(--loe-white); }
.loe-video-card__metric-val--gold { color: var(--loe-accent); }

/* ============================================================
   FOR WHO CARDS — .loe-for-grid
   ============================================================ */
.loe-for-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; }
.loe-for-card {
  background: var(--loe-card); border: 1px solid var(--loe-border);
  border-radius: 16px; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color 0.25s;
}
.loe-for-card:hover { border-color: rgba(200,169,110,0.35); }
.loe-for-card__icon { font-size: 1.6rem; flex-shrink: 0; }
.loe-for-card__title { font-family: var(--loe-font-title); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--loe-white); }
.loe-for-card__desc { font-size: 0.82rem; color: var(--loe-muted); }

/* ============================================================
   PRICING CARDS — .loe-pricing-grid
   ============================================================ */
.loe-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.loe-price-card {
  background: var(--loe-card); border: 1px solid var(--loe-border);
  border-radius: 24px; padding: 2.2rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.25s, border-color 0.25s;
}
.loe-price-card:hover { transform: translateY(-4px); }
.loe-price-card--gold { border-color: rgba(200,169,110,0.45); }
.loe-price-card--gold::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200,169,110,0.1), transparent 60%);
  pointer-events: none;
}
.loe-price-card--purple { border-color: rgba(123,108,246,0.45); }
.loe-price-card--purple::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(123,108,246,0.12), transparent 60%);
  pointer-events: none;
}
.loe-price-card__badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1.2rem; align-self: flex-start;
}
.loe-price-card__badge--gold { background: linear-gradient(135deg, var(--loe-accent), #e8c68a); color: var(--loe-black); }
.loe-price-card__badge--purple { background: linear-gradient(135deg, var(--loe-purple), #a89cf5); color: var(--loe-black); }
.loe-price-card__title { font-family: var(--loe-font-title); font-size: 1.3rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--loe-white); }
.loe-price-card__desc { font-size: 0.85rem; color: var(--loe-muted); margin-bottom: 1.5rem; }
.loe-price-card__row { display: flex; align-items: flex-end; gap: 0.8rem; margin-bottom: 0.3rem; }
.loe-price-card__old { font-family: var(--loe-font-title); font-size: 1.4rem; font-weight: 700; color: rgba(245,240,234,0.22); text-decoration: line-through; }
.loe-price-card__new { font-family: var(--loe-font-title); font-size: 3rem; font-weight: 800; color: var(--loe-white); line-height: 1; }
.loe-price-card__new sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.loe-price-card__off {
  display: inline-block; background: rgba(80,200,100,0.15); border: 1px solid rgba(80,200,100,0.3);
  color: #5dc86a; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px;
  letter-spacing: 0.06em; margin-bottom: 1.5rem; align-self: flex-start;
}
.loe-price-card__once { font-size: 0.78rem; color: var(--loe-muted); margin-bottom: 1.5rem; }
.loe-price-card__list { list-style: none; margin-bottom: 1.8rem; flex: 1; }
.loe-price-card__list li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.5rem 0; border-bottom: 1px solid var(--loe-border); font-size: 0.88rem; color: var(--loe-white); }
.loe-price-card__list li:last-child { border: none; }
.loe-price-card__check--gold { color: var(--loe-accent); flex-shrink: 0; margin-top: 0.1rem; }
.loe-price-card__check--purple { color: #a89cf5; flex-shrink: 0; margin-top: 0.1rem; }
.loe-price-card__guarantee { font-size: 0.78rem; color: var(--loe-muted); margin-top: 0.8rem; text-align: center; }

/* ============================================================
   TIKTOK CTA SECTION
   ============================================================ */
.loe-tiktok-section {
  background: var(--loe-black); text-align: center; padding: 4rem 1.5rem;
  border-top: 1px solid var(--loe-border);
}
.loe-tiktok-btn {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: rgba(255,255,255,0.05); border: 1px solid var(--loe-border);
  padding: 1rem 2rem; border-radius: 100px; color: var(--loe-white);
  font-size: 1rem; font-weight: 600; text-decoration: none; margin-top: 1.5rem;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.loe-tiktok-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); border-color: rgba(255,255,255,0.25); }
.loe-tiktok-btn svg { width: 26px; height: 26px; fill: var(--loe-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.loe-footer {
  background: var(--loe-black); border-top: 1px solid var(--loe-border);
  text-align: center; padding: 2.5rem 1.5rem;
}
.loe-footer__logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--loe-accent); margin: 0 auto 1rem; }
.loe-footer__brand { font-family: var(--loe-font-title); color: var(--loe-accent); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.loe-footer__copy { font-size: 0.8rem; color: var(--loe-muted); margin-top: 0.4rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .loe-hero__stats { gap: 1.2rem; }
  .loe-stat__divider { display: none; }
  .loe-hero__title { font-size: 2.3rem; }
  .loe-info__inner { flex-direction: column; }
  .loe-pricing-grid { grid-template-columns: 1fr; }
  nav { padding: 0.8rem 1rem; }
  .loe-nav__brand { font-size: 0.85rem; }
  .loe-screenshots-row { gap: 0.6rem; }
}
