/* =========================================================================
   IN HAIRCARE — Landing Pages Stylesheet
   Reusable across cure-gelule1.html and other product landing pages.
   Built on the in-haircare design system (.claude/skills/design-system).
   ========================================================================= */

/* ----- 1. Design Tokens ----- */
:root {
  /* Typography (DS) */
  --font-family-primary: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base: 16px;
  --font-weight-base: 400;
  --line-height-base: 1.65;

  /* Type scale (extended for display headlines) */
  --fs-eyebrow: 12px;
  --fs-body-sm: 14px;
  --fs-body: 16px;
  --fs-body-lg: 18px;
  --fs-h6: 18px;
  --fs-h5: 22px;
  --fs-h4: 28px;
  --fs-h3: 34px;
  --fs-h2: 44px;
  --fs-h1: 56px;
  --fs-display: 72px;

  /* Colors — DS */
  --color-text-primary: #171717;
  --color-text-secondary: #5a5d63;
  --color-text-muted: #8c8f95;
  --color-text-inverse: #ffffff;

  --color-bg: #fbfaf7;
  --color-surface-raised: #f1f1ef;
  --color-surface-strong: #f8f8f6;
  --color-surface-dark: #171717;

  --color-border: rgba(23, 23, 23, 0.08);
  --color-border-strong: rgba(23, 23, 23, 0.16);

  /* Brand accents (from packshot) */
  --color-brand-teal: #3DB3A0;
  --color-brand-teal-dark: #2c8c7d;
  --color-brand-coral: #F4A48E;
  --color-brand-rose-soft: #f5e6df;
  --color-brand-cream: #f7f1ec;
  --color-success: #1a7a4f;

  /* Spacing — DS micro + extension for layout */
  --space-1: 1px;
  --space-2: 2px;
  --space-3: 5px;
  --space-4: 6px;
  --space-5: 8px;
  --space-6: 10px;
  --space-7: 12px;
  --space-8: 14px;
  --space-9: 20px;
  --space-10: 24px;
  --space-11: 32px;
  --space-12: 40px;
  --space-13: 56px;
  --space-14: 80px;
  --space-15: 120px;
  --space-16: 160px;

  /* Radius — DS */
  --radius-xs: 2px;
  --radius-sm: 9px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  /* Shadow — DS */
  --shadow-inset-light: rgba(255, 255, 255, 0.12) 0px 2px 4px 0px inset;
  --shadow-soft: rgba(0, 0, 0, 0.06) 0px 8px 28px 0px;
  --shadow-medium: rgba(0, 0, 0, 0.08) 0px 12px 32px -4px;
  --shadow-strong: rgba(0, 0, 0, 0.12) 0px 24px 48px -12px;

  /* Motion — DS */
  --motion-fast: 200ms;
  --motion-base: 250ms;
  --motion-slow: 500ms;
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 880px;
  --container-prose: 680px;
  --section-pad-y: clamp(64px, 9vw, 120px);
  --container-pad-x: clamp(20px, 4vw, 40px);

  /* Header offset */
  --header-h: 64px;
  --urgency-h: 44px;
}

/* ----- 2. Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: var(--fs-body);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-base);
  color: var(--color-text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-standard);
}

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

ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0; }
figure { margin: 0; }

:focus-visible {
  outline: 2px solid var(--color-brand-teal);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

::selection {
  background: var(--color-brand-teal);
  color: #fff;
}

/* ----- 3. Typography ----- */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-text-primary);
}

h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-teal-dark);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-brand-teal-dark);
}
.eyebrow.no-line::before { display: none; }

.lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* ----- 4. Layout primitives ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad-x);
  padding-right: var(--container-pad-x);
}
.container--narrow { max-width: var(--container-narrow); }
.container--prose { max-width: var(--container-prose); }

.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}
.section--tight { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.section--cream { background: var(--color-brand-cream); }
.section--soft { background: var(--color-surface-strong); }
.section--dark { background: var(--color-surface-dark); color: var(--color-text-inverse); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-text-inverse); }
.section--rose { background: var(--color-brand-rose-soft); }

/* ----- 5. Buttons ----- */
.btn {
  --btn-bg: var(--color-text-primary);
  --btn-color: var(--color-text-inverse);
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  min-height: 52px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    transform var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    background var(--motion-base) var(--ease-standard),
    color var(--motion-base) var(--ease-standard);
  white-space: nowrap;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--color-brand-teal); outline-offset: 3px; }

