/* ═══════════════════════════════════════
   byBeautyPro — Reto 30 Días Landing
   v2 — Visual, editorial, impactful
   ═══════════════════════════════════════ */

/* --- Tokens --- */
:root {
  --dark: #3A383A;
  --dark-soft: #4a484a;
  --light: #EAE9E5;
  --light-warm: #F5F4F0;
  --teal: #3E5D58;
  --teal-light: #4d7a73;
  --coral: #E0684B;
  --coral-dark: #c9553b;
  --red: #E5554F;
  --blue: #5A85D7;

  --bg: #EAE9E5;
  --text: #3A383A;
  --text-muted: #7a777a;

  --serif: 'STIX Two Text', 'Georgia', serif;
  --sans: 'Inter', system-ui, sans-serif;

  --container: 900px;
  --wide: 1180px;
  --full: 1360px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-gap: clamp(3.5rem, 7vw, 6rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

/* --- Containers --- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.wide { max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }
.full { max-width: var(--full); margin-inline: auto; padding-inline: var(--gutter); }

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* stagger */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.07s; }
.stagger > *:nth-child(3) { transition-delay: 0.14s; }
.stagger > *:nth-child(4) { transition-delay: 0.21s; }
.stagger > *:nth-child(5) { transition-delay: 0.28s; }
.stagger > *:nth-child(6) { transition-delay: 0.35s; }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(234, 233, 229, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s;
  max-width: 100vw;
  overflow: hidden;
}
.nav.scrolled {
  border-bottom-color: rgba(58, 56, 58, 0.06);
  box-shadow: 0 1px 24px rgba(58, 56, 58, 0.06);
}
.nav__logo {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.nav__logo span { font-weight: 400; color: var(--teal); }
.nav__logo-img { height: 28px; width: auto; }
.nav__cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: calc(100vw - var(--gutter) * 2 - 120px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav__cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 2rem + 3.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 800px;
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 560px;
  font-style: italic;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--dark);
  background: rgba(58,56,58,0.05);
  border-radius: 6px;
}
.hero__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* ═══════════════════════════════════════
   SECTIONS GENERIC
   ═══════════════════════════════════════ */
section { padding-block: var(--section-gap); }

.section--dark { background: var(--dark); color: var(--light); }
.section--dark .text-muted { color: #a8a6a3; }
.section--teal { background: var(--teal); color: var(--light); }
.section--coral { background: var(--coral); color: #fff; }
.section--warm { background: var(--light-warm); }

.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.5rem;
  display: block;
}
.section--dark .section-label { color: var(--coral); }
.section--teal .section-label { color: rgba(234,233,229,0.6); }

h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 1.4rem + 2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-large { font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem); line-height: 1.6; }

.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.5rem; }

/* ═══════════════════════════════════════
   CTA BUTTONS
   ═══════════════════════════════════════ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: clamp(0.9rem, 0.85rem + 0.15vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1rem 2.2rem;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(224, 104, 75, 0.3);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.cta-btn::after {
  content: '\2192';
  transition: transform 0.3s;
}
.cta-btn:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(224, 104, 75, 0.4);
}
.cta-btn:hover::after { transform: translateX(4px); }

.cta-btn--big {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.15rem);
  padding: 1.15rem 2.8rem;
}

.cta-btn--outline {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
  box-shadow: none;
}
.cta-btn--outline:hover {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 36px rgba(224, 104, 75, 0.3);
}

.cta-btn--dark {
  background: var(--dark);
  color: var(--light);
  box-shadow: 0 4px 24px rgba(58, 56, 58, 0.25);
}
.cta-btn--dark:hover {
  background: #2a282a;
  box-shadow: 0 8px 36px rgba(58, 56, 58, 0.35);
}
.cta-btn--dark::after { content: '\2192'; }

.cta-btn--white {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.cta-btn--white:hover {
  background: var(--light);
  box-shadow: 0 8px 36px rgba(0,0,0,0.15);
}

.cta-hint {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}
.section--dark .cta-hint { color: #a8a6a3; }
.section--coral .cta-hint { color: rgba(255,255,255,0.7); }

.cta-band {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  text-align: center;
}

/* ═══════════════════════════════════════
   TESTIMONIAL SLIDER
   ═══════════════════════════════════════ */
.testi-slider-section {
  padding-block: var(--section-gap);
}

