:root {
  --brand-900: #0f4271;
  --brand-800: #124f88;
  --brand-700: #1661a6;
  --accent-600: #ff5200;
  --accent-700: #e54a00;
  --ink-900: #0b1220;
  --ink-700: #26344d;
  --ink-500: #5d6b85;
  --surface-0: #ffffff;
  --surface-1: #f6f8fb;
  --surface-2: rgba(224, 224, 224, 0.88);
  --border: rgba(15, 66, 113, 0.14);
  --shadow-sm: 0 10px 25px rgba(11, 18, 32, 0.08);
  --shadow-md: 0 18px 45px rgba(11, 18, 32, 0.14);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --container: 1120px;
  --gutter: 22px;
  --focus: 0 0 0 3px rgba(22, 97, 166, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans",
    "Liberation Sans", sans-serif;
  color: var(--ink-900);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 45%, #ffffff 100%);
}
/* Definimos la imagen y su contenedor */
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

#hero-carousel > .container,
#customer-reviews > .container,
#products > .container,
#blog-carousel > .container,
#clients > .container,
#features > .container {
  width: 84%;
  max-width: none;
}

#why-us > .container {
  width: min(1600px, calc(100% - clamp(24px, 4vw, 64px)));
  max-width: none;
  background: transparent;
}

/* =========================
   4) FEATURES GRID
   ========================= */
#features {
  --primario: #004174;
  --accion: #FF6100;
  --resalte: #00FFFF;
  --fondo-light: #E1E0E0;
  --dark: #00222E;
  margin: 0;
  padding: 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.features-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.features-video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
}

.features-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 34, 46, 0.7) 0%, rgba(0, 65, 116, 0.4) 100%);
  z-index: 0;
}

.features-main-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(510px, 35vw, 720px); /*altura del contendor*/
  padding: 30px 20px;
}

.features-stats-container {
  display: flex;
  gap: clamp(28px, 3vw, 48px);
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
}

.features-stat-card {
  width: clamp(200px, 16vw, 236px);
  height: clamp(200px, 16vw, 236px);
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  border: 4px solid transparent;
}

.features-stat-card::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 2px dashed var(--resalte);
  opacity: 0.4;
  animation: features-rotate 20s linear infinite;
}

@keyframes features-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.features-stat-card:hover {
  transform: scale(1.05);
  border-color: var(--resalte);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.features-number {
  font-size: clamp(2.6rem, 3.4vw, 4rem);
  font-weight: 900;
  color: var(--primario);
  margin: 0;
  line-height: 1;
}

.features-label {
  font-size: clamp(0.68rem, 0.82vw, 0.95rem);
  color: #444;
  margin-top: 8px;
  max-width: 150px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-stat-card::after {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--accion);
  margin-top: 10px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.features-stat-card:hover::after {
  width: 52px;
}

@media (max-width: 1024px) {
  .features-main-content {
    min-height: 330px;
    padding: 30px 20px;
  }
  .features-stats-container {
    gap: 24px;
  }
  .features-stat-card {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .features-main-content {
    min-height: auto;
    padding: 48px 16px;
  }
  .features-stats-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 18px;
    width: min(100%, 420px);
  }
  .features-stat-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    min-width: 0;
  }
  .features-number {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .features-label {
    max-width: 120px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
}

.section-title-wu {
  margin: 0;
  font-size: clamp(22px, 1.9vw, 32px);
  letter-spacing: 0;
  color: #ffffff;
}

.section-head {
  margin: 0 0 16px;
}

.section-title {
  margin: 0;
  font-size: clamp(22px, 1.9vw, 32px);
  letter-spacing: 0;
  color: #0f4271;
}


.section-subtitle {
  margin: 8px 0 0;
  color: var(--ink-500);
  max-width: 70ch;
}

.section-subtitle-wu {
  margin: 8px 0 0;
  color: #ebeaeae5;
  max-width: 70ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease,
    color 160ms ease;
  user-select: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn-primary {
  background: var(--accent-600);
  color: #fff;
  box-shadow: 0 12px 22px rgba(255, 82, 0, 0.22);
}

.btn-primary:hover {
  background: var(--accent-700);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255, 82, 0, 0.26);
}

.btn-full {
  width: 100%;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-0);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  display: grid;
  place-items: center;
  color: var(--brand-900);
  font-size: 22px;
  line-height: 1;
}

.icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.icon-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2vw, 32px);
  bottom: clamp(18px, 2vw, 32px);
  z-index: 1000;
  width: clamp(56px, 4.4vw, 70px);
  height: clamp(56px, 4.4vw, 70px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(11, 18, 32, 0.28);
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

.whatsapp-float:hover {
  background: #1fbd5a;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(11, 18, 32, 0.32);
}

.whatsapp-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.3), 0 16px 34px rgba(11, 18, 32, 0.28);
}

.whatsapp-float svg {
  width: 62%;
  height: 62%;
}

/* Shared reveal animation (JS-triggered via IntersectionObserver) */
[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   0) WELCOME SECTION
   ========================= */
.welcome-section {
  position: relative;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.welcome-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: clamp(42px, 8vw, 76px);
  background: #ffffff;
  clip-path: polygon(40% 100%, 48.5% 0, 100% 0, 100% 100%);
  pointer-events: none;
}

.site-header.is-homepage + main .welcome-section {
  margin-top: -96px;
  height: 100svh;
  min-height: 720px;
  padding-top: 96px;
}

.welcome-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.welcome-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.05);
}

.welcome-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 21, 44, 0.8);
  z-index: 1;
}

.welcome-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(clamp(400px, 34vw, 560px), 0.82fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  width: min(1600px, calc(100% - clamp(32px, 6vw, 96px)));
  transform: translateY(clamp(-48px, -4svh, -28px));
}

.welcome-copy {
  grid-column: 1;
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: 0;
  text-align: left;
}

.welcome-subtitle {
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #00f7ff;
  opacity: 0.95;
}

.welcome-slogan {
  font-size: clamp(10px, 1.4vw, 18px);
  color: #ff5200;
  font-weight: 700;
  line-height: 1.3;
}

.welcome-title {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 700;
  line-height: 0.95;
  color: #ffffff;
  text-transform: uppercase;
}

