/* ==========================================================================
   TECH WARMI — Variables y base
   ========================================================================== */

:root {
  --magenta: #C12079;
  --magenta-dark: #9a1860;
  --magenta-light: #e04098;
  --blue: #4A76C5;
  --blue-light: #6495ED;
  --blue-pale: #E8F0FE;
  --text: #1a2744;
  --muted: #5a6b85;
  --white: #fff;
  --shadow: 0 8px 32px rgba(26, 39, 68, .12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Segoe UI, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

/* ==========================================================================
   Botones
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
}

.btn-primary {
  background: var(--white);
  color: var(--magenta);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

/* ==========================================================================
   Secciones compartidas
   ========================================================================== */

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 40px;
}

/* ==========================================================================
   Navegación
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 118, 197, .12);
  transition: .3s;
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.icon {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: var(--magenta);
}

.nav-brand .icon {
  box-shadow: 0 2px 12px rgba(193, 32, 121, .2);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-brand:hover .icon {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(74, 118, 197, .25);
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: .2s;
}

.nav-links a:hover {
  color: var(--magenta);
  background: rgba(193, 32, 121, .08);
}

.nav-cta {
  padding: 10px 18px !important;
  background: var(--magenta);
  color: var(--white) !important;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--magenta-dark) !important;
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(74, 118, 197, .12);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text);
}

.mobile-menu a:hover {
  background: var(--blue-pale);
}

.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 8px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 45%, #6b2d8a 100%);
  color: var(--white);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--blue-pale), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  opacity: .92;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 380px;
  padding-bottom: 0;
}

.hero-spotlight {
  position: relative;
  width: min(320px, 48vw);
  height: min(400px, 58vw);
  flex-shrink: 0;
}

.hero-spotlight::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-halo {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .2);
  box-shadow: 0 0 50px rgba(255, 255, 255, .06);
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 10px;
  height: 10px;
  top: 16%;
  right: 14%;
  box-shadow: 0 0 20px rgba(255, 255, 255, .4);
  animation: orbFloat 4s ease-in-out infinite;
}

.hero-orb--2 {
  width: 6px;
  height: 6px;
  top: 30%;
  left: 12%;
  opacity: .7;
  animation: orbFloat 5s ease-in-out infinite .8s;
}

.hero-orb--3 {
  width: 8px;
  height: 8px;
  bottom: 42%;
  right: 10%;
  opacity: .5;
  animation: orbFloat 6s ease-in-out infinite 1.2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-stage {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  z-index: 2;
  pointer-events: none;
}

.hero-stage-top {
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .35));
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, .5);
}

.hero-stage-body {
  height: 36px;
  margin-top: -10px;
  border-radius: 0 0 50% 50% / 0 0 30% 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .1));
  box-shadow: 0 10px 36px rgba(0, 0, 0, .3);
}

.hero-stage-shadow {
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .45), transparent 72%);
  filter: blur(8px);
}

.hero-avatar {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-avatar img {
  width: 100%;
  height: auto;
  max-height: min(400px, 88vw);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  transform: translateY(32px);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .18));
}

.hero-caro-bubble {
  position: relative;
  flex-shrink: 0;
  width: min(290px, 34vw);
  align-self: center;
  animation: bubblePop .75s cubic-bezier(.34, 1.4, .64, 1) .35s both;
}

.hero-caro-bubble-inner {
  position: relative;
  padding: 14px 16px 16px;
  background: rgba(255, 255, 255, .94);
  border-radius: 22px 22px 22px 6px;
  box-shadow:
    0 10px 36px rgba(0, 0, 0, .16),
    0 0 0 1px rgba(255, 255, 255, .65) inset;
  color: #2a2a42;
}

.hero-caro-bubble-inner::before,
.hero-caro-bubble-inner::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .94);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.hero-caro-bubble-inner::before {
  left: -14px;
  bottom: 22px;
  width: 18px;
  height: 18px;
}

.hero-caro-bubble-inner::after {
  left: -24px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  opacity: .92;
}

.hero-caro-bubble.is-speaking .hero-caro-bubble-inner {
  animation: bubbleSpeak 2.4s ease-in-out infinite;
}

.hero-caro-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
  margin-bottom: 10px;
  opacity: .45;
}

.hero-caro-wave span {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: var(--magenta);
}

.hero-caro-wave.is-playing {
  opacity: 1;
}

.hero-caro-wave.is-playing span {
  animation: caroWave 1s ease-in-out infinite;
}

.hero-caro-wave span:nth-child(1) { animation-delay: 0s; }
.hero-caro-wave span:nth-child(2) { animation-delay: .08s; }
.hero-caro-wave span:nth-child(3) { animation-delay: .16s; }
.hero-caro-wave span:nth-child(4) { animation-delay: .24s; }
.hero-caro-wave span:nth-child(5) { animation-delay: .32s; }
.hero-caro-wave span:nth-child(6) { animation-delay: .24s; }
.hero-caro-wave span:nth-child(7) { animation-delay: .16s; }
.hero-caro-wave span:nth-child(8) { animation-delay: .08s; }
.hero-caro-wave span:nth-child(9) { animation-delay: 0s; }
.hero-caro-wave span:nth-child(10) { animation-delay: .12s; }

@keyframes caroWave {
  0%, 100% { height: 8px; opacity: .45; }
  50% { height: 18px; opacity: 1; }
}

.hero-caro-text {
  margin: 0;
  padding-right: 22px;
  font-size: 12px;
  line-height: 1.55;
  color: #3d3d58;
}

.caro-word {
  transition: color .12s ease, background-color .12s ease, box-shadow .12s ease;
  border-radius: 4px;
  padding: 0 1px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.caro-word--name {
  font-weight: 700;
  color: var(--magenta);
}

.caro-word--active {
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta-light), var(--magenta));
  box-shadow: 0 2px 8px rgba(193, 32, 121, .35);
}

.caro-word--name.caro-word--active {
  color: var(--white);
}

.caro-word--done {
  color: #4a4a68;
}

.hero-caro-bubble.caro-needs-sound {
  cursor: pointer;
}

.hero-caro-bubble.caro-needs-sound .hero-caro-bubble-inner {
  box-shadow:
    0 10px 36px rgba(0, 0, 0, .16),
    0 0 0 2px rgba(193, 32, 121, .35) inset;
}

.hero-caro-sound {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta-light), var(--magenta));
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  animation: soundPulse 1.6s ease-in-out infinite;
  box-shadow: 0 4px 14px rgba(193, 32, 121, .35);
}

.hero-caro-sound-icon {
  font-size: 14px;
}

@keyframes soundPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(193, 32, 121, .35); }
  50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(193, 32, 121, .5); }
}

.hero-caro-replay {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: rgba(193, 32, 121, .1);
  color: var(--magenta);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s, background .2s, transform .2s;
}

.hero-caro-bubble:hover .hero-caro-replay,
.hero-caro-bubble:focus-within .hero-caro-replay {
  opacity: 1;
}

.hero-caro-replay:hover {
  background: rgba(193, 32, 121, .2);
  transform: rotate(-30deg);
}

@keyframes bubblePop {
  from {
    opacity: 0;
    transform: scale(.7) translateX(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@keyframes bubbleSpeak {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* ==========================================================================
   Proceso — timeline
   ========================================================================== */

.steps {
  background: linear-gradient(180deg, var(--blue-pale) 0%, #dce8fc 100%);
  padding: 64px 20px 72px;
  position: relative;
  overflow: hidden;
}

.steps::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 32, 121, .06), transparent 70%);
  pointer-events: none;
}

