/* ═══════════════════════════════════════════════
   Figtree - self-hosted (eliminates FOUT)
   ═══════════════════════════════════════════════ */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: block;
  src: url('/fonts/figtree-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: block;
  src: url('/fonts/figtree-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300 900;
  font-display: block;
  src: url('/fonts/figtree-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300 900;
  font-display: block;
  src: url('/fonts/figtree-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ═══════════════════════════════════════════════
   Fallback font metrics - minimise layout shift during block period
   ═══════════════════════════════════════════════ */
@font-face {
  font-family: 'Figtree-fallback';
  src: local('Arial');
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
  size-adjust: 101%;
}

/* ═══════════════════════════════════════════════
   Design system
   ═══════════════════════════════════════════════ */

:root {
  /* Colors */
  --pink:         #E8488A;
  --pink-hover:   #D63D7D;
  --pink-light:   #FBEAF2;
  --pink-bg:      #FDF5F9;
  --black:        #1A1A1A;
  --dark:         #333333;
  --mid:          #6B7280;
  --muted:        #767676;
  --off-white:    #F8F9FA;
  --surface:      #F3F4F6;
  --white:        #FFFFFF;
  --border:       #E5E7EB;
  --border-lt:    #EDEDEC;
  --card-border:        #d1d5db;
  --card-border-width:  2px;
  --card-shadow:        0 2px 10px rgba(26, 26, 26, 0.08);

  /* Radii */
  --r-sm:   6px;
  --r-card: 12px;
  --r-btn:  8px;
  --r-pill: 9999px;
  --r-img:  16px;

  /* Layout */
  --max-w:  1200px;
  --gutter: 40px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', 'Figtree-fallback', system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #121117;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Figtree', 'Figtree-fallback', system-ui, -apple-system, sans-serif;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}


/* ─── Container ──────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* ─── Scroll animations ──────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}
.fade-in.delay-1 { transition-delay: 0.10s; }
.fade-in.delay-2 { transition-delay: 0.20s; }
.fade-in.delay-3 { transition-delay: 0.30s; }
.fade-in.visible  { opacity: 1; transform: none; }


/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--black);
  border-radius: var(--r-btn);
  font-family: 'Figtree', 'Figtree-fallback', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: rgb(255, 122, 172);
  color: var(--black);
  padding: 14px 32px;
}

/* Primary CTA in hero + footer: chunky style at all sizes; full width only ≤960px */
.hero .cta-group .btn--primary,
.cta-final .cta-group .btn--primary {
  display: inline-flex;
  justify-content: center;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 800;
  padding: 18px 24px;
  min-height: 56px;
  border-width: 3px;
  box-shadow: 0 6px 0 0 var(--black);
  letter-spacing: 0.01em;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}


/* ─── Shared type ────────────────────────────── */
.section-heading {
  font-family: 'Figtree', 'Figtree-fallback', system-ui, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 48px;
}

.section-heading--center {
  text-align: center;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: inherit;
  gap: 6px;
}

.hint-line {
  font-size: 15.6px;
  line-height: 1.98;
  color: var(--muted);
  text-align: center;
}

.section-callout {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.98;
  color: #121117;
}

.pricing__inner .section-callout {
  margin-bottom: 48px;
}


/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-lt);
}

.nav__wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Figtree', 'Figtree-fallback', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.nav__logo strong {
  color: var(--pink);
}


/* ═══════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════ */
.hero {
  background: var(--white);
  padding: 80px 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 62fr 38fr;
  align-items: center;
  gap: 60px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.hero .cta-group {
  gap: 14px;
}

.hero__headline {
  font-family: 'Figtree', 'Figtree-fallback', sans-serif;
  font-size: clamp(2.25rem, 1.5rem + 3.8vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
}

.hero__subtitle {
  max-width: 36em;
  margin: 0;
  width: 100%;
  text-align: left;
  align-self: flex-start;
  font-size: 22.8px;
  font-weight: 400;
  color: #121117;
  line-height: 1.92;
}

.hero__video {
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-lt);
  width: 100%;
  justify-self: center;
}

.hero__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.yt-facade {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.yt-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.yt-facade__play svg {
  width: 68px;
  height: 48px;
  opacity: 0.9;
  transition: opacity 0.15s, transform 0.15s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

.yt-facade:hover .yt-facade__play svg,
.yt-facade:focus-visible .yt-facade__play svg {
  opacity: 1;
  transform: scale(1.08);
}

.yt-facade:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}


/* ═══════════════════════════════════════════════
   1b. À PROPOS (about)
   ═══════════════════════════════════════════════ */
.about-hicham {
  background: var(--off-white);
  border-top: 1px solid var(--border-lt);
  padding: 72px 0 80px;
}

.about-hicham__inner {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 40px 52px;
  align-items: start;
}

.about-hicham__figure {
  margin: 0;
  width: 100%;
  max-width: 440px;
}

.about-hicham__photo-frame {
  overflow: hidden;
  border-radius: var(--r-img);
  border: 1px solid var(--border-lt);
  background: var(--surface);
  aspect-ratio: 1024 / 569;
}

.about-hicham__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.28);
  transform-origin: center center;
}

.about-hicham__name {
  font-family: 'Figtree', 'Figtree-fallback', sans-serif;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-hicham__p {
  font-size: 22.8px;
  font-weight: 400;
  color: #121117;
  line-height: 1.92;
  margin-bottom: 1.1em;
}

.about-hicham__p:last-child {
  margin-bottom: 0;
}

.about-hicham__kicker {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.about-hicham__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 28px;
  margin: 4px 0 28px;
  padding: 22px 26px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r-card);
  box-shadow: 0 5px 0 0 var(--black);
}

.about-hicham__proof-main {
  flex: 1 1 220px;
  min-width: 0;
}

.proof-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-bottom: 12px;
}

