/* ==========================================================
   Destination Corée — Sales Page
   Charte graphique : corail, brun, doré, crème
   Typo : Playfair Display + DM Sans + Noto Serif KR
   Animations 2026 : scroll-driven, marquee, tilt, shimmer, split-reveal
   ========================================================== */

:root {
  --c-primary: #D17B6E;
  --c-primary-dark: #b8655a;
  --c-secondary: #8B4A3C;
  --c-secondary-deep: #6b3224;
  --c-accent: #F9DF74;
  --c-accent-dark: #f7d44a;
  --c-green: #678D58;
  --c-green-soft: #e8f0e4;
  --c-red-soft: #f3d8d2;

  --bg: #FFFFFF;
  --bg-alt: #FDF8F3;
  --bg-warm: #F9EDCC;
  --bg-cream: #faf5ee;

  --text: #2B1810;
  --text-2: #5C4033;
  --text-3: #8B7355;
  --border: #E8D5C4;

  --sh-soft: 0 4px 24px rgba(97, 33, 15, 0.08);
  --sh-hard: 0 8px 40px rgba(97, 33, 15, 0.12);
  --sh-xl:   0 20px 60px rgba(97, 33, 15, 0.18);
  --sh-cta:  0 4px 16px rgba(249, 223, 116, 0.45);
  --sh-cta-hover: 0 12px 32px rgba(249, 223, 116, 0.6);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 100px;

  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-kr: 'Noto Serif KR', 'Playfair Display', serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
.strike { text-decoration: line-through; text-decoration-color: var(--c-primary); text-decoration-thickness: 2px; opacity: 0.6; }

/* ==========================================================
   Layout
   ========================================================== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }

.section { padding: clamp(64px, 10vw, 110px) 0; position: relative; }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.section-head h2 { margin-bottom: 16px; }
.section-lead { font-size: 1.1rem; color: var(--text-2); }
.section-center { text-align: center; }

/* ==========================================================
   Typography
   ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--f-serif); color: var(--c-secondary);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.45rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(209, 123, 110, 0.12);
  color: var(--c-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.hero-eyebrow { background: rgba(209, 123, 110, 0.18); }

.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 0 rgba(209, 123, 110, 0.7);
  animation: pulse 2s infinite;
}

.eyebrow-alt {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-secondary);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.eyebrow-dark {
  display: inline-block;
  color: var(--c-accent);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
}

.text-italic { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
.text-accent { color: var(--c-primary); }

/* ==========================================================
   Buttons
   ========================================================== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--c-accent); color: var(--c-secondary);
  font-family: var(--f-sans); font-weight: 700; font-size: 1rem;
  padding: 18px 36px; border-radius: var(--r-pill);
  border: none; cursor: pointer;
  box-shadow: var(--sh-cta);
  transition: transform .35s var(--ease-spring), background .25s ease, box-shadow .3s ease;
  letter-spacing: 0.01em;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.btn-primary:hover {
  background: var(--c-accent-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--sh-cta-hover);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary .arrow { transition: transform .3s var(--ease-out); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-xl { padding: 22px 44px; font-size: 1.05rem; }
.btn-sm { padding: 12px 22px; font-size: 0.9rem; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 16px 26px; border-radius: var(--r-pill);
  font-weight: 600; color: var(--c-secondary);
  transition: color .25s ease, transform .25s ease;
}
.btn-ghost:hover { color: var(--c-primary); transform: translateX(4px); }

.btn-ghost-alt {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-pill);
  background: transparent; border: 2px solid var(--c-primary);
  color: var(--c-primary); font-weight: 600;
  transition: all .3s var(--ease-out);
}
.btn-ghost-alt:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }

.btn-header {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
  padding: 9px 22px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.9rem;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-header:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(209, 123, 110, 0.28);
}

/* ==========================================================
   Scroll progress
   ========================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 200; background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transition: width .08s linear;
}

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, padding .3s ease;
}
.site-header.scrolled {
  border-color: var(--border);
  background: rgba(255,255,255,0.95);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 54px; height: 54px; object-fit: contain; border-radius: 10px; }
.brand-text { font-weight: 600; color: var(--c-secondary); font-size: 0.95rem; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--text-2);
  position: relative; transition: color .2s ease;
}
.nav-links a:hover { color: var(--c-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--c-primary);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(80px, 10vw, 130px);
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute; top: -15%; right: -15%;
  width: 60%; height: 120%;
  background: radial-gradient(circle at 50% 50%, rgba(249, 223, 116, 0.45) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(50px);
  animation: blobDrift 20s ease-in-out infinite;
}
.hero-bg-blob.blob-2 {
  top: 40%; right: auto; left: -20%;
  width: 50%; height: 80%;
  background: radial-gradient(circle at 50% 50%, rgba(209, 123, 110, 0.25) 0%, transparent 60%);
  animation-delay: -10s; animation-duration: 26s;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 30px) scale(1.05); }
  66% { transform: translate(30px, -20px) scale(0.95); }
}

.hero-hangeul-bg {
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--f-kr);
  font-size: clamp(10rem, 22vw, 24rem);
  font-weight: 500;
  color: rgba(97, 33, 15, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-title {
  font-family: var(--f-serif);
  font-weight: 500;
  margin: 18px 0 22px;
  line-height: 1.08;
}
.hero-title .line { display: block; }
.hero-title em { font-style: italic; font-weight: 400; color: var(--text-2); }
.hero-title strong { font-style: normal; font-weight: 600; color: var(--c-secondary); }
.hero-ko {
  font-family: var(--f-kr);
  color: var(--c-primary);
  font-weight: 500;
  margin-left: 8px;
  font-size: 0.8em;
}
.hero-title-accent {
  display: block;
  color: var(--c-primary);
  font-style: italic;
  font-weight: 500;
  margin-top: 4px;
}
.hero-title-accent em {
  font-style: italic;
  background: linear-gradient(180deg, transparent 62%, rgba(249, 223, 116, 0.45) 62%);
  padding: 0 4px;
}

.hero-sub {
  font-size: 1.12rem; color: var(--text-2);
  max-width: 560px; margin-bottom: 28px;
}
.hero-sub strong, .hero-sub u { color: var(--c-secondary); font-weight: 600; }
.hero-sub u { text-decoration-color: var(--c-primary); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  margin-bottom: 20px;
}

.hero-mini-proof {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--text-2);
  margin-bottom: 28px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-soft);
  width: fit-content;
}
.hero-mini-proof strong { color: var(--c-secondary); font-weight: 600; }
.stars-xs { color: var(--c-accent); letter-spacing: 2px; font-size: 0.9rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 32px; list-style: none;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--f-serif);
  font-size: 1.65rem; color: var(--c-secondary); font-weight: 600;
}
.hero-trust span {
  font-size: 0.78rem; color: var(--text-3);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-top: 2px;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.hero-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: transform .6s var(--ease-out);
}
.hero-photo:hover { transform: perspective(1000px) rotateY(0) rotateX(0); }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.hero-photo:hover img { transform: scale(1.04); }

.photo-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(97, 33, 15, 0) 50%, rgba(97, 33, 15, 0.12) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.photo-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 600;
  color: var(--c-secondary);
  display: inline-flex; align-items: center; gap: 8px;
}
.photo-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.hero-stamp {
  position: absolute;
  top: -18px; right: -18px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--c-accent);
  display: grid; place-items: center;
  box-shadow: var(--sh-hard);
  animation: spinSlow 20s linear infinite;
  z-index: 2;
}
.stamp-inner {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-secondary);
  text-align: center;
  line-height: 1.2;
}
@keyframes spinSlow {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

.floating-card {
  position: absolute;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--sh-hard);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: float 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.card-1 { top: 12%; left: -8%; }
.card-1 .fc-korean { font-family: var(--f-kr); font-size: 1.1rem; color: var(--c-primary); font-weight: 600; }
.card-1 .fc-trad { font-size: 0.78rem; color: var(--text-3); line-height: 1.3; }
.card-2 { bottom: 10%; right: -6%; animation-delay: 1s; }
.card-2 .fc-stars { color: var(--c-accent); font-size: 0.9rem; letter-spacing: 2px; }
.card-2 .fc-trad { font-size: 0.82rem; color: var(--text); font-weight: 500; max-width: 180px; font-style: italic; }
.card-2 .fc-trad em {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c-primary);
  letter-spacing: 0.04em;
}

/* ==========================================================
   Trust Marquee
   ========================================================== */
.trust-bar {
  background: var(--c-secondary);
  color: var(--bg-warm);
  padding: 18px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; flex-shrink: 0;
  gap: 28px; align-items: center;
  animation: scroll-x 40s linear infinite;
  white-space: nowrap;
  padding-right: 28px;
}
.marquee-track span { font-size: 0.92rem; letter-spacing: 0.02em; }
.marquee-track .dot-sep { color: var(--c-accent); font-weight: bold; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   Problem
   ========================================================== */
.section-problem { background: var(--bg-alt); }
.section-problem .eyebrow { display: block; text-align: center; margin-left: auto; margin-right: auto; }
.section-problem h2 { margin-bottom: 56px; max-width: 820px; margin-left: auto; margin-right: auto; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.problem-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s ease;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.problem-card:hover { transform: translateY(-8px); box-shadow: var(--sh-hard); }
.problem-card:hover::before { transform: scaleX(1); }

/* Header row : numéro à gauche, emoji à droite */
.problem-card .num {
  display: inline-block;
  font-family: var(--f-serif);
  font-size: 1.4rem; font-weight: 500;
  color: var(--c-primary);
}
.problem-emoji {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(139, 74, 60, 0.15));
  transition: transform .4s var(--ease-spring);
}
.problem-card:hover .problem-emoji {
  transform: scale(1.1) rotate(-6deg);
}
.problem-card h3 { margin-top: 14px; margin-bottom: 10px; font-size: 1.12rem; padding-right: 50px; }
.problem-card p { color: var(--text-2); font-size: 0.95rem; }

/* Variation des accent-bars pour casser le côté monocolore */
.problem-card:nth-child(1)::before {
  background: linear-gradient(90deg, #D17B6E, #f5b8a8);
}
.problem-card:nth-child(2)::before {
  background: linear-gradient(90deg, #F9DF74, #fceea4);
}
.problem-card:nth-child(3)::before {
  background: linear-gradient(90deg, #8B4A3C, #b8655a);
}
.problem-card:nth-child(4)::before {
  background: linear-gradient(90deg, #678D58, #a8c5a0);
}

/* Soft tinted background pour casser le tout-blanc */
.problem-card:nth-child(1) { background: linear-gradient(160deg, #fff 0%, #fdf3f0 100%); }
.problem-card:nth-child(2) { background: linear-gradient(160deg, #fff 0%, #fdf6e0 100%); }
.problem-card:nth-child(3) { background: linear-gradient(160deg, #fff 0%, #f5ebe5 100%); }
.problem-card:nth-child(4) { background: linear-gradient(160deg, #fff 0%, #ecf2e8 100%); }

/* ==========================================================
   Dark soft (agitateur)
   ========================================================== */
.section-dark-soft {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  text-align: center;
  position: relative;
}
.big-statement {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--c-secondary);
  margin-bottom: 20px;
}
.sub-statement {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================
   Solution
   ========================================================== */
.section-solution { background: #fff; }
.solution-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.solution-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--sh-xl);
  max-height: 480px;
}
.solution-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.solution-photo:hover img { transform: scale(1.04); }

.solution-copy h2 { margin: 14px 0 20px; }
.solution-copy .lead { font-size: 1.08rem; color: var(--text-2); margin-bottom: 28px; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  padding-left: 36px;
  position: relative;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}
.checklist li::before {
  content: '✓';
  position: absolute; left: 0; top: 2px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-green-soft); color: var(--c-green);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.82rem;
}

/* ==========================================================
   Pull quote
   ========================================================== */
.section-pullquote {
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: clamp(48px, 7vw, 80px) 0;
  text-align: center;
}
.pullquote {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  font-weight: 500;
  color: var(--c-secondary);
  max-width: 800px;
  margin: 0 auto;
}
.pullquote em {
  color: var(--c-primary);
  font-style: italic;
  background: linear-gradient(180deg, transparent 60%, rgba(249, 223, 116, 0.4) 60%);
  padding: 0 4px;
}
.pullquote-sig {
  margin-top: 24px;
  color: var(--c-primary);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pullquote-sig::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--c-primary);
  opacity: 0.55;
  border-radius: 2px;
}

/* ==========================================================
   Jimin bio
   ========================================================== */
.section-jimin { background: var(--bg-alt); }
.jimin-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.jimin-copy h2 { margin: 14px 0 20px; }
.jimin-copy h2 em { color: var(--c-primary); font-style: italic; }
.jimin-copy p { color: var(--text-2); margin-bottom: 16px; font-size: 1.02rem; }
.jimin-copy p strong { color: var(--c-secondary); }

.jimin-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.jimin-stats div { display: flex; flex-direction: column; }
.jimin-stats strong {
  font-family: var(--f-serif);
  font-size: 1.5rem; color: var(--c-primary); font-weight: 600;
}
.jimin-stats span { font-size: 0.78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.jimin-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-secondary);
  padding-left: 24px;
  border-left: 3px solid var(--c-accent);
}
.jimin-quote .qmark { color: var(--c-primary); font-size: 1.4rem; }

.jimin-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--sh-xl);
}
.jimin-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.jimin-photo:hover img { transform: scale(1.05); }
.jimin-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(97, 33, 15, 0.88);
  backdrop-filter: blur(10px);
  color: var(--c-accent);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
/* Portrait inset — petit cercle en bas-droite de la photo bio */
.jimin-inset {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(253, 248, 243, 0.96);
  box-shadow: 0 6px 22px rgba(97, 33, 15, 0.35);
  z-index: 3;
  transition: transform 0.3s ease;
}
.jimin-inset:hover { transform: scale(1.06); }
.jimin-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: none;
}

/* ==========================================================
   Programme — Redesign 3 cartes sombres
   ========================================================== */
.section-programme {
  background: linear-gradient(180deg, #FDF8F3 0%, #F9EDCC 100%);
  position: relative;
  overflow: hidden;
}
.section-programme::before {
  content: '여정';
  position: absolute;
  top: 12%;
  right: -40px;
  font-family: var(--f-kr);
  font-size: 280px;
  font-weight: 600;
  color: rgba(97, 33, 15, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* === Journey timeline === */
.prog-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px;
  position: relative;
  align-items: stretch;
}

/* Connecting rail (desktop) */
.prog-rail {
  position: absolute;
  top: -36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 22px;
  pointer-events: none;
}
.prog-rail-line,
.prog-rail-fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  border-radius: 2px;
}
.prog-rail-line {
  left: 0; right: 0;
  background: rgba(139, 74, 60, 0.22);
}
.prog-rail-fill {
  left: 0; width: 50%;
  background: var(--c-primary);
  opacity: 0.7;
}
.prog-rail-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--c-primary);
  box-shadow: 0 0 0 4px rgba(209, 123, 110, 0.14);
}
.prog-rail-dot-1 { left: 0; }
.prog-rail-dot-2 {
  left: 50%;
  background: var(--c-primary);
  width: 18px; height: 18px;
  box-shadow: 0 0 0 5px rgba(249, 223, 116, 0.5);
}
.prog-rail-dot-3 {
  left: 100%;
  background: var(--c-secondary);
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 4px rgba(249, 223, 116, 0.5);
}

/* Step card */
.prog-step {
  position: relative;
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 26px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(97, 33, 15, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  overflow: hidden;
}
.prog-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(97, 33, 15, 0.14);
}

.prog-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.prog-step-kr {
  font-family: var(--f-kr);
  font-size: 64px;
  font-weight: 600;
  color: rgba(209, 123, 110, 0.18);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.prog-step-month {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(209, 123, 110, 0.12);
  padding: 5px 11px;
  border-radius: var(--r-pill);
}
.prog-step-title {
  font-family: var(--f-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--c-secondary);
  margin: 6px 0 4px;
  line-height: 1.15;
}
.prog-step-tag {
  font-family: var(--f-kr), var(--f-serif);
  font-size: 0.85rem;
  color: var(--text-3);
  font-style: italic;
  margin-bottom: 16px;
}
.prog-step-headline {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--c-secondary);
  border-left: 3px solid var(--c-primary);
  padding-left: 14px;
  margin-bottom: 18px;
  line-height: 1.4;
}
.prog-step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prog-step-list li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.prog-step-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--c-primary);
  font-weight: 800;
  font-size: 0.95rem;
}
.prog-step-list li em {
  font-style: italic;
  color: var(--c-secondary);
  font-weight: 600;
}

/* Progress bar at bottom */
.prog-step-progress {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed rgba(139, 74, 60, 0.25);
}
.prog-step-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(139, 74, 60, 0.12);
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
}
.prog-step-progress-bar::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 33%);
  background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
  border-radius: var(--r-pill);
  transition: width 0.6s var(--ease-out);
}
.prog-step-progress-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-secondary);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* Featured step (Mois 02) */
.prog-step-featured {
  background: linear-gradient(165deg, #fff 0%, #FDF8F3 100%);
  border-color: rgba(209, 123, 110, 0.45);
  border-top: 3px solid var(--c-primary);
  box-shadow: 0 14px 36px rgba(97, 33, 15, 0.14);
  margin-top: -12px;
  margin-bottom: 12px;
}
.prog-step-flag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: var(--c-secondary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px 5px;
  border-radius: 0 0 var(--r-pill) var(--r-pill);
  white-space: nowrap;
  z-index: 2;
}

/* Final step (Mois 03) */
.prog-step-final {
  background: linear-gradient(165deg, var(--c-secondary) 0%, #3d1508 100%);
  color: #fff;
  border-color: rgba(249, 223, 116, 0.18);
}
.prog-step-final .prog-step-kr { color: rgba(249, 223, 116, 0.18); }
.prog-step-final .prog-step-month {
  color: var(--c-accent);
  background: rgba(249, 223, 116, 0.16);
}
.prog-step-final .prog-step-title { color: #fff; }
.prog-step-final .prog-step-tag { color: rgba(255, 255, 255, 0.55); }
.prog-step-final .prog-step-headline {
  color: var(--c-accent);
  border-left-color: var(--c-accent);
}
.prog-step-final .prog-step-list li { color: rgba(255, 255, 255, 0.88); }
.prog-step-final .prog-step-list li::before { color: var(--c-accent); }
.prog-step-final .prog-step-list li em { color: var(--c-accent); font-weight: 600; }
.prog-step-final .prog-step-progress { border-top-color: rgba(249, 223, 116, 0.2); }
.prog-step-final .prog-step-progress-bar { background: rgba(249, 223, 116, 0.15); }
.prog-step-final .prog-step-progress-bar::after {
  background: linear-gradient(90deg, var(--c-accent), #fff);
}
.prog-step-final .prog-step-progress-label { color: var(--c-accent); }

/* Mobile */
@media (max-width: 720px) {
  .section-programme::before { font-size: 180px; top: 6%; right: -20px; }
  .prog-journey {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }
  .prog-rail { display: none; }
  .prog-step-featured {
    transform: none;
    border-top-width: 4px;
  }
  .prog-step-featured:hover { transform: translateY(-4px); }
  .prog-step-title { font-size: 1.4rem; }
  .prog-step-kr { font-size: 52px; }
  .prog-step-flag { font-size: 0.6rem; padding: 3px 12px 4px; }
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 32px;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: var(--c-primary);
}
.program-card.featured {
  background: linear-gradient(160deg, var(--bg-cream) 0%, #fff 100%);
  border-color: var(--c-primary);
  box-shadow: var(--sh-soft);
}
.badge-featured {
  position: absolute; top: -14px; right: 24px;
  background: var(--c-primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(209, 123, 110, 0.35);
}
.program-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.month-label {
  background: var(--c-secondary); color: var(--c-accent);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill);
}
.program-card.featured .month-label { background: var(--c-primary); color: #fff; }
.month-emoji { font-size: 1.8rem; }
.program-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.program-card h3 .kr {
  font-family: var(--f-kr); font-size: 0.85rem;
  color: var(--c-primary); font-weight: 500;
  margin-left: 6px; font-style: italic;
}
.program-goal { color: var(--text-2); margin-bottom: 22px; font-size: 0.98rem; font-weight: 500; }
.program-subhead {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}
.program-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.program-card ul li {
  position: relative; padding-left: 22px;
  font-size: 0.94rem; color: var(--text);
}
.program-card ul li::before {
  content: '→'; position: absolute; left: 0; top: 0;
  color: var(--c-primary); font-weight: bold;
}
.program-result {
  background: var(--bg-alt);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--c-secondary);
  font-weight: 600;
}
.program-result span {
  display: block;
  font-weight: 400;
  color: var(--text-2);
  margin-top: 4px;
}
.program-card.featured .program-result {
  background: rgba(209, 123, 110, 0.12);
}

/* ==========================================================
   Process (Comment ça se passe)
   ========================================================== */
.section-process { background: var(--bg-alt); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.process-step {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-soft);
  transition: transform .4s var(--ease-out);
  position: relative;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--sh-hard); }
.step-icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2.4rem;
  margin-bottom: 18px;
  box-shadow: var(--sh-soft);
  transition: transform .4s var(--ease-spring);
}
.process-step:hover .step-icon-circle {
  transform: scale(1.1) rotate(-6deg);
}
.process-step-1 .step-icon-circle { background: linear-gradient(160deg, #fdf3f0, #f5d9d3); }
.process-step-2 .step-icon-circle { background: linear-gradient(160deg, #F9EDCC, #fceea4); }
.process-step-3 .step-icon-circle { background: linear-gradient(160deg, #e8f0e4, #d4e4cc); }

.step-num {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.74rem;
  color: var(--c-primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.process-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.process-step p { color: var(--text-2); font-size: 0.94rem; }
.process-arrow {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  color: var(--c-primary);
  display: grid; place-items: center;
  font-weight: 400;
}

/* ==========================================================
   Bento — Format inclus
   ========================================================== */
.section-inclus { background: #fff; }
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bento-item {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--sh-soft);
  transition: transform .4s var(--ease-out), box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.bento-item:hover { transform: translateY(-6px); box-shadow: var(--sh-hard); }
.bento-xl {
  grid-column: span 2; grid-row: span 1;
  background: linear-gradient(160deg, #FDF8F3 0%, #F4E5D5 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: 4px solid var(--c-secondary);
}
.bento-xl::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(209, 123, 110, 0.12), transparent 70%);
  pointer-events: none;
}
.bento-xl h3 { color: var(--c-secondary); }
.bento-xl p { color: var(--text-2); }

.bento-highlight {
  background: linear-gradient(160deg, #FDF8F3 0%, #fdf0eb 100%);
  color: var(--text);
  border: 1px solid var(--border);
  border-left: 4px solid var(--c-primary);
}
.bento-highlight h3 { color: var(--c-secondary); }
.bento-highlight p { color: var(--text-2); }
.bento-highlight p strong { color: var(--c-secondary); }
.bento-tag {
  display: inline-block;
  background: rgba(209, 123, 110, 0.15);
  color: var(--c-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}

.bento-wide { grid-column: span 2; }
.bento-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.bento-item h3 { margin-bottom: 10px; }
.bento-item p { color: var(--text-2); font-size: 0.95rem; }

/* ==========================================================
   Bonus
   ========================================================== */
.section-bonus {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-cream) 100%);
}
.section-bonus .section-head { text-align: center; }
.bonus-mockup {
  margin: 0 auto 48px;
  max-width: 720px;
  text-align: center;
  padding: 0 16px;
}
.bonus-mockup-frame {
  background: linear-gradient(160deg, #FDF8F3 0%, #F4E5D5 100%);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--sh-soft);
  position: relative;
  overflow: hidden;
}
.bonus-mockup-frame::before {
  content: ''; position: absolute;
  top: -30%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(209, 123, 110, 0.08), transparent 70%);
  pointer-events: none;
}
.bonus-mockup-svg {
  width: 100%;
  max-width: 640px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(97, 33, 15, 0.12));
}
.bonus-mockup-caption {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bonus-mockup-caption strong {
  font-family: var(--f-serif);
  color: var(--c-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
}
.bonus-mockup-caption span {
  font-size: 0.84rem;
  color: var(--text-3);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 28px 26px;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hard);
  border-color: var(--c-accent);
}
.bonus-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--f-serif);
  color: var(--c-primary);
  font-size: 1.4rem; font-weight: 500;
  opacity: 0.6;
}
.bonus-card h3 { font-size: 1.08rem; margin: 6px 0 8px; padding-right: 40px; }
.bonus-card p { color: var(--text-2); font-size: 0.92rem; }
.bonus-spec {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-primary);
  background: rgba(209,123,110,0.09);
  border: 1px solid rgba(209,123,110,0.22);
  border-radius: 20px;
  padding: 3px 10px;
}

/* ==========================================================
   Transformation
   ========================================================== */
.section-transfo { background: #fff; }
.transfo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.transfo-col {
  padding: 36px 30px;
  border-radius: var(--r-md);
  position: relative;
}
.col-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.transfo-before {
  background: #f5f0eb;
  border: 1px solid var(--border);
  opacity: 0.92;
}
.transfo-before .col-tag { background: #e8dccf; color: var(--text-2); }
.transfo-before ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.transfo-before ul li {
  padding-left: 28px; position: relative;
  color: var(--text-2);
  font-size: 0.98rem;
}
.transfo-before ul li::before {
  content: '×'; position: absolute; left: 4px;
  color: #c08a7a; font-weight: bold; font-size: 1.3rem;
  top: -4px;
}

.transfo-after {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  border: 1px solid var(--c-primary);
  box-shadow: var(--sh-soft);
}
.transfo-after .col-tag { background: var(--c-primary); color: #fff; }
.transfo-after ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.transfo-after ul li {
  padding-left: 28px; position: relative;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
}
.transfo-after ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 2px;
  color: var(--c-green); font-weight: bold;
}

.transfo-arrow { display: grid; place-items: center; font-family: var(--f-serif); color: var(--c-primary); }
.transfo-arrow span { font-size: 3rem; font-weight: 400; line-height: 1; }
.transfo-arrow small {
  font-family: var(--f-sans);
  display: block; font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 6px;
}

/* ==========================================================
   Témoignages + WhatsApp
   ========================================================== */
.section-temoignages { background: var(--bg-alt); }
.testi-meta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px;
  color: var(--text-2);
  font-size: 0.92rem;
}
.testi-meta strong { color: var(--c-secondary); }

.whatsapp-mockup {
  max-width: 420px;
  margin: 0 auto 40px;
  background: #e5ddd5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.03) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-hard);
}
.wa-header {
  background: #075e54;
  color: #fff;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.wa-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.wa-meta { display: flex; flex-direction: column; }
.wa-meta strong { font-size: 0.95rem; font-weight: 600; }
.wa-meta span { font-size: 0.78rem; opacity: 0.85; }
.wa-body {
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.wa-bubble {
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px 12px 12px 2px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  align-self: flex-start;
}
.wa-bubble p { font-size: 0.92rem; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.wa-bubble small { font-size: 0.7rem; color: var(--text-3); display: block; text-align: right; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 32px 28px;
  box-shadow: var(--sh-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .4s var(--ease-out), box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--sh-hard); }
.stars { color: var(--c-accent); letter-spacing: 3px; font-size: 1rem; }
.testimonial p {
  font-style: italic;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
}
.testimonial footer {
  font-size: 0.88rem;
  color: var(--text-3);
  margin-top: auto;
  padding-top: 8px;
}
.testimonial footer strong { color: var(--c-secondary); font-weight: 600; font-style: normal; }

/* ==========================================================
   Dark quote
   ========================================================== */
.section-dark {
  background: linear-gradient(135deg, var(--c-secondary) 0%, var(--c-secondary-deep) 100%);
  color: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249, 223, 116, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}
.section-dark blockquote {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
  color: var(--bg-warm);
  position: relative;
  z-index: 1;
}
.section-dark blockquote em { color: var(--c-accent); font-family: var(--f-kr); font-style: normal; }
.section-dark blockquote strong { color: #fff; font-style: normal; font-weight: 600; }
.section-dark blockquote .sign-off {
  display: block;
  margin-top: 16px;
  color: var(--c-accent);
  font-size: 0.9em;
}
.sig {
  margin-top: 28px;
  color: var(--c-accent);
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  font-family: var(--f-serif);
  font-style: italic;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sig::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--c-accent);
  opacity: 0.7;
  border-radius: 2px;
}
.sig-micro {
  margin-top: 12px;
  color: rgba(249, 237, 204, 0.6);
  font-size: 0.82rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ==========================================================
   For You
   ========================================================== */
.section-foryou { background: var(--bg-alt); }
.foryou-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.foryou-col {
  padding: 36px 32px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--sh-soft);
  transition: transform .4s var(--ease-out);
}
.foryou-col:hover { transform: translateY(-4px); }
.foryou-col h3 {
  margin-bottom: 22px;
  font-size: 1.3rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.foryou-yes h3 { color: var(--c-green); }
.foryou-no h3 { color: #c08a7a; }
.foryou-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foryou-col ul li {
  padding-left: 28px;
  position: relative;
  color: var(--text);
  font-size: 0.98rem;
}
.foryou-yes ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 2px;
  color: var(--c-green); font-weight: bold;
}
.foryou-no ul li::before {
  content: '×';
  position: absolute; left: 4px; top: -4px;
  color: #c08a7a; font-weight: bold; font-size: 1.3rem;
}

/* ==========================================================
   Garantie
   ========================================================== */
.section-guarantee { background: var(--bg-alt); }
.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 44px;
  border-radius: var(--r-md);
  border: 2px solid var(--c-accent);
  box-shadow: var(--sh-soft);
}
.guarantee-badge {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  display: grid; place-items: center;
  color: var(--c-secondary);
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(249, 223, 116, 0.4);
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.g-14 { font-family: var(--f-serif); font-size: 3rem; font-weight: 700; line-height: 1; }
.g-days { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.guarantee-copy h2 { margin-bottom: 12px; }
.guarantee-copy h2 em { color: var(--c-primary); font-style: italic; }
.guarantee-copy p { color: var(--text-2); margin-bottom: 10px; }
.guarantee-copy .small { font-size: 0.9rem; color: var(--text-3); font-style: italic; }

/* ==========================================================
   Offre / Pricing
   ========================================================== */
.section-offre { background: #fff; }
.offer-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
}
.offer-left {
  padding: 48px;
  background: #fff;
}
.offer-left h3 { font-size: 1.55rem; margin-bottom: 24px; }
.offer-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.offer-list li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px dashed var(--border);
  position: relative;
  font-size: 0.96rem;
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-green-soft); color: var(--c-green);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.82rem;
}
.offer-list li span {
  color: var(--text-3);
  font-size: 0.86rem;
  margin-left: 6px;
}
.offer-list li.offer-highlight {
  background: rgba(249, 223, 116, 0.18);
  border-radius: 8px;
  padding-left: 34px;
  padding-right: 14px;
  margin: 4px -4px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
}
.offer-list li.offer-highlight::before {
  left: 4px;
  background: var(--c-accent);
  color: var(--c-secondary);
}
.offer-list li.offer-highlight strong { color: var(--c-secondary); }

.offer-right {
  padding: 48px 40px;
  background: linear-gradient(160deg, var(--c-secondary) 0%, var(--c-secondary-deep) 100%);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
}
.price-main {
  margin: 12px 0 6px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.price-num {
  font-family: var(--f-serif);
  font-size: 4.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.price-per {
  font-size: 1.1rem;
  color: var(--bg-warm);
  font-weight: 500;
}
.price-detail {
  color: var(--bg-warm);
  font-size: 0.98rem;
  margin-bottom: 24px;
  opacity: 0.85;
}

.price-anchor {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(249, 223, 116, 0.25);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
  text-align: left;
}
.anchor-title {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.anchor-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(249, 237, 204, 0.8);
  border-bottom: 1px dashed rgba(249, 237, 204, 0.15);
}
.anchor-row:last-child { border-bottom: none; }
.anchor-row strong { color: rgba(249, 237, 204, 0.7); font-weight: 500; }
.anchor-row.anchor-us {
  padding-top: 10px; margin-top: 6px;
  border-top: 1px solid rgba(249, 223, 116, 0.35);
  color: #fff;
}
.anchor-row.anchor-us strong { color: var(--c-accent); font-weight: 700; font-size: 0.96rem; }
.anchor-row.anchor-us span em { color: var(--c-accent); font-style: italic; }

.price-bullets {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 24px;
  font-size: 0.86rem;
  color: rgba(249, 237, 204, 0.88);
}
.price-micro {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(249, 237, 204, 0.6);
  font-style: italic;
}

/* ==========================================================
   FAQ
   ========================================================== */
.section-faq { background: var(--bg-alt); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] { border-color: var(--c-primary); box-shadow: var(--sh-soft); }
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 600;
  color: var(--c-secondary);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  padding-right: 56px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--c-primary);
  font-weight: 400;
  transition: transform .3s var(--ease-out);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 28px 22px;
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-body p strong { color: var(--c-secondary); }

/* ==========================================================
   Final CTA
   ========================================================== */
.section-final-cta {
  background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
  text-align: center;
  position: relative;
}
.final-photo {
  width: 140px; height: 140px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--sh-hard);
  border: 4px solid #fff;
}
.final-photo img { width: 100%; height: 100%; object-fit: cover; }
.section-final-cta .eyebrow { margin-bottom: 14px; }
.section-final-cta h2 { margin-bottom: 18px; }
.final-sub {
  font-size: 1.08rem;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 24px;
}
.final-guarantee-reminder {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-green-soft);
  color: var(--c-green);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.final-guarantee-reminder strong { color: var(--c-green); }
.final-micro {
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--text-3);
}
.final-sign {
  margin-top: 36px;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-primary);
  font-size: 1.1rem;
}

/* ==========================================================
   Downsell
   ========================================================== */
.section-downsell {
  background: var(--bg-alt);
  padding: clamp(48px, 6vw, 72px) 0;
}
.downsell-card {
  background: #fff;
  border: 1px dashed var(--c-primary);
  border-radius: var(--r-md);
  padding: 36px;
  text-align: center;
  transition: box-shadow .3s ease;
}
.downsell-card:hover { box-shadow: var(--sh-soft); }
.downsell-card h3 {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: var(--c-secondary);
  margin-bottom: 12px;
}
.downsell-card h3 em { color: var(--c-primary); font-style: italic; }
.downsell-card p { color: var(--text-2); margin-bottom: 20px; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
  background: var(--c-secondary);
  color: var(--bg-warm);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-logo {
  width: 160px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}
.footer-brand span { font-size: 0.9rem; color: rgba(249, 237, 204, 0.6); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--bg-warm);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity .2s ease;
}
.footer-links a:hover { opacity: 1; color: var(--c-accent); }
.footer-legal {
  grid-column: 1 / -1;
  padding-top: 28px;
  margin-top: 20px;
  border-top: 1px solid rgba(249, 237, 204, 0.15);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 0.82rem;
  color: rgba(249, 237, 204, 0.5);
}

/* ==========================================================
   Sticky mobile CTA
   ========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 90;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
  box-shadow: 0 -4px 20px rgba(97, 33, 15, 0.08);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  max-width: 600px; margin: 0 auto;
}
.sticky-price { display: flex; flex-direction: column; }
.sticky-price strong {
  font-family: var(--f-serif); font-size: 1.3rem; color: var(--c-secondary);
}
.sticky-price strong small { font-size: 0.75rem; color: var(--text-3); font-weight: 400; margin-left: 4px; }
.sticky-price span { font-size: 0.72rem; color: var(--c-green); font-weight: 600; }

/* ==========================================================
   Reveal animations
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Split reveal for hero title */
.split-reveal .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
}
.split-reveal.is-visible .line { opacity: 1; transform: translateY(0); }
.split-reveal.is-visible .line:nth-child(1) { transition-delay: 0.05s; }
.split-reveal.is-visible .line:nth-child(2) { transition-delay: 0.15s; }
.split-reveal.is-visible .line:nth-child(3) { transition-delay: 0.25s; }
.split-reveal.is-visible .line:nth-child(4) { transition-delay: 0.35s; }

/* Tilt effect (subtle 3D on hover) */
.tilt { transition: transform .5s var(--ease-out); }

/* ==========================================================
   Reduced motion
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .split-reveal .line { opacity: 1; transform: none; transition: none; }
  .floating-card, .hero-stamp, .hero-bg-blob, .badge-featured, .guarantee-badge, .marquee-track { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================
   Scarcity dot (utilisé inline / final, plus de bandeau top)
   ========================================================== */
.sb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 0 rgba(209, 123, 110, 0.7);
  animation: pulse-gold 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(209, 123, 110, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(209, 123, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(209, 123, 110, 0); }
}

.scarcity-inline {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-primary);
  font-weight: 500;
  margin-top: 10px;
}
.scarcity-inline .sb-dot { background: var(--c-primary); box-shadow: 0 0 0 0 rgba(209, 123, 110, 0.7); animation: pulse 2s infinite; }

.scarcity-final {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(209, 123, 110, 0.1);
  color: var(--c-primary);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  margin: 14px 0 22px;
  font-weight: 500;
}

/* ==========================================================
   Contre-objection
   ========================================================== */
.section-contre-obj {
  padding: clamp(48px, 7vw, 80px) 0;
  background: #fff;
}
.contre-obj-card {
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-cream) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--c-primary);
  border-radius: var(--r-md);
  padding: 36px 40px;
  box-shadow: var(--sh-soft);
  position: relative;
}
.contre-obj-icon {
  position: absolute; top: -16px; left: 32px;
  font-size: 2rem;
  background: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--sh-soft);
}
.contre-obj-card h3 {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  color: var(--c-secondary);
  margin: 20px 0 16px;
  font-style: italic;
}
.contre-obj-card p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.contre-obj-sig {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-primary);
  font-size: 0.9rem;
  margin-top: 16px !important;
}

/* ==========================================================
   Modules compact (3 mini-cards)
   ========================================================== */
.section-modules-compact {
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.modules-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mod-mini {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: transform .4s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.mod-mini:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-hard);
  border-color: var(--c-primary);
}
.mod-mini-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}
.mod-mini h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.mod-mini p {
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.6;
}

.mod-surprise {
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  border-style: dashed;
  border-color: var(--c-accent);
  overflow: hidden;
}
.mod-surprise:hover { border-color: var(--c-primary); }
.mod-mystery {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--c-accent);
  opacity: 0.5;
  line-height: 1;
  letter-spacing: 4px;
}

/* ==========================================================
   Adresses de Jimin
   ========================================================== */
.section-addresses {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.addresses-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.addresses-copy h2 {
  margin: 14px 0 20px;
}
.addresses-copy h2 em {
  color: var(--c-primary);
  font-style: italic;
  background: linear-gradient(180deg, transparent 60%, rgba(249, 223, 116, 0.4) 60%);
  padding: 0 4px;
}
.addresses-copy .lead {
  font-size: 1.06rem;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.7;
}
.addresses-copy .lead strong { color: var(--c-secondary); }
.addresses-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.addresses-list li {
  font-size: 0.98rem;
  color: var(--text);
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: transform .25s ease, border-color .25s ease;
}
.addresses-list li:hover {
  transform: translateX(6px);
  border-color: var(--c-primary);
}
.addresses-foot {
  padding: 16px 20px;
  background: rgba(249, 223, 116, 0.22);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.96rem;
  color: var(--text);
}

/* Visual collage — 3 photos */
.addresses-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1;
}
.addresses-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-hard);
  transition: transform .5s var(--ease-out);
}
.addresses-photo:hover { transform: translateY(-4px) scale(1.02); }
.addresses-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.addresses-photo:hover img { transform: scale(1.05); }
.addresses-photo-main {
  grid-row: span 2;
}
.address-pin {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  color: var(--c-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.addresses-notion-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-xl);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.nb-icon {
  width: 34px; height: 34px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.nb-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-secondary);
  line-height: 1.3;
}
.nb-text em {
  font-style: italic;
  color: var(--c-primary);
  font-weight: 500;
}

