@font-face {
  font-family: "Baseltica";
  src: url("assets/fonts/basetica-light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* AI-themed color palette */
  --primary-gradient: linear-gradient(45deg, #00d4ff, #0066ff);
  --secondary-gradient: linear-gradient(135deg, #667eea, #764ba2);
  --accent-gradient: linear-gradient(45deg, #f093fb, #f5576c);
  --neural-gradient: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 50%,
    #f093fb 100%
  );

  /* Semantic colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #16213e;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.05);

  /* Variables modernas para cards */
  --card-bg-modern: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  --card-border-modern: rgba(255, 255, 255, 0.12);
  --card-hover-bg: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.08) 0%,
    rgba(102, 126, 234, 0.05) 100%
  );
  --card-shadow-subtle: 0 4px 16px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 16px 40px rgba(0, 212, 255, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.2);
  --card-inner-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --card-padding-modern: 2rem;
  --card-gap-modern: 1.5rem;

  /* Typography */
  --font-family-base: "Baseltica", "Inter", sans-serif;
  --font-family: var(--font-family-base);
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

/* Reset and base styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  min-height: auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--spacing-3xl) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 12px 24px;
  min-width: 120px;
  height: 48px;
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4),
    0 0 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: #00d4ff;
  color: #00d4ff;
  transform: translateY(-2px);
}

/* ============================
   GLASS CARD BASE MODERNA
   ============================ */
.glass-card {
  background: var(--card-bg-modern);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border-modern);
  border-radius: var(--radius-2xl);
  box-shadow: var(--card-shadow-subtle), var(--card-inner-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto de brillo sutil en el borde */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(0, 212, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  background: var(--card-hover-bg);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 212, 255, 0.3);
}

/* Header Component */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--spacing-lg) 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 0.1px solid var(--border-color);
  padding: var(--spacing-md) 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: var(--font-size-xl);
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  line-height: 1.8;
}

.logo-svg {
  height: 68px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header__logo:hover .logo-svg {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

/* Mountain Icon Component */
.mountain-icon {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mountain-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__logo:hover .mountain-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
}

.header__nav {
  display: flex;
  gap: var(--spacing-xl);
  list-style: none;
  transition: opacity 0.3s ease;
  align-items: center;
}

.header__nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--text-primary);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__cta,
.header__nav-cta {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-sm);
}

/* Desktop version of nav CTA */
@media (min-width: 701px) {
  .header__nav-cta {
    margin: 0 !important;
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: center;
  }
}

/* Hero Section with Smooth Transitions */
.hero {
  background: linear-gradient(180deg, #1a233a 0%, #1a1a2e 60%, #16213e 100%);
  position: relative;
  min-height: 100vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Permitir que el gradiente se extienda más allá */
  padding-bottom: 0;
  margin-bottom: 0;
}

.hero__mountain-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__background-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Extender ligeramente hacia abajo para suavizar transición */
  height: 105%;
}

.hero__background-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.7) contrast(1.2) saturate(1.2) blur(1.5px);
  z-index: 0;
  pointer-events: none;
}

.hero__mountain-bg img {
  width: 100vw;
  min-width: 100%;
  height: 127%;
  object-fit: cover;
  object-position: center bottom;
  will-change: transform;
  transition: transform 0.2s;
  filter: brightness(0.3) contrast(1) saturate(1)
    drop-shadow(0 0 40px #00d5ffb2);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.2) 0%,
    rgba(10, 10, 15, 0.4) 70%,
    rgba(22, 33, 62, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Gradiente de transición suave al final del hero */
.hero__transition-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(22, 33, 62, 0.3) 30%,
    rgba(22, 33, 62, 0.7) 70%,
    #16213e 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 5rem auto 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Features Section con transición suave */
.features {
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-primary) 100%
  );
  /* Remover padding top para eliminar gap */
  padding-top: 0;
  /* Agregar margen negativo para superponer ligeramente */
  margin-top: -2px;
  position: relative;
}

/* Gradiente sutil en la parte superior de features para mejorar la transición */
.features__top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(22, 33, 62, 1) 0%,
    rgba(22, 33, 62, 0.8) 40%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Asegurar que el contenido esté sobre el gradiente */
.features .container {
  position: relative;
  z-index: 2;
  /* Restaurar padding top para el contenido */
  padding-top: var(--spacing-3xl);
}

.hero__title-no-wrap {
  white-space: nowrap;
  display: inline;
}

.hero__title-shadow {
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0);
}