.btn--primary {
  --btn-bg: var(--color-text-primary);
  --btn-color: #fff;
}
.btn--primary:hover { --btn-bg: #2a2a2a; }

.btn--brand {
  --btn-bg: var(--color-brand-teal);
  --btn-color: #fff;
}
.btn--brand:hover { --btn-bg: var(--color-brand-teal-dark); }

.btn--coral {
  --btn-bg: var(--color-brand-coral);
  --btn-color: #1b1b1b;
}
.btn--coral:hover { --btn-bg: #e8927a; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-color: var(--color-text-primary);
  --btn-border: var(--color-border-strong);
}
.btn--ghost:hover {
  --btn-bg: var(--color-text-primary);
  --btn-color: #fff;
  --btn-border: var(--color-text-primary);
}

.btn--lg { min-height: 60px; padding: 18px 36px; font-size: 16px; }
.btn--block { width: 100%; }

.btn .arrow {
  display: inline-block;
  transition: transform var(--motion-base) var(--ease-emphasis);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ----- 6. Pills, badges, tags ----- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-primary);
  backdrop-filter: blur(8px);
}
.pill--solid {
  background: var(--color-text-primary);
  color: #fff;
  border-color: transparent;
}
.pill--brand {
  background: var(--color-brand-teal);
  color: #fff;
  border-color: transparent;
}
.pill--coral {
  background: var(--color-brand-coral);
  color: #1b1b1b;
  border-color: transparent;
}
.pill--cream {
  background: var(--color-brand-cream);
  border-color: transparent;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ----- 7. Urgency Top Bar ----- */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--color-text-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  text-align: center;
  position: relative;
}
.urgency-bar strong {
  color: var(--color-brand-coral);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.urgency-bar .countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.urgency-bar .countdown b {
  display: inline-block;
  min-width: 30px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
}
.urgency-bar__dismiss {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  opacity: 0.7;
  padding: 4px 8px;
  border-radius: 50%;
  transition: opacity var(--motion-fast) var(--ease-standard);
}
.urgency-bar__dismiss:hover { opacity: 1; }

@media (max-width: 640px) {
  .urgency-bar__inner { flex-direction: column; gap: 4px; padding: 8px 32px; font-size: 12px; }
}

/* ----- 8. Header / Navigation ----- */
.site-header {
  position: sticky;
  top: var(--urgency-h);
  z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: top var(--motion-base) var(--ease-standard);
}
.site-header.no-urgency { top: 0; }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.site-header__logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}
.site-header__logo i {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-brand-teal);
  color: #fff;
  font-style: normal;
  text-align: center;
  line-height: 26px;
  font-size: 13px;
  font-weight: 800;
  margin-right: 8px;
  vertical-align: middle;
}
.site-header__nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.site-header__nav a {
  color: var(--color-text-secondary);
  font-weight: 500;
  position: relative;
}
.site-header__nav a:hover { color: var(--color-text-primary); }
.site-header__cta { display: flex; align-items: center; gap: 12px; }
.site-header__cta .btn { min-height: 40px; padding: 10px 20px; font-size: 14px; }

@media (max-width: 880px) {
  .site-header__nav { display: none; }
}

/* ----- 9. HERO ----- */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 clamp(60px, 7vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, var(--color-brand-rose-soft) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(61, 179, 160, 0.12) 0%, transparent 50%),
    var(--color-bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__content > * + * { margin-top: 20px; }
.hero__title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero__title em {
  color: var(--color-brand-teal-dark);
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, rgba(61, 179, 160, 0.22) 62%);
  padding: 0 4px;
}
.hero__title strong {
  font-weight: 700;
  color: var(--color-text-primary);
}
.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}
.hero__trust-item .stars {
  color: #f7b500;
  letter-spacing: 1px;
  font-size: 14px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--color-surface-raised);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}
.hero__visual-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-teal);
  box-shadow: 0 0 0 4px rgba(61, 179, 160, 0.2);
  animation: pulseDot 2s var(--ease-standard) infinite;
}

.hero__visual-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-medium);
}
.hero__visual-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-brand-coral);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  color: #1b1b1b;
  flex-shrink: 0;
}
.hero__visual-card-text { font-size: 13px; line-height: 1.4; }
.hero__visual-card-text strong { display: block; font-size: 14px; }
.hero__visual-card-text span { color: var(--color-text-muted); font-size: 12px; }

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 179, 160, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(61, 179, 160, 0); }
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__content { order: 2; }
  .hero__visual { order: 1; }
}