/* ==========================================================
   Tableau comparatif
   ========================================================== */
.section-compare { background: #fff; }
.compare-wrap {
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-cream) 100%);
  border-radius: var(--r-md);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--sh-soft);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: center;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-family: var(--f-sans);
  font-weight: 700;
  color: var(--text-2);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 16px;
  border-bottom: 2px solid var(--border);
  background: transparent;
}
.compare-table th.col-us,
.compare-table td.col-us {
  background: var(--c-secondary);
  color: #fff;
}
.compare-table th.col-us {
  color: var(--c-accent);
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  border-bottom: 2px solid var(--c-accent);
}
.compare-table td.col-us {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-accent);
  border-color: rgba(249, 223, 116, 0.25);
}
.compare-table tbody tr td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
  font-size: 0.94rem;
}
.compare-table tbody tr:hover { background: rgba(249, 223, 116, 0.08); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:last-child td.col-us { border-radius: 0 0 var(--r-sm) var(--r-sm); }
.compare-foot {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 16px;
  font-style: italic;
}

/* Mobile compact comparison */
.compare-mobile { display: none; }
.compare-desktop { display: block; }

.compare-mobile {
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-cream) 100%);
  border-radius: var(--r-md);
  padding: 18px 16px;
  box-shadow: var(--sh-soft);
}
.cm-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  align-items: end;
}
.cm-header-feat { /* spacer vide aligné sur la colonne "feature" */ }
.cm-col-us, .cm-col-them {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.cm-col-us .cm-label {
  background: var(--c-secondary);
  color: var(--c-accent);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.cm-col-them .cm-label {
  background: #fff;
  color: var(--text-3);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  width: 100%;
  text-align: center;
}
.cm-col-them .cm-sublabel {
  font-size: 0.66rem;
  color: var(--text-3);
  font-style: italic;
  margin-top: 4px;
  line-height: 1.3;
}
.cm-rows { display: flex; flex-direction: column; gap: 0; }
.cm-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6px;
  align-items: center;
  padding: 10px 4px;
  border-bottom: 1px dashed var(--border);
  font-size: 0.86rem;
}
.cm-row:last-child { border-bottom: none; }
.cm-row .cm-feat { color: var(--text); font-weight: 500; }
.cm-row .cm-us {
  text-align: center;
  background: var(--c-secondary);
  color: var(--c-accent);
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 0;
  font-size: 0.95rem;
}
.cm-row .cm-them {
  text-align: center;
  color: var(--text-3);
  font-size: 0.95rem;
}
.cm-row-strong { background: rgba(249, 223, 116, 0.18); border-radius: 6px; padding: 10px 8px; border-bottom: none; }
.cm-row-strong + .cm-row { border-top: 1px dashed var(--border); }
.cm-row-strong .cm-feat { color: var(--c-secondary); font-weight: 600; }
.cm-foot {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-3);
  margin-top: 12px;
  font-style: italic;
}