.welcome-title span {
  color: #ffffff;
}

.welcome-title {
  letter-spacing: 0;
  color: #ff6100;
}

.welcome-title span {
  color: #ffffff;
}

.welcome-description {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.8;
}

.commercial-form--welcome {
  grid-column: 2;
  gap: 12px;
  align-self: center;
  justify-self: end;
  width: min(100%, clamp(400px, 34vw, 560px));
  padding: clamp(22px, 2.5vw, 34px);
  border: 0;
  border-radius: 20px;
  background: rgba(26, 58, 92, 0.52);
  box-shadow: none;
}

.commercial-form--welcome .commercial-form__head h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.commercial-form--welcome .commercial-form__head p,
.commercial-form--welcome label,
.commercial-form--welcome legend,
.commercial-form--welcome .commercial-option span {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

.commercial-form--welcome .commercial-form__row {
  gap: 12px;
}

.commercial-form--welcome input[type="text"],
.commercial-form--welcome input[type="email"],
.commercial-form--welcome input[type="tel"] {
  min-height: 42px;
  margin-top: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.commercial-form--welcome .commercial-form__options {
  gap: 8px;
}

.commercial-form--welcome .commercial-form__options--reasons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commercial-form--welcome .commercial-form__options--units {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commercial-form--welcome .commercial-option span {
  min-height: 34px;
  font-size: 13px;
}

.commercial-form--welcome .commercial-option--unit span {
  min-height: 46px;
  color: var(--accent-600);
  text-shadow: none;
}

.commercial-form--welcome .commercial-form__submit {
  min-height: 52px;
  font-size: clamp(17px, 1.3vw, 21px);
  box-shadow: 0 12px 30px rgba(255, 82, 0, 0.34);
}

@media (max-width: 900px) {
  .welcome-content {
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
    padding: 34px 0;
    transform: none;
  }

  .welcome-copy {
    max-width: none;
  }

  .welcome-title {
    max-width: 11ch;
    font-size: clamp(44px, 11vw, 76px);
  }

  .welcome-description {
    font-size: 16px;
  }

  .commercial-form--welcome {
    grid-column: 1;
    width: 100%;
    justify-self: stretch;
    transform: none;
  }
}

@media (max-width: 768px) {
  .site-header.is-homepage + main .welcome-section {
    margin-top: -70px;
    height: auto;
    min-height: 100svh;
    padding-top: 70px;
  }
}

@media (max-width: 560px) {
  .welcome-section {
    height: auto;
    min-height: 100svh;
  }

  .welcome-copy {
    gap: 14px;
  }

  .commercial-form--welcome {
    padding: 20px 16px;
  }

  .commercial-form--welcome .commercial-form__row,
  .commercial-form--welcome .commercial-form__options--reasons,
  .commercial-form--welcome .commercial-form__options--units {
    grid-template-columns: 1fr;
  }

  .commercial-form--welcome .commercial-form__options--units {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   1) HERO CAROUSEL
   ========================= */
/* #hero-carousel {
  padding: 28px 0 10px;
}

#hero-carousel .hero-shell {
  border: 1px solid var(--border);
  background: radial-gradient(1200px 500px at 20% 0%, rgba(22, 97, 166, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(15, 66, 113, 0.04), rgba(15, 66, 113, 0.02));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

#hero-carousel .hero-slider {
  position: relative;
}

#hero-carousel .hero-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

#hero-carousel .hero-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 22px;
  padding: 34px 28px 30px;
  position: relative;
}

#hero-carousel .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  pointer-events: none;
}

#hero-carousel .hero-left,
#hero-carousel .hero-right {
  position: relative;
  z-index: 1;
}

#hero-carousel .hero-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand-800);
  font-size: 12px;
  opacity: 0.9;
}

#hero-carousel .hero-title {
  margin: 10px 0 0;
  font-size: clamp(34px, 3.2vw, 54px);
  letter-spacing: 0;
  color: var(--brand-900);
  line-height: 1.02;
}

#hero-carousel .hero-subtitle {
  margin: 8px 0 0;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-700);
  font-weight: 700;
}

#hero-carousel .hero-desc {
  margin: 14px 0 0;
  color: var(--ink-500);
  max-width: 62ch;
}

#hero-carousel .hero-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  color: var(--ink-700);
}

#hero-carousel .hero-bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

#hero-carousel .hero-bullets li::before {
  content: "✔";
  display: flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  margin-top: 2px;

  border-radius: 50%;

  color: #00ffff;
  font-size: 11px;
  font-weight: 700;

  background: rgba(0,255,255,0.12);
  border: 1px solid rgba(0,255,255,0.28);

  box-shadow: inset 0 0 0 2px rgba(0,255,255,0.08);
  
}

#hero-carousel .hero-cta-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

#hero-carousel .hero-price {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: baseline;
  gap: 6px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(15, 66, 113, 0.08);
  border: 1px solid rgba(15, 66, 113, 0.18);
}

#hero-carousel .hero-price-label {
  font-weight: 800;
  color: var(--brand-900);
  font-size: 12px;
  text-transform: uppercase;
}

#hero-carousel .hero-price-value {
  font-weight: 900;
  color: var(--brand-900);
  font-size: 20px;
}

#hero-carousel .hero-price-unit {
  font-weight: 800;
  color: var(--ink-500);
  font-size: 13px;
}

#hero-carousel .hero-right {
  display: grid;
  place-items: center;
}

#hero-carousel .hero-image {
  width: min(420px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(11, 18, 32, 0.22));
  transform: translateY(0);
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 0.96;
}

/* Fade + slide for slide content when active changes (JS toggles .is-active) 
#hero-carousel .hero-slide {
  opacity: 0.35;
  transition: opacity 520ms ease;
}

#hero-carousel .hero-slide.is-active {
  opacity: 1;
}

#hero-carousel .hero-slide.is-active .hero-image {
  transform: translateY(-3px);
}

#hero-carousel .hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

#hero-carousel .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 66, 113, 0.35);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, width 220ms ease;
}

#hero-carousel .dot:hover {
  transform: scale(1.05);
}

#hero-carousel .dot.is-active {
  width: 30px;
  background: rgba(255, 82, 0, 0.9);
  border-color: rgba(255, 82, 0, 0.7);
}

@media (max-width: 880px) {
  #hero-carousel .hero-slide {
    grid-template-columns: 1fr;
    padding: 26px 18px 40px;
  }

  #hero-carousel .hero-right {
    order: -1;
  }

  #hero-carousel .hero-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  }
} */
/* =========================
    1) SOLUTIONS SCROLL
   ========================= */
#solutions-scroll {
  background: #ffffff;
  margin-top: -1px;
  height: 500vh; /* controla cuánto dura la animación */
  position: relative;
}

.solutions-sticky {
  background: #ffffff;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.solutions-sticky img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 24px;
  transform: translateY(clamp(-260px, -29vh, -180px));
}

.solutions-text h2 {
  margin: 0;
  color: #1a3a5c;
  font-size: clamp(28px, 4.2vw, 60px);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section-divider {
  display: none;
}

.solutions-text p {
  margin: clamp(8px, 1vw, 14px) 0 0;
  color: #ffffff;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.36);
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

.solutions-text p.is-changing {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
}

/* =========================
   1.5) SOLUTIONS SCROLL - MOBILE ALTERNATIVE
   ========================= */ 
#solutions-alternative {
  display: none;
  padding: 48px 0;
  background: #f7f9fc;
} 

@media (max-width: 880px) {
  #solutions-scroll {
    display: none;
  }

  #solutions-alternative {
    display: block;
  }
}

/* =========================
  2) VALUES 4S
========================= */
#value-4s {
  min-height: clamp(520px, 48vw, 720px);
  display: flex;
  align-items: center;
  padding: clamp(34px, 4.5vw, 66px) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

#value-4s::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("images/Radar_degradado.svg") center / min(780px, 62vw) auto no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.solutions-divider{
  width: 100%;
  height: 8px;
  background: #ff4200;
  border: none;
}

.value-4s-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(440px, 40vw, 640px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
  padding: 0 clamp(56px, 9vw, 150px);
}

.value-4s-left {
  position: relative;
  display: grid;
  place-items: center start;
  justify-self: stretch;
  width: 100%;
  min-height: 100%;
  min-width: 0;
  overflow: visible;
}

.value-4s-radar {
  display: none;
}

.value-4s-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  max-width: 100%;
  font-family: "Roboto", sans-serif;
  line-height: 1.15;
  text-align: center;
}

