/* inicio.css — Diseño premium para la página de inicio */

/* ============================================
   HERO SECTION
   ============================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.home-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 40%, #16213e 100%);
  z-index: 0;
}

/* Mesh gradient */
.hero-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(118, 75, 162, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 40% 80%, rgba(244, 114, 182, 0.08) 0%, transparent 50%);
  animation: meshMove 15s ease-in-out infinite alternate;
}

@keyframes meshMove {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(3deg); }
}

/* Particles (CSS only) */
.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 60% 20%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.25), transparent),
    radial-gradient(2px 2px at 70% 80%, rgba(255,255,255,0.15), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 10% 90%, rgba(255,255,255,0.3), transparent);
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

/* Orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.3));
  top: -100px;
  right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.3), rgba(102, 126, 234, 0.2));
  bottom: -50px;
  left: 10%;
  animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(6, 182, 212, 0.2));
  top: 40%;
  left: -50px;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -20px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 40px); }
}

/* Hero Layout */
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge svg {
  width: 16px;
  height: 16px;
}

.badge-primary {
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #a78bfa;
}

.badge-secondary {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

/* Title */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.title-gradient {
  display: block;
  background: linear-gradient(135deg, #667eea 0%, #a78bfa 40%, #f472b6 80%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Description */
.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  box-shadow: 0 4px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(102, 126, 234, 0.5);
  color: #fff;
  text-decoration: none;
}

.btn-primary-cta:hover svg {
  transform: translateX(4px);
}

.btn-ghost-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-ghost-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.card-3d-preview {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.preview-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.preview-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.preview-icon {
  font-size: 5rem;
  animation: iconFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.5));
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.preview-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  animation: ringPulse 3s ease-out infinite;
}

.ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; animation-delay: 0.5s; }
.ring-3 { width: 240px; height: 240px; animation-delay: 1s; }

@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.preview-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a78bfa;
  white-space: nowrap;
}

/* Floating Badges */
.floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1f2937;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.float-badge span {
  font-size: 1.1rem;
}

.fb-1 {
  top: 0;
  right: -20px;
  animation: floatBadge1 6s ease-in-out infinite;
}

.fb-2 {
  bottom: 30%;
  left: -30px;
  animation: floatBadge2 7s ease-in-out infinite;
}

.fb-3 {
  bottom: 10%;
  right: 10%;
  animation: floatBadge3 8s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(10px) rotate(2deg); }
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 120px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.about-content.revealed {
  opacity: 1;
  transform: translateX(0);
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text strong {
  color: #1f2937;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature:hover {
  background: #f1f5f9;
  transform: translateX(8px);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* About Visual */
.about-visual {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s 0.2s ease;
}

.about-visual.revealed {
  opacity: 1;
  transform: translateX(0);
}

.visual-stack {
  position: relative;
  height: 450px;
}

.stack-item {
  position: absolute;
  width: 280px;
  height: 200px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

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

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.item-1 {
  top: 0;
  left: 0;
  z-index: 3;
}

.item-2 {
  top: 80px;
  left: 100px;
  z-index: 2;
}

.item-3 {
  top: 160px;
  left: 200px;
  z-index: 1;
}

.visual-stack:hover .item-1 {
  transform: translate(-10px, -10px) rotate(-3deg);
}

.visual-stack:hover .item-2 {
  transform: translate(0, 0) rotate(0deg);
}

.visual-stack:hover .item-3 {
  transform: translate(10px, 10px) rotate(3deg);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
  text-decoration: none;
}

.feature-card-lg {
  grid-column: span 2;
  grid-row: span 2;
  padding: 50px;
}

.feature-card-lg .feature-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feature-card-lg .feature-gradient {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
}

.feature-icon-lg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-icon-lg svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
}

.feature-icon-sm {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}

.feature-card-lg h3 {
  font-size: 1.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-card-lg p {
  font-size: 1.05rem;
  max-width: 450px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #667eea;
  transition: gap 0.3s ease;
}

.feature-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-link {
  gap: 12px;
}

.feature-card:hover .feature-link svg {
  transform: translateX(4px);
}

/* 3D Decoration */
.feature-decoration {
  position: absolute;
  bottom: 30px;
  right: 30px;
  pointer-events: none;
}

.deco-cube {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
  transform: rotate(15deg);
  animation: cubeFloat 6s ease-in-out infinite;
}

@keyframes cubeFloat {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-10px); }
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */
.locations-section {
  padding: 100px 0;
  background: #fff;
}

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

.location-card {
  text-align: center;
  padding: 40px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.location-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.location-card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.2);
}

.location-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.location-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.location-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.location-count {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #667eea;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(102, 126, 234, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(118, 75, 162, 0.2) 0%, transparent 60%);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-final svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary-final {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  box-shadow: 0 4px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(102, 126, 234, 0.5);
  color: #fff;
  text-decoration: none;
}

.btn-primary-final:hover svg {
  transform: translateX(4px);
}

.btn-ghost-final {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-ghost-final:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card-lg {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .visual-stack {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-lg {
    grid-column: span 1;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .about-section {
    padding: 80px 0;
  }
  
  .features-section,
  .locations-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-cta, .btn-cta-final {
    width: 100%;
    justify-content: center;
  }
  
  .about-features .feature {
    flex-direction: column;
    text-align: center;
  }
}