@media (max-width: 720px) {
  .compare-desktop { display: none; }
  .compare-mobile { display: block; }
}

/* ==========================================================
   Double guarantee
   ========================================================== */
.section-guarantee .section-head { text-align: center; }
.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.guarantees-grid .guarantee-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 36px 32px;
  gap: 20px;
  align-items: center;
}
.guarantees-grid .guarantee-badge {
  margin: 0;
}
.guarantee-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.guarantee-card h3 em { color: var(--c-primary); font-style: italic; }
.guarantee-progress {
  border-color: var(--c-primary);
  background: linear-gradient(160deg, #fff 0%, var(--bg-cream) 100%);
}
.guarantee-badge-gold {
  background: radial-gradient(circle, var(--c-primary) 0%, var(--c-primary-dark) 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 30px rgba(209, 123, 110, 0.4) !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.guarantee-badge-gold .g-14 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.guarantee-badge-gold .g-days {
  color: var(--c-accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ==========================================================
   V2 — Cohort Recognition section
   ========================================================== */
.cohort-recog {
  background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
  padding: 28px 0;
}
.cohort-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  border: 1px dashed var(--c-primary);
  border-radius: var(--r-md);
  padding: 22px 28px;
}
.cohort-icon {
  font-size: 2rem;
  background: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--sh-soft);
  flex-shrink: 0;
}
.cohort-text {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.55;
}
.cohort-text strong {
  display: block;
  color: var(--c-primary);
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cohort-anchors {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cohort-anchors a {
  background: #fff;
  color: var(--c-secondary);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all .25s ease;
  white-space: nowrap;
}
.cohort-anchors a:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

/* ==========================================================
   V2 — Hero photo overlay (mobile)
   ========================================================== */
.photo-live-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-secondary);
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 2;
}
.photo-live-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #e74c3c;
  box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  animation: pulse 2s infinite;
}

.photo-overlay-copy { display: none; /* desktop default */ }

.hero-trust-pills {
  display: flex !important;
  flex-direction: row;
  gap: 10px !important;
  flex-wrap: wrap;
  border: none !important;
  padding: 0 !important;
  margin-top: 18px;
}
.hero-trust-pills li {
  background: rgba(209, 123, 110, 0.08);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  color: var(--text-2);
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 6px;
}
.hero-trust-pills li strong {
  font-family: var(--f-serif);
  font-size: 0.95rem !important;
  color: var(--c-secondary);
  font-weight: 600;
  margin: 0 !important;
}

/* ==========================================================
   V2 — Bento with mockup composite (live cours)
   ========================================================== */
.bento-with-mockup {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 32px;
}
.bwm-content { display: flex; flex-direction: column; }
.bwm-content h3 em {
  font-style: italic;
  color: var(--c-primary);
  background: rgba(209, 123, 110, 0.12);
  padding: 0 6px;
  border-radius: 4px;
}
.bwm-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  background: #fff;
  color: var(--c-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  width: fit-content;
}

/* Photo bento live */
.bwm-photo {
  position: relative;
  display: grid; place-items: center;
}
.bwm-figure {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-xl);
  transition: transform .5s var(--ease-out);
}
.bento-with-mockup:hover .bwm-figure {
  transform: rotate(-1deg) scale(1.02);
}
.bwm-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.bwm-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.bwm-live-overlay {
  position: absolute;
  top: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(231, 76, 60, 0.95);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  z-index: 2;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.4);
}
.bwm-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  animation: pulse-white 1.6s infinite;
}
@keyframes pulse-white {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.bwm-live-text { line-height: 1.2; }
.bwm-live-text strong { font-weight: 700; }

.bwm-meet-badge {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--c-secondary);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 2;
}
.meet-icon { font-size: 0.95rem; }