.proof-stat__value {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--black);
}

.proof-stat__plus {
  font-weight: 800;
  color: var(--pink);
}

.proof-stat__label {
  flex: 1 1 160px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--dark);
}

.proof-stat__tagline {
  font-size: 17px;
  line-height: 1.55;
  color: var(--mid);
  margin: 0;
}

.tefl-seal {
  flex-shrink: 0;
  margin-left: auto;
}

.tefl-seal__svg {
  display: block;
}

.about-hicham__p--lead {
  font-size: 23.5px;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   2. PAIN POINTS
   ═══════════════════════════════════════════════ */
.pain {
  background: var(--white);
  border-top: 1px solid var(--border-lt);
  padding: 90px 0;
}

.pain__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--white);
  border: var(--card-border-width) solid var(--card-border);
  border-radius: var(--r-card);
  padding: 33.6px 28.8px;
  box-shadow: var(--card-shadow);
}

.pain__num-box {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  background: #F3F4F6;
  border-radius: 17.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain__num {
  font-family: 'Figtree', 'Figtree-fallback', sans-serif;
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  display: block;
  color: #FF8AB8;
  -webkit-text-stroke: 2.5px #1A1A1A;
  text-shadow:
    1px 1px 0 #D6356E,
    2px 2px 0 #C82E64,
    3px 3px 0 #BA275A,
    4px 4px 0 #AC2050,
    5px 5px 0 #9E1946,
    6px 6px 0 #90123C;
}

.pain__text {
  font-size: 22.8px;
  font-weight: 400;
  color: #121117;
  line-height: 1.92;
}


/* ═══════════════════════════════════════════════
   3. AVANTAGES
   ═══════════════════════════════════════════════ */
.advantages {
  background: var(--white);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 90px 0;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--r-card);
  border: var(--card-border-width) solid var(--card-border);
  padding: 33.6px 28.8px;
  box-shadow: var(--card-shadow);
}

.adv-card__illus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.adv-card__title {
  font-family: 'Figtree', 'Figtree-fallback', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.adv-card__body {
  font-size: 22.8px;
  font-weight: 400;
  color: #121117;
  line-height: 1.98;
}


/* ═══════════════════════════════════════════════
   4. TÉMOIGNAGES
   ═══════════════════════════════════════════════ */
.testimonials {
  background: var(--off-white);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 100px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r-card);
  border: var(--card-border-width) solid var(--card-border);
  padding: 33.6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--card-shadow);
}

.testi-card__stars {
  color: #F4A726;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.2em;
}

.testi-card__quote {
  font-size: 22.8px;
  font-weight: 400;
  color: #3a3a42;
  line-height: 1.92;
  flex: 1;
}

.testi-card__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-lt);
  padding-top: 16px;
  margin-top: auto;
}