.value-4s-title-main {
  display: flex;
  justify-content: center;
  gap: 0.662em;
  color: #1a3a5c;
  font-size: clamp(44px, 5.2vw, 86px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.value-4s-title-sub {
  display: block;
  margin-top: clamp(0px, 0.25vw, 5px);
  color: #2f5f8a;
  font-size: clamp(28px, 3.3vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.027em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Derecha */
.value-4s-right {
  position: relative;
  width: 100%;
  aspect-ratio: 650 / 360; /* ajustable según tu SVG */
}

.value-4s-right {
  max-width: 920px;
  justify-self: end;
}

.value-4s-boxes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Texto sobre los recuadros */
.value-text {
  position: absolute;
  z-index: 2;
  width: 24%;
  color: #1a3a5c;
  font-family: "Roboto", sans-serif;
  text-align: center;
  line-height: 1.08;
  transform: translate(-50%, -50%);
}

.value-text strong,
.value-text span {
  display: block;
}

.value-text strong {
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 34px);
}

.value-text span {
  margin-top: 6px;
  font-weight: 400;
  font-size: clamp(18px, 2.1vw, 32px);
}

/* Posiciones sobre el SVG derecho */
.text-soporte {
  top: 25%;
  left: 19%;
}

.text-socio {
  top: 25%;
  left: 63%;
}

.text-soluciones {
  top: 68%;
  left: 36%;
}

.text-sistemas {
  top: 68%;
  left: 79%;
}

#value-4s .value-4s-right {
  position: relative;
  width: 100%;
  min-height: clamp(430px, 38vw, 620px);
  max-width: 760px;
  justify-self: end;
  aspect-ratio: auto;
}

#value-4s .value-4s-boxes {
  display: none;
}

#value-4s .value-text {
  width: clamp(210px, 16vw, 280px);
  min-height: clamp(84px, 7vw, 112px);
  display: grid;
  place-items: center;
  padding: 18px 22px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(26, 58, 92, 0.16);
  line-height: 1.02;
}

#value-4s .value-text strong {
  font-size: clamp(24px, 1.9vw, 36px);
}

#value-4s .value-text span {
  margin-top: 0;
  font-size: clamp(24px, 1.9vw, 36px);
}

#value-4s .text-socio {
  top: 13%;
  left: 52%;
}

#value-4s .text-sistemas {
  top: 36%;
  left: 78%;
}

#value-4s .text-soluciones {
  top: 62%;
  left: 78%;
}

#value-4s .text-soporte {
  top: 84%;
  left: 53%;
}

/* Responsive */
@media (max-width: 860px) {
  #value-4s {
    min-height: auto;
    padding: 56px 0;
  }

  #value-4s::before {
    background-size: min(620px, 96vw) auto;
  }

  .value-4s-grid {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    gap: 28px;
    padding: 0 24px;
  }

  .value-4s-left {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: auto;
  }

  .value-4s-right {
    min-height: auto;
    max-width: 100%;
    justify-self: center;
    display: grid;
    gap: 16px;
    width: min(100%, 520px);
  }

  #value-4s .value-text {
    position: static;
    transform: none;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .value-4s-grid {
    width: 100%;
  }

  .value-4s-title-main {
    gap: 0.36em;
    font-size: clamp(28px, 11vw, 44px);
  }

  .value-4s-title-sub {
    font-size: clamp(18px, 7vw, 28px);
    white-space: normal;
  }

  .value-text strong {
    font-size: clamp(13px, 4vw, 18px);
  }

  .value-text span {
    font-size: clamp(13px, 4vw, 18px);
  }
}

/* =========================
   2) BLOG CAROUSEL
   ========================= */