/* ==========================================================
   V2 — Bento 1:1 (séances privées — redesign impactant)
   ========================================================== */
.bento-1on1 {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
}
.bento-1on1-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.bento-1on1-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
  display: block;
}
.bento-1on1:hover .bento-1on1-photo-wrap img { transform: scale(1.05); }
.bento-1on1-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(97,33,15,0.45) 100%);
}
.bento-1on1-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--c-secondary);
  color: var(--c-accent);
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 2.5px solid var(--c-accent);
  letter-spacing: -0.02em;
}
.bento-1on1-content {
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
}
/* Legacy ring — keep for backward compat */
.bento-1on1-ring {
  display: none;
  position: absolute;
  bottom: -4px; right: -4px;
  background: var(--c-secondary);
  color: var(--c-accent);
  font-family: var(--f-serif);
  font-size: 0.86rem;
  font-weight: 700;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 3px solid var(--c-accent);
  letter-spacing: -0.03em;
}
.bento-1on1 h3 {
  font-size: 1.15rem;
  margin: 8px 0 10px;
  color: var(--c-secondary);
}
.bento-1on1 p {
  font-size: 0.92rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.bento-1on1-foot {
  font-size: 0.87rem !important;
  color: var(--c-secondary);
  font-style: italic;
  padding-top: 10px;
  border-top: 1px dashed rgba(139, 74, 60, 0.3);
  margin-top: auto;
}
.bento-1on1-foot strong { font-style: normal; color: var(--c-secondary); }

/* Group bento — same stacked design as 1:1 */
.bento-group {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  overflow: hidden;
  background: linear-gradient(160deg, #FDF8F3 0%, #F4E5D5 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--c-secondary);
}
.bento-group-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bento-group-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
  display: block;
}
.bento-group:hover .bento-group-photo-wrap img { transform: scale(1.04); }
.bento-group-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(97,33,15,0.55) 100%);
  pointer-events: none;
}
.bento-group-live {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 11px;
  border-radius: var(--r-pill);
}
.bento-group-dot {
  width: 7px; height: 7px;
  background: #ff3b3b;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255,59,59,0.7);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,59,59,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}
.bento-group-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--c-secondary);
  color: var(--c-accent);
  font-weight: 900;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-accent);
  letter-spacing: 0.04em;
}
.bento-group-content {
  padding: 22px 26px 24px;
  display: flex;
  flex-direction: column;
}
.bento-group h3 {
  font-size: 1.3rem;
  margin: 10px 0 12px;
  color: var(--c-secondary);
  line-height: 1.25;
}
.bento-group h3 em {
  font-style: italic;
  color: var(--c-primary);
}
.bento-group p {
  font-size: 0.96rem;
  margin-bottom: 8px;
  line-height: 1.55;
  color: var(--text-2);
}
.bento-group-foot {
  font-size: 0.85rem !important;
  color: var(--c-secondary);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px dashed rgba(139, 74, 60, 0.3);
  margin-top: auto;
}