.hero__subtitle-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.178);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  z-index: 100;
  position: relative;
  width: 80%;
  text-align: left;
}

.hero__content > * {
  width: 100%;
}

.hero__title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -1.5px;
  width: 100%;
  order: 1;
  transform: translateY(-3rem);
}

.hero__title-gradient {
  background: var(--neural-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  order: 2;
  width: 100%;
  max-width: 100%;
  transform: translateY(-3.2rem);
}

.hero__cta {
  order: 3;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  align-self: flex-start;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

/* Features Section Grid */
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 3rem;
  align-items: stretch;
  justify-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.features__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding-right: 2.5rem;
  max-width: 520px;
  margin: 0;
}

.features__robot-container {
  position: relative;
  width: 180px;
  max-width: 90%;
  margin-bottom: 1.5rem;
  align-self: center;
}

.features__robot-image {
  width: 100%;
  display: block;
  z-index: 2;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 213, 255, 0);
}

.features__content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 1.1rem;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.features__content p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.features__content p strong,
.features__content span[style*="font-weight:600"] {
  color: #00d4ff;
  font-weight: 600;
}

.features__content .btn {
  font-size: 1.08rem;
  padding: 0.85rem 2.2rem;
  box-shadow: 0 2px 16px #00d4ff22;
  margin-top: 1.2rem;
}

.features__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-content: flex-start;
  justify-items: stretch;
  min-width: 0;
}

/* ============================
   FEATURE CARDS MODERNAS
   ============================ */
.feature-card {
  padding: var(--card-padding-modern);
  background: var(--card-bg-modern);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border-modern);
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--card-gap-modern);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}

/* Gradiente de fondo sutil */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(0, 212, 255, 0.03) 0%,
    transparent 60%
  );
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.12),
    0 8px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Iconos de feature cards con mejor diseño */
.feature-card__icon {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  width: fit-content;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card__icon svg {
  width: 20px;
  height: 20px;
  color: #00d4ff;
  filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.feature-card:hover .feature-card__icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.4));
}

/* Títulos mejorados */
.feature-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.feature-card__description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 400;
}

/* Services Section */
.services {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    #2d1b69 100%
  );
}

.services__header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.services__header h2 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  background: var(--neural-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services__header p {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
}

/* ============================
   SERVICE CARDS MODERNAS
   ============================ */
.service-card {
  padding: 2.5rem;
  background: var(--card-bg-modern);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border-modern);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Patrón de puntos sutil en el fondo */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(0, 212, 255, 0.15) 1px,
    transparent 0
  );
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-16px) scale(1.03);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 32px 80px rgba(0, 212, 255, 0.15),
    0 16px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Visual mejorado para service cards */
.service-card__visual {
  height: 140px;
  background: linear-gradient(135deg, #00d4ff 0%, #667eea 50%, #764ba2 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Efecto de ondas en el visual */
.service-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__visual::before {
  transform: translateX(100%) rotate(45deg);
}

.service-card:hover .service-card__visual {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.4), 0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Títulos y descripciones mejoradas */
.service-card__title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.service-card__description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* Contact Section */
.contact {
  background: linear-gradient(
    135deg,
    #2d1b69 0%,
    var(--bg-secondary) 50%,
    var(--bg-tertiary) 100%
  );
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact__header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

.contact__info {
  position: relative;
  z-index: 2;
}

.contact__badge {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.contact__card .contact__badge {
  margin-bottom: 1rem;
  align-self: flex-start;
  margin-left: auto;
  margin-right: auto;
}

.contact__badge-span {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(10px);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.contact__title-style {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: var(--neural-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__description-style {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: left;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 212, 255, 0.08);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact__list-item:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.contact__list-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ============================
   CONTACT CARD PREMIUM
   ============================ */
.contact__card {
  padding: 3rem;
  border-radius: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.08) 0%,
    rgba(102, 126, 234, 0.06) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 24px 80px rgba(0, 212, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Efecto de aurora en el fondo */
.contact__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at top left,
      rgba(0, 212, 255, 0.1) 0%,
      rgba(102, 126, 234, 0.05) 30%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(102, 126, 234, 0.08) 0%,
      rgba(0, 212, 255, 0.04) 30%,
      transparent 60%
    );
  border-radius: 2.5rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.contact__card:hover::before {
  opacity: 1;
}

.contact__card:hover {
  transform: scale(1.03) translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 40px 120px rgba(0, 212, 255, 0.2),
    0 16px 48px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.contact__card * {
  position: relative;
  z-index: 3;
}

/* Style Google Calendar button to match navbar CTA */
.contact__card .goog-inline-block {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--spacing-sm) !important;
  padding: 12px 24px !important;
  min-width: 120px !important;
  height: 48px !important;
  border: none !important;
  border-radius: 2rem !important;
  font-family: inherit !important;
  font-size: var(--font-size-lg) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  background: var(--primary-gradient) !important;
  color: var(--text-primary) !important;
  width: 100% !important;
  margin-top: 1rem !important;
}

.contact__card .goog-inline-block::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  ) !important;
  transition: left 0.5s !important;
}

.contact__card .goog-inline-block:hover::before {
  left: 100% !important;
}

.contact__card .goog-inline-block:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4),
    0 0 30px rgba(0, 212, 255, 0.3) !important;
}

.contact__card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  text-align: center;
}

.contact__card-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1rem;
}

/* FAQ Section */
.faq {
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-primary) 100%
  );
  padding: var(--spacing-3xl) 0;
}