#blog-carousel {
  padding: clamp(21px, calc(2.5vw + 3px), 43px) 0 clamp(76px, 8vw, 120px);
  background-color: #ffffff;
  background-image: url("images/L%C3%ADnea_icono_naranja.svg");
  background-repeat: no-repeat;
  background-position: right clamp(18px, 4vw, 70px) center;
  background-size: auto clamp(360px, 54vw, 620px);
}

#blog-carousel .blog-section-title {
  color: #1a3a5c;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.399em;
  text-transform: uppercase;
}

#blog-carousel .blog-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(18px, 2vw, 30px);
  align-items: center;
  overflow: hidden;
  margin-top: clamp(28px, 3vw, 46px);
}

#blog-carousel .blog-rail {
  --blog-gap: clamp(18px, 1.6vw, 30px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--blog-gap) * 2)) / 3);
  gap: var(--blog-gap);
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 26px 0 38px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
}

#blog-carousel .blog-rail::-webkit-scrollbar {
  display: none;
}

#blog-carousel .blog-rail.is-grabbing {
  cursor: grabbing;
}

#blog-carousel .blog-rail:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 14px;
}

#blog-carousel .blog-card {
  position: relative;
  display: flex;
  justify-self: center;
  width: 96%;
  min-height: 330px;
  flex-direction: column;
  padding-top: 160px;
  background: var(--surface-0);
  border: 0;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 42px rgba(26, 58, 92, 0.12);
  overflow: visible;
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

#blog-carousel .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 54px rgba(26, 58, 92, 0.16);
}

#blog-carousel .blog-media {
  position: absolute;
  top: -18px;
  left: 50%;
  width: calc(108% + 2px);
  height: 160px;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 8px;
  background: #e8eef3;
}

#blog-carousel .blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#blog-carousel .blog-body {
  flex: 1;
  padding: 18px 22px 18px;
  display: grid;
  gap: 12px;
}

#blog-carousel .blog-category {
  display: none;
}

#blog-carousel .blog-title {
  margin: 0;
  color: #1a3a5c;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.18;
  font-weight: 700;
}

#blog-carousel .blog-desc {
  margin: 0;
  color: #000000;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.3;
}

#blog-carousel .blog-date {
  align-self: end;
  color: #2b5f91;
  font-weight: 400;
  font-size: clamp(12px, 0.95vw, 14px);
}

#blog-carousel .blog-status {
  min-width: 260px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--ink-500);
  background: var(--surface-0);
}

@media (max-width: 720px) {
  #hero-carousel > .container,
  #customer-reviews > .container,
  #products > .container,
  #blog-carousel > .container,
  #clients > .container,
  #features > .container,
  #why-us > .container {
    width: calc(100% - (var(--gutter) * 2));
  }

  #blog-carousel .blog-shell {
    grid-template-columns: 1fr;
  }

  #blog-carousel .blog-rail {
    grid-auto-columns: 100%;
  }

  #blog-carousel .blog-card {
    width: min(94%, 440px);
  }

  #blog-carousel .blog-media {
    width: calc(108% + 2px);
  }

  #blog-carousel .blog-section-title {
    letter-spacing: 0.18em;
  }

  #blog-carousel .icon-btn {
    display: none;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  #hero-carousel > .container,
  #customer-reviews > .container,
  #products > .container,
  #blog-carousel > .container,
  #clients > .container,
  #features > .container,
  #why-us > .container {
    width: calc(100% - (var(--gutter) * 2));
  }

  #blog-carousel .blog-rail {
    grid-auto-columns: calc((100% - var(--blog-gap)) / 2);
  }

  #blog-carousel .blog-card {
    width: 94%;
  }
}

/* =========================
   3) WHY US
   ========================= */

#why-us {
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 20, 38, 0.95) 0%, rgba(0, 33, 61, 0.72) 30%, rgba(0, 65, 116, 0) 64%),
    radial-gradient(circle at 100% 100%, rgba(0, 92, 158, 0.78) 0%, rgba(0, 73, 128, 0.48) 38%, rgba(0, 65, 116, 0) 72%),
    #004174;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(36px, 6svh, 72px) 0;
}

#why-us .why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 3.5vw, 64px);
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: 0;
}

#why-us .why-left,
#why-us .why-right {
  min-width: 0;
}

#why-us .why-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

#why-us .why-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 22px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.904);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

#why-us .why-title {
  margin: 0;
  font-size: 20px;
  color: var(--ink-900);
}

#why-us .why-desc {
  margin: 6px 0 0;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.45;
}

#why-us .why-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(22, 97, 166, 0.1);
  border: 1px solid rgba(22, 97, 166, 0.18);
}

#why-us .why-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--surface-1);
  aspect-ratio: 16 / 10;
  height: min(62svh, 620px);
  min-height: clamp(360px, 58svh, 560px);
  backdrop-filter: blur(10px);
}

#why-us .why-media img,
#why-us .why-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  align-items: center;
}

.why-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.why-right.active {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 880px) {
  #why-us {
    min-height: auto;
    padding: clamp(40px, 8svh, 64px) 0;
  }

  #why-us .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #why-us .why-media {
    aspect-ratio: 16 / 9;
    height: clamp(240px, 45svh, 380px);
    min-height: 0;
  }

  .why-right {
    transform: translateY(24px);
  }
}

/* =========================
   4) BENEFITS
   ========================= */
#benefits {
  background: #ffffff;
  padding: clamp(54px, 6vw, 82px) 0 clamp(70px, 7vw, 96px);
  position: relative;
  overflow: visible;
}

#benefits::before {
  content: none;
}

#benefits > .container {
  position: relative;
  z-index: 1;
  padding: 5px 0;
  width: min(1500px, calc(100% - clamp(32px, 6vw, 96px)));
  max-width: none;
}

.benefits-header {
  max-width: none;
  margin: 0 0 clamp(48px, 5vw, 72px);
  text-align: center;
}

.benefits-header h2,
.benefits-header h4 {
  margin: 0;
  color: #1a3a5c;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(26, 58, 92, 0.22);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 340px));
  justify-content: center;
  gap: clamp(28px, 3vw, 56px);
  align-items: stretch;
}

