/* ============================================================
   LOKY - Pre-Launch Discovery Site
   Design : fond clair, moderne, rassurant, élégant
   Zones sombres ponctuelles pour dramatiser le risque
   ============================================================ */

/* ------------------------------------------------------------
   1. RESET & BASE
   ------------------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #f8f9fb;
  color: #2d3748;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}


/* ------------------------------------------------------------
   2. TYPOGRAPHY
   ------------------------------------------------------------ */

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1a202c;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a202c;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a202c;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #718096;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

h1 em,
h2 em {
  color: #e63946;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #ff6b35;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Variantes typo pour sections sombres */
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #f1f1f1;
}

.section--dark p {
  color: #cbd5e0;
}

.section--dark .section-label {
  color: #ff8c5a;
}


/* ------------------------------------------------------------
   3. BUTTONS
   ------------------------------------------------------------ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  line-height: 1.4;
}

.btn--primary {
  background-color: #ff6b35;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
}

.btn--primary:hover {
  background-color: #e55a2b;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
}

.btn--secondary:hover {
  background-color: #ff6b35;
  color: #ffffff;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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


/* --- Offset ancre pour navbar fixe --- */
[id] {
  scroll-margin-top: 80px;
}

/* ------------------------------------------------------------
   4. NAVIGATION
   ------------------------------------------------------------ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 249, 251, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #1a202c;
  letter-spacing: -0.5px;
}

/* .nav__logo-tagline retiré — logo texte seul */

.nav__menu {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav__link {
  color: #718096;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #1a202c;
}

.nav__link.active {
  color: #1a202c;
  font-weight: 500;
}

.nav__cta {
  display: inline-block;
}

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

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2d3748;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ------------------------------------------------------------
   5. HERO SECTION
   ------------------------------------------------------------ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(180deg, #f8f9fb 0%, #edf2f7 100%);
}

.hero--page {
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1a202c;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: #718096;
  max-width: 500px;
  line-height: 1.6;
}

.hero__cta {
  align-self: flex-start;
}

.hero__note {
  font-size: 0.85rem;
  color: #a0aec0;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mascot {
  max-width: 400px;
  width: 100%;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}


/* ------------------------------------------------------------
   6. VIDEO SECTION — Grille de démonstrations
   ------------------------------------------------------------ */

.video,
.video-section {
  background-color: #ffffff;
}

.video-section__header {
  margin-bottom: 48px;
}

.video-section__intro {
  color: #718096;
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.video-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #e63946;
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #edf2f7;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.05);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.4));
}

.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.video-card__label {
  padding: 12px 16px 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d3748;
  text-align: center;
  line-height: 1.4;
}

.video-card__source {
  display: block;
  padding: 0 16px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.video-section__note {
  font-size: 0.95rem;
  color: #718096;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ------------------------------------------------------------
   7. STATS SECTION — Zone sombre dramatique
   ------------------------------------------------------------ */

.stats {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
  position: relative;
  overflow: hidden;
}

/* Reflet lumineux subtil */
.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 40%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-card,
.stats__card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(4px);
}

.stat-card:hover,
.stats__card:hover {
  border-color: rgba(255, 107, 53, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.stat-card__number,
.stats__number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ff6b35;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.stat-card__label,
.stats__label {
  font-size: 1rem;
  color: #a0aec0;
  margin-top: 12px;
}

.stats__source {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: #718096;
  position: relative;
  z-index: 1;
}

.stats__source-link {
  color: #a0aec0;
  transition: color 0.3s ease;
}

.stats__source-link:hover {
  color: #ff6b35;
}

/* Override typo for dark stats */
.stats h2 {
  color: #f1f1f1;
}

.stats p {
  color: #a0aec0;
}


/* ------------------------------------------------------------
   8. MECHANISM SECTION — Zone sombre dramatique
   ------------------------------------------------------------ */

.mechanism {
  background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
  position: relative;
  overflow: hidden;
}

.mechanism::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
}

.mechanism__header {
  text-align: center;
}

.mechanism__title {
  color: #f1f1f1;
}

.mechanism__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.mechanism__step {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(4px);
}

.mechanism__step:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.mechanism__step-number {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 40px;
  height: 40px;
  background-color: #e63946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.mechanism__step h3 {
  margin-top: 16px;
  color: #f1f1f1;
}

.mechanism__step p {
  color: #a0aec0;
  margin-top: 8px;
}

/* Override quand mechanism__step est utilisé sur fond clair */
.section--content .mechanism__step,
.section--white .mechanism__step,
.solution .mechanism__step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  backdrop-filter: none;
}

.section--content .mechanism__step:hover,
.section--white .mechanism__step:hover,
.solution .mechanism__step:hover {
  border-color: #ff6b35;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
}

.section--content .mechanism__step h3,
.section--white .mechanism__step h3,
.solution .mechanism__step h3 {
  color: #1a202c;
}

.section--content .mechanism__step p,
.section--white .mechanism__step p,
.solution .mechanism__step p {
  color: #4a5568;
}

.mechanism__footer {
  text-align: center;
  margin-top: 48px;
}

.mechanism__cta {
  text-align: center;
  margin-top: 48px;
}

.mechanism__mascot-wrapper {
  text-align: center;
  margin-top: 32px;
}

.mechanism__mascot {
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
}


/* ------------------------------------------------------------
   9. SOLUTION TEASING SECTION — Clair, rassurant
   ------------------------------------------------------------ */

.solution {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
  padding: 80px 0 96px;
}

.solution__header {
  max-width: 700px;
  margin: 0 auto 56px;
}

.solution__title {
  color: #1a202c;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.solution__subtitle {
  color: #4a5568;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Grille principale : avantages + produit */
.solution__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

/* Cartes avantages */
.solution__advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  border-color: #ff6b35;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
  transform: translateY(-2px);
}

.advantage-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-radius: 12px;
}

.advantage-card__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}