.faq__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.faq__header h2 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq__header p {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
}

.faq__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================
   FAQ ITEMS MODERNAS
   ============================ */
.faq__item {
  background: var(--card-bg-modern);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border-modern);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  max-width: 700px;
  width: 100%;
}

.faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, #00d4ff, #667eea);
  transition: width 0.4s ease;
  border-radius: 1.25rem 0 0 1.25rem;
}

.faq__item:hover::before {
  width: 4px;
}

.faq__item:hover {
  transform: translateY(-4px) translateX(8px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1), 0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.faq__question {
  background: transparent;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.75rem 2rem;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq__question:hover {
  color: #00d4ff;
}

.faq__toggle {
  font-size: 1.25rem;
  font-weight: 300;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #00d4ff;
  line-height: 1;
}

.faq__item.open .faq__toggle {
  background: #00d4ff;
  color: var(--bg-primary);
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: var(--spacing-lg);
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.faq__item.open .faq__answer {
  display: block;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.footer__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/cumbre.png") center center / cover no-repeat;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}

.footer__container {
  position: relative;
  z-index: 1;
}

.footer__logo-container {
  font-size: var(--font-size-xl);
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  line-height: 1.8;
}

.footer__logo-container:hover .mountain-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
}

.footer__social-margin {
  margin-top: 16px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.footer__section {
  text-align: center;
}

.footer__section h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
}

.footer__section p,
.footer__section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__section a:hover {
  color: #00d4ff;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: #00d4ff;
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

/* Scroll indicator styles */
.scroll-indicator {
  order: 4;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  min-width: 44px;
  width: fit-content !important;
  z-index: 10;
}

.scroll-indicator__label {
  margin-bottom: 12px;
}

.scroll-indicator__mouse {
  width: 28px;
  height: 44px;
  border: 2px solid #00d4ff;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(10, 20, 40, 0.18);
  box-shadow: 0 2px 12px #00d4ff33;
  pointer-events: none;
  margin-bottom: 0;
  opacity: 1;
  transition: opacity 0.3s;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #00d4ff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: scroll-dot-move 1.5s infinite;
  opacity: 0.8;
}

/* Robot animations */
.robot-anim {
  animation: robot-float 3.2s ease-in-out infinite alternate;
  will-change: transform, filter;
  transition: filter 0.2s;
}

.robot-anim:hover {
  filter: drop-shadow(0 8px 32px #00d4ff88) brightness(1.08);
  animation-play-state: paused;
}

.robot-anim:hover + .robot-shadow,
.robot-shadow.robot-shadow-hover {
  animation-play-state: paused;
}

.robot-shadow {
  width: 110px;
  height: 28px;
  background: radial-gradient(ellipse at center, #000 80%, #0000 100%);
  opacity: 0.32;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%) scaleX(1) scaleY(1);
  z-index: 1;
  animation: shadow-float 3.2s ease-in-out infinite alternate;
  pointer-events: none;
  filter: blur(2.5px) brightness(0.85);
}

/* Animations */
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes scroll-dot-move {
  0% {
    opacity: 0.7;
    top: 10px;
  }
  40% {
    opacity: 1;
    top: 22px;
  }
  80% {
    opacity: 0.7;
    top: 34px;
  }
  100% {
    opacity: 0;
    top: 40px;
  }
}

@keyframes robot-float {
  0% {
    transform: translateY(0) scale(1) rotate(-2deg);
  }
  50% {
    transform: translateY(-22px) scale(1.03) rotate(2deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(-2deg);
  }
}

@keyframes shadow-float {
  0% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
  }
  50% {
    transform: translateX(-50%) scaleX(1.32) scaleY(0.62);
  }
  100% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
  }
}

/* Keyboard navigation focus styles */
.keyboard-nav *:focus {
  outline: 2px solid #00d4ff !important;
  outline-offset: 2px !important;
}

/* Hero text alignment */
.hero__title,
.hero__title-shadow,
.hero__title-no-wrap {
  text-align: left;
}

.hero__subtitle,
.hero__subtitle-shadow {
  text-align: left;
}

/* Responsive Design */

/* Tablet styles - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 720px;
    padding: 0 var(--spacing-lg);
  }

  .hero__content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 3;
  }

  .hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
  }

  .hero__subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .features__content {
    text-align: left;
    max-width: 100%;
  }

  .features__content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .features__content p {
    font-size: clamp(1rem, 2vw, 1.125rem);
  }

  .feature-card {
    padding: 1.5rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .services__header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .contact__title-style {
    font-size: clamp(2.5rem, 4vw, 3rem);
  }

  .contact__card {
    padding: 2.5rem;
  }

  .faq__header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .faq__items {
    max-width: 600px;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
  }
}

@media (max-width: 1200px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem 0;
    max-width: 98vw;
  }
  .features__cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .features__content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .header__nav {
    display: none;
  }

  .hero__title {
    font-size: var(--font-size-3xl);
  }

  .hero__subtitle {
    font-size: var(--font-size-base);
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .features__cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .features__grid {
    gap: 1.5rem 0;
  }
  .features__content {
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .features__content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .features__content p,
  .feature-card__description,
  .feature-card__title {
    font-size: 0.98rem;
  }
  .features__content .btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    margin-top: 1rem;
  }
  .feature-card {
    padding: 1rem 1rem 1.1rem 1rem;
  }
}

@media (max-width: 768px) {
  /* Base section styling for consistent mobile UX */
  .section {
    min-height: 100vh;
    padding: var(--spacing-2xl) 0;
  }

  .container {
    padding: 0 var(--spacing-lg);
  }

  /* Hero Section */
  .hero {
    min-height: 100vh;
    padding: var(--spacing-2xl) 0;
    display: flex;
    align-items: center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(1.8rem, 6vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: clamp(2rem, 2vw, 1.5rem);
    width: fit-content;
    order: 1;
    text-align: center;
  }

  .hero__title,
  .hero__title-shadow,
  .hero__title-no-wrap {
    text-align: center;
  }

  .hero__subtitle {
    font-size: clamp(1.3rem, 1.5vw, 1rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
    order: 2;
    text-align: center;
  }

  .scroll-indicator {
    order: 4;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.4s ease;
    min-width: 44px;
    width: fit-content !important;
    z-index: 10;
  }

  .hero__cta {
    order: 3;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    align-self: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
  }

  /* Features Section */
  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .features__content {
    text-align: center;
    order: 1;
  }

  .features__cards {
    order: 2;
  }

  .features__content h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
  }

  .features__content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-lg);
  }

  .feature-card {
    padding: 1.5rem;
    margin-bottom: var(--spacing-md);
  }

  .feature-card__title {
    font-size: var(--font-size-lg);
  }

  .feature-card__description {
    font-size: var(--font-size-sm);
    line-height: 1.5;
  }

  /* Services Section */
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .services__header h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
  }

  .services__header p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xl);
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card__title {
    font-size: var(--font-size-lg);
  }

  .service-card__description {
    font-size: var(--font-size-sm);
    line-height: 1.5;
  }

  /* FAQ Section */
  .faq {
    min-height: 85vh;
    padding: var(--spacing-2xl) 0;
  }

  .faq__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }

  .faq__header h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
  }

  .faq__header p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xl);
  }

  .faq__items {
    max-width: 100%;
  }

  .faq__item {
    margin-bottom: var(--spacing-md);
    max-width: 100%;
  }

  .faq__question {
    font-size: var(--font-size-base) !important;
    padding: var(--spacing-md) var(--spacing-lg);
    width: 100%;
    text-align: left;
  }

  .faq__toggle {
    font-size: var(--font-size-base) !important;
  }

  .faq__answer p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    padding: var(--spacing-lg);
  }

  /* Contact Section */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .contact__title-style {
    font-size: 2.5rem;
  }

  .contact__card {
    padding: 2rem;
  }

  .contact__info {
    text-align: center;
  }

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

  /* Global mobile button styling */
  .btn {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
    min-height: 48px;
  }

  /* Cards responsive modernas */
  .feature-card,
  .service-card {
    padding: 1.5rem;
  }

  .contact__card {
    padding: 2rem;
  }

  .feature-card__icon {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .service-card__visual {
    height: 120px;
    font-size: 2.5rem;
  }
}

