﻿:root {
  --color-white:        #FFFFFF;
  --color-cream-light:  #FDFBF8;
  --color-cream:        #FAF8F5;
  --color-cream-dark:   #F0EBE3;

  --color-rose-pale:    #FBF0EF;
  --color-rose-soft:    #F2D8D8;
  --color-rose-light:   #E0AAAA;
  --color-rose:         #C97070;
  --color-rose-dark:    #A85858;
  --color-rose-deep:    #8B4040;

  --color-earth-light:  #D4B896;
  --color-earth:        #8B6F5E;
  --color-earth-mid:    #7A5C4A;
  --color-earth-dark:   #5C3D2E;

  --color-text:         #4A3728;
  --color-text-light:   #7D6055;
  --color-text-muted:   #9D8075;

  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;

  --radius-sm:   0.375rem;
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --radius-xl:   2rem;

  --shadow-soft: 0 4px 24px rgba(74, 55, 40, 0.08);
  --shadow-card: 0 8px 32px rgba(74, 55, 40, 0.10);
  --shadow-cta:  0 6px 24px rgba(168, 88, 88, 0.35);

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-cream-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-serif   { font-family: var(--font-serif); }
.font-sans    { font-family: var(--font-sans); }

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-sans); }

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 1rem 0;
}

#site-header.scrolled {
  background: rgba(253, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(74, 55, 40, 0.08);
  padding: 0.625rem 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-earth-dark);
  letter-spacing: -0.01em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-rose-dark) 0%, var(--color-rose-deep) 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 1rem 2.25rem;
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--color-rose-deep) 0%, #6B2828 100%);
  box-shadow: 0 8px 32px rgba(168, 88, 88, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-cta);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-rose-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.625rem 1.5rem;
  border-radius: 3rem;
  border: 1.5px solid var(--color-rose-light);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--color-rose-pale);
  border-color: var(--color-rose-dark);
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-rose-dark);
  background: var(--color-rose-pale);
  border: 1px solid var(--color-rose-soft);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

section { overflow: hidden; }

.section-title {
  font-family: var(--font-serif);
  color: var(--color-earth-dark);
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-sans);
  color: var(--color-text-light);
  line-height: 1.7;
}

#hero {
  background: linear-gradient(160deg, var(--color-cream-light) 0%, var(--color-rose-pale) 60%, var(--color-cream-dark) 100%);
  padding-top: 6.25rem;
  padding-bottom: 3.5rem;
}

.hero-author-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-earth);
  margin-bottom: 1.25rem;
}

.hero-author-tag::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1.5px;
  background: var(--color-rose);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 7vw, 3.25rem);
  font-weight: 700;
  color: var(--color-earth-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-rose-dark);
}

.hero-subheadline {
  font-size: clamp(1rem, 3.3vw, 1.25rem);
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-context {
  margin-bottom: 2.1rem;
}

.hero-context-intro {
  font-size: 0.98rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin-bottom: 0.9rem;
}

.hero-context-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.hero-context-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-rose-soft);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-earth-dark);
  box-shadow: 0 2px 10px rgba(74, 55, 40, 0.06);
}

.hero-context-list li::before {
  content: '✓';
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-rose-dark);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 560px;
  background: linear-gradient(145deg, var(--color-rose-soft) 0%, var(--color-earth-light) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-earth);
  font-size: 0.85rem;
  font-weight: 500;
  overflow: hidden;
}

.hero-video-placeholder {
  aspect-ratio: 16/9;
  max-height: none;
  border-radius: 1.1rem;
  width: 100%;
  margin-left: 0;
}

#hero .btn-primary {
  padding: 1.05rem 1.8rem;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  width: 100%;
  justify-content: center;
}

.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── YouTube Facade ─────────────────────────────────────── */
.yt-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #000;
  outline-offset: 3px;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.yt-facade:hover .yt-thumb,
.yt-facade:focus-visible .yt-thumb {
  opacity: 0.8;
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

.yt-facade:hover .yt-play-btn,
.yt-facade:focus-visible .yt-play-btn {
  transform: scale(1.12);
}

.yt-play-bg {
  fill: #ff0000;
  fill-opacity: 0.92;
}

.yt-play-icon {
  fill: #fff;
}

.yt-facade + iframe,
.hero-video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* ─────────────────────────────────────────────────────── */

.hero-decoration {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 9rem;
  height: 9rem;
  background: var(--color-rose-pale);
  border-radius: 50%;
  z-index: -1;
}

#problem {
  background: var(--color-rose-pale);
}

.problem-shell {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.problem-intro {
  max-width: 680px;
  margin: 0 auto;
}

.problem-stage {
  align-items: stretch;
}

.problem-copy-block,
.problem-impact-block {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 248, 245, 0.92) 100%);
  border: 1px solid rgba(224, 170, 170, 0.45);
  border-radius: 1.6rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(74, 55, 40, 0.08);
  display: flex;
  align-items: center;
}

.problem-copy-text,
.problem-impact-text {
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 2.2vw, 1.9rem);
  line-height: 1.4;
  color: var(--color-earth-dark);
  letter-spacing: -0.01em;
}