.benefit-card {
  position: relative;
  display: grid;
  align-content: start;
  width: min(100%, 340px);
  min-height: clamp(390px, 28vw, 500px);
  padding: clamp(168px, 12vw, 220px) clamp(22px, 2vw, 32px) clamp(28px, 2.4vw, 40px);
  overflow: visible;
  border: 0;
  border-radius: 0 0 18px 18px;
  background: #ffffff;
  box-shadow: 0 26px 45px rgba(15, 66, 113, 0.16);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 56px rgba(15, 66, 113, 0.19);
}

.benefit-image {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 112%;
  height: clamp(170px, 11.8vw, 220px);
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 18px 18px 48px 18px;
  background: transparent;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}

.benefit-card:hover .benefit-image img {
  transform: scale(1.05);
}

.benefit-content {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.benefit-content h3 {
  margin: 0;
  color: #1a3a5c;
  font-size: clamp(17px, 1.15vw, 22px);
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-content p {
  margin: clamp(12px, 1vw, 18px) 0 clamp(18px, 1.4vw, 26px);
  color: #000000;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.35;
}

.benefit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 42px;
  padding: 10px 26px;
  border-radius: 7px;
  background: #ff5200;
  color: #ffffff;
  font-size: clamp(15px, 0.95vw, 17px);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.benefit-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-700);
  box-shadow: 0 14px 28px rgba(255, 82, 0, 0.28);
}

@media (max-width: 1180px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(260px, 340px));
    justify-items: center;
    row-gap: 74px;
  }
}

@media (max-width: 720px) {
  #benefits {
    padding: 58px 0;
  }

  #benefits > .container {
    width: calc(100% - 32px);
  }

  .benefits-header {
    margin-bottom: 48px;
  }

  .benefits-label {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .benefits-header h2,
  .benefits-header h4 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.08;
  }

  .benefits-header p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 74px;
    justify-items: center;
  }

  .benefit-image {
    height: 170px;
  }

  .benefit-content h3 {
    font-size: 16px;
  }

  .benefit-btn {
    width: auto;
  }
}

/* =========================
   4) FEATURES GRID
   ========================= */
#features {
  padding: 0;
  background: var(--dark);
}

#features .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 18px 0;
}

#features .feature-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#features .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(22, 97, 166, 0.18);
  border-color: rgba(255, 82, 0, 0.38);
}

#features .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15, 66, 113, 0.1);
  border: 1px solid rgba(15, 66, 113, 0.16);
}

#features .feature-title {
  margin: 12px 0 0;
  font-size: 15px;
}

#features .feature-desc {
  margin: 8px 0 0;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  #features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  #features .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   5) CUSTOMER REVIEWS
   ========================= */
#customer-reviews {
  padding: clamp(64px, 8vw, 112px) 0 clamp(24px, 3vw, 48px);
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

#customer-reviews > .container {
  position: relative;
  z-index: 1;
}

#customer-reviews .section-head {
  margin: 0 0 clamp(58px, 6vw, 96px);
  text-align: center;
}

#customer-reviews .section-title {
  color: #1a3a5c;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

#customer-reviews .reviews-carousel {
  position: relative;
  min-height: clamp(360px, 30vw, 500px);
  display: grid;
  align-items: start;
}

#customer-reviews .reviews-carousel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(-118px, -8vw, -58px);
  z-index: 0;
  width: clamp(980px, 106vw, 1560px);
  aspect-ratio: 1024.5 / 422.25;
  background: url("images/Recuadros_Punto\ AC.svg") center / contain no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

#customer-reviews .reviews-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 8px 0 16px;
}

#customer-reviews .reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 4px;
  animation: reviews-scroll var(--reviews-speed, 42s) linear infinite;
  will-change: transform;
}

#customer-reviews .reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

#customer-reviews .review-card {
  width: clamp(330px, 31vw, 430px);
  min-height: 294px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 22px 18px;
  align-items: center;
  padding: clamp(28px, 2.6vw, 36px);
  border: 3px solid rgba(26, 58, 92, 0.13);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(26, 58, 92, 0.08);
  flex: 0 0 auto;
}

#customer-reviews .review-photo {
  grid-column: 1;
  grid-row: 1;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border: 1px solid rgba(120, 130, 138, 0.55);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

#customer-reviews .review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#customer-reviews .review-quote {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: #000000;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0;
  text-align: center;
  align-self: center;
}

#customer-reviews .review-author {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 4px;
  align-self: center;
  text-align: left;
}

#customer-reviews .review-name,
#customer-reviews .review-role {
  color: #2b5f91;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

#customer-reviews .review-role {
  font-weight: 400;
}

#customer-reviews .reviews-dots {
  display: none;
}

#customer-reviews .review-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 66, 113, 0.24);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

#customer-reviews .review-dot.is-active {
  transform: scale(1.35);
  background: #22d3ee;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--reviews-distance, -50%));
  }
}

@media (max-width: 680px) {
  #customer-reviews .review-card {
    width: min(82vw, 360px);
    grid-template-columns: 1fr;
  }

  #customer-reviews .review-photo,
  #customer-reviews .review-quote,
  #customer-reviews .review-author {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    text-align: center;
  }
}

/* =========================
   6) PRODUCTS (Interactive)
   ========================= */
#products {
  padding: 28px 0;
  background: url("images/fondo_blanco_frio.png") center / cover no-repeat;
  display: flex;
  align-items: center;
}

#products .products-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

#products .products-left {
  display: grid;
  gap: 14px;
}

#products .product-thumb {
  border: 1px solid var(--border);
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

#products .product-thumb:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

#products .product-thumb.is-active {
  border-color: rgba(255, 82, 0, 0.55);
  box-shadow: 0 20px 55px rgba(255, 82, 0, 0.14);
}

#products .product-thumb img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
}

#products .product-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: radial-gradient(900px 380px at 0% 0%, rgba(22, 97, 166, 0.16), transparent 58%),
    linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-md);
  padding: 18px 16px;
  position: sticky;
  top: 16px;
}

#products .product-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

#products .product-name {
  margin: 0;
  color: var(--brand-900);
  font-size: 20px;
}

#products .product-price {
  margin: 0;
  font-weight: 900;
  color: var(--ink-900);
}

#products .product-features {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
  color: var(--ink-700);
}

#products .product-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