/* Slider — full bleed, no container */
.testi-slider {
  margin-top: 2.5rem;
  overflow: hidden;
}
.testi-slider__viewport {
  width: 100%;
  overflow: hidden;
}
.testi-slider__track {
  display: flex;
  gap: 1rem;
  will-change: transform;
  padding-inline: 40px;
}

/* Card — with background, full bleed */
.testi-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

/* Card header — logo + name */
.testi-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-card__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.testi-card__centro {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.testi-card__ubicacion {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(234, 233, 229, 0.55);
  letter-spacing: 0.04em;
  margin: 0;
}

/* Titular */
.testi-card__titular {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

/* YouTube embed — responsive 16:9 */
.testi-card__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.testi-card__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Quote */
.testi-card__frase {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(234, 233, 229, 0.85);
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--coral);
  flex-grow: 1;
}
.testi-card__nombre {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(234, 233, 229, 0.5);
  margin: 0;
}

/* Controls — centered below */
.testi-slider__controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.testi-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.25s, transform 0.25s;
}
.testi-arrow:hover {
  color: #fff;
  transform: translateX(-3px);
}
.testi-arrow--next:hover {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════
   MAP — CENTROS EN ACTIVO
   ═══════════════════════════════════════ */
.map-section h2 { color: var(--dark); }
.map-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(58,56,58,0.1);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 540px;
  margin-top: -60px;
}

/* ═══════════════════════════════════════
   OFFER CARDS
   ═══════════════════════════════════════ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.offer-card {
  background: rgba(234, 233, 229, 0.06);
  border: 1px solid rgba(234, 233, 229, 0.08);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.offer-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(224, 104, 75, 0.15);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.offer-card__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.offer-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a8a6a3;
  margin: 0;
}

/* full-width single card variant */
.offer-card--full {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.offer-card--full .offer-card__icon { flex-shrink: 0; }
.offer-card--full .offer-card__content { flex: 1; }

/* ═══════════════════════════════════════
   SARDONIC LIST (humor section)
   ═══════════════════════════════════════ */
.sardonic-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sardonic-list li {
  padding: 1.25rem 1.5rem 1.25rem 0.5rem;
  background: var(--light-warm);
  border-radius: 8px;
  border-left: none;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: transform 0.2s;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.sardonic-list li::before {
  content: '!';
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-top: 0.1rem;
}
.sardonic-list li:hover { transform: translateX(4px); }
.sardonic-list li em {
  display: contents;
}
.sardonic-list li span { display: block; }
.sardonic-list li span em {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ═══════════════════════════════════════
   OBJECTION NUMBERED LIST
   ═══════════════════════════════════════ */
.obj-intro-list {
  list-style: none;
  counter-reset: obj;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}
.obj-intro-list li {
  counter-increment: obj;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.15rem);
  line-height: 1.55;
  padding: 1.25rem;
  background: rgba(58,56,58,0.03);
  border-radius: 8px;
}
.obj-intro-list li::before {
  content: counter(obj);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
}

/* ═══════════════════════════════════════
   MEDIA PLACEHOLDER
   ═══════════════════════════════════════ */
.media-placeholder {
  margin: 2.5rem 0;
  background: rgba(58, 56, 58, 0.04);
  border: 1.5px dashed rgba(58, 56, 58, 0.15);
  border-radius: 8px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  position: relative;
  overflow: hidden;
}
.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,93,88,0.03) 0%, rgba(224,104,75,0.03) 100%);
}
.section--dark .media-placeholder {
  background: rgba(234, 233, 229, 0.04);
  border-color: rgba(234, 233, 229, 0.12);
  color: #a8a6a3;
}
.media-placeholder .icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}

/* two-col media layout */
.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.media-row .media-placeholder { margin: 0; }

/* ═══════════════════════════════════════
   STATS — Full-width impact
   ═══════════════════════════════════════ */
.stats-section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,104,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(234,233,229,0.1);
}
.stat__number {
  font-family: var(--serif);
  font-size: clamp(3rem, 2rem + 4vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.03em;
}
.stat__label {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
  font-weight: 500;
  color: #a8a6a3;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   PULL QUOTE — full bleed break
   ═══════════════════════════════════════ */
.pull-quote {
  margin: 2.5rem calc(-1 * var(--gutter));
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--coral);
}
.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 1.2rem + 2vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 700px;
  margin-inline: auto;
}
.pull-quote .highlight { color: var(--coral); }