.advantage-card__content p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Produit blur & reveal */
.solution__reveal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution__product-card {
  text-align: center;
}

.solution__product-blur {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  margin: 0 auto 16px;
  background: radial-gradient(circle at 50% 40%, #fff7ed 0%, #f0f4f8 60%, #e2e8f0 100%);
  border-radius: 50%;
  overflow: hidden;
}

.solution__product-img {
  max-width: 280px;
  width: 100%;
  filter: blur(24px);
  opacity: 0.8;
  border-radius: 16px;
  transform: scale(1.15);
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.solution__product-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 107, 53, 0.95);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 24px;
  filter: blur(0);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.solution__product-patent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #718096;
  font-weight: 600;
}

/* CTA block inscription */
.solution__cta-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #ff6b35;
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.08);
  position: relative;
  overflow: hidden;
}

.solution__cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8f5e, #ff6b35);
}

.solution__cta-text {
  font-size: 1.1rem;
  color: #2d3748;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}

.subscribe-form--centered {
  max-width: 480px;
  margin: 0 auto;
}

.solution__launch-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6b35;
  background: #fff7ed;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 12px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
}

.solution__cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1a202c;
  margin-bottom: 12px;
}

.solution__counter-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.solution__counter {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 12px;
}

.solution__counter-number {
  color: #ff6b35;
  font-weight: 700;
  font-size: 1.15rem;
}

.solution__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.solution__perks li {
  font-size: 0.82rem;
  color: #94a3b8;
  position: relative;
  padding-left: 16px;
}

.solution__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: 700;
}

/* --- Layout 2 colonnes pour sous-pages (expert, la-solution, faq, la-faille) --- */
.solution__container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.solution__content {
  max-width: 600px;
}