.steps-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 75px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--blue-light), var(--blue));
  border-radius: 999px;
  z-index: 0;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 118, 197, .12);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.2, .64, 1), box-shadow .35s ease;
}

@media (hover: hover) {
  .process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(26, 39, 68, .13);
  }

  .process-step:hover .process-img {
    transform: scale(1.06);
  }
}

.process-visual {
  width: 100%;
  height: 130px;
  border-radius: 18px;
  background: var(--blue-pale);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  position: relative;
  z-index: 2;
}

.process-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.34, 1.2, .64, 1);
}

.process-ghost {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 72px;
  font-weight: 900;
  color: rgba(74, 118, 197, .07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.process-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--magenta);
  background: rgba(193, 32, 121, .08);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}

.process-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.process-result {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  padding: 10px 12px;
  background: var(--blue-pale);
  border-radius: 12px;
  border-left: 3px solid var(--magenta);
  line-height: 1.4;
}

.process-result::before {
  content: "✓ ";
  color: var(--magenta);
}

.process-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.btn-process {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(193, 32, 121, .3);
}

.btn-process:hover {
  background: var(--magenta-dark);
  transform: translateY(-2px);
}

.btn-process-ghost {
  background: var(--white);
  color: var(--magenta);
  border: 2px solid rgba(193, 32, 121, .35);
  box-shadow: none;
}