/* ----- 10. Logo / Press strip ----- */
.press-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
  background: var(--color-surface-strong);
}
.press-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.press-strip__label {
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-text-primary);
}
.press-strip__items {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  flex-wrap: wrap;
}
.press-strip__item {
  font-family: "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-style: italic;
  text-transform: none;
  color: var(--color-text-primary);
}

/* ----- 11. Section: Pourquoi vos cheveux tombent ----- */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.why-section__visual {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface-raised);
}
.why-section__visual img { width: 100%; height: 100%; object-fit: cover; }
.why-section__content > * + * { margin-top: 18px; }
.why-section h2 {
  font-size: clamp(28px, 4vw, 44px);
}
.why-section h2 em {
  font-style: normal;
  color: var(--color-brand-teal-dark);
}
.why-section__list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.why-section__list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.why-section__list-item-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-brand-rose-soft);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-brand-teal-dark);
}
.why-section__list-item h6 { margin-bottom: 2px; font-size: 15px; font-weight: 600; }
.why-section__list-item p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; }

@media (max-width: 880px) {
  .why-section { grid-template-columns: 1fr; }
}

/* ----- 12. Avant/Après section ----- */
.beforeafter {
  text-align: center;
}
.beforeafter__head { max-width: 720px; margin: 0 auto 48px; }
.beforeafter__head > * + * { margin-top: 14px; }