/* Study With Me bento */
.bento-swm {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  padding: 0 !important;
  overflow: hidden;
}
.bento-swm-photo {
  overflow: hidden;
}
.bento-swm-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease-out);
}
.bento-swm:hover .bento-swm-photo img { transform: scale(1.04); }
.bento-swm-content {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}

/* WhatsApp bento */
.bento-wa { text-align: center; }
.bento-wa-icon {
  width: 52px; height: 52px;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}
.bento-wa-photo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 16px;
}
.bento-wa-photo {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 300px;
  object-fit: cover;
  object-position: top;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(97, 33, 15, 0.14);
  border: 1px solid var(--border);
}
.bento-wa-logo {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  border: 2px solid #fff;
}

.bento-tag-strong {
  background: var(--c-primary) !important;
  color: #fff !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.1em;
  padding: 5px 11px !important;
  width: fit-content;
}

/* ==========================================================
   Responsive — Tablette ≤ 960px
   ========================================================== */
@media (max-width: 960px) {
  .hero-inner,
  .solution-grid,
  .jimin-grid { grid-template-columns: 1fr; }
  .hero-inner { text-align: left; }

  .jimin-grid .jimin-photo { order: -1; max-width: 420px; margin: 0 auto; }
  .solution-grid .solution-photo { max-width: 420px; margin: 0 auto; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .floating-card { display: none; }
  .hero-stamp { width: 90px; height: 90px; top: -12px; right: -12px; }
  .stamp-inner { font-size: 0.78rem; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-xl, .bento-wide { grid-column: span 2; }
  .bento-highlight { grid-column: span 2; }

  .offer-card { grid-template-columns: 1fr; }
  .offer-left, .offer-right { padding: 36px 28px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-legal { flex-direction: column; }

  .nav-links { display: none; }
  .brand-text { display: none; }

  .transfo-grid { grid-template-columns: 1fr; }
  .transfo-arrow { transform: rotate(90deg); }

  .guarantee-card { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; }
  .guarantee-badge { margin: 0 auto; }

  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-arrow { transform: rotate(90deg); font-size: 2rem; }

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

  .modules-compact-grid { grid-template-columns: 1fr; }

  .addresses-grid { grid-template-columns: 1fr; }
  .addresses-visual { max-width: 500px; margin: 0 auto; }

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

  .contre-obj-card { padding: 32px 24px; }
  .contre-obj-icon { left: 20px; width: 46px; height: 46px; font-size: 1.6rem; }
}

/* ==========================================================
   V2 — Tablette : cohort card stack + bento mockup
   ========================================================== */
@media (max-width: 960px) {
  .bento-with-mockup { grid-template-columns: 1fr; padding: 28px 26px; }
  .bwm-mockup { order: -1; }
  .bwm-mockup svg { max-width: 280px; }

  .cohort-card { grid-template-columns: auto 1fr; }
  .cohort-anchors { grid-column: 1 / -1; }

  /* Pas de blobs corail / hangeul filigrane qui leakent en haut */
  .hero-v2 .hero-bg-blob,
  .hero-v2 .hero-hangeul-bg { display: none; }
}

/* ==========================================================
   Responsive — Mobile ≤ 720px (refonte complète)
   ========================================================== */
@media (max-width: 720px) {

  /* === V2 Hero mobile-first : photo en haut, overlay copy === */
  .hero-v2 .hero-inner {
    display: flex; flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .hero-v2 .hero-visual {
    margin: 0; max-width: 100%; width: 100%;
  }
  .hero-v2 .hero-photo-wrap {
    max-width: 100%; padding: 0;
    border-radius: 0;
  }
  .hero-v2 .hero-photo {
    border-radius: 0;
    width: 100%;
    aspect-ratio: auto;
    height: 65vh;
    height: 65dvh; /* dvh = pas de saut quand barre iOS se rétracte */
    min-height: 480px;
    max-height: none;
    transform: none;
    box-shadow: none;
    overflow: hidden;
  }
  .hero-v2 .hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 28%; /* la tête de Jimin reste visible */
    transform: none !important; /* tue le parallax résiduel sur certains touch */
  }
  .hero-v2 .hero-photo:hover { transform: none; }
  .hero-v2 .hero-stamp {
    width: 80px; height: 80px;
    top: 14px; right: 14px;
    z-index: 3;
  }
  .stamp-inner { font-size: 0.74rem; }

  /* Gradient plus profond + plus doux pour transition lisse vers le bloc texte */
  .hero-v2 .photo-tint {
    background: linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.05) 35%,
      rgba(0,0,0,0.55) 75%,
      rgba(0,0,0,0.92) 100%);
    mix-blend-mode: normal;
  }

  /* Overlay copy visible sur mobile */
  .hero-v2 .photo-overlay-copy {
    display: block;
    position: absolute;
    bottom: 28px; left: 22px; right: 22px;
    z-index: 2;
    color: #fff;
  }
  .overlay-title {
    font-family: var(--f-serif);
    font-size: 2.15rem;
    line-height: 1.08;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  }
  .overlay-title em {
    display: inline-block;
    font-style: italic;
    color: var(--c-accent);
    font-weight: 500;
    margin-top: 2px;
  }

  /* Hide desktop hero pieces on mobile */
  .hero-desktop { display: none !important; }

  /* Hero text block becomes compact card after photo */
  .hero-v2 .hero-copy {
    padding: 16px 18px 0;
    text-align: left;
  }
  .hero-v2 .hero-sub {
    font-size: 0.96rem;
    margin-top: 0;
    margin-bottom: 14px;
    color: var(--text-2);
    line-height: 1.5;
  }
  .hero-v2 .hero-sub u {
    text-decoration-color: var(--c-primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
  }
  .hero-v2 .hero-cta-row {
    flex-direction: column; gap: 8px; margin-bottom: 12px;
  }
  .hero-v2 .hero-cta-row .btn-ghost {
    padding: 10px 24px;
    min-height: 0;
    font-size: 0.92rem;
  }
  .hero-v2 .hero-mini-proof {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
    font-size: 0.78rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 8px 14px;
  }
  .hero-v2 .hero-trust-pills {
    margin-top: 0;
    padding-top: 0 !important;
    justify-content: center;
  }

  /* Hide floating cards on mobile (already handled but ensure) */
  .hero-v2 .floating-card { display: none; }

  /* Hide hangeul bg + blobs on mobile (visual noise) */
  .hero-v2 .hero-hangeul-bg { display: none; }
  .hero-v2 .hero-bg-blob { display: none; }

  /* === Cohort card mobile === */
  .cohort-recog { padding: 18px 0; }
  .cohort-card {
    grid-template-columns: 1fr;
    padding: 18px 20px;
    gap: 12px;
    text-align: center;
  }
  .cohort-icon { margin: 0 auto; width: 44px; height: 44px; font-size: 1.6rem; }
  .cohort-text { font-size: 0.9rem; }
  .cohort-text strong { font-size: 1rem; }
  .cohort-anchors { justify-content: center; }
  .cohort-anchors a { font-size: 0.78rem; padding: 7px 12px; }

  /* === Hero v2 padding on hero === */
  .hero-v2 { padding: 0 0 18px; }

  /* === BWM mobile : photo en haut, texte en dessous === */
  .bento-with-mockup {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 20px;
  }
  .bwm-photo { order: -1; }
  .bwm-figure { max-width: 280px; aspect-ratio: 16/12; }
  .bwm-content h3 { font-size: 1.2rem; }
  .bwm-content p { font-size: 0.94rem; }
  .bwm-tag { font-size: 0.72rem; padding: 6px 12px; }
  .bwm-live-overlay { padding: 6px 10px; font-size: 0.66rem; gap: 6px; }
  .bwm-meet-badge { padding: 6px 10px; font-size: 0.7rem; bottom: 10px; left: 10px; right: 10px; }

  /* === Bento 1:1 mobile === */
  .bento-1on1-photo-wrap { aspect-ratio: 16/9; }
  .bento-1on1-content { padding: 16px 20px 18px; }
  .bento-1on1 h3 { font-size: 1.1rem; }
  /* Study With Me mobile */
  .bento-swm { grid-template-columns: 1fr; }
  .bento-swm-photo { aspect-ratio: 16/9; }
  .bento-swm-content { padding: 20px 22px; }


  /* === Container & sections === */
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-lead { font-size: 1rem; }

  /* === Typo === */
  h1 { font-size: 2.1rem; line-height: 1.1; }
  h2 { font-size: 1.65rem; line-height: 1.2; }
  h3 { font-size: 1.1rem; }

  /* === Header === */
  .site-header { padding: 0; }
  .header-inner { padding: 10px 16px; gap: 12px; }
  .brand-logo { width: 46px; height: 46px; }
  .btn-header { padding: 9px 16px; font-size: 0.82rem; }

  /* === Scarcity banner === */
  .scarcity-banner { padding: 8px 0; font-size: 0.78rem; line-height: 1.35; }
  .scarcity-banner .container { gap: 6px; padding: 0 14px; }

  /* === Hero (legacy, ne s'applique qu'à la V1 sans .hero-v2) === */
  .hero:not(.hero-v2) { padding: 36px 0 64px; }
  .hero-eyebrow { font-size: 0.72rem; padding: 6px 12px; }
  .hero-title { font-size: 2rem; margin: 14px 0 16px; line-height: 1.12; }
  .hero-title .line { display: block; }
  .hero-ko { font-size: 0.7em; }
  .hero-sub { font-size: 1rem; margin-bottom: 22px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 16px; }
  /* hero-mini-proof : conserve le style carte propre (pas d'override) */
  .hero-trust {
    gap: 18px 24px; padding-top: 22px;
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
  .hero-trust strong { font-size: 1.25rem; }
  .hero-trust span { font-size: 0.7rem; }
  .hero-visual { max-width: 320px; margin: 36px auto 0; }
  .hero-stamp { width: 78px; height: 78px; top: -10px; right: -10px; }
  .stamp-inner { font-size: 0.7rem; }
  .photo-badge { font-size: 0.74rem; padding: 8px 14px; bottom: 14px; left: 14px; }
  .hero-hangeul-bg { font-size: 14rem; bottom: -20px; right: -40px; }
  .hero-bg-blob, .hero-bg-blob.blob-2 { animation: none; opacity: 0.7; }

  /* === Trust marquee === */
  .trust-bar { padding: 14px 0; }
  .marquee-track { gap: 18px; }
  .marquee-track span { font-size: 0.78rem; }

  /* === Problem === */
  .problem-grid { grid-template-columns: 1fr; gap: 14px; }
  .problem-card { padding: 24px 22px; }
  .problem-card h3 { font-size: 1.05rem; }
  .problem-card p { font-size: 0.9rem; }

  /* === Agitateur === */
  .big-statement { font-size: 1.4rem; line-height: 1.35; }
  .sub-statement { font-size: 1rem; }

  /* === Solution === */
  .solution-copy .lead { font-size: 1rem; }
  .checklist li { font-size: 0.95rem; padding-left: 32px; }

  /* === Pull quote === */
  .pullquote { font-size: 1.4rem; line-height: 1.35; }

  /* === Jimin bio === */
  .jimin-stats { gap: 20px; padding: 16px 0; margin: 22px 0; }
  .jimin-stats div { flex: 1 1 calc(50% - 10px); }
  .jimin-stats strong { font-size: 1.3rem; }
  .jimin-quote { font-size: 1rem; padding-left: 18px; }

  /* === Contre-objection === */
  .contre-obj-card { padding: 28px 20px 24px; }
  .contre-obj-card h3 { font-size: 1.15rem; }
  .contre-obj-card p { font-size: 0.95rem; line-height: 1.6; }

  /* Legacy program-grid (V1 fallback) */
  .program-grid { grid-template-columns: 1fr; gap: 18px; }
  .program-card { padding: 26px 22px; }
  .program-card h3 { font-size: 1.2rem; }
  .program-card.featured .badge-featured { font-size: 0.68rem; top: -12px; }

  /* === Modules compact === */
  .mod-mini { padding: 24px 22px; }
  .mod-surprise .mod-mystery { font-size: 2.2rem; bottom: 12px; right: 16px; }

  /* === Adresses de Jimin === */
  .addresses-visual {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: auto;
    max-width: 100%;
    gap: 10px;
  }
  .addresses-photo-main { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/10; }
  .addresses-photo-sm { aspect-ratio: 1; }
  .addresses-notion-badge {
    top: -12px; right: 0; left: auto;
    padding: 10px 12px;
  }
  .nb-icon { width: 28px; height: 28px; font-size: 1rem; }
  .nb-text { font-size: 0.74rem; }
  .addresses-list li { font-size: 0.94rem; padding: 9px 12px; }
  .addresses-foot { font-size: 0.9rem; padding: 14px 16px; }

  /* === Process === */
  .process-step { padding: 22px 20px; }
  .step-num { font-size: 1.8rem; }
  .process-arrow { display: none; }
  .process-grid { gap: 12px; }

  /* === Bento === */
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento-xl, .bento-wide, .bento-highlight { grid-column: span 1; }
  .bento-item { padding: 26px 22px; }
  .bento-icon { font-size: 1.7rem; margin-bottom: 12px; }

  /* === Comparatif — scroll horizontal propre === */
  .compare-wrap {
    padding: 14px 0 14px 14px;
    margin-right: -18px;
    border-radius: var(--r-md) 0 0 var(--r-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .compare-wrap::after {
    content: '→ scroll';
    position: sticky; top: 50%;
    right: 0; padding: 4px 8px;
    font-size: 0.7rem;
    color: var(--c-primary);
    opacity: 0.6;
    pointer-events: none;
  }
  .compare-table { min-width: 560px; }
  .compare-table th, .compare-table td { padding: 10px 8px; font-size: 0.82rem; }
  .compare-table tbody tr td:first-child { font-size: 0.86rem; }
  .compare-table td.col-us { font-size: 1rem; }
  .compare-foot { padding-right: 18px; }

  /* === Bonus === */
  .bonus-grid { grid-template-columns: 1fr; gap: 14px; }
  .bonus-card { padding: 24px 22px; }

  /* === Transformation === */
  .transfo-col { padding: 26px 22px; }
  .transfo-arrow span { font-size: 2.2rem; }

  /* === Témoignages === */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial { padding: 26px 22px; }
  .testimonial p { font-size: 0.94rem; }

  /* === WhatsApp mockup === */
  .whatsapp-mockup { max-width: 100%; margin-bottom: 28px; }
  .wa-bubble p { font-size: 0.88rem; }

  /* === Dark === */
  .section-dark blockquote { font-size: 1.15rem; line-height: 1.45; }
  .sig { font-size: 0.84rem; }
  .sig-micro { font-size: 0.76rem; }

  /* === For You === */
  .foryou-col { padding: 26px 22px; }
  .foryou-col h3 { font-size: 1.15rem; }

  /* === Garantie double === */
  .guarantees-grid { gap: 18px; }
  .guarantees-grid .guarantee-card { padding: 28px 22px; }
  .guarantee-card h3 { font-size: 1.15rem; }
  .guarantee-badge { width: 110px; height: 110px; }
  .g-14 { font-size: 2.4rem; }
  .guarantee-badge-gold .g-14 { font-size: 1.7rem; }

  /* === Offre === */
  .offer-left, .offer-right { padding: 28px 22px; }
  .offer-left h3 { font-size: 1.3rem; margin-bottom: 18px; }
  .offer-list li { font-size: 0.92rem; padding: 10px 0 10px 28px; }
  .offer-list li span { display: block; margin-left: 0; margin-top: 2px; font-size: 0.8rem; }
  .price-num { font-size: 3.2rem; }
  .price-anchor { padding: 14px 16px; }
  .anchor-row { font-size: 0.82rem; padding: 5px 0; }

  /* === FAQ === */
  .faq-item summary { padding: 18px 22px; padding-right: 50px; font-size: 0.94rem; }
  .faq-item summary::after { right: 18px; }
  .faq-body { padding: 0 22px 18px; font-size: 0.92rem; }

  /* === Final CTA === */
  .final-photo { width: 110px; height: 110px; margin-bottom: 22px; }
  .final-sub { font-size: 1rem; }
  .final-guarantee-reminder, .scarcity-final {
    font-size: 0.82rem;
    padding: 8px 14px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .final-sign { font-size: 1rem; margin-top: 28px; }

  /* === Downsell === */
  .downsell-card { padding: 26px 22px; }
  .downsell-card h3 { font-size: 1.3rem; }
  .downsell-card p { font-size: 0.94rem; }

  /* === Footer === */
  .site-footer { padding: 44px 0 100px; } /* extra bottom for sticky CTA */
  .footer-links { gap: 14px; font-size: 0.85rem; }
  .footer-legal { font-size: 0.76rem; gap: 8px; }

  /* === CTA buttons full-width sur mobile === */
  .btn-primary { width: 100%; padding: 17px 24px; font-size: 0.98rem; }
  .btn-xl { padding: 19px 24px; font-size: 1rem; }
  .btn-ghost, .btn-ghost-alt { width: 100%; justify-content: center; }
  .btn-primary, .btn-ghost, .btn-ghost-alt { min-height: 50px; }

  /* === Sticky CTA mobile (compact) === */
  .sticky-cta { padding: 10px 14px; }
  .sticky-cta .btn-primary { width: auto; padding: 12px 22px; font-size: 0.9rem; min-height: 0; }
  .sticky-price strong { font-size: 1.1rem; }
  .sticky-price strong small { font-size: 0.7rem; }
  .sticky-price span { font-size: 0.68rem; }

  /* === Hero progress bar plus visible === */
  .scroll-progress { height: 2px; }

  /* === Body padding pour sticky CTA === */
  body { padding-bottom: 76px; }

  /* === Fluidify les transitions sur mobile (perfs) === */
  .tilt:hover, .program-card:hover, .bento-item:hover,
  .testimonial:hover, .bonus-card:hover, .problem-card:hover,
  .mod-mini:hover, .module-card:hover {
    transform: none !important;
  }
  .hero-photo { transform: none; }
  .hero-photo:hover { transform: none; }
}

/* ==========================================================
   Bonus Photo Grid (remplace SVG mockup)
   ========================================================== */
.bonus-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 0 52px;
  background: transparent;
  position: relative;
  overflow: visible;
}
.bonus-photo-grid::before {
  content: '선물';
  position: absolute;
  right: -20px; bottom: -20px;
  font-family: var(--f-kr);
  font-size: 160px;
  font-weight: 700;
  color: rgba(209,123,110,0.05);
  pointer-events: none;
  line-height: 1;
}
.bpg-item {
  transform: rotate(var(--rot, 0deg)) translateY(var(--ty, 0px));
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(97,33,15,0.16), 0 3px 8px rgba(0,0,0,0.07);
  background: #fff;
  transition: transform .4s var(--ease-out), box-shadow .4s ease;
  will-change: transform;
}
.bpg-item:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03) !important;
  box-shadow: 0 20px 50px rgba(97,33,15,0.22), 0 6px 16px rgba(0,0,0,0.1);
  z-index: 2;
  position: relative;
}
.bpg-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Bonus card thumbnail */
.bonus-card-thumb {
  width: 100%;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(97,33,15,0.12);
  background: var(--bg-cream);
}
.bonus-card-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s var(--ease-out);
}
.bonus-card:hover .bonus-card-thumb img {
  transform: scale(1.04);
}

@media (max-width: 720px) {
  .bonus-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 8px 0 40px;
  }
}
@media (max-width: 380px) {
  .bonus-photo-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ==========================================================
   Native Proof — Prononciation
   ========================================================== */
.section-native-proof {
  padding: clamp(24px, 4vw, 48px) 0;
  background: var(--c-bg);
}
.native-proof-card {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff8f6 0%, #fdf0ec 100%);
  border: 1.5px solid rgba(209,123,110,0.22);
  border-radius: var(--r-card);
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.native-proof-card::before {
  content: '발음';
  position: absolute;
  right: -12px; top: -20px;
  font-family: var(--f-kr);
  font-size: 110px;
  font-weight: 600;
  color: rgba(209,123,110,0.06);
  pointer-events: none;
  line-height: 1;
}
.np-icon {
  font-size: 2.6rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  line-height: 1;
}
.np-content h3 {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.np-content p {
  color: var(--c-text);
  line-height: 1.72;
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}
.np-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.np-badge {
  background: rgba(209,123,110,0.13);
  color: var(--c-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  border: 1px solid rgba(209,123,110,0.25);
}

/* Compare highlight row */
.compare-highlight-row td {
  background: rgba(209,123,110,0.06);
  font-weight: 600;
  color: var(--c-secondary);
}
.compare-highlight-row td.col-us {
  background: rgba(97,33,15,0.12);
}

/* ==========================================================
   Video Testimonials — Lightbox thumbnails
   ========================================================== */
.vt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.vt-thumb {
  aspect-ratio: 9/16;
  background: linear-gradient(145deg, #1c0a08 0%, #3a1810 100%);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--sh-hard);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}
.vt-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 40%, rgba(209,123,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vt-thumb:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--sh-xl);
}
.vt-play-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  padding-left: 4px; /* optical centering of ▶ */
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  position: relative; z-index: 1;
}
.vt-thumb:hover .vt-play-icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: scale(1.12);
}
.vt-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 4;
  background: var(--c-accent);
  color: var(--c-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
/* Real thumbnail image inside lightbox thumb */
.vt-thumb .vt-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
/* Dark overlay on top of real thumbnail */
.vt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,3,2,0.18) 0%, rgba(10,3,2,0.52) 100%);
  z-index: 1;
  pointer-events: none;
}
.vt-play-icon { z-index: 3; }
.vt-thumb::before { z-index: 2; }

/* Photo testimonial (single real photo) */
.testi-photo-single {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.testi-photo-single .testi-photo-card {
  width: 100%;
  max-width: 340px;
}
.testi-photo-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-hard);
  aspect-ratio: 9/16;
}
.testi-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Video modal / lightbox */
.video-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: all;
}
.vm-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 2, 2, 0.62);
  backdrop-filter: blur(2px);
}
.vm-player {
  position: relative; z-index: 2;
  /* Portrait player : la hauteur contraint, la largeur suit via aspect-ratio */
  height: min(80vh, 560px);
  width: auto;
  aspect-ratio: 9 / 16;
  max-width: min(88vw, 360px);
  background: #0a0404;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform .3s var(--ease-out);
}
.video-modal.active .vm-player {
  transform: scale(1);
}
.vm-player video,
.vm-player .vm-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;
  background: #0a0404;
}
.vm-player.vm-landscape {
  aspect-ratio: 16 / 9;
  width: min(92vw, 960px);
  height: auto;
  max-width: 92vw;
  max-height: 80vh;
}
.vm-close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  line-height: 1;
}
.vm-close:hover { background: var(--c-primary); }

