/* ========================================
   LANDING PAGE STYLES - FINANCIA SUITE
   Versión premium negro + dorado mate
   ======================================== */

/* === VARIABLES DE COLOR FINANCIA SUITE - PALETA PREMIUM ELEGANTE === */
:root {
  /* Paleta Premium Elegante */
  --landing-black: #0A0A0A;
  --landing-gold: #C9A227;
  --landing-gold-deep: #A8861F;
  --landing-sand: #F2E9D8;
  --landing-gray: #B8B2A6;
  --landing-olive: #A3A380;
  --landing-bronze: #D4A373;
  --landing-white: #FFFFFF;

  /* Variables de uso */
  --landing-primary: var(--landing-gold);
  --landing-primary-dark: var(--landing-black);
  --landing-primary-hover: #D6B63D;
  --landing-primary-light: var(--landing-sand);
  --landing-primary-soft: #F9F3E4;
  --landing-highlight: var(--landing-bronze);
  --landing-highlight-light: #F3D9BF;

  --text-dark: var(--landing-white);
  --text-secondary: var(--landing-gray);
  --cream-bg: var(--landing-black);
  --white: var(--landing-white);
  --gray-light: var(--landing-sand);
}

/* === CONTENEDOR PRINCIPAL === */
.landing-page {
  background: linear-gradient(135deg, #0A0A0A 0%, #141414 45%, #1B1B1B 100%);
  padding: 0 !important;
  max-width: 100% !important;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === FONDO ANIMADO CON PARALLAX === */
.parallax-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-light));
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--landing-primary-light), var(--landing-highlight));
  bottom: 10%;
  right: 10%;
  animation-delay: 4s;
}

.blob-3 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--landing-primary-dark), var(--landing-primary));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  33% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
  }
  66% {
    transform: translateY(20px) translateX(-20px) scale(0.9);
  }
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(88px, 12vw, 140px) clamp(16px, 5vw, 48px) clamp(64px, 10vw, 96px);
  background: radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.18), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(212, 163, 115, 0.18), transparent 55%),
    linear-gradient(135deg, #0A0A0A 0%, #141414 45%, #1B1B1B 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px);
  text-align: center;
  background: rgba(10, 10, 10, 0.85);
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(201, 162, 39, 0.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 auto 40px;
}

/* === TYPING TEXT EFFECT === */
.typing-text-wrapper {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 32px;
  color: var(--color-text);
}

.typing-text {
  background: linear-gradient(90deg, #C9A227 0%, #D4A373 40%, #F2E9D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.typing-cursor {
  display: inline-block;
  width: 4px;
  height: 64px;
  background: var(--landing-highlight);
  margin-left: 8px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-subtitle {
  font-size: 24px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.hero-subtitle strong {
  font-weight: 600;
  color: var(--color-primary);
}

/* === BOTONES CON EFECTO RIPPLE === */
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-cta .btn-ripple {
  position: relative;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.hero-cta .btn-cta-primary {
  background: linear-gradient(135deg, #C9A227 0%, #D4A373 100%);
  color: #0A0A0A;
  border: 1px solid rgba(10, 10, 10, 0.3);
  box-shadow: 0 18px 36px rgba(201, 162, 39, 0.4);
}

.hero-cta .btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(201, 162, 39, 0.5);
}

.hero-cta .btn-cta-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(201, 162, 39, 0.45);
  backdrop-filter: blur(0);
}

.hero-cta .btn-cta-secondary:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.7);
  transform: translateY(-2px);
}

.hero-stats {
  width: min(100%, 520px);
  margin: 0 auto;
}

/* Efecto ripple */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
  z-index: -1;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* === ESTADÍSTICAS CON CONTADORES ANIMADOS === */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.stat-item.fade-in-up {
  animation: fadeInUpStat 0.8s ease forwards;
}

@keyframes fadeInUpStat {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  color: var(--color-primary);
  animation: iconFloat 3s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stat-icon i {
  color: var(--color-primary);
}

.stat-item:hover .stat-icon {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25) 0%, rgba(0, 0, 0, 0.85) 100%);
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.25);
}