.btn-process-ghost:hover {
  border-color: var(--magenta);
  background: rgba(255, 255, 255, .9);
  transform: translateY(-2px);
}

/* ==========================================================================
   Destacados
   ========================================================================== */

.featured {
  padding: 64px 20px;
  background: var(--white);
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 20px 28px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--magenta);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.2, .64, 1), box-shadow .35s ease;
}

@media (hover: hover) {
  .feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(26, 39, 68, .13);
  }

  .feat-card:hover .feat-img {
    transform: scale(1.07);
  }
}

.feat-visual {
  width: 100%;
  height: 130px;
  border-radius: 18px;
  background: var(--blue-pale);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  flex-shrink: 0;
}

.feat-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.34, 1.2, .64, 1);
}

.feat-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.feat-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.feat-card .btn {
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 14px;
  background: var(--magenta);
  color: var(--white);
}

.feat-card .btn:hover {
  background: var(--magenta-dark);
}

@media (max-width: 600px) {
  .feat-visual {
    height: 110px;
  }

  .feat-card {
    padding: 16px 16px 24px;
  }
}

/* ==========================================================================
   Servicios
   ========================================================================== */

.services {
  padding: 64px 20px 80px;
  background: var(--white);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.search-wrap {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.search-wrap input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border: 2px solid rgba(74, 118, 197, .2);
  border-radius: 999px;
  font-size: 15px;
  font-family: inherit;
  transition: .2s;
  background: var(--blue-pale);
}

.search-wrap input:focus {
  outline: none;
  border-color: var(--magenta);
  background: var(--white);
}

.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid rgba(74, 118, 197, .2);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--blue-light);
  color: var(--blue);
}

.filter-btn.active {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

.services-count {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 2px solid rgba(74, 118, 197, .12);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--blue));
  opacity: 0;
  transition: .25s;
}

.svc-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue-pale);
  display: grid;
  place-items: center;
  font-size: 26px;
}

.svc-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--magenta);
}

.svc-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  line-height: 1.5;
}

.svc-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
}

.svc-card.hidden {
  display: none;
}

/* ==========================================================================
   Confianza
   ========================================================================== */

.trust {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 64px 20px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trust .section-label {
  color: rgba(255, 255, 255, .85);
}

.trust .section-title {
  color: var(--white);
}

.trust .section-sub {
  color: rgba(255, 255, 255, .88);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
}

.trust-item div {
  font-size: 36px;
  margin-bottom: 12px;
}

.trust-item b {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.trust-item span {
  font-size: 13px;
  opacity: .9;
  line-height: 1.4;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.trust-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
}

/* ==========================================================================
   Retos que resolvemos
   ========================================================================== */

.challenges {
  padding: 64px 20px;
  background: var(--white);
}

.challenges-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.challenges-grid,
.retos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@keyframes retoFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes retoShine {
  from { left: -80%; }
  to { left: 120%; }
}

.challenge-card,
.reto-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 118, 197, .1);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.34, 1.2, .64, 1), box-shadow .35s ease;
  animation: retoFadeUp .65s cubic-bezier(.22, 1, .36, 1) both;
}

.reto-card:nth-child(1) { animation-delay: .05s; }
.reto-card:nth-child(2) { animation-delay: .12s; }
.reto-card:nth-child(3) { animation-delay: .19s; }
.reto-card:nth-child(4) { animation-delay: .26s; }
.reto-card:nth-child(5) { animation-delay: .33s; }
.reto-card:nth-child(6) { animation-delay: .4s; }

.reto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, .45) 50%,
    transparent 65%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.reto-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--magenta), var(--blue-light), var(--blue));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 3;
}

