/* ============================================
   MAPA DE LAS HERIDAS INVISIBLES
   Design System — Dark + Gold + Purple
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0a0a14;
  --bg-secondary: #0f0f1e;
  --bg-card: rgba(18, 18, 35, 0.7);
  --bg-card-hover: rgba(25, 25, 50, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-border: rgba(255, 255, 255, 0.06);
  
  --gold-primary: #d4a853;
  --gold-light: #f0d48a;
  --gold-dark: #a67c2e;
  --gold-glow: rgba(212, 168, 83, 0.15);
  
  --purple-primary: #7c5cbf;
  --purple-light: #a78bfa;
  --purple-dark: #4c1d95;
  --purple-glow: rgba(124, 92, 191, 0.12);
  
  --text-primary: #f0ebe3;
  --text-secondary: #a8a0b8;
  --text-muted: #6b6580;
  --text-highlight: #ffffff;
  
  --accent-red: #e85d5d;
  --accent-green: #4ade80;
  --accent-teal: #2dd4bf;
  
  --gradient-gold: linear-gradient(135deg, #d4a853, #f0d48a, #d4a853);
  --gradient-purple: linear-gradient(135deg, #4c1d95, #7c5cbf, #a78bfa);
  --gradient-dark: linear-gradient(180deg, #0a0a14 0%, #0f0f1e 50%, #0a0a14 100%);
  --gradient-cta: linear-gradient(135deg, #d4a853 0%, #e8c276 50%, #d4a853 100%);
  --gradient-hero: radial-gradient(ellipse at center top, rgba(124, 92, 191, 0.15) 0%, transparent 60%);
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  
  /* Sizing */
  --max-width: 720px;
  --max-width-wide: 960px;
  
  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(212, 168, 83, 0.2);
  --shadow-purple: 0 4px 24px rgba(124, 92, 191, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold-primary);
}

.text-purple {
  color: var(--purple-light);
}

.text-highlight {
  color: var(--text-highlight);
  font-weight: 600;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.headline-xl {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.headline-lg {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
}

.headline-md {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.25;
}

.headline-sm {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
}

.body-lg {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  font-weight: 300;
}

.body-md {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

/* --- Animated Background --- */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(124, 92, 191, 0.06) 0%, transparent 70%);
  animation: float-glow 15s ease-in-out infinite;
}

.bg-glow::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.04) 0%, transparent 70%);
  animation: float-glow 20s ease-in-out infinite reverse;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, 3%) scale(1.05); }
  66% { transform: translate(-3%, -2%) scale(0.97); }
}

/* --- Section Base --- */
section {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: var(--space-lg) auto;
  border-radius: 2px;
}

/* --- Urgency Banner --- */
.urgency-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #1a0a2e, #2d1045, #1a0a2e);
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
  padding: 10px 0;
  text-align: center;
  animation: pulse-bg 3s ease-in-out infinite;
}

.urgency-banner p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}

.urgency-banner .date {
  color: #ffffff;
  font-weight: 800;
}