.stat-item:hover .stat-icon i {
  color: var(--color-text);
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.animated-counter {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #C9A227, #D4A373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: rgba(248, 245, 238, 0.9);
  font-weight: 600;
}

.stat-context {
  font-size: 13px;
  color: rgba(248, 245, 238, 0.55);
  margin-top: 8px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover .stat-context {
  opacity: 1;
}

/* === SECCIONES GENERALES === */
.content-section {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  background: #141414;
}

.content-section:nth-child(even) {
  background: linear-gradient(135deg, #0A0A0A 0%, #1B1B1B 100%);
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(30px);
}

.section-header-center.fade-in-up {
  animation: fadeInUpStat 0.8s ease forwards;
}

.section-header-center h2 {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #C9A227, #D4A373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px;
  color: var(--landing-white);
}

.section-header-center p {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 300;
}

/* === TU DINERO VIDEO SECTION === */
.tu-dinero-section {
  background: linear-gradient(135deg, #141414 0%, #1B1B1B 100%);
}

.tu-dinero-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.tu-dinero-video {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: #1B1B1B;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tu-dinero-video:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(201, 162, 39, 0.3);
  border-color: rgba(201, 162, 39, 0.4);
}

.tu-dinero-video video,
.tu-dinero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.tu-dinero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.tu-dinero-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--landing-gold);
}

.tu-dinero-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.tu-dinero-content ul li {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  color: var(--landing-white);
  line-height: 1.5;
}

.tu-dinero-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--landing-highlight);
  font-weight: 700;
}

.tu-dinero-content p {
  font-size: 18px;
  color: var(--landing-gray);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tu-dinero-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tu-dinero-content h3 {
    text-align: center;
  }

  .tu-dinero-content ul li {
    font-size: 16px;
  }

  .tu-dinero-content p {
    text-align: center;
  }
}

/* === BENEFITS GRID === */
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-card, .hover-card {
  background: #141414;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 162, 39, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card.fade-in-up, .hover-card.fade-in-up {
  animation: fadeInUpStat 0.8s ease forwards;
}

.benefit-card::before, .hover-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--landing-primary), var(--landing-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover, .hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.3);
  border-color: var(--landing-gold);
  background: #1B1B1B;
}

.benefit-card:hover::before, .hover-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon, .card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 36px;
  color: white;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon,
.hover-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h3, .hover-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--landing-white);
  margin: 0 0 12px;
}

.benefit-card > p, .hover-card > p {
  font-size: 16px;
  color: var(--landing-gray);
  line-height: 1.7;
  margin: 0 0 24px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--landing-white);
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(201, 162, 39, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.benefit-list li:hover {
  background: rgba(201, 162, 39, 0.15);
  transform: translateX(4px);
}

.benefit-list li i {
  color: var(--landing-highlight);
  font-size: 18px;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #141414;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 162, 39, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 42, 71, 0.02) 0%, rgba(14, 42, 71, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.testimonial-card.fade-in-up {
  animation: fadeInUpStat 0.8s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #C9A227;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--landing-white);
  margin: 0 0 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 16px;
  color: var(--landing-white);
  font-weight: 600;
}

.author-info span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* === FAQ SECTION === */
.faq-section {
  padding: 100px 20px;
  background: #141414;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1B1B1B;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.faq-item:hover {
  border-color: var(--landing-gold);
  background: #141414;
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--landing-white);
  margin: 0;
}

.faq-question i {
  color: var(--landing-highlight);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 28px 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--landing-gray);
}

/* === FINAL CTA === */
.cta-final-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #C9A227 0%, #D6B63D 45%, #D4A373 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C9A227, #D4A373, #C9A227);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.cta-final-container {
  max-width: 700px;
  margin: 0 auto;
  color: white;
}

.cta-final-container h2 {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 20px;
  color: #0A0A0A;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-final-container > p {
  font-size: 22px;
  margin: 0 0 40px;
  opacity: 0.95;
  font-weight: 300;
}

.btn-cta-large {
  padding: 24px 56px;
  font-size: 22px;
  font-weight: 700;
  background: #0A0A0A;
  color: var(--landing-gold);
  border: 2px solid #0A0A0A;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.btn-cta-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-cta-large:hover::before {
  left: 100%;
}

.btn-cta-large:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-subtext {
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* === ANIMACIONES GLOBALES === */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.animated {
  animation: fadeInUpStat 0.8s ease forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
}

.fade-in-left.animated {
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
}

.fade-in-right.animated {
  animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 52px;
  }

  .section-header-center h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 16px 60px;
  }

  .hero-title {
    font-size: 40px;
  }

  .typing-cursor {
    height: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }

  .btn-ripple {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .section-header-center h2 {
    font-size: 32px;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-final-container h2 {
    font-size: 36px;
  }

  .btn-cta-large {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .typing-cursor {
    height: 32px;
    width: 3px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .animated-counter {
    font-size: 36px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-header-center h2 {
    font-size: 28px;
  }

  .benefit-card, .hover-card {
    padding: 28px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 14px 28px;
    font-size: 16px;
  }
}