@media (hover: hover) {
  .reto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(26, 39, 68, .14), 0 4px 16px rgba(193, 32, 121, .08);
  }

  .reto-card:hover::after {
    opacity: 1;
  }

  .reto-card:hover::before {
    opacity: 1;
    animation: retoShine .85s ease forwards;
  }

  .reto-card:hover .reto-img {
    transform: scale(1.08) translateY(-6px);
  }
}

.challenge-icon,
.reto-icon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 140px;
  border-radius: 16px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 12px;
  transition: background .35s ease;
}

@media (hover: hover) {
  .reto-card:hover .reto-icon {
    background: linear-gradient(135deg, rgba(232, 240, 254, 1), rgba(193, 32, 121, .06));
  }
}

.challenge-icon img,
.reto-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.34, 1.2, .64, 1);
  will-change: transform;
}

.challenge-card h3,
.reto-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.challenge-card p,
.reto-card p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
  .reto-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reto-card::before {
    display: none;
  }

  .reto-img {
    transition: none;
  }
}

.challenges-closing {
  margin-top: 40px;
  padding: 24px 28px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(135deg, rgba(193, 32, 121, .06), rgba(74, 118, 197, .08));
  border-radius: var(--radius);
  border-left: 4px solid var(--magenta);
}

/* ==========================================================================
   Soluciones principales
   ========================================================================== */

.solutions {
  padding: 64px 20px;
  background: var(--blue-pale);
}

.solutions-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 20px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 118, 197, .12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.2, .64, 1), box-shadow .35s ease;
}

@media (hover: hover) {
  .solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(26, 39, 68, .13), 0 4px 14px rgba(193, 32, 121, .07);
  }

  .solution-card:hover .solution-img {
    transform: scale(1.07);
  }
}

.solution-card--wide {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.solution-visual {
  width: 100%;
  height: 150px;
  border-radius: 18px;
  background: var(--blue-pale);
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  flex-shrink: 0;
}

.solution-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.34, 1.2, .64, 1);
}

.solution-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solution-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.solution-content > p:not(.solution-tags) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.solution-tags {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.btn-solution {
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 14px;
  background: var(--magenta);
  color: var(--white);
}

.btn-solution:hover {
  background: var(--magenta-dark);
}

@media (max-width: 600px) {
  .solution-visual {
    height: 120px;
    padding: 10px 12px;
    margin-bottom: 16px;
  }

  .solution-card {
    padding: 16px 16px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-card,
  .solution-img {
    transition: none;
  }
}

/* ==========================================================================
   Equipos de cómputo
   ========================================================================== */

.equipment {
  padding: 64px 20px;
  background: var(--white);
}

.equipment-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.equipment-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--magenta);
  margin-top: -24px;
  margin-bottom: 32px;
  max-width: 720px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.equipment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 118, 197, .1);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

.equipment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26, 39, 68, .1);
}

.equipment-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.equipment-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text);
}

.equipment-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.equipment-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--magenta) 0%, #6b2d8a 50%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(193, 32, 121, .25);
}

.equipment-highlight h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.equipment-highlight p {
  font-size: 15px;
  line-height: 1.6;
  opacity: .92;
  max-width: 640px;
}

.equipment-approach {
  margin-top: 14px;
  font-size: 14px;
  opacity: .95;
}

.equipment-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.equipment-actions .btn-process {
  white-space: nowrap;
}

.btn-whatsapp-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .6);
  padding: 14px 24px;
}

.btn-whatsapp-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

/* ==========================================================================
   Casos de uso
   ========================================================================== */

.use-cases {
  padding: 64px 20px;
  background: var(--blue-pale);
}

.use-cases-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.use-cases-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.use-case-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26, 39, 68, .06);
  border: 1px solid rgba(74, 118, 197, .1);
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  transition: transform .2s, box-shadow .2s;
}