@media (max-width: 700px) {
  .header__container {
    flex-wrap: wrap;
    padding: 0 0.5rem;
  }
  .header__logo {
    font-size: 1.1rem;
    gap: 0.3rem;
  }
  .mountain-icon {
    width: 26px;
    height: 26px;
  }
  .header {
    padding: 0.6rem 0;
  }
  .header__nav {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100vw;
    background: rgba(10, 10, 15, 0.93);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0 1.2rem 0;
    box-shadow: 0 8px 32px #0002;
    z-index: 9999;
    display: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none;
  }
  .header__nav.open {
    display: flex;
  }
  .header__nav-link {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.08rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    text-align: left;
  }
  .header__nav-link:last-child {
    border-bottom: none;
  }
  .header__nav-cta {
    margin: 1rem 1.5rem 0.5rem 1.5rem !important;
    padding: 0.8rem 1.5rem !important;
    width: calc(100% - 3rem) !important;
    text-align: center !important;
    border: none !important;
    border-radius: var(--radius-full) !important;
    background: var(--primary-gradient) !important;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: block !important;
  }
  .header__menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    color: #00d4ff;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
    margin-right: 0.2rem;
    z-index: 10001;
  }
}

@media (max-width: 480px) {
  .feature-card,
  .service-card {
    padding: 1.25rem;
  }

  .contact__card {
    padding: 1.5rem;
  }
}