.testi-card__avatar {
  width: 62.4px;
  height: 62.4px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

.testi-card__age {
  font-size: 15px;
  font-weight: 500;
  color: #5c5c66;
  line-height: 1.2;
}


/* ═══════════════════════════════════════════════
   5. PRIX
   ═══════════════════════════════════════════════ */
.pricing {
  background: var(--white);
  padding: 90px 0;
}

.pricing__inner {
  text-align: center;
}

.pricing__sub {
  font-size: 20px;
  font-weight: 400;
  color: #121117;
  margin-top: 8px;
  margin-bottom: 48px;
}

/* Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

/* Card base */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 28px;
  border: var(--card-border-width) solid var(--card-border);
  border-radius: var(--r-card);
  text-align: center;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

/* Label */
.pricing-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

/* Price block */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.pricing-card__amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}


.pricing-card__period {
  font-size: 13px;
  color: var(--mid);
}

/* Perks list */
.pricing-card__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.pricing-card__perks li {
  font-size: 24px;
  font-weight: 400;
  color: #121117;
  line-height: 1.98;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-card__perks li::before {
  content: "✓";
  color: var(--pink);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   6. FINAL CTA
   ═══════════════════════════════════════════════ */
.cta-final {
  background: var(--pink-bg);
  border-top: 1px solid #F2D4E3;
  padding: 100px 0;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.cta-final__inner .section-heading {
  margin-bottom: 0;
}

.cta-final__welcome {
  max-width: 36em;
  margin: 0 auto;
  font-family: 'Figtree', 'Figtree-fallback', sans-serif;
  font-size: 22.8px;
  font-weight: 400;
  line-height: 1.92;
  letter-spacing: -0.02em;
  color: #121117;
  text-align: center;
}

.cta-final__line {
  font-size: 20px;
  font-weight: 400;
  color: #121117;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.footer__inner a {
  color: var(--pink);
  font-weight: 500;
}

.footer__inner a:hover {
  text-decoration: underline;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE - Tablet (≤ 960px)
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .hero__text {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero__subtitle {
    text-align: center;
    align-self: center;
  }

  .hero .cta-group,
  .cta-final .cta-group {
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }

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

  .hero__video {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
  }

  .about-hicham__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }

  .about-hicham__figure {
    max-width: 100%;
  }

  .about-hicham__photo {
    transform: scale(1.22);
    object-position: center 40%;
  }

  .about-hicham__proof {
    justify-content: center;
    text-align: center;
  }

  .proof-stat {
    justify-content: center;
    text-align: center;
  }

  .proof-stat__label {
    flex-basis: 100%;
  }

  .tefl-seal {
    margin-left: 0;
  }

  .pain__list,
  .advantages__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .testi-card__stars,
  .testi-card__quote {
    text-align: center;
  }

  .testi-card__author {
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE - Mobile (≤ 600px)
   ═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root {
    --gutter: 20px;
  }

  .hero {
    padding: 56px 0;
  }

  .hero__video {
    order: 1;
  }

  .section-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .pain {
    padding: 64px 0;
  }

  .pain__num-box {
    width: 90px;
    height: 90px;
  }

  .pain__num {
    font-size: 72.5px;
  }

  .about-hicham {
    padding: 56px 0 64px;
  }

  .about-hicham__p {
    font-size: 20.4px;
    line-height: 1.92;
  }

  .about-hicham__p--lead {
    font-size: 21.5px;
  }

  .proof-stat__value {
    font-size: 2.5rem;
  }

  .proof-stat__label {
    font-size: 17px;
  }

  .proof-stat__tagline {
    font-size: 16px;
  }

  .advantages {
    padding: 64px 0;
  }

  .adv-card__title {
    font-size: 19px;
  }

  .adv-card__body,
  .pain__text,
  .testi-card__quote {
    font-size: 20.4px;
  }

  .pain__text,
  .testi-card__quote {
    line-height: 1.92;
  }

  .adv-card__body {
    line-height: 1.98;
  }

  .section-callout {
    font-size: 19.2px;
    line-height: 1.98;
  }

  .pricing-card__perks li {
    font-size: 19.2px;
    line-height: 1.98;
  }

  .testimonials {
    padding: 72px 0;
  }

  .testi-card__stars {
    font-size: 18px;
  }

  .testi-card__author {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .testi-card__author-info {
    align-items: center;
  }

  .testi-card__name {
    font-size: 19px;
  }

  .testi-card__age {
    font-size: 14px;
  }

  .cta-final {
    padding: 72px 0;
  }

  .cta-final__welcome {
    font-size: 20.4px;
    line-height: 1.92;
  }

  .footer__inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .pricing__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
    margin: 0 auto;
  }
}