@media (max-width: 720px) {
  .native-proof-card {
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    gap: 1rem;
  }
  .np-icon { font-size: 2rem; }
  .np-content h3 { font-size: 1.1rem; }
  .vt-grid { gap: 10px; }
  .vt-play-icon { width: 48px; height: 48px; font-size: 1rem; }
  .vm-player { height: min(78vh, 520px); max-width: 92vw; }
}

/* ==========================================================
   Responsive — Petit mobile ≤ 380px
   ========================================================== */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  h1, .hero-title { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 48px 0; }
  .hero-trust { grid-template-columns: 1fr; gap: 12px; padding-top: 18px; }
  .hero-trust strong { font-size: 1.15rem; }
  .price-num { font-size: 2.8rem; }
  .btn-primary, .btn-xl { padding: 16px 18px; font-size: 0.95rem; }
  .nav-links, .brand-text { display: none; }
  .scarcity-banner { font-size: 0.74rem; }
  .compare-table { min-width: 480px; }
  .compare-table th, .compare-table td { padding: 8px 6px; font-size: 0.76rem; }
  .pullquote { font-size: 1.2rem; }
  .floating-card { display: none; }
  .hero-photo-wrap { max-width: 280px; }
  .marquee-track span { font-size: 0.72rem; }
  .marquee-track { gap: 14px; }
  .footer-brand strong { font-size: 1rem; }
}