@media (max-width: 425px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .hero__content {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 1.1rem);
    line-height: 1.1;
    margin-bottom: clamp(1.5rem, 3vw, 1.25rem);
    text-align: center;
  }

  .hero__subtitle {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    line-height: 1.4;
    margin-bottom: clamp(1rem, 3vw, 1.25rem);
    text-align: center;
  }
}

@media (max-width: 375px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero__content {
    padding: 0 0.25rem;
  }

  .hero__title {
    font-size: clamp(1.5rem, 8vw, 1.1rem);
    line-height: 1.05;
    margin-bottom: clamp(1.875rem, 3vw, 1rem);
    letter-spacing: -1px;
    text-align: center;
  }

  .hero__subtitle {
    font-size: clamp(0.8rem, 4vw, 0.9rem);
    line-height: 1.35;
    margin-bottom: clamp(0.875rem, 3vw, 1rem);
    text-align: center;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero__content {
    padding: 0;
  }

  .hero__title {
    font-size: clamp(1.1rem, 8vw, 1.1rem);
    line-height: 1.2;
    margin-bottom: clamp(2.75rem, 3vw, 0.875rem);
    letter-spacing: -0.5px;
    text-align: center;
  }

  .hero__subtitle {
    font-size: clamp(0.75rem, 4.5vw, 0.85rem);
    line-height: 1.3;
    margin-bottom: clamp(0.75rem, 3vw, 0.875rem);
    text-align: center;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero__title {
    font-size: clamp(3rem, 5vw, 4.3rem);
  }

  .hero__subtitle {
    font-size: clamp(1.5rem, 4vw, 1.5rem);
  }

  .features__content h2 {
    font-size: var(--font-size-5xl);
  }

  .features__content p {
    font-size: var(--font-size-lg);
  }

  .service-card__title {
    font-size: var(--font-size-xl);
  }

  .service-card__description {
    font-size: var(--font-size-base);
  }

  .contact__info h2 {
    font-size: var(--font-size-5xl);
  }

  .contact__info p {
    font-size: var(--font-size-lg);
  }
}
