/* ==========================================================================
   Estilos Principales - Landing Page Libro "Células Multiplicadoras"
   Tecnologías: CSS Puro Moderno (Variables, Grid, Flexbox, Vidriomorfismo, Animaciones)
   ========================================================================== */

/* Importación de Fuentes de Google */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Variables de Diseño (Sistema de Diseño Moderno) */
:root {
  /* Paleta de Colores HSL Premium */
  --primary-dark: hsl(164, 46%, 7%);       /* Slate Forest Profundo */
  --primary: hsl(164, 62%, 20%);           /* Verde Esmeralda Orgánico */
  --primary-medium: hsl(164, 45%, 35%);    /* Verde Menta Medio */
  --primary-light: hsl(164, 35%, 92%);     /* Fondo Menta Suave */
  --primary-ultra-light: hsl(164, 30%, 96%); /* Fondo Menta Claro */
  
  --accent: hsl(38, 100%, 52%);            /* Oro Ámbar Vibrante */
  --accent-hover: hsl(38, 100%, 46%);      /* Oro Ámbar Hover */
  --accent-glow: hsla(38, 100%, 52%, 0.35); /* Resplandor Oro */
  
  --text-main: hsl(210, 25%, 12%);         /* Carbono Profundo */
  --text-muted: hsl(210, 12%, 38%);        /* Gris Neutro */
  --text-light: hsl(210, 10%, 55%);        /* Gris Claro */
  
  --bg-light: hsl(164, 15%, 98%);          /* Blanco Menta Orgánico */
  --bg-card: hsl(0, 0%, 100%);             /* Blanco Puro */
  
  --border-color: hsl(164, 18%, 88%);      /* Borde Verde Suave */
  --border-light: rgba(255, 255, 255, 0.45); /* Borde Translúcido */
  
  /* Tipografía */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 6rem;

  /* Bordes y Sombras Premium */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 12px 24px -4px rgba(12, 35, 23, 0.04), 0 4px 12px -2px rgba(12, 35, 23, 0.02);
  --shadow-lg: 0 24px 48px -12px rgba(12, 35, 23, 0.08), 0 8px 16px -8px rgba(12, 35, 23, 0.04);
  --shadow-premium: 0 35px 70px -15px rgba(12, 35, 23, 0.12), 0 0 0 1px rgba(12, 35, 23, 0.01);
  --shadow-accent: 0 12px 28px -4px rgba(255, 166, 0, 0.25);

  /* Transiciones Fluídas */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Reset e Inicialización */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Tipografía de Encabezados */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* 2. Componentes Reutilizables */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-md);
  padding-left: var(--space-md);
}

/* Botones con Micro-animación Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 2.25rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  box-shadow: var(--shadow-sm);
  width: 100%;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
}

@media (min-width: 48rem) {
  .btn {
    width: auto;
  }
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary-dark);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 15px 30px -5px rgba(255, 166, 0, 0.4);
  transform: translateY(-3px);
}

/* Efecto Brillo al pasar el cursor */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 25%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  opacity: 0;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 130%;
  opacity: 1;
  transition: all 0.8s ease-in-out;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-medium);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* Secciones */
.section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  position: relative;
}

@media (min-width: 48rem) {
  .section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
}

.section-title-wrapper {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg) auto;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--primary-medium);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}

@media (min-width: 48rem) {
  .section-title {
    font-size: 2.85rem;
  }
}

/* 3. Animación Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: transform, opacity;
}

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

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: transform, opacity;
}

.reveal-slide-left.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

.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; }

/* 4. Sección Hero Renovada */
.hero {
  position: relative;
  background: linear-gradient(135deg, hsl(164, 40%, 97%) 0%, hsl(164, 25%, 93%) 100%);
  padding: var(--space-xl) 0 var(--space-lg) 0;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

/* Decoraciones de fondo con CSS */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.6;
}

.hero::before {
  width: 400px;
  height: 400px;
  background-color: hsla(164, 50%, 80%, 0.4);
  top: -10%;
  right: -5%;
}

.hero::after {
  width: 300px;
  height: 300px;
  background-color: hsla(38, 100%, 90%, 0.4);
  bottom: -5%;
  left: -5%;
}