#products .product-features li::before {
  content: "✔";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 6px;
  background: rgba(255, 82, 0, 0.12);
  border: 1px solid rgba(255, 82, 0, 0.24);
}

/* Smooth content change (JS toggles these classes) */
#products .product-card.is-switching {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

#products .product-card.is-ready {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
}

@media (max-width: 900px) {
  #products .products-grid {
    grid-template-columns: 1fr;
  }
  #products .product-card {
    position: relative;
    top: auto;
  }
}

/* Product layout refresh */
#products {
  padding: 48px 0 54px;
  background: #f7f9fc;
}

#products .products-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

#products .products-left {
  gap: 20px;
}

#products .product-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 2px solid #03dce8;
  border-radius: 14px;
  overflow: hidden;
  background: #dbe8ef;
}

#products .product-showcase img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

#products .product-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

#products .product-thumb {
  min-height: 168px;
  border: 1px solid rgba(3, 220, 232, 0.48);
  background: var(--surface-0);
  border-radius: 10px;
  box-shadow: none;
  cursor: pointer;
  padding: 22px 14px 18px;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--brand-900);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

#products .product-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
}

#products .product-thumb.is-active {
  border: 2px solid var(--accent-600);
  color: var(--accent-600);
  box-shadow: none;
}

#products .product-thumb-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0;
}

#products .product-thumb-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#products .product-thumb.is-active .product-thumb-check {
  opacity: 1;
}

#products .product-thumb-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

#products .product-thumb-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
}

#products .product-thumb-title {
  color: var(--brand-900);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

#products .product-card {
  position: static;
  top: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

#products .product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#products .product-kicker::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background:
    linear-gradient(45deg, transparent 38%, currentColor 38% 52%, transparent 52%),
    linear-gradient(-45deg, transparent 38%, currentColor 38% 52%, transparent 52%);
}

#products .product-card-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
}

#products .product-name {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

#products .product-price {
  color: var(--accent-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 2px solid var(--accent-600);
  border-radius: 999px;
  background: rgba(255, 82, 0, 0.08);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

#products .product-description {
  margin: 22px 0 0;
  color: var(--ink-500);
  font-size: 17px;
  line-height: 1.7;
  max-width: 58ch;
}

#products .product-features {
  margin: 28px 0 28px;
  gap: 14px;
  color: var(--brand-900);
  font-size: 16px;
}

#products .product-features li {
  grid-template-columns: 22px 1fr;
  gap: 12px;
}

#products .product-features li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 2px solid #03dce8;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, #03dce8 45% 56%, transparent 56%) 3px 7px / 7px 7px no-repeat,
    linear-gradient(45deg, transparent 43%, #03dce8 43% 57%, transparent 57%) 8px 5px / 8px 10px no-repeat;
}

#products .product-card .btn {
  min-width: 214px;
  min-height: 56px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  #products .products-grid {
    grid-template-columns: 1fr;
  }

  #products .product-selector {
    grid-template-columns: 1fr;
  }

  #products .product-thumb {
    min-height: 118px;
  }
}

@media (max-width: 560px) {
  #products {
    padding: 36px 0 42px;
  }

  #products .products-grid {
    gap: 24px;
  }

  #products .product-showcase img {
    aspect-ratio: 16 / 11;
  }

  #products .product-name {
    font-size: 30px;
  }
}

/* =========================
   7) COMMERCIAL CONTACT
   ========================= */
#commercial-contact {
  padding: clamp(54px, 7vw, 92px) 0;
  background: #ffffff;
}

#commercial-contact .container {
  width: min(1500px, calc(100% - clamp(28px, 5vw, 80px)));
}

.commercial-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.commercial-contact__copy {
  color: #081525;
}

.commercial-contact__eyebrow {
  margin: 0 0 10px;
  color: var(--accent-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commercial-contact__copy h2,
.commercial-form__head h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
  color: var(--brand-900);
  text-transform: uppercase;
}

.commercial-contact__benefits {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 18px 0 26px;
  padding: 0;
  color: #00b9c7;
  font-size: 15px;
  font-weight: 800;
}

.commercial-contact__benefits li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.commercial-contact__benefits li::before {
  content: "✓";
  color: var(--accent-600);
  font-size: 19px;
  line-height: 1;
}

.commercial-contact__text {
  display: grid;
  gap: 22px;
  max-width: 66ch;
}

.commercial-contact__text p {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.38;
  color: #101827;
}

.commercial-contact__text strong {
  color: var(--brand-900);
  font-weight: 900;
}

.commercial-form {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 4.2vw, 60px);
  border: 1px solid rgba(3, 220, 232, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 89, 150, 0.82), transparent 42%),
    linear-gradient(135deg, #002f55 0%, #004174 55%, #003764 100%);
  box-shadow: 0 28px 70px rgba(0, 47, 85, 0.26);
  color: #ffffff;
}

.commercial-form__head {
  margin-bottom: 2px;
}

.commercial-form__head h2 {
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 34px);
}

.commercial-form__head p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.commercial-form label,
.commercial-form__fieldset {
  min-width: 0;
}

.commercial-form label,
.commercial-form legend {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.commercial-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.commercial-form input[type="text"],
.commercial-form input[type="email"],
.commercial-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 18, 32, 0.2);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink-900);
  font: inherit;
  font-weight: 400;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.commercial-form input[type="text"]:focus,
.commercial-form input[type="email"]:focus,
.commercial-form input[type="tel"]:focus {
  outline: none;
  border-color: #03dce8;
  box-shadow: 0 0 0 3px rgba(3, 220, 232, 0.22), 0 10px 20px rgba(0, 0, 0, 0.28);
}

.commercial-form__fieldset {
  border: 0;
  margin: 4px 0 0;
  padding: 0;
}

.commercial-form__fieldset legend {
  margin-bottom: 12px;
}

.commercial-form__options {
  display: grid;
  gap: 12px;
}

.commercial-form__options--reasons {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 8px;
}

.commercial-form__options--units {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commercial-option {
  position: relative;
  display: block;
  cursor: pointer;
  font-weight: 600;
}

.commercial-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.commercial-option span {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: transparent;
  font-size: 14px;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease,
    box-shadow 160ms ease;
}

.commercial-option:not(.commercial-option--unit) span::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 5px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.24);
  color: var(--brand-900);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.commercial-option input:checked + span {
  background: transparent;
  box-shadow: none;
}