.problem-premium-card {
  background: var(--color-white);
  border: 1px solid rgba(224, 170, 170, 0.38);
  border-radius: 1.6rem;
  padding: 1.95rem 1.75rem;
  box-shadow: 0 14px 34px rgba(74, 55, 40, 0.1);
}

.problem-premium-title {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  font-weight: 600;
  color: var(--color-earth-dark);
  margin-bottom: 1.2rem;
  line-height: 1.28;
}

.problem-premium-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.problem-premium-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.68rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-text);
}

.problem-premium-list li::before {
  content: '';
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose-dark) 0%, var(--color-rose) 100%);
  box-shadow: 0 0 0 4px rgba(201, 112, 112, 0.12);
}

.problem-premium-list-after li::before {
  background: linear-gradient(135deg, var(--color-earth-mid) 0%, var(--color-earth-light) 100%);
  box-shadow: 0 0 0 4px rgba(139, 111, 94, 0.13);
}

.problem-transition {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.1rem 0.4rem;
}

.problem-transition-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  line-height: 1.25;
  color: var(--color-earth-dark);
  margin-bottom: 0.45rem;
}

.problem-transition-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-text-light);
}

.problem-stage-two .problem-impact-block {
  background: linear-gradient(145deg, rgba(201, 112, 112, 0.12) 0%, rgba(250, 248, 245, 0.9) 100%);
}

#audience {
  background: var(--color-white);
}

.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-cream-light);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.audience-card:hover {
  background: var(--color-rose-pale);
  border-color: var(--color-rose-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.audience-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.audience-card p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.55;
  font-weight: 400;
}

#course {
  background: var(--color-cream);
}

.objective-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--color-rose);
  transition: var(--transition);
}

.objective-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.objective-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-rose-dark);
  margin-bottom: 0.35rem;
}

.objective-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

#bonuses {
  background: linear-gradient(180deg, var(--color-cream-dark) 0%, var(--color-rose-pale) 100%);
}

.bonus-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
  height: 100%;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.bonus-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-rose-soft);
  line-height: 1;
}

.bonus-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-earth-dark);
  line-height: 1.35;
}

.bonus-text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  flex-grow: 1;
}

.bonus-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-earth);
  background: var(--color-cream-dark);
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  align-self: flex-start;
}

#testimonials {
  background: var(--color-white);
}

.testimonial-card {
  background: var(--color-cream-light);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  height: 100%;
}

.testimonial-image-card {
  padding: 0;
  overflow: hidden;
  min-height: 320px;
}

.testimonial-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--color-rose-soft);
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  color: #D4A843;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-earth-dark);
  font-size: 0.95rem;
}

.testimonial-detail {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

#oferta {
  background: linear-gradient(135deg, var(--color-earth-dark) 0%, var(--color-earth-mid) 100%);
  color: var(--color-cream-light);
  position: relative;
}

.offer-shell {
  position: relative;
}

.offer-shell::before {
  content: '';
  position: absolute;
  inset: -1.25rem;
  background: radial-gradient(circle at 15% 12%, rgba(242, 216, 216, 0.12) 0%, transparent 55%),
              radial-gradient(circle at 85% 88%, rgba(212, 184, 150, 0.14) 0%, transparent 52%);
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.offer-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(212, 184, 150, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: clamp(1.6rem, 3vw, 3rem);
  box-shadow: 0 18px 48px rgba(41, 28, 20, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.offer-top {
  margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
}

.offer-title {
  font-family: var(--font-serif);
  color: var(--color-earth-dark);
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

.offer-flow {
  display: grid;
  gap: 1.1rem;
}

.offer-guarantee {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(240, 235, 227, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.4rem;
  padding: 1.2rem 1.3rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 8px 24px rgba(41, 28, 20, 0.18);
}

.guarantee-seal {
  width: clamp(5rem, 10vw, 6.5rem);
  flex-shrink: 0;
}

.guarantee-seal img {
  width: 100%;
  height: auto;
  display: block;
}

.guarantee-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-earth-dark);
  font-size: 1.08rem;
  margin-bottom: 0.28rem;
}

.guarantee-text {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.65;
}

.offer-investment {
  text-align: center;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.16) 0%, rgba(212, 184, 150, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1.55rem;
  padding: clamp(1.2rem, 2.6vw, 1.9rem) 1.25rem;
  box-shadow: 0 14px 36px rgba(36, 24, 18, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.offer-price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-earth-light);
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.offer-price-installments {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--color-earth-dark);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-shadow: none;
}

.offer-price-full {
  font-size: clamp(0.94rem, 1.8vw, 1.08rem);
  color: var(--color-earth-light);
  margin-top: 0.55rem;
  font-weight: 500;
}

.btn-offer {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-deep) 100%);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.08rem;
  padding: 1.1rem 2.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(25, 15, 12, 0.34);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 460px);
  min-height: 3.6rem;
  letter-spacing: 0.01em;
}