.hero-container-fixed {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-content {
  text-align: center;
  width: 100%;
}

.badge-new {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

@media (min-width: 48rem) {
  .hero-title {
    font-size: 4.25rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2rem 0;
  position: relative;
}

/* Animación de Flotación para el Libro */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
    filter: drop-shadow(0 15px 30px rgba(12, 35, 23, 0.15));
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
    filter: drop-shadow(0 25px 40px rgba(12, 35, 23, 0.22));
  }
  100% {
    transform: translateY(0px) rotate(0deg);
    filter: drop-shadow(0 15px 30px rgba(12, 35, 23, 0.15));
  }
}

.book-mockup {
  width: 100%;
  max-width: 580px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  border-radius: 4px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1.5rem 0;
}

.hero-ctas .btn {
  max-width: 460px;
  width: 100%;
  padding: 1.35rem 2.5rem;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-guarantee svg {
  color: var(--primary-medium);
  flex-shrink: 0;
}

/* 5. Sección de Introducción ("Si eres pastor...") */
.intro-section {
  background-color: var(--bg-card);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.intro-container {
  max-width: 850px !important;
}

.intro-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.intro-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-alert {
  background-color: hsl(4, 100%, 97%);
  color: hsl(4, 75%, 35%);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid hsl(4, 75%, 48%);
  font-weight: 600;
  font-size: 1.15rem !important;
  line-height: 1.6;
  margin: 2rem 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

/* 6. Sección Beneficios (Vidriomorfismo) */
.benefits {
  background-color: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 48rem) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #beneficios .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Efecto hover interactivo */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-medium);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-medium);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon-wrapper {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  transition: transform var(--transition-fast);
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1);
  background-color: var(--primary);
  color: var(--bg-card);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0;
  line-height: 1.4;
}

/* 7. Sección El Problema */
.problem-section {
  background-color: hsl(4, 80%, 99%);
  border-left: 6px solid hsl(4, 75%, 48%);
  padding: var(--space-lg) 0;
}

.problem-container {
  max-width: 900px;
}

.problem-section h2 {
  color: hsl(4, 75%, 30%);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.problem-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: hsl(210, 15%, 25%);
}

.problem-section strong {
  color: hsl(4, 75%, 35%);
}

/* 8. Logotipos / Iglesias de Confianza */
.trust-section {
  text-align: center;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0;
}

.trust-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo-item {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.75;
  transition: opacity var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.trust-logo-item:hover {
  opacity: 1;
  color: var(--primary);
  transform: scale(1.05);
}

/* 9. ¿Por qué funciona el método? */
.why-section {
  background-color: var(--bg-card);
}

.why-container {
  max-width: 900px;
}

.why-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.why-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
}

.why-section p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.why-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-medium);
  font-weight: 900;
  font-size: 1.2rem;
}

.why-quote {
  text-align: center;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2.5rem;
  color: var(--primary);
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* 10. Etapas del Método */
.stages-section {
  background-color: var(--primary-ultra-light);
}

.stages-section .benefit-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
  transition: all var(--transition-normal);
}

.stages-section .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stages-section h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-medium);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stages-section strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.stages-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* 11. Sección de Bonificaciones Premium */
.bonuses-section {
  background-color: var(--bg-card);
}

.bonus-card {
  background: linear-gradient(135deg, hsl(164, 30%, 98%) 0%, hsl(38, 40%, 97%) 100%);
  border: 2px dashed hsl(38, 80%, 75%);
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.bonus-badge {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 4px;
  letter-spacing: 0.05em;
  display: inline-block;
}

.bonus-card h4 {
  margin-top: 1.25rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.bonus-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1rem;
  color: var(--text-main);
}

.bonus-card del {
  color: hsl(4, 75%, 50%);
  margin-right: 0.5rem;
}

.bonus-card strong {
  font-size: 1.15rem;
  color: var(--primary);
}

/* 12. Sección Oferta Irresistible (Diseño Premium Oscuro) */
.offer {
  background-color: var(--bg-light);
}

.offer-card {
  background: linear-gradient(145deg, var(--primary-dark) 0%, hsl(164, 50%, 4%) 100%);
  color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 62, 20, 0.2);
}

@media (min-width: 48rem) {
  .offer-card {
    padding: 5rem 4rem;
  }
}

/* Luces de fondo sutiles en la tarjeta */
.offer-card::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 166, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.offer-badge {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(255, 166, 0, 0.2);
}

.offer-card h3 {
  color: var(--bg-light);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.pricing-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-promo .currency {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  vertical-align: super;
  line-height: 1;
}

.pricing-promo .amount {
  font-family: var(--font-headings);
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-shadow: 0 0 20px rgba(255, 166, 0, 0.2);
}

.pricing-promo .period {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.offer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.offer-features-list {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 3rem;
  text-align: left;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.offer-features-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.offer-features-list li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 2rem;
  position: relative;
}

.offer-features-list li:last-child {
  margin-bottom: 0;
}

.offer-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
}

.offer-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.offer-cta-container .btn {
  max-width: 480px;
  width: 100%;
  padding: 1.35rem 3rem;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-accent);
}

.offer-cta-container .btn:hover {
  box-shadow: 0 15px 35px rgba(255, 166, 0, 0.5);
}

.offer-info-text {
  font-size: 0.85rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  max-width: 580px;
}

.offer-guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.offer-guarantee-box svg {
  flex-shrink: 0;
  color: var(--accent);
}

.offer-guarantee-box strong {
  color: #fff;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.35rem;
}

/* 13. Sección FAQ (Preguntas Frecuentes) */
.faq {
  background-color: var(--bg-light);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--primary-medium);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.35rem 1.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-family: var(--font-headings);
  transition: color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-medium);
  transition: transform var(--transition-normal), fill var(--transition-normal);
  flex-shrink: 0;
}

.faq-item[open] {
  border-color: var(--primary-medium);
}

.faq-item[open] .faq-question {
  color: var(--primary);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  fill: var(--primary);
}

.faq-answer {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 0;
}