:root {
  /* FONDOS (Dark Luxury) */
  --bg-primary: #000000;
  --bg-secondary: #09090B;
  --bg-tertiary: #18181B;

  /* ACENTO PRIMARIO: Amarillo Cálido / Dorado */
  --primary-50: #FFF9E5;
  --primary-100: #FFF2C2;
  --primary-200: #FFE691;
  --primary-300: #FFD858;
  --primary-400: #FFCD2A;
  --primary-500: #FFC107;
  /* El color principal seleccionado */
  --primary-600: #E5A800;
  --primary-700: #CC9400;
  --primary-800: #996F00;
  --primary-900: #664A00;

  /* TEXTOS */
  --text-primary: #FFFFFF;
  --text-secondary: #E4E4E7;
  --text-tertiary: #A1A1AA;
  --text-quaternary: #71717A;

  /* ACENTOS SECUNDARIOS */
  --success: #22C55E;
  --info: #3B82F6;
  --warning: #F59E0B;

  /* Constantes para Cálculos RGB (útil para glows) */
  --primary-r: 255;
  --primary-g: 193;
  --primary-b: 7;

  /* Fuentes */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 3rem;
}

/* Tipografía */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-tertiary);
  max-width: 600px;
  margin: 0 auto 48px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-300) 0%, var(--primary-500) 50%, var(--primary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Efectos Base */
.glass-card {
  background: linear-gradient(135deg,
      rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.08) 0%,
      rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.04) 50%,
      rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.08) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.15);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.3),
    0 2px 4px -2px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.35);
  box-shadow: 0 25px 50px -12px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.25);
  transform: translateY(-4px);
}

/* Placeholders (Temporales hasta tener imágenes) */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-img-sm {
  height: 32px;
  width: auto;
  display: block;
}

.client-logo {
  height: 40px;
  width: auto;
  filter: grayscale(1) brightness(2) contrast(1.2);
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.1);
}

.service-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-weight: 500;
}

.results-video-container {
  max-width: 1000px;
  margin: 64px auto 0;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-placeholder:hover {
  border-color: var(--primary-500);
  background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.05);
  cursor: pointer;
}

.video-placeholder .play-icon {
  font-size: 3rem;
  color: var(--primary-500);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.5));
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--primary-600) 0%,
      var(--primary-500) 30%,
      var(--primary-400) 60%,
      var(--primary-500) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  color: #000;
  /* Texto oscuro sobre botón claro/amarillo */
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.5),
    0 4px 24px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
  box-shadow:
    0 0 0 2px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.8),
    0 8px 40px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
  background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.05);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-500);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-nav-link:hover {
  color: var(--primary-500);
}

/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 100px;
  overflow: hidden;
  text-align: center;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-500);
  opacity: 0;
}

.hero-bg-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0.8;
}

.sphere {
  width: 600px;
  /* Larger background sphere */
  height: 600px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  /* For JS interaction */
}

.sphere-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%,
      rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.15) 0%,
      rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.2);
  box-shadow:
    0 0 100px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.2),
    inset 0 0 50px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.1);
  backdrop-filter: blur(4px);
}

.sphere-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  border: 1px dashed rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(75deg);
  animation: spin 30s linear infinite;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content.centered {
  margin: 0 auto;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.2);
  border-radius: 100px;
  margin-bottom: 32px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Social Proof */
.social-proof {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-secondary);
}

.social-proof-title {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 60px;
}

.logos-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  /* Mask edges for a premium fading effect */
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  gap: 100px;
  /* Space between logos */
  animation: marquee-scroll 30s linear infinite;
}

.client-logo {
  height: 48px;
  /* Consistent height for all logos */
  width: auto;
  opacity: 0.6;
  filter: grayscale(1) brightness(1.5);
  transition: all 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: scale(1.1);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.metric-number {
  font-size: 3rem;
  color: var(--primary-500);
  margin-bottom: 8px;
}

.logos-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
}

/* Servicios (Flip Cards) */
.services {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card-flip {
  perspective: 1000px;
  height: 400px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 24px;
}

/* Flip animation */
.service-card-flip:hover .service-card-inner,
.service-card-flip.flipped .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
}

.service-card-front {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-front:hover .service-image {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  text-align: left;
}

.service-title-front {
  font-size: 1.25rem;
  color: #fff;
}

.service-card-back {
  background-color: var(--bg-tertiary);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.service-title-back {
  color: var(--primary-500);
  margin-bottom: 16px;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.1);
  color: var(--primary-400);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.2);
}

/* Team Section */
.team-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-member-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.1);
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-member-img img {
  transform: scale(1.05);
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.team-info .role {
  color: var(--primary-500);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials-section {
  padding: 120px 0;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.author-info h4 {
  color: var(--primary-500);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.15) 0%, transparent 70%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-text-side {
  text-align: left;
}

.contact-form {
  padding: 40px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.05);
  box-shadow: 0 0 0 4px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-full {
  width: 100%;
}

.form-status {
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: #EF4444;
}

.urgency-text {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-description {
  color: var(--text-tertiary);
  margin-top: 24px;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-500);
}

.footer-bottom {
  text-align: center;
  color: var(--text-quaternary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
}

/* Animaciones */
.animate-in {
  opacity: 0;
}

.animate-in.visible {
  animation: fade-in 1s forwards;
}

.animate-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.animate-in-up.visible {
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-in-rotate {
  opacity: 0;
  transform: scale(0.9) rotate3d(1, 1, 1, -15deg);
}

.animate-in-rotate.visible {
  animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-rotate {
  to {
    opacity: 1;
    transform: scale(1) rotate3d(0, 0, 0, 0);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotateZ(0deg) rotateX(75deg);
  }

  to {
    transform: translate(-50%, -50%) rotateZ(360deg) rotateX(75deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(2deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }

  75% {
    transform: translateY(-30px) rotate(1deg);
  }
}

@keyframes float-particle {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.2;
  }

  25% {
    transform: translate(100px, -100px);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50px, -200px);
    opacity: 0.4;
  }

  75% {
    transform: translate(-100px, -100px);
    opacity: 0.8;
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.5),
      0 4px 24px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.4);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.8),
      0 8px 40px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.6);
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.pulse {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
    /* Ocultar en mobile para enfocar en texto */
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-form {
    padding: 24px;
  }

  .glass-card {
    padding: 24px;
  }

  .footer-description {
    margin: 24px auto;
  }
}