.commercial-option:not(.commercial-option--unit) input:checked + span::before {
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.4 8.2 13.6 15 6.4' fill='none' stroke='%230f4271' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 15px 15px no-repeat;
}

.commercial-option--unit span {
  justify-content: center;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 18, 32, 0.2);
  border-radius: 9px;
  background: #ffffff;
  color: var(--accent-600);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.26);
}

.commercial-option input:focus-visible + span {
  outline: none;
  box-shadow: 0 0 0 3px rgba(3, 220, 232, 0.3);
}

.commercial-option:hover span {
  transform: translateY(-1px);
}

.commercial-option--unit input:checked + span {
  border-color: #03dce8;
  background: #f2fbff;
  color: var(--brand-900);
}

.commercial-form__other {
  display: block;
  margin-top: 12px;
}

.commercial-form__other[hidden] {
  display: none;
}

.commercial-form__submit {
  min-height: 58px;
  margin-top: 8px;
  border: 0;
  border-radius: 9px;
  background: var(--accent-600);
  color: #ffffff;
  font: inherit;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

.commercial-form__submit:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

.commercial-form__submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.commercial-form__status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.commercial-form__status.is-success {
  color: #74f7d4;
}

.commercial-form__status.is-error {
  color: #ffd0c2;
}

#welcome .commercial-form--welcome {
  --welcome-label-opacity: 1;
  gap: clamp(10px, 0.8vw, 14px);
  align-self: center;
  justify-self: end;
  width: min(100%, clamp(400px, 34vw, 560px));
  padding: clamp(14px, 1.55vw, 24px) clamp(22px, 2.2vw, 34px);
  border: 0;
  border-radius: 28px;
  background: rgba(26, 58, 92, 0.52);
  box-shadow: none;
  transform: translateY(-1%);
  transform-origin: center;
}

#welcome .commercial-form--welcome .commercial-form__head h2 {
  font-size: clamp(24px, 1.9vw, 34px);
  font-weight: 700;
  text-transform: none;
}

#welcome .commercial-form--welcome .commercial-form__head p,
#welcome .commercial-form--welcome label,
#welcome .commercial-form--welcome legend,
#welcome .commercial-form--welcome .commercial-option span {
  color: #ffffff;
  opacity: var(--welcome-label-opacity);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

#welcome .commercial-form--welcome .commercial-form__head h2,
#welcome .commercial-form--welcome .commercial-form__status {
  opacity: 1;
}

#welcome .commercial-form--welcome .commercial-form__row {
  gap: 12px;
}

#welcome .commercial-form--welcome input[type="text"],
#welcome .commercial-form--welcome input[type="email"],
#welcome .commercial-form--welcome input[type="tel"] {
  min-height: clamp(18px, 1.55vw, 28px);
  margin-top: clamp(6px, 0.45vw, 9px);
  padding: clamp(2px, 0.28vw, 5px) 10px;
  background: #ffffff;
  border-color: transparent;
  border-radius: 6px;
  color: #0b1220;
  box-shadow: none;
}

#welcome .commercial-form--welcome input[type="text"]:focus,
#welcome .commercial-form--welcome input[type="email"]:focus,
#welcome .commercial-form--welcome input[type="tel"]:focus {
  background: #ffffff;
  border-color: #ff6100;
}

#welcome .commercial-form--welcome .commercial-form__options {
  gap: 8px;
}

#welcome .commercial-form--welcome .commercial-form__options--reasons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#welcome .commercial-form--welcome .commercial-form__options--units {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#welcome .commercial-form--welcome .commercial-option span {
  min-height: clamp(28px, 1.8vw, 34px);
  font-size: clamp(12px, 0.78vw, 14px);
}

#welcome .commercial-form--welcome .commercial-option--unit span {
  min-height: clamp(24px, 1.65vw, 32px);
  padding: clamp(3px, 0.35vw, 6px) 8px;
  border: 0;
  border-radius: 7px;
  background: #ffffff;
  color: var(--brand-900);
  opacity: 1;
  text-shadow: none;
}

#welcome .commercial-form--welcome .commercial-form__submit {
  min-height: clamp(26px, 1.8vw, 36px);
  padding: clamp(2px, 0.32vw, 6px) 12px;
  border: 2px solid #ff6100;
  border-radius: 7px;
  background: #ffffff;
  color: #1a3a5c;
  font-size: clamp(16px, 1.25vw, 20px);
  box-shadow: 0 0 0 rgba(255, 82, 0, 0);
}

#welcome .commercial-form--welcome .commercial-form__submit:hover {
  background: #ffffff;
  border-color: #ff6100;
  color: #1a3a5c;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 97, 0, 0.22);
}

@media (max-width: 980px) {
  .commercial-contact__grid {
    grid-template-columns: 1fr;
  }

  .commercial-form {
    order: -1;
  }

  .commercial-contact__text {
    max-width: none;
  }
}

@media (max-width: 680px) {
  #commercial-contact {
    padding: 42px 0 50px;
  }

  #commercial-contact .container {
    width: calc(100% - 32px);
  }

  .commercial-contact__grid {
    gap: 28px;
  }

  .commercial-form {
    gap: 16px;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .commercial-form__row,
  .commercial-form__options--reasons,
  .commercial-form__options--units {
    grid-template-columns: 1fr;
  }

  .commercial-form__options--units {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-option span {
    min-height: 54px;
  }

  .commercial-option--unit span {
    min-height: 56px;
  }

  .commercial-contact__text p {
    font-size: 17px;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .commercial-form__options--units {
    grid-template-columns: 1fr;
  }
}

/* =========================
   6) CLIENTS (Marquee)
   ========================= */
#clients {
  padding: 26px 0 40px;
  background: #ffffff;
}

#clients .clients-title {
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 800;
}

#clients .clients-marquee {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

#clients .clients-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  padding: 0 22px;
  animation: clients-scroll var(--clients-speed, 24s) linear infinite;
  will-change: transform;
}

#clients .clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

#clients .clients-track img {
  width: 132px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.86;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