@keyframes pulse-bg {
  0%, 100% { background: linear-gradient(90deg, #1a0a2e, #2d1045, #1a0a2e); }
  50% { background: linear-gradient(90deg, #1e0c35, #351250, #1e0c35); }
}

/* --- Hero Section --- */
.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  text-align: center;
  background: var(--gradient-hero);
}

.hero__label {
  display: inline-block;
  margin-bottom: var(--space-md);
  padding: 6px 18px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.hero__headline {
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subheadline {
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  color: var(--text-secondary);
  font-weight: 300;
}

.hero__image {
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(124, 92, 191, 0.1);
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Pain Points Section --- */
.pain-section {
  background: var(--bg-secondary);
}

.pain-section__intro {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pain-section__intro h2 {
  color: var(--text-primary);
}

.pain-section__intro h2 b {
  color: var(--gold-primary);
}

.pain-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pain-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateX(-20px);
}

.pain-list__item.visible {
  opacity: 1;
  transform: translateX(0);
}

.pain-list__item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 168, 83, 0.15);
  transform: translateX(4px);
}

.pain-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--accent-red);
  opacity: 0.8;
}

.pain-list__text {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
}

/* --- Explanation Section --- */
.explanation {
  text-align: center;
}

.explanation__question {
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  font-style: italic;
}

.explanation__answer {
  margin-bottom: var(--space-lg);
}

.explanation__answer em {
  color: var(--gold-light);
  font-style: italic;
}

.explanation__image {
  max-width: 380px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.explanation__detail {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.explanation__detail b {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- Recognition Section --- */
.recognition {
  background: var(--bg-secondary);
}

.recognition__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.recognition__card {
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateY(20px);
}

.recognition__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.recognition__card:hover {
  border-color: rgba(124, 92, 191, 0.25);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}

.recognition__card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.recognition__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Failed Attempts Section --- */
.failed {
  text-align: center;
}

.failed__list {
  list-style: none;
  max-width: 480px;
  margin: var(--space-lg) auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.failed__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  padding: 10px 16px;
  background: rgba(232, 93, 93, 0.04);
  border: 1px solid rgba(232, 93, 93, 0.08);
  border-radius: var(--radius-sm);
}

.failed__item .x-icon {
  color: var(--accent-red);
  opacity: 0.7;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.failed__conclusion {
  max-width: 500px;
  margin: var(--space-lg) auto 0;
  padding: var(--space-md);
  background: rgba(212, 168, 83, 0.05);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-style: italic;
}

/* --- Good News Section --- */
.good-news {
  background: var(--bg-secondary);
  text-align: center;
}

.good-news__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: var(--radius-full);
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.good-news__verse {
  max-width: 520px;
  margin: var(--space-lg) auto 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-glass);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.good-news__verse cite {
  display: block;
  margin-top: var(--space-xs);
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
}

/* --- Method Section --- */
.method {
  text-align: center;
}

.method__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-xl) auto;
  max-width: 560px;
}

.pillar {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.pillar.visible {
  opacity: 1;
  transform: translateY(0);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
}

.pillar:hover {
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: var(--shadow-gold);
}

.pillar__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: var(--space-xs);
}

.pillar__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- Modules Section --- */
.modules {
  background: var(--bg-secondary);
}

.modules__list {
  list-style: none;
  max-width: 560px;
  margin: var(--space-lg) auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modules__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.modules__item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 168, 83, 0.12);
}

.modules__item-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.modules__item-content h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.modules__item-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Bonus Section --- */
.bonus {
  text-align: center;
}

.bonus__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.bonus__card {
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.04), rgba(124, 92, 191, 0.04));
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all var(--transition-medium);
}

.bonus__card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.bonus__card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.bonus__card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.bonus__card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Social Proof Section --- */
.social-proof {
  background: var(--bg-secondary);
  text-align: center;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial {
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  text-align: left;
}

.testimonial__stars {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.testimonial__location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Offer Block --- */
.offer {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.offer__box {
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06), rgba(124, 92, 191, 0.06));
  border: 2px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 100px rgba(212, 168, 83, 0.05);
}

.offer__product-image {
  max-width: 360px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.offer__old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.offer__price {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
  line-height: 1.1;
}

.offer__price-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.offer__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-green);
  margin-bottom: var(--space-lg);
}

/* --- CTA Button --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  padding: 18px 32px;
  background: var(--gradient-cta);
  border: none;
  border-radius: var(--radius-md);
  color: #0a0a14;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.35);
  color: #0a0a14;
}

.cta-button:active {
  transform: translateY(0);
}

.cta-subtitle {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Author Section --- */
.author {
  background: var(--bg-secondary);
  text-align: center;
}

.author__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-md);
  overflow: hidden;
  border: 3px solid rgba(212, 168, 83, 0.3);
  box-shadow: var(--shadow-gold);
}

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

.author__name {
  color: var(--gold-light);
  margin-bottom: var(--space-xs);
}

.author__title {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.author__bio {
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- FAQ Section --- */
.faq {
  text-align: center;
}

.faq__list {
  max-width: 560px;
  margin: var(--space-lg) auto 0;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--bg-glass-border);
}

.faq__question {
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--gold-primary);
}

.faq__question .arrow {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
  color: var(--gold-primary);
}

.faq__item.active .faq__question .arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid var(--bg-glass-border);
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer a:hover {
  color: var(--gold-primary);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* --- Arrow Bounce --- */
.arrow-down {
  display: block;
  margin: var(--space-lg) auto 0;
  color: var(--gold-primary);
  font-size: 1.5rem;
  animation: bounce-down 2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .recognition__grid {
    grid-template-columns: 1fr;
  }
  
  .offer__box {
    padding: var(--space-lg) var(--space-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .hero {
    padding: var(--space-lg) 0 var(--space-xl);
  }
  
  .pillar {
    padding: var(--space-md);
  }
}