/* ==========================================================
   Accordéon — 6 ressources pédagogiques
   ========================================================== */
.resources-accordion {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(209,123,110,0.22);
  background: #fff;
  overflow: hidden;
}
.resources-accordion[open] {
  box-shadow: 0 8px 32px rgba(97,33,15,0.08);
}
.resources-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(135deg, #FDF8F3 0%, #FAF0E8 100%);
  transition: background .2s ease;
  user-select: none;
}
.resources-accordion-trigger::-webkit-details-marker { display: none; }
.resources-accordion-trigger:hover {
  background: linear-gradient(135deg, #FAF0E8 0%, #F5E2D0 100%);
}
.ra-label {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-secondary);
}
.ra-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-out);
}
.ra-chevron::after {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .3s ease;
}
.resources-accordion[open] .ra-chevron {
  transform: rotate(180deg);
}
.resources-accordion-body {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(209,123,110,0.14);
}
.ra-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: ra-counter;
}
.ra-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 36px;
  position: relative;
}
.ra-list li::before {
  counter-increment: ra-counter;
  content: "0" counter(ra-counter);
  position: absolute;
  left: 0; top: 1px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.04em;
  font-family: var(--f-sans);
}
.ra-list li strong {
  font-size: 0.95rem;
  color: var(--c-secondary);
  font-weight: 700;
  line-height: 1.3;
}
.ra-list li span {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ==========================================================
   Module cards — photo en tête de carte
   ========================================================== */
.mod-mini-photo {
  margin: -32px -28px 20px;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
  aspect-ratio: 16/9;
}
.mod-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s var(--ease-out);
}
.mod-mini:hover .mod-mini-photo img {
  transform: scale(1.04);
}
@media (max-width: 720px) {
  .mod-mini-photo { margin: -24px -22px 16px; }
}