.use-case-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.use-case-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.use-cases-cta {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.use-cases-cta p {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

/* ==========================================================================
   WhatsApp
   ========================================================================== */

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.btn-whatsapp::before {
  content: "💬";
  margin-right: 4px;
}

/* ==========================================================================
   Contacto
   ========================================================================== */

.contact {
  padding: 64px 20px 80px;
  background: var(--white);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-inner--solo {
  grid-template-columns: 1fr;
  max-width: 560px;
  text-align: center;
}

.contact-inner--solo .contact-links {
  align-items: center;
}

.contact-inner--solo .btn-whatsapp {
  margin-left: auto;
  margin-right: auto;
}

.contact-info h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--blue-pale);
  border-radius: 16px;
  transition: .2s;
  border: 2px solid transparent;
}

.contact-link:hover {
  border-color: var(--blue-light);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-link--note {
  cursor: default;
}

.contact-link--note:hover {
  border-color: transparent;
  background: var(--blue-pale);
  box-shadow: none;
}

.contact-link span:first-child {
  font-size: 28px;
}

.contact-link b {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.contact-link small {
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  background: var(--blue-pale);
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid rgba(74, 118, 197, .15);
}

.contact-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(74, 118, 197, .2);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  transition: .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--magenta);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  background: var(--magenta);
  color: var(--white);
  margin-top: 8px;
}

.contact-form .btn:hover {
  background: var(--magenta-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--text);
  color: rgba(255, 255, 255, .8);
  padding: 32px 20px;
  text-align: center;
  font-size: 14px;
}

.footer b {
  color: var(--white);
}

.footer a {
  color: var(--blue-light);
  font-weight: 600;
}

.footer-links {
  margin-top: 8px;
}

.footer-copy {
  margin-top: 12px;
  opacity: .7;
  font-size: 13px;
}

.footer-credit {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  opacity: .65;
}

.footer-credit a {
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .25);
  text-underline-offset: 2px;
  transition: color .2s, text-decoration-color .2s;
}

.footer-credit a:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, .5);
}

/* ==========================================================================
   Modal
   ========================================================================== */

.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(26, 39, 68, .6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s;
}

.modal-bg.show {
  display: flex;
  opacity: 1;
}

.modal {
  width: min(560px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
  transform: scale(.95);
  transition: transform .25s;
}

.modal-bg.show .modal {
  transform: scale(1);
}

.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.modal-top h2 {
  font-size: 24px;
  line-height: 1.25;
  padding-right: 8px;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--blue-pale);
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: .2s;
}

.modal-close:hover {
  background: var(--magenta);
  color: var(--white);
}

.modal-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.modal-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--magenta);
  margin-bottom: 8px;
}

.modal .btn {
  background: var(--magenta);
  color: var(--white);
}

/* ==========================================================================
   Toast
   ========================================================================== */

/* ==========================================================================
   Botón volver arriba
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 150;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--blue));
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(193, 32, 121, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, box-shadow .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 10px 28px rgba(193, 32, 121, .45);
  transform: translateY(-2px);
}

.back-to-top.is-visible:hover {
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  }
  50% {
    transform: scale(1.14);
    box-shadow: 0 12px 36px rgba(37, 211, 102, .6);
  }
}

.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.14);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .6);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 300;
  opacity: 0;
  transition: .35s;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .hero-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    margin-bottom: 12px;
    gap: 16px;
  }

  .hero-spotlight {
    width: min(300px, 82vw);
    height: min(340px, 78vw);
  }

  .hero-caro-bubble {
    width: 100%;
    max-width: 340px;
    transform: none;
  }

  .hero-caro-bubble-inner {
    border-radius: 22px 22px 6px 22px;
  }

  .hero-caro-bubble-inner::before {
    left: 28px;
    bottom: auto;
    top: -12px;
    width: 16px;
    height: 16px;
  }

  .hero-caro-bubble-inner::after {
    left: 18px;
    bottom: auto;
    top: -22px;
    width: 9px;
    height: 9px;
  }

  .hero-caro-replay {
    opacity: 1;
  }

  .hero-inner {
    align-items: center;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .challenges-grid,
  .retos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card--wide {
    grid-column: auto;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-highlight {
    flex-direction: column;
    text-align: center;
  }

  .equipment-actions {
    width: 100%;
  }

  .equipment-actions .btn {
    width: 100%;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 16px 16px 20px;
    margin-bottom: 16px;
  }

  .process-visual {
    height: 110px;
    margin-bottom: 14px;
  }

  .process-ghost {
    display: none;
  }

  .process-cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-cta .btn {
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .featured-grid,
  .challenges-grid,
  .retos-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    flex-shrink: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
