/* ═══════════════════════════════
   VARIABLES
═══════════════════════════════ */
:root {
  --cream: #FDF4F8;
  --cream-deep: #F5E6EF;
  --warm-brown: #5C2D4A;
  --caramel: #A0306A;
  --terracotta: #E0196E;
  --sage: #9B4B7A;
  --charcoal: #2E1428;
  --gold: #C4186A;
  --blush: #F2C4DC;
  --ink: #1A0A14;
}

/* ═══════════════════════════════
   RESET & BASE
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Archivo Black', sans-serif; line-height: 1.15; }
.serif-italic { font-family: 'Roboto Slab', serif; font-weight: 100; }

/* ─── ORGANIC BLOBS ─── */
.blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* ─── SECTIONS ─── */
section { position: relative; z-index: 1; }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 100px;
  overflow: hidden;
  position: relative;
  background: #1A0A14;
}

.hero-bg-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,83,126,0.35) 0%, transparent 70%);
  top: -200px; left: -150px;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,26,92,0.3) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-glow-3 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,25,110,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 196, 220, 0.8);
  border: 1px solid rgba(242, 196, 220, 0.25);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease both;
}

.hero-byline {
  font-size: 0.78rem;
  color: rgba(242, 196, 220, 0.5);
  letter-spacing: 0.08em;
  margin-top: 12px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.05s ease both;
}

.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .h1-line2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 100;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--terracotta);
  display: block;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-family: 'Roboto Slab', serif;
  font-weight: 100;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(242, 196, 220, 0.6);
  letter-spacing: 0.08em;
  margin-top: 16px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-sub {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 40px auto 48px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 20px 48px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 32px rgba(224, 25, 110, 0.4);
}
.btn-primary:hover {
  background: var(--caramel);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(224, 25, 110, 0.55);
}
.btn-primary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.hero-price {
  font-family: 'Roboto Slab', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}
.hero-price span {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(242, 196, 220, 0.5);
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.8s ease both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ═══════════════════════════════
   PROMISE BAR
═══════════════════════════════ */
.promise-bar {
  background: #3D1430;
  color: var(--cream);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.promise-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   PROBLEM / EMPATHY
═══════════════════════════════ */
.problem {
  padding: 100px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 28px;
}

.problem-left p {
  font-size: 1.05rem;
  color: var(--warm-brown);
  margin-bottom: 20px;
}

.problem-geo-label {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 2px;
}

.problem-right {
  background: var(--cream-deep);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(92, 61, 46, 0.1);
  position: relative;
  overflow: hidden;
}

.problem-right::before {
  content: '"';
  font-family: 'Roboto Slab', serif;
  font-size: 10rem;
  color: var(--blush);
  position: absolute;
  top: -20px; left: 20px;
  line-height: 1;
  pointer-events: none;
}

/* ─── PROBLEM IMAGE ─── */
.problem-img-wrap::before { display: none; }
.problem-img-wrap { padding: 0; background: transparent; border: none; }

.problem-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.problem-quote {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--warm-brown);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.problem-quote-author {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--caramel);
  font-weight: 500;
  font-style: normal;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ═══════════════════════════════
   VIDEO CONCEPT
═══════════════════════════════ */
.video-concept,
.video-explainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 80px 40px;
  box-sizing: border-box;
}
.video-concept { background: var(--cream-deep, #F5EFE4); }
.video-explainer { background: var(--midnight, #160820); }

.video-concept-inner {
  width: 100%;
  max-width: 800px;
  text-align: center;
  box-sizing: border-box;
}
.video-concept-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 40px;
}
.video-explainer .video-concept-inner h2 { color: var(--cream); }
.video-explainer .section-label { color: var(--blush); }

.video-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.15);
  box-sizing: border-box;
}
.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
}
/* Padding-bottom hack 16:9 — plus fiable que aspect-ratio */
.video-wrap--iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrap--iframe iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════
   WHAT YOU LEARN
═══════════════════════════════ */
.learn {
  background: #3D1430;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.learn-blob {
  width: 600px; height: 600px;
  background: var(--terracotta);
  top: -200px; right: -200px;
  border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
  opacity: 0.08;
}

.learn-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.learn-inner > .section-label {
  color: var(--blush);
}

.learn h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin: 12px 0 56px;
  max-width: 640px;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
}

.learn-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.learn-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.learn-card-num {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 100;
  color: var(--terracotta);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}

.learn-card h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.learn-card p {
  font-size: 0.9rem;
  color: rgba(245, 239, 228, 0.65);
  line-height: 1.6;
}

/* ═══════════════════════════════
   MID CTA
═══════════════════════════════ */
.cta-mid {
  text-align: center;
  padding: 80px 40px;
  background: var(--charcoal);
}

.cta-mid h2 {
  color: var(--cream);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 32px;
}

.cta-mid-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--blush);
  opacity: 0.8;
}

/* ═══════════════════════════════
   FOR WHO
═══════════════════════════════ */
.forwho {
  padding: 100px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: block;
}