.solution__text {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution__mascot-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution__mascot {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Subscribe form */
.subscribe-form {
  max-width: 500px;
}

.subscribe-form__group {
  display: flex;
  gap: 12px;
}

.subscribe-form__input,
.subscribe-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  color: #2d3748;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-form__input::placeholder,
.subscribe-form input[type="email"]::placeholder {
  color: #a0aec0;
}

.subscribe-form__input:focus,
.subscribe-form input[type="email"]:focus {
  border-color: #ff6b35;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.subscribe-form__btn,
.subscribe-form button {
  flex-shrink: 0;
}

.subscribe-form__error {
  color: #e63946;
  font-size: 0.9rem;
  margin-top: 8px;
}

.subscribe-form__success {
  color: #2ec4b6;
  padding: 24px 16px;
  font-weight: 600;
  font-size: 1.15rem;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.subscribe-form__counter {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #718096;
}


/* ------------------------------------------------------------
   10. SOCIAL PROOF SECTION — Clair
   ------------------------------------------------------------ */

.proof,
.social-proof {
  background-color: #ffffff;
}

.social-proof__title {
  text-align: center;
  color: #1a202c;
}

.proof__logos,
.social-proof__press {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.proof__logo,
.social-proof__press-logo {
  padding: 16px 32px;
  background-color: #f7fafc;
  border-radius: 12px;
  color: #718096;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.proof__logo:hover,
.social-proof__press-logo:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.proof__testimonials,
.social-proof__testimonials {
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.social-proof__carousel {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  min-height: 200px;
}

.social-proof__quote {
  display: none;
  text-align: center;
}

.social-proof__quote--active {
  display: block;
}

.social-proof__quote-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #4a5568;
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
}

.social-proof__quote-author {
  display: block;
  margin-top: 16px;
}

.social-proof__quote-author cite {
  color: #1a202c;
  font-style: normal;
  font-weight: 600;
}

.social-proof__quote-role {
  display: block;
  color: #718096;
  font-size: 0.9rem;
  margin-top: 4px;
}

.social-proof__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.social-proof__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e2e8f0;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}

.social-proof__dot--active {
  background-color: #ff6b35;
}

.social-proof__mascot-wrapper {
  text-align: center;
  margin-top: 32px;
}

.social-proof__mascot {
  max-width: 200px;
  width: 100%;
  margin: 32px auto 0;
  display: block;
}

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

.proof__testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #4a5568;
  line-height: 1.8;
  font-family: 'Playfair Display', serif;
}

.proof__testimonial cite {
  display: block;
  margin-top: 16px;
  color: #718096;
  font-size: 0.9rem;
  font-style: normal;
}

.proof__stars {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-bottom: 16px;
}


/* ------------------------------------------------------------
   11. SUBSCRIBE BAR (Fixed Bottom)
   ------------------------------------------------------------ */

.subscribe-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #e2e8f0;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.subscribe-bar--visible {
  transform: translateY(0);
}

.subscribe-bar__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.subscribe-bar__text {
  color: #4a5568;
  font-size: 0.95rem;
  white-space: nowrap;
}


/* ------------------------------------------------------------
   12. FOOTER
   ------------------------------------------------------------ */

.footer {
  background: linear-gradient(180deg, #1a202c 0%, #171923 100%);
  border-top: none;
  padding: 80px 0 32px;
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  width: 120px;
  margin-bottom: 16px;
}

.footer__tagline {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer__links h4 {
  color: #f1f1f1;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.footer__links ul {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: #a0aec0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: #a0aec0;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.footer__social-link:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: #718096;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: #a0aec0;
}

.footer__copyright {
  color: #718096;
  font-size: 0.85rem;
}


/* ------------------------------------------------------------
   13. FAQ PAGE
   ------------------------------------------------------------ */

.faq__item {
  border-bottom: 1px solid #e2e8f0;
}

.faq__question {
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: #1a202c;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: #ff6b35;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: #a0aec0;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.active .faq__question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq__answer p {
  color: #4a5568;
  line-height: 1.7;
}


/* ------------------------------------------------------------
   14. QUIZ PAGE
   ------------------------------------------------------------ */

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

.quiz__progress {
  height: 4px;
  background-color: #e2e8f0;
  border-radius: 2px;
  margin-bottom: 48px;
  overflow: hidden;
}

.quiz__progress-bar {
  height: 100%;
  background-color: #ff6b35;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.quiz__counter {
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.quiz__question {
  font-size: 1.5rem;
  margin-bottom: 32px;
  font-weight: 600;
  color: #1a202c;
}

.quiz__question-text {
  font-size: 1.5rem;
  margin-bottom: 32px;
  font-weight: 600;
  text-align: center;
  color: #1a202c;
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz__option {
  padding: 20px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.05rem;
  text-align: left;
  color: #2d3748;
}

.quiz__option:hover {
  border-color: #ff6b35;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.08);
}

.quiz__option.selected {
  border-color: #ff6b35;
  background-color: rgba(255, 107, 53, 0.05);
}

.quiz__fade-in {
  animation: fadeInUp 0.3s ease;
}

.quiz__fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.quiz__result {
  display: none;
}

.quiz__result.active {
  display: block;
}

.quiz__result-score {
  text-align: center;
  padding: 32px;
  border: 2px solid;
  border-radius: 16px;
  margin-bottom: 24px;
  background: #ffffff;
}

.quiz__result-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.quiz__result-value {
  font-size: 2.5rem;
  font-weight: 800;
}

.quiz__result--danger {
  border: 2px solid #e63946;
  border-radius: 12px;
  padding: 32px;
  margin-top: 32px;
  background-color: rgba(230, 57, 70, 0.03);
}

.quiz__result-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.quiz__result-explanation {
  color: #4a5568;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}

.quiz__result-cta {
  text-align: center;
  margin-bottom: 32px;
}

.quiz__result-cta-text {
  margin-bottom: 16px;
  color: #718096;
}

.quiz__subscribe-form {
  max-width: 400px;
  margin: 0 auto;
}

.quiz__share {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.quiz__share-label {
  text-align: center;
  color: #718096;
  margin-bottom: 16px;
}

.quiz__share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.quiz__share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.quiz__share-btn:hover {
  opacity: 0.85;
}

.quiz__share-btn--whatsapp { background-color: #25D366; }
.quiz__share-btn--facebook { background-color: #1877F2; }
.quiz__share-btn--email { background-color: #718096; }
.quiz__share-btn--copy { background-color: #edf2f7; color: #2d3748; border: 1px solid #e2e8f0; }

.quiz__restart {
  display: block;
  margin: 32px auto 0;
  padding: 12px 32px;
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #718096;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.quiz__restart:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}


/* ------------------------------------------------------------
   15. SOLUTION PAGE
   ------------------------------------------------------------ */

.solution-page__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.solution-page__step {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-page__step:hover {
  border-color: #cbd5e0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.solution-page__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.solution-page__before {
  border: 2px solid #e63946;
  border-radius: 16px;
  padding: 32px;
  background: rgba(230, 57, 70, 0.02);
}

.solution-page__before h3 {
  color: #e63946;
  margin-bottom: 16px;
}

.solution-page__after {
  border: 2px solid #2ec4b6;
  border-radius: 16px;
  padding: 32px;
  background: rgba(46, 196, 182, 0.03);
}

.solution-page__after h3 {
  color: #2ec4b6;
  margin-bottom: 16px;
}

.solution-page__before ul,
.solution-page__after ul {
  list-style: none;
}

.solution-page__before li,
.solution-page__after li {
  padding: 8px 0;
  color: #4a5568;
  border-bottom: 1px solid #edf2f7;
}

.solution-page__before li:last-child,
.solution-page__after li:last-child {
  border-bottom: none;
}


/* ------------------------------------------------------------
   16. EXPERT PAGE
   ------------------------------------------------------------ */

.expert__timeline {
  position: relative;
  padding-left: 40px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
}

.expert__timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.expert__timeline-item::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #ff6b35;
  border-radius: 50%;
  border: 3px solid #2d3748;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.3);
}

.expert__timeline-item h3 {
  margin-bottom: 8px;
  color: #f1f1f1;
}

.expert__timeline-item p {
  color: #a0aec0;
}

.expert__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.expert__member {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.expert__member:hover {
  border-color: #cbd5e0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.expert__member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background-color: #edf2f7;
  overflow: hidden;
}

.expert__member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert__member h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.expert__member p {
  color: #718096;
  font-size: 0.95rem;
}


/* ------------------------------------------------------------
   17. PRESS PAGE
   ------------------------------------------------------------ */

.press__kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.press__kit-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.press__kit-item:hover {
  border-color: #ff6b35;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
}

.press__kit-item h3 {
  font-size: 1.1rem;
  margin-top: 16px;
  color: #1a202c;
}

.press__kit-item p {
  color: #718096;
  font-size: 0.9rem;
  margin-top: 8px;
}

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


/* ------------------------------------------------------------
   18. PRO PAGE
   ------------------------------------------------------------ */

.pro__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 48px;
  overflow-x: auto;
}

.pro__tab {
  padding: 16px 32px;
  background: transparent;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.pro__tab:hover {
  color: #f1f1f1;
}

.pro__tab.active {
  color: #ff6b35;
}

.pro__tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ff6b35;
}

.pro__panel {
  display: none;
}

.pro__panel.active {
  display: block;
}

.pro__panel h2 {
  color: #f1f1f1;
}

.pro__panel p {
  color: #a0aec0;
}


/* ------------------------------------------------------------
   19. TESTIMONIALS PAGE
   ------------------------------------------------------------ */

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

.testimonial-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: #cbd5e0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.testimonial-card__stars {
  color: #ff6b35;
  margin-bottom: 12px;
  font-size: 1rem;
}

.testimonial-card__text {
  color: #4a5568;
  font-style: italic;
  line-height: 1.7;
  font-size: 1rem;
}

.testimonial-card__author {
  margin-top: 16px;
  color: #718096;
  font-size: 0.9rem;
  font-style: normal;
}


/* ------------------------------------------------------------
   20. BLOG PAGE
   ------------------------------------------------------------ */

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog__card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.blog__card:hover {
  border-color: #cbd5e0;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.blog__card-image {
  aspect-ratio: 16 / 9;
  background-color: #edf2f7;
  overflow: hidden;
}

.blog__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog__card:hover .blog__card-image img {
  transform: scale(1.05);
}

.blog__card-content {
  padding: 24px;
}

.blog__card-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff6b35;
  font-weight: 600;
}

.blog__card-title {
  font-size: 1.2rem;
  margin-top: 8px;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.4;
}

.blog__card-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.blog__card-title a:hover {
  color: #ff6b35;
}

.blog__card-excerpt {
  color: #718096;
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog__card-meta {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #a0aec0;
}


/* ------------------------------------------------------------
   21. LEGAL PAGES
   ------------------------------------------------------------ */

.legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal__content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.8rem;
  color: #1a202c;
}

.legal__content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal__content p {
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal__content li {
  color: #4a5568;
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal__content a {
  color: #ff6b35;
  transition: color 0.3s ease;
}

.legal__content a:hover {
  color: #e55a2b;
}


/* ------------------------------------------------------------
   22. CONTACT FORM
   ------------------------------------------------------------ */

.contact-form {
  max-width: 600px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  color: #2d3748;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #ff6b35;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23718096' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background-color: #ffffff;
  color: #2d3748;
}


/* ------------------------------------------------------------
   23. ANIMATIONS
   ------------------------------------------------------------ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

.btn--pulse {
  animation: pulse 2s infinite;
}


/* ------------------------------------------------------------
   24. UTILITY CLASSES
   ------------------------------------------------------------ */

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

.text-left {
  text-align: left;
}

.text-muted {
  color: #a0aec0;
}

.text-secondary {
  color: #718096;
}

.text-danger {
  color: #e63946;
}

.text-accent {
  color: #ff6b35;
}

.text-success {
  color: #2ec4b6;
}

/* Section contenu sur fond clair (pages intérieures) */
.section--content {
  background-color: #f8f9fb;
}

.section--white {
  background-color: #ffffff;
}

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }


/* ------------------------------------------------------------
   25. RESPONSIVE — 1024px
   ------------------------------------------------------------ */

@media (max-width: 1024px) {

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__container {
    gap: 32px;
  }

  .stats__grid {
    gap: 24px;
  }

  .stat-card,
  .stats__card {
    padding: 36px 24px;
  }

  .stat-card__number,
  .stats__number {
    font-size: 2.8rem;
  }

  .mechanism__steps {
    gap: 24px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .solution-page__steps {
    gap: 24px;
  }
}


/* ------------------------------------------------------------
   26. RESPONSIVE — 768px
   ------------------------------------------------------------ */

@media (max-width: 768px) {

  section {
    padding: 80px 0;
  }

  .hero--page {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    align-items: center;
  }

  .hero__subtitle {
    margin: 0 auto;
  }

  .hero__cta {
    align-self: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__mascot {
    max-width: 280px;
  }

  /* Navigation mobile */
  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .nav__menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.2rem;
    color: #2d3748;
  }

  /* Grids to single column */
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mechanism__steps {
    grid-template-columns: 1fr;
  }

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

  .solution__reveal {
    order: -1;
  }

  .solution__product-blur {
    width: 240px;
    height: 240px;
  }

  .solution__cta-block {
    padding: 32px 24px;
  }

  .solution__perks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .subscribe-form,
  .subscribe-form__group {
    flex-direction: column;
    max-width: 100%;
  }

  .subscribe-form button,
  .subscribe-form__btn {
    width: 100%;
  }

  .proof__logos,
  .social-proof__press {
    gap: 16px;
  }

  .proof__logo,
  .social-proof__press-logo {
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .solution__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .solution__content {
    max-width: 100%;
  }

  .solution__mascot {
    max-width: 200px;
  }

  .solution-page__steps {
    grid-template-columns: 1fr;
  }

  .solution-page__before-after {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .subscribe-bar__container {
    flex-direction: column;
    gap: 12px;
  }

  .subscribe-bar__text {
    white-space: normal;
    text-align: center;
    font-size: 0.85rem;
  }

  .pro__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pro__tab {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .quiz__share,
  .quiz__share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .quiz__share-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}


/* ------------------------------------------------------------
   27. RESPONSIVE — 480px
   ------------------------------------------------------------ */

@media (max-width: 480px) {

  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  p {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .hero__mascot {
    max-width: 220px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .btn--sm {
    padding: 10px 16px;
  }

  .btn--lg {
    padding: 16px 32px;
  }

  .stat-card,
  .stats__card {
    padding: 32px 20px;
  }

  .stat-card__number,
  .stats__number {
    font-size: 2.5rem;
  }

  .mechanism__step {
    padding: 24px;
  }

  .video__play-btn,
  .video-section__play-btn {
    width: 60px;
    height: 60px;
  }

  .video__play-btn::after,
  .video-section__play-btn::after {
    border-width: 10px 0 10px 18px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .blog__card-content {
    padding: 16px;
  }

  .expert__member {
    padding: 24px;
  }

  .press__kit-item {
    padding: 24px;
  }

  .quiz__question,
  .quiz__question-text {
    font-size: 1.2rem;
  }

  .quiz__option {
    padding: 16px;
    font-size: 0.95rem;
  }

  .nav__container {
    padding: 12px 16px;
  }

  .faq__question {
    font-size: 1rem;
    padding: 20px 0;
  }

  .contact-form {
    max-width: 100%;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 16px;
  }

  .subscribe-bar__container {
    padding: 0 16px;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .solution {
    padding: 60px 0 72px;
  }

  .solution__title {
    font-size: 1.8rem;
  }

  .advantage-card {
    padding: 16px;
  }

  .advantage-card__icon {
    width: 40px;
    height: 40px;
  }

  .advantage-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .solution__product-blur {
    width: 200px;
    height: 200px;
  }

  .solution__product-img {
    max-width: 140px;
  }

  .solution__cta-block {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .solution__cta-title {
    font-size: 1.3rem;
  }
}