.beforeafter__visual {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.beforeafter__visual img { width: 100%; display: block; }

.beforeafter__quote {
  margin: 40px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--color-text-primary);
  font-style: italic;
}
.beforeafter__quote::before {
  content: """;
  display: block;
  font-size: 48px;
  color: var(--color-brand-teal);
  line-height: 0.5;
  margin-bottom: 16px;
}
.beforeafter__quote-author {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}
.beforeafter__quote-author span { color: var(--color-text-muted); font-weight: 500; }

/* ----- 13. Stats clinical strip ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  text-align: center;
}
.stat {
  padding: 32px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard);
}
.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.stat__num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-text-primary);
  background: linear-gradient(180deg, var(--color-text-primary), var(--color-brand-teal-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.4;
}
.stat__sub {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 24px 12px; }
}

/* ----- 14. Cure post-partum (split product) ----- */
.cure-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.cure-split__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--color-brand-cream);
}
.cure-split__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.cure-split__sticker {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--color-brand-coral);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1b1b1b;
  line-height: 1.2;
  box-shadow: var(--shadow-medium);
  transform: rotate(-8deg);
}
.cure-split__sticker strong { display: block; font-size: 22px; letter-spacing: -0.02em; }
.cure-split__content > * + * { margin-top: 18px; }
.cure-split__features {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.cure-split__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.cure-split__feature::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-brand-teal);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
@media (max-width: 880px) {
  .cure-split { grid-template-columns: 1fr; }
}

/* ----- 15. Composition cards ----- */
.compo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.compo-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard);
}
.compo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-brand-teal);
}
.compo-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-brand-rose-soft);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.compo-card h6 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.compo-card p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.5; }

/* ----- 16. Timeline 1-3-6 mois ----- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand-teal) 0%, var(--color-brand-coral) 100%);
  z-index: 0;
  border-radius: 2px;
}
.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}
.timeline-step__dot {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-brand-teal);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brand-teal-dark);
  box-shadow: var(--shadow-soft);
}
.timeline-step--featured .timeline-step__dot {
  background: var(--color-brand-teal);
  color: #fff;
  border-color: var(--color-brand-teal);
  transform: scale(1.08);
}
.timeline-step h6 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; max-width: 240px; margin: 0 auto; }

@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { display: none; }
}

/* ----- 17. UGC testimonial cards ----- */
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.ugc-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--motion-base) var(--ease-standard);
}
.ugc-card:hover { transform: translateY(-4px); }
.ugc-card__img {
  aspect-ratio: 4 / 5;
  background: var(--color-surface-raised);
  position: relative;
}
.ugc-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ugc-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}
.ugc-card__quote {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ugc-card__quote-stars {
  color: #f7b500;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ugc-card__quote-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  flex: 1;
}
.ugc-card__quote-author {
  font-size: 13px;
  font-weight: 600;
}
.ugc-card__quote-author span {
  display: block;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 12px;
  margin-top: 2px;
}

/* ----- 18. Pricing ----- */
.pricing-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.pricing-head > * + * { margin-top: 14px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard), border-color var(--motion-base) var(--ease-standard);
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.pricing-card--featured {
  border-color: var(--color-brand-teal);
  background: linear-gradient(180deg, #fff 0%, #fff 60%, rgba(61, 179, 160, 0.04) 100%);
  box-shadow: var(--shadow-medium);
  transform: translateY(-8px);
}
.pricing-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}
.pricing-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand-teal);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card__name { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-text-secondary); }
.pricing-card__title { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-top: 6px; }
.pricing-card__sub { font-size: 13px; color: var(--color-text-muted); margin-top: 6px; }

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
}
.pricing-card__price-strike {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--color-text-muted);
}
.pricing-card__price {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
}
.pricing-card__price-period {
  font-size: 14px;
  color: var(--color-text-secondary);
}
.pricing-card__price-detail { font-size: 12px; color: var(--color-text-muted); margin-top: 2px; }

.pricing-card__code {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--color-brand-rose-soft);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-primary);
}
.pricing-card__code code {
  font-family: "Menlo", "Monaco", monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 4px;
}

.pricing-card__features {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.pricing-card__features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-brand-teal);
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  display: grid;
  place-items: center;
  margin-top: 3px;
}
.pricing-card__cta { margin-top: 24px; }
.pricing-card__cta .btn { width: 100%; }

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-2px); }
}

/* ----- 19. FAQ accordion ----- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 64px);
}
.faq-grid__head h2 { margin-bottom: 16px; }
.faq-grid__head p { color: var(--color-text-secondary); margin-bottom: 24px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--motion-base) var(--ease-standard);
}
.faq-item[open] { border-color: var(--color-brand-teal); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: transform var(--motion-base) var(--ease-standard);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--color-brand-teal);
}
.faq-item__body {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ----- 20. Garanties grid ----- */
.guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.guarantee {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background var(--motion-base) var(--ease-standard);
}
.guarantee:hover { background: #fff; }
.guarantee__icon { font-size: 28px; margin-bottom: 10px; }
.guarantee h6 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.guarantee p { font-size: 12px; color: var(--color-text-secondary); line-height: 1.5; }

/* ----- 21. Final CTA banner ----- */
.cta-final {
  position: relative;
  text-align: center;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px);
  background:
    radial-gradient(ellipse at top, rgba(244, 164, 142, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(61, 179, 160, 0.15) 0%, transparent 60%),
    var(--color-text-primary);
  color: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.cta-final h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  max-width: 720px;
  margin: 0 auto 18px;
}
.cta-final h2 em {
  font-style: normal;
  color: var(--color-brand-coral);
}
.cta-final p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 36px;
}
.cta-final__ctas { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-final__guarantee {
  margin-top: 36px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ----- 22. Footer ----- */
.site-footer {
  padding: 60px 0 40px;
  background: var(--color-surface-strong);
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-secondary);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer h6 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; color: var(--color-text-primary); }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: var(--color-text-primary); }
.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--color-text-muted);
}
@media (max-width: 760px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ----- 23. Sticky bottom CTA (mobile) ----- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform var(--motion-slow) var(--ease-emphasis);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__price { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sticky-cta__price strong { font-size: 16px; font-weight: 700; }
.sticky-cta__price span { font-size: 12px; color: var(--color-text-muted); }
.sticky-cta .btn { flex-shrink: 0; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ----- 24. Reveal on scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-emphasis), transform 700ms var(--ease-emphasis);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----- 25. Section heads ----- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.section-head > * + * { margin-top: 16px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { font-size: 17px; color: var(--color-text-secondary); }

/* ----- 26. Helper utilities ----- */
.mt-0 { margin-top: 0 !important; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-md { margin-bottom: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.no-select { user-select: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   27. MOBILE CRO — Above-the-fold optimization
   Goal: Headline + Primary CTA visible without scrolling.
   Overrides the older 880px rule that pushes the image above
   the content on mobile (which kills the fold).
   ============================================================ */
@media (max-width: 760px) {

  /* --- Urgency bar: keep on a single row, compact --- */
  .urgency-bar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 10px;
    padding: 7px 30px 7px 12px;
    font-size: 11.5px;
    line-height: 1.3;
  }
  .urgency-bar .countdown { font-size: 11px; gap: 2px; }
  .urgency-bar__dismiss { right: 6px; font-size: 16px; padding: 2px 6px; }

  /* --- Header: tighter so it eats less fold --- */
  :root { --header-h: 54px; }
  .site-header__logo img { height: 28px !important; }
  .site-header__cta .btn {
    min-height: 36px;
    padding: 7px 14px;
    font-size: 13px;
  }
  .site-header__cta .btn .arrow { display: none; }

  /* --- Hero: CONTENT FIRST, then visual. Tight stack. --- */
  .hero { padding: 18px 0 36px; }
  .hero__grid { gap: 22px !important; }
  .hero__content { order: 1 !important; }
  .hero__visual { order: 2 !important; aspect-ratio: 4 / 4.4; max-height: 380px; }

  .hero__content > * + * { margin-top: 12px; }

  /* --- Eyebrow above headline --- */
  .hero .eyebrow { font-size: 11px; }

  /* --- Headline: punchy, fits in fold --- */
  .hero__title {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .hero__title em { padding: 0 2px; }

  /* --- Subtitle: smaller, no width cap --- */
  .hero__subtitle {
    font-size: 15px;
    line-height: 1.45;
    max-width: none;
  }

  /* --- CTAs stacked, primary full-width --- */
  .hero__ctas {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }
  .hero__ctas .btn { width: 100%; justify-content: center; font-size: 15px; }
  .hero__ctas .btn--lg { min-height: 52px; padding: 14px 22px; }
  .hero__ctas .btn--ghost {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    min-height: 44px;
  }

  /* --- Trust line: compact, wraps tight --- */
  .hero__trust {
    margin-top: 16px;
    padding-top: 14px;
    gap: 8px 14px;
    justify-content: flex-start;
  }
  .hero__trust-item { font-size: 12px; gap: 6px; }
  .hero__trust-item .stars { font-size: 13px; }

  /* --- Hero visual badge & overlay card: smaller --- */
  .hero__visual-tag {
    font-size: 10.5px;
    padding: 7px 11px;
    top: 12px;
    left: 12px;
    letter-spacing: 0.03em;
  }
  .hero__visual-card {
    bottom: 12px; left: 12px; right: 12px;
    padding: 11px 13px;
    gap: 10px;
    border-radius: 14px;
  }
  .hero__visual-card-avatar { width: 38px; height: 38px; font-size: 14px; }
  .hero__visual-card-text strong { font-size: 13px; }
  .hero__visual-card-text span { font-size: 11px; }
}

/* Small phones (iPhone SE, Galaxy A series) */
@media (max-width: 380px) {
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 14px; }
  .hero__ctas .btn--lg { min-height: 48px; padding: 12px 18px; }
  .hero__visual { max-height: 320px; }
  .hero__trust-item { font-size: 11.5px; }
}

/* ============================================================
   28. MOBILE — Below-the-fold density & touch targets
   ============================================================ */
@media (max-width: 760px) {

  /* Tighter sections so users see more value per scroll */
  :root { --section-pad-y: 56px; }
  .press-strip { padding: 14px 0; }
  .press-strip__inner { gap: 14px; }
  .press-strip__item { font-size: 16px; }
  .press-strip__label { font-size: 11px; letter-spacing: 0.14em; }

  /* Section headings: punchier on mobile */
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 26px; line-height: 1.15; }
  .section-head p { font-size: 15px; }

  /* Why-section: tighter card list */
  .why-section h2 { font-size: 26px; line-height: 1.15; }
  .why-section .lead { font-size: 15px; }
  .why-section__list { margin-top: 18px; gap: 10px; }
  .why-section__list-item { padding: 14px 14px; }
  .why-section__list-item h6 { font-size: 14px; }
  .why-section__list-item p { font-size: 13.5px; }

  /* Stats: 2×2 grid on mobile (instead of 4 columns) */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat { padding: 18px 12px; }
  .stat__num { font-size: 32px; }
  .stat__label { font-size: 13px; }
  .stat__sub { font-size: 11px; }

  /* Cure split (the "Pourquoi 6 mois" section): tight */
  .cure-split h2 { font-size: 26px; line-height: 1.15; }
  .cure-split .lead { font-size: 15px; }
  .cure-split__feature { padding: 12px 14px; font-size: 14px; }
  .cure-split__sticker {
    font-size: 13px;
    padding: 10px 14px;
    bottom: 16px; right: 16px;
  }
  .cure-split__sticker strong { font-size: 18px; }

  /* Composition cards: 2 columns on mobile */
  .compo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .compo-card { padding: 14px 12px; }
  .compo-card h6 { font-size: 14px; }
  .compo-card p { font-size: 12.5px; line-height: 1.4; }
  .compo-card__icon { font-size: 22px; }

  /* Timeline: stack vertical, compact */
  .timeline { grid-template-columns: 1fr; gap: 14px; }
  .timeline-step { padding: 18px 16px; }
  .timeline-step__dot { width: 56px; height: 56px; font-size: 13px; }

  /* UGC cards: single column */
  .ugc-grid { grid-template-columns: 1fr; gap: 16px; }
  .ugc-card__quote-text { font-size: 14px; }

  /* PRICING — the conversion moment. Featured card pops first. */
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-card { padding: 22px 20px; }
  .pricing-card--featured { order: -1; }  /* show 6-mois first on mobile */
  .pricing-card__title { font-size: 22px; }
  .pricing-card__price { font-size: 28px; }
  .pricing-card__features { font-size: 14px; }

  /* Beforeafter: tighter quote */
  .beforeafter h2 { font-size: 26px; line-height: 1.15; }
  .beforeafter .lead { font-size: 15px; }
  .beforeafter__quote { font-size: 16px; padding: 22px 18px; }

  /* CTA final: punchy */
  .cta-final h2 { font-size: 28px; line-height: 1.1; }
  .cta-final p { font-size: 15px; }
  .cta-final__ctas .btn { width: 100%; justify-content: center; min-height: 52px; }

  /* FAQ: tighter */
  .faq-item summary { font-size: 14.5px; padding: 16px 14px; }
  .faq-item__body { font-size: 14px; padding: 0 14px 16px; }

  /* Guarantees: 2-col grid on mobile */
  .guarantees { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guarantee { padding: 14px 10px; }
  .guarantee h6 { font-size: 13px; }
  .guarantee p { font-size: 12px; }

  /* Touch targets: ensure 44px minimum on all CTAs */
  .btn { min-height: 44px; }
  .btn--lg { min-height: 52px; }

  /* Sticky bottom CTA: more prominent */
  .sticky-cta { padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); }
  .sticky-cta .btn { min-height: 44px; padding: 10px 16px; font-size: 14px; }
  .sticky-cta__price strong { font-size: 15px; }
  .sticky-cta__price span { font-size: 11px; }
}

/* ============================================================
   29. DESKTOP CRO — ≥881px
   Goal: tighter fold, pricing dominance, micro-interactions.
   ============================================================ */
@media (min-width: 881px) {

  /* --- Sections: less empty space, more scroll completion --- */
  :root { --section-pad-y: clamp(64px, 7vw, 96px); }

  /* --- HERO: tighter top, sharper visual hierarchy --- */
  .hero { padding: clamp(36px, 4vw, 60px) 0 clamp(56px, 6vw, 80px); }
  .hero__grid { grid-template-columns: 1.08fr 1fr; gap: clamp(40px, 5vw, 72px); }
  .hero__title {
    font-size: clamp(40px, 4.6vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .hero__subtitle {
    font-size: clamp(17px, 1.3vw, 19px);
    line-height: 1.55;
    max-width: 540px;
  }

  /* Hero visual — slightly less tall ratio so card+tag breathe */
  .hero__visual { aspect-ratio: 4 / 4.7; max-height: 620px; }

  /* --- Primary CTA in hero: subtle pulse to draw the eye --- */
  .hero__ctas .btn--primary,
  .hero__ctas .btn--brand,
  .hero__ctas .btn--coral {
    position: relative;
    box-shadow: 0 8px 24px -8px rgba(61, 179, 160, 0.45);
  }
  .hero__ctas .btn--primary::after,
  .hero__ctas .btn--brand::after,
  .hero__ctas .btn--coral::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(61, 179, 160, 0.55);
    animation: heroPulse 2.4s var(--ease-standard) infinite;
    pointer-events: none;
  }
  .hero__ctas .btn--coral::after {
    box-shadow: 0 0 0 0 rgba(255, 122, 94, 0.55);
  }
  @keyframes heroPulse {
    0%   { box-shadow: 0 0 0 0 rgba(61, 179, 160, 0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(61, 179, 160, 0); }
    100% { box-shadow: 0 0 0 0 rgba(61, 179, 160, 0); }
  }

  /* --- Press strip: tighter, more refined --- */
  .press-strip { padding: 18px 0; }

  /* --- Section heads: punchy on desktop --- */
  .section-head h2 { font-size: clamp(34px, 3.4vw, 46px); letter-spacing: -0.025em; }

  /* --- Stats: bigger numbers, better visual rhythm --- */
  .stat__num {
    font-size: clamp(48px, 4.4vw, 64px);
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .stat { padding: 28px 20px; transition: transform var(--motion-base) var(--ease-standard); }
  .stat:hover { transform: translateY(-4px); }

  /* --- Composition cards: lift on hover for "premium" feel --- */
  .compo-card {
    transition: transform var(--motion-base) var(--ease-standard),
                box-shadow var(--motion-base) var(--ease-standard),
                border-color var(--motion-base) var(--ease-standard);
  }
  .compo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-brand-teal-light, rgba(61, 179, 160, 0.4));
  }

  /* --- Timeline: featured step pops harder --- */
  .timeline-step--featured { transform: translateY(-8px); }
  .timeline-step--featured .timeline-step__dot {
    box-shadow: 0 8px 24px -6px rgba(61, 179, 160, 0.5);
  }

  /* --- UGC cards: refined hover, better proportions --- */
  .ugc-grid { gap: 22px; }
  .ugc-card { transition: transform var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard); }
  .ugc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }

  /* --- PRICING: featured card dominates the grid --- */
  .pricing-grid { gap: 24px; align-items: center; }
  .pricing-card { padding: 36px 32px; }
  .pricing-card--featured {
    transform: translateY(-12px) scale(1.04);
    border-width: 2.5px;
    box-shadow: 0 24px 60px -16px rgba(61, 179, 160, 0.35), 0 0 0 1px rgba(61, 179, 160, 0.15);
    background: linear-gradient(180deg, #fff 0%, #fff 55%, rgba(61, 179, 160, 0.06) 100%);
  }
  .pricing-card--featured:hover {
    transform: translateY(-16px) scale(1.04);
    box-shadow: 0 32px 70px -16px rgba(61, 179, 160, 0.45), 0 0 0 1px rgba(61, 179, 160, 0.2);
  }
  .pricing-card--featured .pricing-card__ribbon {
    top: -16px;
    padding: 9px 18px;
    font-size: 11.5px;
    box-shadow: 0 6px 16px -4px rgba(61, 179, 160, 0.5);
  }
  .pricing-card--featured .pricing-card__price { font-size: 44px; }
  .pricing-card--featured .pricing-card__cta .btn {
    box-shadow: 0 10px 28px -8px rgba(61, 179, 160, 0.55);
  }
  /* "Best value" cue under the featured price */
  .pricing-card--featured .pricing-card__price-detail::before {
    content: "★ ";
    color: var(--color-brand-coral);
    font-weight: 700;
  }

  /* --- CTA Final: more dramatic on desktop --- */
  .cta-final h2 { font-size: clamp(38px, 3.6vw, 52px); letter-spacing: -0.025em; }
  .cta-final__ctas .btn {
    box-shadow: 0 12px 32px -10px rgba(255, 122, 94, 0.55);
  }
  .cta-final__ctas .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(255, 122, 94, 0.65);
  }

  /* --- Why-section: stronger visual rhythm on number cards --- */
  .why-section__list-item {
    transition: transform var(--motion-base) var(--ease-standard),
                border-color var(--motion-base) var(--ease-standard);
  }
  .why-section__list-item:hover {
    transform: translateX(3px);
    border-color: var(--color-brand-teal-light, rgba(61, 179, 160, 0.4));
  }

  /* --- Cure split: feature list more scannable --- */
  .cure-split__feature {
    transition: background var(--motion-base) var(--ease-standard);
  }
  .cure-split__feature:hover { background: rgba(255, 255, 255, 0.6); }

  /* --- Beforeafter quote: more elegant on desktop --- */
  .beforeafter__quote {
    font-size: clamp(20px, 1.7vw, 24px);
    line-height: 1.45;
  }

  /* --- Faster perceived load: defer animation only on first viewport --- */
  .reveal { transition-duration: 600ms; }
}

/* Ultra-wide / 4K refinement */
@media (min-width: 1600px) {
  .hero__title { font-size: 64px; }
  .pricing-card--featured .pricing-card__price { font-size: 48px; }
  :root { --container-max: 1340px; }
}

/* ============================================================
   30. BLOG ARTICLES & RELATED-POSTS GRID
   ============================================================ */

/* ---- Article header ---- */
.article-header {
  padding: clamp(40px, 6vw, 80px) 0 clamp(28px, 3vw, 40px);
  background:
    radial-gradient(circle at 0% 0%, var(--color-brand-rose-soft) 0%, transparent 45%),
    var(--color-bg);
}
.article-header__inner { max-width: 760px; margin: 0 auto; }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-size: 13px; color: var(--color-text-muted); margin-bottom: 18px;
}
.article-meta a { color: var(--color-brand-teal-dark); font-weight: 600; }
.article-meta__sep { opacity: .35; }
.article__h1 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 18px;
}
.article-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--color-text-secondary);
  max-width: 680px;
}

/* ---- Cover image ---- */
.article-cover {
  max-width: 1040px; margin: 0 auto;
  border-radius: var(--radius-2xl); overflow: hidden;
  aspect-ratio: 16 / 8; background: var(--color-surface-raised);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Body ---- */
.article-body {
  max-width: 720px; margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
  font-size: 17px; line-height: 1.72;
  color: var(--color-text-primary);
}
.article-body > * + * { margin-top: 22px; }
.article-body h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-top: 48px; margin-bottom: 14px;
}
.article-body h3 {
  font-size: clamp(19px, 1.7vw, 22px);
  line-height: 1.3; font-weight: 600;
  margin-top: 32px; margin-bottom: 10px;
}
.article-body p { color: var(--color-text-secondary); }
.article-body strong { color: var(--color-text-primary); font-weight: 600; }
.article-body a:not(.btn) {
  color: var(--color-brand-teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
}
.article-body a:not(.btn):hover { background: rgba(61, 179, 160, 0.08); }
.article-body ul, .article-body ol {
  padding-left: 24px; color: var(--color-text-secondary);
}
.article-body li + li { margin-top: 6px; }
.article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--color-brand-teal);
  background: var(--color-brand-rose-soft);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 17px; font-style: italic;
  color: var(--color-text-primary);
}
.article-body .key-stat {
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.article-body .key-stat__num {
  font-size: 36px; font-weight: 700;
  color: var(--color-brand-teal-dark);
  letter-spacing: -0.02em;
}
.article-body .key-stat__label { font-size: 14px; color: var(--color-text-secondary); }

/* ---- TOC ---- */
.article-toc {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 28px 0 36px;
  font-size: 14px;
}
.article-toc summary {
  cursor: pointer; font-weight: 600;
  color: var(--color-text-primary);
  list-style: none; padding: 4px 0;
}
.article-toc summary::-webkit-details-marker { display: none; }
.article-toc summary::after { content: " ↓"; opacity: .5; }
.article-toc[open] summary::after { content: " ↑"; }
.article-toc ol {
  margin-top: 12px; padding-left: 20px;
  color: var(--color-text-secondary);
}
.article-toc li { margin: 4px 0; }
.article-toc a {
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.article-toc a:hover {
  color: var(--color-brand-teal-dark);
  border-color: var(--color-brand-teal-dark);
}

/* ---- Mid-article CTA box ---- */
.article-cta {
  margin: 40px 0;
  padding: 28px 28px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(61, 179, 160, 0.10) 0%, rgba(255, 122, 94, 0.10) 100%);
  border: 1px solid rgba(61, 179, 160, 0.2);
  display: grid; gap: 14px;
}
.article-cta__eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-brand-coral);
}
.article-cta__title {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2; letter-spacing: -0.02em;
  font-weight: 700; color: var(--color-text-primary);
  margin: 0;
}
.article-cta p { font-size: 15px; margin: 0; color: var(--color-text-secondary); }
.article-cta .btn { align-self: start; }

/* ---- Related articles grid ---- */
.related-articles {
  background: var(--color-surface-strong);
  padding: clamp(48px, 6vw, 80px) 0;
}
.related-articles h2 {
  text-align: center;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.article-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--motion-base) var(--ease-standard),
              box-shadow var(--motion-base) var(--ease-standard);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.article-card__img {
  aspect-ratio: 16 / 10;
  background: var(--color-surface-raised);
  overflow: hidden;
}
.article-card__img img { width: 100%; height: 100%; object-fit: cover; }
.article-card__body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.article-card__cat {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-brand-teal-dark);
}
.article-card__title {
  font-size: 17px; font-weight: 600;
  line-height: 1.3; margin-top: 8px;
  color: var(--color-text-primary);
}
.article-card__excerpt {
  font-size: 14px; color: var(--color-text-secondary);
  margin-top: 10px; line-height: 1.5; flex: 1;
}
.article-card__more {
  margin-top: 14px; font-size: 13px; font-weight: 600;
  color: var(--color-brand-teal-dark);
}

@media (max-width: 760px) {
  .article-body { font-size: 16px; line-height: 1.65; }
  .article-cta { padding: 22px 20px; }
  .related-articles__grid { grid-template-columns: 1fr; }
}