.btn-offer:hover,
.btn-offer:focus-visible {
  background: linear-gradient(135deg, var(--color-rose-dark) 0%, var(--color-rose-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(25, 15, 12, 0.42);
}

.offer-cta-note {
  font-size: 0.82rem;
  color: var(--color-earth-light);
  margin-top: 0.85rem;
  opacity: 0.92;
  letter-spacing: 0.01em;
}

#author {
  background: var(--color-cream);
}

.author-photo-wrapper {
  position: relative;
}

.author-photo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 4rem;
  object-fit: cover;
  background: linear-gradient(145deg, var(--color-rose-soft) 0%, var(--color-earth-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-earth);
  font-size: 0.85rem;
  overflow: hidden;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-badge-decor {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--color-rose-pale);
  border: 1px solid var(--color-rose-soft);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.author-badge-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-rose-dark);
  line-height: 1;
}

.author-badge-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.author-name {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-earth-dark);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 1rem;
  color: var(--color-rose-dark);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.author-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.author-bio {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  border-left: 3px solid var(--color-rose-soft);
  padding-left: 1.25rem;
}

#final-cta {
  background: linear-gradient(135deg, var(--color-rose-deep) 0%, var(--color-rose-dark) 100%);
  color: var(--color-cream-light);
  text-align: center;
}

.final-cta-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1.35;
  color: var(--color-cream-light);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.btn-final-cta {
  background: var(--color-white);
  color: var(--color-rose-deep);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.05rem 2.5rem;
  border-radius: 3rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-final-cta:hover {
  background: var(--color-cream-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}

#site-footer {
  background: var(--color-earth-dark);
  color: var(--color-earth-light);
  padding: 2.5rem 0;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.25rem 0;
}

.footer-link {
  color: var(--color-earth-light);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-contact a {
  color: var(--color-rose-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--color-white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Keep the above-the-fold hero instantly visible to avoid delaying the LCP element. */
#hero .hero-headline,
#hero .hero-subheadline,
#hero .hero-context,
#hero .hero-v2-cta-desktop,
#hero .hero-v2-mobile-cta,
#hero .hero-image-wrapper {
  opacity: 1;
  transform: none;
}

#floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
}

#floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.text-rose       { color: var(--color-rose); }
.text-rose-dark  { color: var(--color-rose-dark); }
.text-earth      { color: var(--color-earth); }
.text-earth-dark { color: var(--color-earth-dark); }
.text-muted      { color: var(--color-text-muted); }
.bg-cream        { background-color: var(--color-cream); }
.bg-cream-light  { background-color: var(--color-cream-light); }
.bg-rose-pale    { background-color: var(--color-rose-pale); }

/* Local utility layer replacing Tailwind CDN on the landing page */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.hidden { display: none !important; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-14 { margin-top: 3.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-7 { gap: 1.75rem; }
.gap-\[2\.25rem\] { gap: 2.25rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:block { display: block !important; }
  .md\:hidden { display: none !important; }
  .md\:inline-flex { display: inline-flex !important; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:justify-between { justify-content: space-between; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-12 { gap: 3rem; }
}

@media (max-width: 767px) {
  .offer-box { padding: 2rem 1.25rem; }
  .btn-offer { width: 100%; justify-content: center; }
  .btn-primary { width: 100%; }
  .btn-final-cta { width: 100%; justify-content: center; }
  .offer-guarantee { align-items: flex-start; }
  .guarantee-seal { width: 4.65rem; }
  #floating-cta { right: 1rem; bottom: 1rem; left: 1rem; }
  #floating-cta .btn-primary { width: 100%; }
  .hero-subheadline { font-size: 1.15rem; line-height: 1.55; }
  .hero-context { margin-bottom: 1.2rem; }
  .hero-image-wrapper { margin-top: 0.85rem; }
  .problem-shell { gap: 1.8rem; }
  .problem-copy-block,
  .problem-impact-block,
  .problem-premium-card {
    padding: 1.4rem 1.15rem;
    border-radius: 1.2rem;
  }
  .problem-premium-title { margin-bottom: 1rem; }
  .problem-premium-list li { font-size: 0.94rem; }
  .problem-transition { padding: 0.35rem 0; }
  .problem-transition-title { font-size: 1.5rem; }
  .problem-transition-subtitle { font-size: 1.02rem; }
}

@media (min-width: 768px) {
  .btn-primary { width: auto; }
  #hero { padding-top: 7.4rem; padding-bottom: 5rem; }
  .hero-context { margin-bottom: 2.8rem; }
  #hero .btn-primary {
    width: auto;
    padding: 1.15rem 3.2rem;
    font-size: 1.08rem;
  }
}

@media (min-width: 640px) {
  .hero-context-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-context-list li {
    justify-content: center;
    padding-left: 0.75rem;
  }
}

@media (min-width: 1280px) {
  #hero { padding-top: 8.25rem; padding-bottom: 6rem; }
  .hero-video-placeholder {
    width: 120%;
    margin-left: -10%;
  }
  #hero .btn-primary {
    padding: 1.15rem 3.8rem;
    font-size: 1.12rem;
  }
}

:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 3px;
  border-radius: 4px;
}

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