.forwho h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 56px;
  max-width: 600px;
}

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

.forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: var(--cream-deep);
  border-radius: 16px;
  border: 1px solid rgba(92, 61, 46, 0.08);
  transition: border-color 0.3s;
}
.forwho-item:hover { border-color: var(--blush); }

.forwho-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.forwho-item h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.forwho-item p { font-size: 0.88rem; color: var(--warm-brown); }

.forwho-nofor {
  margin-top: 48px;
  padding: 28px 32px;
  background: #F5E0EE;
  border-left: 3px solid var(--terracotta);
  border-radius: 0 12px 12px 0;
}
.forwho-nofor p {
  font-size: 0.92rem;
  color: var(--warm-brown);
}
.forwho-nofor strong {
  color: var(--terracotta);
  font-weight: 500;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testimonials {
  background: linear-gradient(160deg, #F5E0EE 0%, #ECC8DE 100%);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin: 12px 0 56px;
  max-width: 560px;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Roboto Slab', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--warm-brown);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--caramel);
}

/* ═══════════════════════════════
   BIO / QUI JE SUIS
═══════════════════════════════ */
.bio {
  padding: 100px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.bio-avatar-wrap {
  position: relative;
}

.bio-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  max-width: 280px;
  overflow: hidden;
}

.bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bio-avatar-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 2px solid var(--blush);
  border-radius: 50% 50% 40% 60%;
  opacity: 0.5;
}

.bio-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--ink);
  margin: 12px 0 28px;
}

.bio-content p {
  font-size: 1rem;
  color: var(--warm-brown);
  margin-bottom: 20px;
  line-height: 1.75;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bio-tag {
  background: var(--cream-deep);
  border: 1px solid rgba(92, 61, 46, 0.15);
  color: var(--warm-brown);
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 100px;
}

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq {
  background: var(--cream-deep);
  padding: 100px 80px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--ink);
  margin: 12px 0 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(92, 61, 46, 0.12);
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--terracotta); }
.faq-question:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(92, 61, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--terracotta);
  transition: transform 0.3s;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.95rem;
  color: var(--warm-brown);
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-icon.open { transform: rotate(45deg); }

/* ═══════════════════════════════
   CTA FINAL
═══════════════════════════════ */
.cta-final {
  background: linear-gradient(135deg, #E0196E 0%, #9B1A5C 100%);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-blob-1 {
  width: 500px; height: 500px;
  background: #C4186A;
  top: -150px; left: -100px;
  opacity: 0.3;
  border-radius: 50% 60% 40% 55%;
}
.cta-blob-2 {
  width: 300px; height: 300px;
  background: #fff;
  bottom: -100px; right: 10%;
  opacity: 0.05;
  border-radius: 40% 55% 60% 45%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}

.cta-urgency {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-final h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--terracotta);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 18px 42px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.btn-white:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

.offer-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 400px;
  margin: 0 auto 32px;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.offer-list svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
}

.offer-price {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
  margin-top: 4px;
}

.cta-price-note {
  margin-top: 24px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.cta-price-note strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: #1A0A14;
  padding: 40px 80px;
  text-align: center;
  color: rgba(245, 239, 228, 0.6);
  font-size: 0.82rem;
}
footer a {
  color: rgba(245, 239, 228, 0.5);
  text-decoration: none;
}
footer a:hover { color: var(--blush); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 228, 0.15);
  color: rgba(245, 239, 228, 0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  color: var(--blush);
  border-color: var(--blush);
  background: rgba(242, 196, 220, 0.08);
}
.footer-social svg {
  width: 17px;
  height: 17px;
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════
   BANDEAU CONSENTEMENT LOI 25
═══════════════════════════════ */
#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(20, 8, 16, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(242, 196, 220, 0.15);
  padding: 20px 40px;
}
#consent-banner[hidden] { display: none; }

.consent-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.consent-text {
  flex: 1;
  font-size: 0.82rem;
  color: rgba(245, 239, 228, 0.6);
  line-height: 1.6;
  margin: 0;
}
.consent-text strong { color: rgba(245, 239, 228, 0.85); }
.consent-link {
  color: var(--blush);
  text-decoration: underline;
  white-space: nowrap;
}
.consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.consent-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.consent-btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.consent-btn--primary:hover { background: var(--caramel); }
.consent-btn--secondary {
  background: transparent;
  color: rgba(245, 239, 228, 0.5);
  border: 1px solid rgba(245, 239, 228, 0.2);
}
.consent-btn--secondary:hover {
  color: rgba(245, 239, 228, 0.85);
  border-color: rgba(245, 239, 228, 0.4);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 900px) {
  .hero { padding: 100px 24px 80px; }

  .problem, .bio {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 32px;
  }
  .bio-avatar { max-width: 200px; }

  .learn, .forwho, .testimonials, .faq, .cta-final {
    padding: 64px 32px;
  }

  .learn-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .promise-bar {
    gap: 20px;
    padding: 20px 24px;
  }

  footer { padding: 32px 24px; }
}