/* dark variant */
.pull-quote--dark {
  background: var(--dark);
  color: var(--light);
  border-radius: 8px;
  margin: 3rem 0;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.pull-quote--dark p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}
.pull-quote--dark .highlight {
  color: var(--coral);
}
.pull-quote--dark::before { display: none; }

/* ═══════════════════════════════════════
   TESTIMONIAL CARDS
   ═══════════════════════════════════════ */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(58,56,58,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(58,56,58,0.1);
}
.section--dark .testimonial-card {
  background: rgba(234,233,229,0.06);
  box-shadow: none;
  border: 1px solid rgba(234,233,229,0.08);
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.section--dark .testimonial-card__role { color: #a8a6a3; }
.testimonial-card__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.testimonial-card__result {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: rgba(224,104,75,0.1);
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 4px;
}
.section--dark .testimonial-card__result {
  background: rgba(224,104,75,0.2);
}

/* ═══════════════════════════════════════
   LOGO STRIP
   ═══════════════════════════════════════ */
.logo-strip {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(58,56,58,0.06);
  border-bottom: 1px solid rgba(58,56,58,0.06);
}
.logo-strip__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.logo-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.logo-strip__item {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.logo-strip__item:hover { opacity: 1; }

/* ═══════════════════════════════════════
   SITUATION CARDS (OBJ-3)
   ═══════════════════════════════════════ */
.situation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.situation-card {
  background: rgba(234,233,229,0.08);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--coral);
  transition: transform 0.3s;
}
.situation-card:hover { transform: translateY(-4px); }
.situation-card__q {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: #fff;
}
.situation-card__a {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a8a6a3;
  margin: 0;
}

/* ═══════════════════════════════════════
   CONTENT IMAGE
   ═══════════════════════════════════════ */
.content-img {
  border-radius: 8px;
  overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: 0 8px 40px rgba(58,56,58,0.08);
}
.content-img img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════
   TWO-COL LAYOUT
   ═══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ═══════════════════════════════════════
   HUMOR / PERSONALITY
   ═══════════════════════════════════════ */
.humor-intro {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
}

/* ═══════════════════════════════════════
   IG EMBED (fake Instagram container)
   ═══════════════════════════════════════ */
.ig-embed {
  max-width: 480px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(58,56,58,0.08);
  border: 1px solid rgba(58,56,58,0.08);
}
.ig-embed__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
}
.ig-embed__dots {
  margin-left: auto;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--dark);
  opacity: 0.6;
}
.ig-embed__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--coral);
}
.ig-embed__user {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.ig-embed__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.ig-embed__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.ig-embed__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
}
.ig-embed__actions-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ig-embed__actions svg {
  width: 22px;
  height: 22px;
  color: var(--dark);
  cursor: pointer;
}
.ig-embed__bookmark {
  width: 22px;
  height: 22px;
  color: var(--dark);
  cursor: pointer;
}
.ig-embed__footer {
  padding: 0 1rem 0.75rem;
}
.ig-embed__likes {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.25rem;
}
.ig-embed__caption {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}
.ig-embed__caption strong {
  font-weight: 700;
}

/* ═══════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════ */
.divider {
  width: 48px;
  height: 3px;
  background: var(--coral);
  margin: 3rem 0;
  border: none;
}
.divider--center { margin-inline: auto; }

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  padding: clamp(5rem, 10vw, 10rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__pre {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}
.final-cta h2 {
  font-size: clamp(2.2rem, 1.5rem + 3vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.final-cta .cta-btn { font-size: clamp(1.05rem, 1rem + 0.2vw, 1.2rem); padding: 1.25rem 3rem; }

.final-cta__details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.final-cta__detail {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.final-cta__detail::before {
  content: '\2713';
  color: var(--dark);
  font-weight: 800;
}
.section--coral .final-cta__detail::before { color: #fff; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 3rem var(--gutter);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(58,56,58,0.06);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .stat-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat + .stat::before { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
  .media-row { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card--full { flex-direction: column; }
  .situation-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__badges { flex-direction: column; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .cta-btn { width: 100%; text-align: center; justify-content: center; }
  .nav__cta { padding: 0.5rem 1rem; font-size: 0.72rem; }
  .final-cta__details { flex-direction: column; align-items: center; }
}