#clients .clients-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--clients-distance, -50%));
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero-carousel .hero-track,
  #blog-carousel .blog-rail {
    scroll-behavior: auto;
  }
  #customer-reviews .reviews-track,
  #clients .clients-track {
    animation: none;
  }
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* =========================
   8) contact-us
   ========================= */
.contact-us {
  background: #f7f8fa;
  padding: clamp(42px, 5vw, 68px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-us-card {
  width: min(1600px, calc(100% - clamp(28px, 4vw, 64px)));
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(28px, 3.6vw, 54px) clamp(20px, 5vw, 72px);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(26, 58, 92, 0.12);
}

.contact-us .contact-left {
  display: grid;
  gap: 8px;
  max-width: 760px;
  width: min(100%, 880px);
  margin: 0 auto;
}

.contact-us .contact-title {
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  color: #1a3a5c;
}

.contact-us .section-subtitle {
  margin: 0;
  color: #000000;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.35;
  max-width: 42rem;
  margin-inline: auto;
}

.contact-us .btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  margin-top: 6px;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  background: #ff6100;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 97, 0, 0.22);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 800;
}

@media (max-width: 900px) {
  .contact-us {
    padding: 72px 0;
  }

  .contact-us .contact-left {
    gap: 16px;
  }

  .contact-us .btn-large {
    width: auto;
  }
}

@media (max-width: 560px) {
  .contact-us {
    padding: 56px 0;
  }

  .contact-us .btn-large {
    width: min(100%, 210px);
    max-width: 100%;
  }
}

/*==========================
   9) TAMAÑO COMPLETO DE PANTALLA
  ========================= */
#products {
  min-height: 100vh;
}

#why-us {
  min-height: 100vh;
  min-height: 100svh;
}

@media (max-width: 768px) {
  .container,
  #hero-carousel > .container,
  #customer-reviews > .container,
  #products > .container,
  #blog-carousel > .container,
  #clients > .container,
  #features > .container,
  #why-us > .container {
    width: calc(100% - 32px);
  }

  .site-header.is-homepage + main .welcome-section {
    margin-top: -64px;
    height: auto;
    min-height: 100svh;
    padding-top: 64px;
  }

  .welcome-section {
    height: auto;
    min-height: 100svh;
    place-items: center;
  }

  .welcome-overlay {
    background: rgba(20, 21, 44, 0.8);
  }

  .welcome-content {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 32px);
    padding: 34px 0 46px;
  }

  #welcome .commercial-form--welcome {
    order: 0;
    width: 100%;
    justify-self: stretch;
    transform: none;
  }

  .welcome-copy {
    grid-column: 1;
    gap: 12px;
    padding: 0;
    transform: none;
  }

  .welcome-subtitle {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .welcome-slogan {
    font-size: 13px;
  }

  .welcome-title {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.98;
  }

  .welcome-description {
    max-width: 32ch;
    font-size: 15px;
    line-height: 1.55;
  }

  #hero-carousel {
    padding: 34px 0 18px;
  }

  #hero-carousel .hero-shell {
    border-radius: 12px;
  }

  #hero-carousel .hero-slide {
    gap: 16px;
    padding: 20px 16px 48px;
  }

  #hero-carousel .hero-image {
    width: min(300px, 84%);
    aspect-ratio: 16 / 10;
  }

  #hero-carousel .hero-title {
    font-size: clamp(30px, 10vw, 42px);
  }

  #hero-carousel .hero-subtitle {
    font-size: 16px;
  }

  #hero-carousel .hero-desc,
  #hero-carousel .hero-bullets {
    font-size: 15px;
  }

  #hero-carousel .hero-cta-row {
    align-items: stretch;
  }

  #hero-carousel .hero-cta-row .btn {
    width: 100%;
  }

  #hero-carousel .hero-price {
    width: 100%;
    justify-content: center;
  }

  #why-us {
    min-height: auto;
    padding: 44px 0 48px;
  }

  #why-us .why-grid {
    gap: 22px;
    width: 100%;
    max-width: 100%;
  }

  #why-us .section-head {
    margin-bottom: 18px;
  }

  #why-us .why-list {
    gap: 10px;
  }

  #why-us .why-item {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 16px;
    width: 100%;
    max-width: 100%;
  }

  #why-us .why-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  #why-us .why-title {
    font-size: 17px;
  }

  #why-us .why-desc {
    font-size: 14px;
    line-height: 1.42;
  }

  #why-us .why-media,
  #why-us .why-media video {
    width: 100%;
    max-width: 100%;
  }

  #features,
  #products {
    min-height: auto;
  }

  #features .features-main-content {
    min-height: auto;
    padding: 16px;
  }

  #features .features-stats-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 420px);
    gap: 18px;
  }

  #features .features-stat-card {
    width: 100%;
    max-width: 190px;
    height: auto;
    aspect-ratio: 1;
    justify-self: center;
  }

  #products {
    padding: 42px 0 48px;
  }

  #products .section-head {
    margin-bottom: 18px;
  }

  #products .products-grid {
    gap: 22px;
  }

  #products .product-showcase {
    padding: 18px;
    border-radius: 12px;
  }

  #products .product-showcase img {
    max-height: 260px;
    aspect-ratio: auto;
  }

  #products .product-selector {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  #products .product-thumb {
    min-width: 148px;
    min-height: 96px;
    padding: 16px 12px 14px;
    gap: 8px;
    scroll-snap-align: start;
  }

  #products .product-thumb-icon,
  #products .product-thumb-icon svg {
    width: 26px;
    height: 26px;
  }

  #products .product-thumb-title {
    font-size: 13px;
  }

  #products .product-kicker {
    font-size: 12px;
  }

  #products .product-card-head {
    gap: 10px;
    margin-top: 14px;
  }

  #products .product-name {
    font-size: clamp(28px, 9vw, 34px);
  }

  #products .product-price {
    min-height: 40px;
    padding: 0 20px;
    font-size: 13px;
  }

  #products .product-description {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.58;
  }

  #products .product-features {
    margin: 22px 0 24px;
    gap: 12px;
    font-size: 15px;
  }

  #products .product-card .btn {
    width: 100%;
  }
}
