/* index.css - Central Design Tokens and Styling for Equip Replica */

:root {
  --color-primary: #030852;
  --color-primary-dark: #020536;
  --color-primary-light: #4c53b2;
  --color-accent: #FA8C16;
  --color-accent-hover: #e07b10;
  --color-success: #25D366;
  --color-success-hover: #1da851;
  --color-bg-light: #F9FAFB;
  --color-bg-white: #FFFFFF;
  --color-text-dark: #0A1128;
  --color-text-muted: #6B7280;
  --color-text-light: #F3F4F6;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-focus: rgba(3, 8, 82, 0.3);
  --font-primary: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(3, 8, 82, 0.08);
  --max-width-container: 1280px;
}

/* ========================================================================== 
   Contacto monocromático - azul corporativo
   ========================================================================== */
.contact-page {
  --contact-blue: #07145f;
  --contact-blue-hover: #0d248b;
  --contact-blue-soft: #f1f4ff;
  --contact-line: #d9e0f0;
  --contact-muted: #64718c;
}

.contact-page .contact-hero-section .slide-subtitle {
  color: #ffffff !important;
  opacity: .9 !important;
}

.contact-page .contact-page-section {
  padding: 64px 0 !important;
  background: #ffffff !important;
}

.contact-page .home-contact-grid {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(36px, 5vw, 76px) !important;
  align-items: center !important;
}

.contact-page .home-contact-kicker {
  color: var(--contact-blue) !important;
  border: 0 !important;
  padding: 0 !important;
  letter-spacing: .13em !important;
}

.contact-page .contact-page-title,
.contact-page .contact-page-title span {
  color: var(--contact-blue) !important;
}

.contact-page .contact-page-desc {
  max-width: 460px !important;
  color: var(--contact-muted) !important;
  line-height: 1.65 !important;
}

.contact-page .home-contact-cards {
  display: grid !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--contact-line) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
}

.contact-page .home-contact-card {
  min-height: 82px !important;
  margin: 0 !important;
  padding: 16px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--contact-line) !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.contact-page .home-contact-card:last-child {
  border-bottom: 0 !important;
}

.contact-page .home-contact-icon,
.contact-page .home-contact-form-icon {
  display: grid !important;
  place-items: center !important;
  color: var(--contact-blue) !important;
  background: var(--contact-blue-soft) !important;
  border: 1px solid #e0e6f5 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.contact-page .home-contact-card small,
.contact-page .home-contact-form-head p {
  color: var(--contact-muted) !important;
}

.contact-page .home-contact-card strong,
.contact-page .home-contact-form-head h3,
.contact-page .home-contact-field label {
  color: var(--contact-blue) !important;
}

.contact-page .home-contact-form-card {
  padding: clamp(26px, 4vw, 42px) !important;
  border: 1px solid var(--contact-line) !important;
  border-top: 5px solid var(--contact-blue) !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.contact-page .home-contact-form-head {
  margin-bottom: 28px !important;
}

.contact-page .home-contact-form-head h3 {
  font-size: clamp(21px, 2vw, 26px) !important;
}

.contact-page .home-contact-form {
  gap: 0 !important;
}

.contact-page .form-row-2col {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-bottom: 0 !important;
}

.contact-page .home-contact-field,
.contact-page .home-contact-field.full {
  min-width: 0 !important;
  margin: 0 0 18px !important;
}

.contact-page .input-icon-wrapper {
  position: relative !important;
}

.contact-page .field-icon {
  left: 15px !important;
  width: 19px !important;
  height: 19px !important;
  color: var(--contact-blue) !important;
  opacity: .72 !important;
}

.contact-page .home-contact-field input,
.contact-page .home-contact-field textarea {
  min-height: 52px !important;
  padding: 13px 16px 13px 46px !important;
  color: var(--contact-blue) !important;
  border: 1px solid var(--contact-line) !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  transition: border-color .2s ease, background-color .2s ease !important;
}

.contact-page .home-contact-field input::placeholder,
.contact-page .home-contact-field textarea::placeholder {
  color: #8a94aa !important;
}

.contact-page .home-contact-field input:focus,
.contact-page .home-contact-field textarea:focus {
  border-color: var(--contact-blue) !important;
  outline: 0 !important;
  background: var(--contact-blue-soft) !important;
  box-shadow: none !important;
}

.contact-page .textarea-icon-wrapper .field-icon {
  top: 17px !important;
  transform: none !important;
}

.contact-page .home-contact-field textarea {
  min-height: 132px !important;
  resize: vertical !important;
}

.contact-page .home-contact-submit {
  width: 100% !important;
  min-height: 54px !important;
  justify-content: center !important;
  margin-top: 2px !important;
  color: #ffffff !important;
  background: var(--contact-blue) !important;
  border: 1px solid var(--contact-blue) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.contact-page .home-contact-submit svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.contact-page .home-contact-submit:hover {
  color: #ffffff !important;
  background: var(--contact-blue-hover) !important;
  border-color: var(--contact-blue-hover) !important;
  transform: none !important;
  box-shadow: none !important;
}

.contact-page .home-contact-security {
  color: var(--contact-muted) !important;
}

.contact-page .home-contact-security svg {
  color: var(--contact-blue) !important;
}

@media (max-width: 768px) {
  .contact-page .contact-page-section {
    padding: 42px 0 !important;
  }

  .contact-page .home-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .contact-page .home-contact-info {
    text-align: left !important;
  }

  .contact-page .contact-page-title {
    font-size: clamp(30px, 9vw, 38px) !important;
  }

  .contact-page .home-contact-form-card {
    padding: 25px 18px !important;
    border-radius: 16px !important;
  }

  .contact-page .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .contact-page .home-contact-form-head {
    align-items: flex-start !important;
    gap: 13px !important;
  }

  .contact-page .home-contact-form-icon {
    width: 46px !important;
    height: 46px !important;
    flex-basis: 46px !important;
  }
}

/* Producto importado del catálogo pendiente de fotografía. */
.catalog-page .product-image-pending {
  width: 100%;
  height: 100%;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0b1b66;
  background: #f5f7fb;
}

.catalog-page .product-image-pending svg {
  width: 44px;
  height: 44px;
  color: #18bf63;
}

.catalog-page .product-image-pending small {
  color: #66728d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.catalog-page .product-image-pending-modal {
  min-height: 280px;
  border-radius: 18px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}

/* Lucide Icons Reset */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2px;
  width: 1em;
  height: 1em;
}

html {
  color: var(--color-text-dark);
}

body {
  background-color: var(--color-bg-white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  height: 54px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

header.scrolled {
  height: 46px;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(3, 8, 82, 0.08);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  min-height: 100%;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
}

.logo img, .logo svg {
  height: 22px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
}

.nav-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 13px;
  color: var(--color-primary);
  position: relative;
  padding: 0;
  line-height: 1;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

/* Dropdown Wrapper for Marcas */
.dropdown-wrapper {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1001;
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-dark);
  display: block;
}

.dropdown-item:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

.dropdown-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-top: 8px;
}

.dropdown-footer-link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-footer-link:hover {
  color: var(--color-accent-hover);
}

/* Actions Section */
.actions-section {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.btn-login {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
  padding: 0 13px;
  border-radius: 30px;
  border: 1px solid var(--color-primary);
  line-height: 1;
  transition: var(--transition-smooth);
}

.btn-login svg {
  width: 14px;
  height: 14px;
}

.btn-login:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.btn-cart {
  color: var(--color-primary);
  width: 34px;
  height: 34px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: visible !important;
  transition: var(--transition-smooth);
}

.btn-cart svg {
  width: 16px;
  height: 16px;
}

.btn-cart:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--color-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #ffffff;
  box-sizing: border-box;
}

/* Mobile Menu Button */
.btn-mobile-menu {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

/* Sidebar Drawer for Mobile Navigation */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: var(--color-bg-white);
  z-index: 1050;
  box-shadow: var(--shadow-lg);
  padding: 30px 24px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-drawer.open {
  left: 0;
}

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

.drawer-close {
  font-size: 24px;
  color: var(--color-text-muted);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}

.drawer-link:hover, .drawer-link.active {
  color: var(--color-accent);
}

.drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.btn-floating {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-smooth);
}

.btn-floating:hover {
  transform: scale(1.08);
}

.btn-floating.whatsapp {
  background-color: var(--color-success);
  animation: pulse-whatsapp 2s infinite;
}

.btn-floating.whatsapp:hover {
  background-color: var(--color-success-hover);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-floating.quick-quote {
  background-color: var(--color-primary);
}

/* Hero Section / Slider */
.hero-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  margin-top: 0; /* Remove top margin so it goes under the header */
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, rgba(2, 5, 54, 0.95) 25%, rgba(2, 5, 54, 0.7) 45%, rgba(2, 5, 54, 0) 75%);
  z-index: 2;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9);
}

.slide-content {
  position: relative;
  z-index: 3;
  color: var(--color-bg-white);
  padding: 0 100px;
  max-width: 100% !important;
}

@media (max-width: 1200px) {
  .slide-content {
    padding: 0 80px !important;
  }
}

@media (max-width: 768px) {
  .slide-content {
    padding: 0 40px !important;
  }
}

/* Modal: todas las especificaciones extraídas del catálogo. */
.catalog-page .catalog-detail-specs-wide dl {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.catalog-page .catalog-detail-specs-wide dl > div,
.catalog-page .catalog-detail-specs-wide dl > div:nth-child(even) {
  border-right: 1px solid #e5e9ee !important;
  border-bottom: 1px solid #e5e9ee !important;
}

.catalog-page .catalog-detail-specs-wide dl > div:nth-child(even),
.catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long {
  border-right: 0 !important;
}

.catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long {
  grid-column: 1 / -1 !important;
}

.catalog-page .catalog-detail-specs-wide dd {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.55 !important;
}

@media (max-width: 900px) {
  .catalog-page .catalog-detail-specs-wide dl {
    grid-template-columns: 1fr !important;
  }

  .catalog-page .catalog-detail-specs-wide dl > div {
    grid-column: 1 !important;
    border-right: 0 !important;
  }
}

/* Contacto: capa final monocromática. Mantener al final para anular reglas heredadas. */
.contact-page .contact-hero-section .slide-subtitle {
  color: #ffffff !important;
  opacity: .9 !important;
}

.contact-page .contact-page-section {
  padding: 64px 0 !important;
  background: #ffffff !important;
}

.contact-page .home-contact-grid {
  grid-template-columns: minmax(300px,.82fr) minmax(0,1.18fr) !important;
  gap: clamp(36px,5vw,76px) !important;
  align-items: center !important;
}

.contact-page .home-contact-kicker,
.contact-page .contact-page-title,
.contact-page .contact-page-title span,
.contact-page .home-contact-card strong,
.contact-page .home-contact-form-head h3,
.contact-page .home-contact-field label {
  color: #07145f !important;
}

.contact-page .home-contact-kicker {
  padding: 0 !important;
  border: 0 !important;
}

.contact-page .contact-page-desc,
.contact-page .home-contact-card small,
.contact-page .home-contact-form-head p,
.contact-page .home-contact-security {
  color: #64718c !important;
}

.contact-page .home-contact-cards {
  display: grid !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid #d9e0f0 !important;
  border-radius: 18px !important;
  background: #ffffff !important;
}

.contact-page .home-contact-card {
  min-height: 82px !important;
  margin: 0 !important;
  padding: 16px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid #d9e0f0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.contact-page .home-contact-card:last-child { border-bottom: 0 !important; }

.contact-page .home-contact-icon,
.contact-page .home-contact-form-icon {
  display: grid !important;
  place-items: center !important;
  color: #07145f !important;
  background: #f1f4ff !important;
  border: 1px solid #e0e6f5 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.contact-page .home-contact-form-card {
  padding: clamp(26px,4vw,42px) !important;
  border: 1px solid #d9e0f0 !important;
  border-top: 5px solid #07145f !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.contact-page .home-contact-form-head { margin-bottom: 28px !important; }
.contact-page .home-contact-form-head h3 { font-size: clamp(21px,2vw,26px) !important; }

.contact-page .form-row-2col {
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 16px !important;
  margin-bottom: 0 !important;
}

.contact-page .home-contact-field,
.contact-page .home-contact-field.full {
  min-width: 0 !important;
  margin: 0 0 18px !important;
}

.contact-page .field-icon {
  left: 15px !important;
  width: 19px !important;
  height: 19px !important;
  color: #07145f !important;
  opacity: .72 !important;
}

.contact-page .home-contact-field input,
.contact-page .home-contact-field textarea {
  width: 100% !important;
  min-height: 52px !important;
  padding: 13px 16px 13px 46px !important;
  color: #07145f !important;
  border: 1px solid #d9e0f0 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.contact-page .home-contact-field input:focus,
.contact-page .home-contact-field textarea:focus {
  border-color: #07145f !important;
  background: #f1f4ff !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.contact-page .textarea-icon-wrapper .field-icon {
  top: 17px !important;
  transform: none !important;
}

.contact-page .home-contact-field textarea {
  min-height: 132px !important;
  resize: vertical !important;
}

.contact-page .home-contact-submit,
.contact-page .home-contact-submit:hover {
  width: 100% !important;
  min-height: 54px !important;
  justify-content: center !important;
  margin-top: 2px !important;
  color: #ffffff !important;
  background: #07145f !important;
  border: 1px solid #07145f !important;
  border-radius: 12px !important;
  transform: none !important;
  box-shadow: none !important;
}

.contact-page .home-contact-submit:hover { background: #0d248b !important; }
.contact-page .home-contact-submit svg { color: #ffffff !important; stroke: #ffffff !important; }
.contact-page .home-contact-security svg { color: #07145f !important; }

@media (max-width: 768px) {
  .contact-page .contact-page-section { padding: 42px 0 !important; }
  .contact-page .home-contact-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .contact-page .home-contact-info { text-align: left !important; }
  .contact-page .contact-page-title { font-size: clamp(30px,9vw,38px) !important; }
  .contact-page .home-contact-form-card { padding: 25px 18px !important; border-radius: 16px !important; }
  .contact-page .form-row-2col { grid-template-columns: 1fr !important; gap: 0 !important; }
  .contact-page .home-contact-form-head { align-items: flex-start !important; gap: 13px !important; }
  .contact-page .home-contact-form-icon { width: 46px !important; height: 46px !important; flex-basis: 46px !important; }
}

@media (max-width: 480px) {
  .slide-content {
    padding: 0 20px !important;
  }
}


.slide-title {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 650px;
}

.slide-title span {
  color: var(--color-accent);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-quote {
  background-color: var(--color-accent);
  color: var(--color-bg-white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(250, 140, 22, 0.4);
}

.btn-quote:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-quote.whatsapp {
  background-color: var(--color-success);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-quote.whatsapp:hover {
  background-color: var(--color-success-hover);
}

.slide-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

.slide-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-feature-text {
  display: flex;
  flex-direction: column;
}

.slide-feature-title {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

.slide-feature-value {
  font-weight: 700;
  font-size: 15px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 32px;
  font-size: 14px;
}

.slide-badge-bold {
  font-weight: 700;
  color: var(--color-accent);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.slider-arrow:hover {
  background: var(--color-bg-white);
  color: var(--color-primary-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slider-arrow.left {
  left: 24px;
}

.slider-arrow.right {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.slider-dot.active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 10px;
}

/* Stats Section */
.stats-section {
  background-color: rgba(2, 5, 54, 0.9); /* Translucent brand blue background tint */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px 0; /* Balanced padding for overlay style */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.2;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 15px;
}

/* Section Common Layouts */
section.py-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.section-badge {
  display: inline-block;
  background-color: #eef2ff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 18px;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 20px;
}

.step-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
  border: 1px solid rgba(3, 8, 82, 0.05);
  border-radius: 24px;
  padding: 40px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02), 0 10px 30px rgba(3, 8, 82, 0.03);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(250, 140, 22, 0.35);
  background: var(--color-bg-white);
}

.step-card.centered {
  align-items: center;
  text-align: center;
}

.step-label {
  display: inline-block;
  font-weight: 600;
  font-size: 11px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.step-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.step-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-icon-wrapper svg {
  width: 30px;
  height: 30px;
  stroke-width: 2px;
}

.step-icon-wrapper.orange {
  background: rgba(250, 140, 22, 0.08);
  color: var(--color-accent);
}

.step-icon-wrapper.green {
  background: rgba(37, 211, 102, 0.08);
  color: var(--color-success-hover);
}

.step-icon-wrapper.blue {
  background: rgba(76, 83, 178, 0.08);
  color: var(--color-primary-light);
}

.step-card:hover .step-icon-wrapper {
  transform: scale(1.1);
}

.step-card:hover .step-icon-wrapper.orange {
  box-shadow: 0 0 20px rgba(250, 140, 22, 0.15);
}

.step-card:hover .step-icon-wrapper.green {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
}

.step-card:hover .step-icon-wrapper.blue {
  box-shadow: 0 0 20px rgba(76, 83, 178, 0.15);
}

.step-card-desc {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.step-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-top: auto; /* Push to the very bottom */
}

.step-pill.orange {
  background-color: rgba(250, 140, 22, 0.06);
  color: var(--color-accent);
}

.step-pill.green {
  background-color: rgba(37, 211, 102, 0.06);
  color: var(--color-success-hover);
}

.step-pill.blue {
  background-color: rgba(76, 83, 178, 0.06);
  color: var(--color-primary-light);
}

.step-divider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.3;
}

.steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn-wide-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-success);
  color: white;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 36px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-wide-whatsapp:hover {
  background-color: var(--color-success-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.category-image-wrapper {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image-wrapper img {
  transform: scale(1.08);
}

.category-card-content {
  padding: 20px 24px;
}

.category-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.categories-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(3, 8, 82, 0.2);
}

.btn-secondary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Loader / Dynamic Section (Brands loader placeholder) */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(3, 8, 82, 0.1);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Clients SATISFIED Marquee Section */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-white), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-white), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 45s linear infinite;
}

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

.marquee-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin: 0 12px;
  box-shadow: var(--shadow-sm);
}

.marquee-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Strategic Backers section in About Us */
.backers-marquee {
  background-color: var(--color-bg-light);
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.backers-marquee .section-title-small {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Success Projects Carousel Section */
.projects-section {
  background-color: var(--color-bg-white);
}

.projects-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.projects-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.project-slide {
  min-width: 100%;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.project-image-container {
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}

.project-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.project-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
}

.project-desc {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  margin-top: 8px;
}

.project-detail-label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.project-detail-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.testimonial-stars {
  display: flex;
  color: #FADB14;
  margin-bottom: 20px;
  font-size: 18px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
}

.testimonial-author-position {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Footer Styling */
footer {
  background-color: #000000;
  color: var(--color-text-light);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 16px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-legal-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-column-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.libro-reclamaciones-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-top: 12px;
}

/* ABOUT US Page Specific Styles */
.about-hero {
  padding: 80px 0;
  background-color: var(--color-bg-white);
  margin-top: 54px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.about-tagline::before, .about-tagline::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: var(--color-text-muted);
}

.about-title {
  font-size: 42px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-title span.highlight {
  color: var(--color-accent);
}

.about-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.about-team-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-team-image-wrapper img {
  width: 100%;
  height: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 80px;
  text-align: center;
}

.about-stat-item {
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.about-stat-item:last-child {
  border-right: none;
}

.about-value-section {
  background-color: var(--color-bg-light);
  padding: 100px 0;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.about-value-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}

.about-value-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.about-value-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.about-value-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.about-value-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  align-self: flex-start;
  margin-top: 8px;
}

.about-value-badge.orange {
  background-color: rgba(250, 140, 22, 0.1);
  color: var(--color-accent);
}

.about-value-badge.blue {
  background-color: rgba(3, 8, 82, 0.05);
  color: var(--color-primary);
}

.about-value-badge.gray {
  background-color: #F3F4F6;
  color: var(--color-text-muted);
}

.about-value-cta {
  display: flex;
  justify-content: center;
}

.about-press-section {
  padding: 80px 0;
}

.about-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.press-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.press-image {
  height: 180px;
  overflow: hidden;
}

.press-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.press-meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
}

.press-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}

.press-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.press-button {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.press-button:hover {
  color: var(--color-accent);
}

/* PROVIDERS (Brands) Page Specific Styles */
.providers-layout {
  padding: 120px 0 80px 0;
  background-color: #f4f4fc;
}

.providers-grid-container {
  display: flex;
  gap: 32px;
}

.providers-sidebar {
  width: 320px;
  flex-shrink: 0;
}

.sidebar-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.search-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 14px;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-border-focus);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.filter-divider {
  height: 1px;
  background-color: var(--color-border);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: left;
}

.filter-btn:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

.filter-btn.active {
  background-color: rgba(3, 8, 82, 0.05);
  color: var(--color-primary);
  font-weight: 700;
}

.filter-count {
  font-size: 11px;
  background-color: var(--color-bg-light);
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--color-text-muted);
}

.filter-btn.active .filter-count {
  background-color: var(--color-primary);
  color: white;
}

.providers-main-content {
  flex-grow: 1;
}

.providers-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.brand-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  aspect-ratio: 2.2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.brand-card img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.brand-card-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}

.no-results {
  text-align: center;
  padding: 80px 0;
  color: var(--color-text-muted);
}

.no-results-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--color-border);
}

/* BUYER Page Specific Styles (Portal Cliente) */
.buyer-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4fc;
  position: relative;
  padding: 40px 24px;
}

.buyer-logo-fixed {
  position: absolute;
  top: 40px;
  left: 40px;
  height: 35px;
}

.buyer-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(3, 8, 82, 0.08);
}

.buyer-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.buyer-subtitle {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.buyer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.form-input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  font-size: 15px;
  background-color: var(--color-bg-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: white;
  box-shadow: 0 0 0 4px var(--color-border-focus);
}

.form-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.form-error-msg {
  font-size: 12px;
  color: red;
  display: none;
}

.buyer-forgot-link {
  align-self: flex-end;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.buyer-forgot-link:hover {
  color: var(--color-accent);
}

.btn-buyer-submit {
  background-color: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: 12px;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(3, 8, 82, 0.15);
}

.btn-buyer-submit:hover {
  background-color: var(--color-primary-dark);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 8, 82, 0.65); /* Translucent dark blue background tint */
  backdrop-filter: blur(12px); /* High quality blur effect */
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.promo-modal {
  background: var(--color-bg-white);
  border-radius: 28px;
  overflow: hidden;
  max-width: 380px; /* More vertical layout */
  width: 100%;
  box-shadow: 0 20px 50px rgba(2, 5, 54, 0.3);
  position: relative;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .promo-modal {
  transform: translateY(0);
}

.promo-modal-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 320px; /* Vertical height for image */
}

.promo-modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  fill: var(--color-bg-white);
  pointer-events: none;
  z-index: 2;
}

.promo-modal-content {
  padding: 24px 28px 28px 28px;
  background-color: var(--color-bg-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-modal-text {
  font-size: 18px;
  line-height: 1.45;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-weight: 500;
}

.promo-modal-text .highlight {
  font-weight: 600;
  color: var(--color-primary);
}

.btn-promo-submit {
  background-color: var(--color-accent);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 0;
  width: 100%;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(250, 140, 22, 0.4);
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-promo-submit:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 140, 22, 0.5);
}

.promo-modal-subtext {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 14px;
  display: block;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.08);
}

/* Responsive Grid/Flex Adaptations */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .providers-grid-container {
    flex-direction: column;
  }
  .providers-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .left-section {
    gap: 12px;
  }
  .logo svg {
    width: 100px;
    height: auto;
  }
  .btn-mobile-menu {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .actions-section .btn-login {
    display: none; /* Hide from navbar, available in drawer */
  }
  .hero-section {
    height: 500px;
  }
  .slide-title {
    font-size: 32px;
  }
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .slide-divider {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-divider-dot {
    display: none;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
  }
  .about-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-press-grid {
    grid-template-columns: 1fr;
  }
  .project-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-image-container {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .slide-title {
    font-size: 26px;
  }
  .btn-quote {
    width: 100%;
    text-align: center;
  }
  .slide-feature {
    width: 100%;
  }
}

/* Blue background utility section styles */
.bg-primary {
  background-color: var(--color-primary) !important;
  color: var(--color-bg-white) !important;
}

.bg-primary .section-title {
  color: var(--color-bg-white) !important;
}

.bg-primary .section-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
}

.bg-primary .section-badge {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-accent) !important;
}

.bg-primary .spinner {
  border: 4px solid rgba(255, 255, 255, 0.1) !important;
  border-top-color: var(--color-accent) !important;
}

/* Secondary Button contrast in Blue background */
.bg-primary .btn-secondary {
  background-color: var(--color-accent) !important;
  color: var(--color-bg-white) !important;
  box-shadow: 0 4px 12px rgba(250, 140, 22, 0.3) !important;
}

.bg-primary .btn-secondary:hover {
  background-color: var(--color-accent-hover) !important;
  transform: translateY(-2px) !important;
}

/* Success Projects contrast in Blue background */
.bg-primary.projects-section .project-title,
.bg-primary.projects-section .project-detail-value {
  color: var(--color-bg-white) !important;
}

.bg-primary.projects-section .project-desc,
.bg-primary.projects-section .project-detail-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.bg-primary.projects-section .project-tag {
  color: var(--color-accent) !important;
}

.bg-primary.projects-section .project-details {
  border-top-color: rgba(255, 255, 255, 0.15) !important;
}

/* Light background utility section styles (Off-white/light greyish-blue) */
.bg-light {
  background-color: #f4f6f9 !important; /* "un blanco poco gris" */
  color: var(--color-text-dark) !important;
}

.bg-light .section-title {
  color: var(--color-primary) !important;
}

.bg-light .section-subtitle {
  color: var(--color-text-muted) !important;
}

.bg-light .section-badge {
  background-color: rgba(3, 8, 82, 0.05) !important;
  color: var(--color-accent) !important;
}

/* Projects slider arrows adjustment in light background */
.projects-slider-wrapper .slider-arrow {
  background: rgba(3, 8, 82, 0.05) !important;
  border-color: rgba(3, 8, 82, 0.1) !important;
  color: var(--color-primary) !important;
}

.projects-slider-wrapper .slider-arrow:hover {
  background: var(--color-primary) !important;
  color: white !important;
  box-shadow: 0 8px 24px rgba(3, 8, 82, 0.15) !important;
}

/* Transparent Header on Load for Home Page */
body.home-page header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.home-page header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(3, 8, 82, 0.08);
  box-shadow: var(--shadow-sm);
}

body.home-page header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

body.home-page header:not(.scrolled) .nav-link:hover {
  color: var(--color-accent) !important;
}

body.home-page header:not(.scrolled) .logo svg text {
  fill: #FFFFFF !important;
}

body.home-page header:not(.scrolled) .logo svg path[fill="#030852"] {
  fill: #FFFFFF !important;
}

body.home-page header:not(.scrolled) .btn-login {
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

body.home-page header:not(.scrolled) .btn-login:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #FFFFFF !important;
}

body.home-page header:not(.scrolled) .btn-cart {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

body.home-page header:not(.scrolled) .btn-cart:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #FFFFFF !important;
}

body.home-page header:not(.scrolled) .btn-mobile-menu {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* E-Commerce Product Store Grid & Product Cards */
.products-main-content {
  flex-grow: 1;
}

.providers-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.product-image-wrapper {
  position: relative;
  height: 200px;
  background-color: #f7f9fc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-image-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

/* Brand badge in the top right of product cards */
.brand-badge-logo {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 4px 8px;
  box-shadow: var(--shadow-sm);
  height: 30px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.brand-badge-logo img {
  max-height: 20px;
  max-width: 60px;
  object-fit: contain;
}

.product-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.product-card-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.product-card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
  flex-grow: 1;
}

.product-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(250, 140, 22, 0.2);
  border-radius: 8px;
  background: rgba(250, 140, 22, 0.06);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

.product-card-price span {
  color: var(--color-text-muted);
  font-weight: 600;
}

.product-card-price strong {
  color: var(--color-accent);
  font-size: 14px;
}

.product-card-specs {
  background-color: var(--color-bg-light);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.product-spec-row {
  display: flex;
  justify-content: space-between;
}

.product-spec-label {
  color: var(--color-text-muted);
}

.product-spec-val {
  font-weight: 600;
  color: var(--color-text-dark);
}

.product-card-footer {
  padding: 0 20px 20px 20px;
}

.btn-add-to-quote {
  width: 100%;
  background-color: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-add-to-quote:hover {
  background-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(250, 140, 22, 0.25);
  transform: translateY(-1px);
}

.btn-add-to-quote svg {
  width: 16px;
  height: 16px;
}

/* Sidebar Brand Selection Panel */
.brand-filters {
  margin-top: 16px;
}

.brand-filters-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.brand-filter-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

/* Shopping Cart Drawer */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 8, 82, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background: var(--color-bg-white);
  z-index: 2000;
  box-shadow: -10px 0 40px rgba(3, 8, 82, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-bg-light);
}

.cart-drawer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-title svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

.cart-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  font-size: 18px;
  transition: var(--transition-smooth);
}

.cart-drawer-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Empty Cart State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: var(--color-text-muted);
  text-align: center;
  padding: 40px;
}

.cart-empty-icon {
  font-size: 48px;
  color: var(--color-border);
}

.cart-empty-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Cart Items */
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.cart-item-img-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.cart-item-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
}

.cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.cart-item-code {
  font-size: 11px;
  color: var(--color-text-muted);
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  height: 32px;
  width: 90px;
  background: white;
}

.qty-btn {
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  transition: var(--transition-smooth);
}

.qty-btn:hover {
  background-color: var(--color-border);
}

.qty-val {
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

.btn-remove-cart {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.btn-remove-cart:hover {
  background-color: #fee2e2;
  color: #ef4444;
}

.btn-remove-cart svg {
  width: 16px;
  height: 16px;
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

.btn-checkout-whatsapp {
  width: 100%;
  background-color: var(--color-success);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.btn-checkout-whatsapp:hover {
  background-color: var(--color-success-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.btn-checkout-whatsapp svg {
  width: 20px;
  height: 20px;
}

.btn-clear-cart {
  width: 100%;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 8px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.btn-clear-cart:hover {
  background: rgba(0, 0, 0, 0.02);
  color: var(--color-text-dark);
  border-color: var(--color-text-muted);
}

/* Adjust layout on smaller devices */
@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
  }
}

/* Home audit polish: clearer distribution for the current riego/agro catalog */
.home-page .hero-section {
  height: min(640px, calc(100vh - 72px));
  min-height: 560px;
}

.home-page .slide {
  background: linear-gradient(90deg, #020536 0%, #07105f 48%, #f8fafc 48%, #ffffff 100%);
}

.home-page .slide::after {
  background: linear-gradient(90deg, rgba(2, 5, 54, 0.98) 0%, rgba(2, 5, 54, 0.92) 38%, rgba(2, 5, 54, 0.42) 58%, rgba(2, 5, 54, 0) 82%);
}

.home-page .slide-image {
  left: auto;
  right: 0;
  width: 58%;
  object-fit: contain;
  object-position: center right;
  padding: 64px 72px 118px 24px;
  filter: none;
}

.home-page .slide-content {
  padding-top: 44px;
}

.home-page .slide-title {
  max-width: 720px;
}

.home-page .slide-badge {
  max-width: 560px;
  border-radius: 8px;
}

.home-page section.py-section {
  padding: 64px 0;
}

.home-page .section-header {
  margin-bottom: 36px;
}

.home-page .section-title {
  font-size: 32px;
}

.home-page .steps-grid {
  gap: 16px;
}

.home-page .step-card,
.home-page .testimonial-card,
.home-page .category-card {
  border-radius: 8px;
}

.home-page .step-card {
  min-height: 300px;
  padding: 28px 22px;
}

.home-page .step-icon-wrapper {
  width: 62px;
  height: 62px;
}

.home-page .categories-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home-page .category-card {
  grid-column: span 3;
  min-height: 330px;
  display: grid;
  grid-template-rows: 170px 1fr;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(3, 8, 82, 0.1);
  box-shadow: 0 10px 26px rgba(3, 8, 82, 0.06);
}

.home-page .category-card-featured {
  grid-column: span 4;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 1fr;
  min-height: 360px;
  background: linear-gradient(135deg, #020536 0%, #08136b 54%, #ffffff 54%, #f8fafc 100%);
  border-color: rgba(250, 140, 22, 0.35);
}

.home-page .category-card-compact {
  grid-column: span 5;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 1fr;
  min-height: 250px;
}

.home-page .category-image-wrapper {
  height: auto;
  min-height: 170px;
  background:
    radial-gradient(circle at 70% 22%, rgba(250, 140, 22, 0.14), transparent 26%),
    linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .category-image-wrapper img {
  object-fit: contain;
  padding: 18px;
  max-width: 100%;
  max-height: 100%;
}

.home-page .category-card-content {
  padding: 22px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-page .category-card-featured .category-image-wrapper {
  order: 2;
  min-height: 100%;
  background: transparent;
}

.home-page .category-card-compact .category-image-wrapper {
  min-height: 100%;
}

.home-page .category-card-featured .category-image-wrapper img {
  padding: 28px;
}

.home-page .category-card-featured .category-card-content {
  color: white;
  justify-content: center;
  padding: 34px;
}

.home-page .category-card-kicker {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.home-page .category-card-title {
  font-size: 20px;
  line-height: 1.2;
}

.home-page .category-card-featured .category-card-title {
  color: white;
  font-size: 30px;
}

.home-page .category-card-desc {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.home-page .category-card-featured .category-card-desc {
  color: rgba(255, 255, 255, 0.78);
}

.home-page .category-card-action {
  margin-top: auto;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
}

.home-page .category-card-featured .category-card-action {
  color: var(--color-accent);
}

.home-page .projects-slider-wrapper {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.home-page .project-slide {
  gap: 32px;
}

.home-page .project-image-container {
  height: 320px;
  border-radius: 8px;
  background: #f8fafc;
}

.home-page .project-image-container img {
  object-fit: contain;
  padding: 24px;
}

.home-page .marquee-card {
  border-radius: 8px;
  height: 64px;
}

.home-page footer {
  padding-top: 64px;
}

@media (max-width: 1024px) {
  .home-page .categories-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .home-page .category-card,
  .home-page .category-card-compact {
    grid-column: span 3;
  }

  .home-page .category-card-featured {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .home-page .hero-section {
    height: auto;
    min-height: 0;
  }

  .home-page .slider-container,
  .home-page .slide {
    height: 520px;
  }

  .home-page .slide {
    align-items: flex-start;
    padding-top: 88px;
    background: #020536;
  }

  .home-page .slide::after {
    background: linear-gradient(180deg, rgba(2, 5, 54, 0.98) 0%, rgba(2, 5, 54, 0.86) 48%, rgba(2, 5, 54, 0.6) 100%);
  }

  .home-page .slide-image {
    width: 100%;
    height: 52%;
    top: auto;
    bottom: 74px;
    padding: 0 24px;
    opacity: 0.42;
  }

  .home-page .stats-section {
    position: relative;
    margin-top: 0;
  }

  .home-page .categories-grid {
    grid-template-columns: 1fr;
  }

  .home-page .category-card,
  .home-page .category-card-featured,
  .home-page .category-card-compact {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 190px auto;
    min-height: 0;
  }

  .home-page .category-card-featured {
    background: linear-gradient(180deg, #020536 0%, #08136b 48%, #ffffff 48%, #f8fafc 100%);
  }

  .home-page .category-card-featured .category-image-wrapper {
    order: 0;
    min-height: 190px;
  }

  .home-page .category-card-featured .category-card-content {
    background: #020536;
    padding: 24px;
  }

  .home-page .project-slide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-page .categories-grid {
    grid-template-columns: 1fr;
  }

  .home-page .section-title {
    font-size: 26px;
  }
}

/* =============================================
   ABOUT PAGE — Apple-inspired redesign
   Unified palette, consistent radius, generous whitespace
   ============================================= */
.about-page {
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* — Hero — */
.about-page .about-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--color-bg-white);
}

.about-page .about-intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.05fr);
  gap: 64px;
  margin-bottom: 56px;
  align-items: center;
}

.about-page .about-copy {
  max-width: 600px;
}

.about-page .about-tagline {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-page .about-tagline::before,
.about-page .about-tagline::after {
  background-color: rgba(250, 140, 22, 0.35);
}

.about-page .about-title {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  font-weight: 700;
}

.about-page .about-title span.highlight {
  color: var(--color-accent);
}

.about-page .about-desc {
  max-width: 520px;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.72;
}

.about-page .about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.about-page .btn-primary,
.about-page .btn-secondary {
  min-height: 48px;
  border-radius: 14px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page .btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-white);
  box-shadow: 0 4px 16px rgba(3, 8, 82, 0.18);
}

.about-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 8, 82, 0.24);
}

.about-page .btn-secondary {
  background: var(--color-bg-white);
  color: var(--color-primary);
  border: 1.5px solid rgba(3, 8, 82, 0.12);
}

.about-page .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 8, 82, 0.08);
}

.about-page .about-team-image-wrapper {
  position: relative;
  min-height: 480px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(3, 8, 82, 0.12);
  background: var(--color-bg-light);
  overflow: hidden;
}

.about-page .about-team-image-wrapper::after {
  content: "Riego tecnificado";
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.about-page .about-team-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

/* — Stats — */
.about-page .about-stats {
  margin-bottom: 0;
  padding: 32px;
  border-radius: 14px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.about-page .about-stat-item {
  min-height: 96px;
}

.about-page .stat-number {
  color: var(--color-primary);
}

.about-page .about-stats .stat-label {
  color: var(--color-text-muted);
}

/* — Expertise Marquee — */
.about-page .about-specialties {
  background: var(--color-primary);
  border: 0;
}

.about-page .about-specialties .backers-marquee-title {
  color: rgba(255, 255, 255, 0.6) !important;
}

.about-page .about-specialties .marquee-card {
  height: 48px;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.about-page .about-specialties .marquee-card strong {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* — Values — */
.about-page .about-value-section {
  background: var(--color-bg-white);
  padding: 100px 0;
}

.about-page .about-value-section .section-header {
  text-align: center;
}

.about-page .about-value-section .section-badge {
  background: rgba(250, 140, 22, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(250, 140, 22, 0.2);
}

.about-page .about-value-section .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-primary);
}

.about-page .about-values-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-page .about-value-card {
  grid-column: span 1;
  min-height: 200px;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(3, 8, 82, 0.06);
  border: 1px solid var(--color-border);
  background: var(--color-bg-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-page .about-value-card:nth-child(4),
.about-page .about-value-card:nth-child(5) {
  grid-column: span 1;
}

.about-page .about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(3, 8, 82, 0.1);
  border-color: rgba(250, 140, 22, 0.25);
}

.about-page .about-value-icon {
  width: 56px;
  height: 56px;
}

.about-page .about-value-icon svg {
  color: var(--color-accent) !important;
  stroke: var(--color-accent) !important;
}

.about-page .about-value-title {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 700;
}

.about-page .about-value-desc {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-page .about-value-badge {
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  align-self: flex-start;
  margin-top: 12px;
}

.about-page .about-value-badge.orange {
  background-color: rgba(250, 140, 22, 0.1);
  color: var(--color-accent);
}

.about-page .about-value-badge.blue {
  background-color: rgba(3, 8, 82, 0.06);
  color: var(--color-primary);
}

.about-page .about-value-badge.gray {
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.about-page .about-value-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.about-page .btn-wide-whatsapp {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page .btn-wide-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* — Story — */
.about-page .about-story-section {
  background: var(--color-bg-light);
  padding: 100px 0;
}

.about-page .about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.about-page .about-story-copy .section-header {
  text-align: left;
  max-width: 100%;
}

.about-page .about-story-copy .section-title {
  margin-bottom: 16px;
  color: var(--color-primary);
}

.about-page .about-story-copy .section-subtitle {
  max-width: 520px;
  margin: 0 0 0 0;
  text-align: left;
  color: var(--color-text-muted);
}

.about-page .about-story-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.about-page .about-story-list div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-left: 3px solid var(--color-accent);
  border-radius: 14px;
  background: var(--color-bg-white);
  transition: box-shadow 0.25s ease;
}

.about-page .about-story-list div:hover {
  box-shadow: 0 4px 16px rgba(3, 8, 82, 0.06);
}

.about-page .about-story-list strong {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
}

.about-page .about-story-list span {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.about-page .about-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.about-page .about-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
}

.about-page .about-gallery-main {
  grid-row: span 2;
}

.about-page .about-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-page .about-gallery figure:hover img {
  transform: scale(1.04);
}

/* — Content Cards / Press — */
.about-page .about-content-section {
  padding: 100px 0;
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
}

.about-page .about-content-section .section-header {
  text-align: center;
}

.about-page .about-content-section .section-title {
  color: var(--color-primary);
}

.about-page .about-content-section .section-subtitle {
  color: var(--color-text-muted);
}

.about-page .about-press-grid {
  gap: 24px;
}

.about-page .press-card {
  border-radius: 14px;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 28px rgba(3, 8, 82, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: var(--color-bg-white);
}

.about-page .press-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(3, 8, 82, 0.1);
  border-color: rgba(250, 140, 22, 0.25);
}

.about-page .press-image {
  height: 220px;
  overflow: hidden;
}

.about-page .press-image img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-page .press-card:hover .press-image img {
  transform: scale(1.04);
}

.about-page .press-meta {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-page .press-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.about-page .press-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.about-page .press-button {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 13px;
}

.about-page .press-button:hover {
  color: var(--color-accent-hover);
}

/* — About Responsive — */
@media (max-width: 1024px) {
  .about-page .about-intro-grid,
  .about-page .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-copy {
    max-width: 100%;
  }

  .about-page .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-value-card,
  .about-page .about-value-card:nth-child(4),
  .about-page .about-value-card:nth-child(5) {
    grid-column: auto;
  }

  .about-page .about-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 220px);
  }
}

@media (max-width: 768px) {
  .about-page .about-hero-v2 {
    padding: 96px 0 56px;
  }

  .about-page .about-intro-grid {
    gap: 36px;
  }

  .about-page .about-title {
    font-size: 36px;
  }

  .about-page .about-desc {
    font-size: 15px;
  }

  .about-page .about-team-image-wrapper,
  .about-page .about-team-image-wrapper img {
    min-height: 320px;
  }

  .about-page .about-stats {
    padding: 20px;
    border-radius: 14px;
  }

  .about-page .about-value-section,
  .about-page .about-story-section,
  .about-page .about-content-section {
    padding: 72px 0;
  }

  .about-page .about-values-grid,
  .about-page .about-press-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-value-card {
    min-height: 0;
  }

  .about-page .about-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-page .about-gallery figure,
  .about-page .about-gallery-main {
    grid-row: auto;
    height: 220px;
  }

  .about-page .about-hero-actions a {
    width: 100%;
  }
}

/* =============================================
   HOME PAGE STYLES
   ============================================= */
/*
 * Home page — Riegohidra 2026 Premium Redesign
 * Image-led carousel, structured catalog sections, micro-animations
 */

/* =============================================
   DESIGN TOKENS (override/extend from style.css)
   ============================================= */
:root {
  --hero-min-h: 92vh;
  --color-border-dark: rgba(3, 8, 82, 0.12);
  --color-glass: rgba(255,255,255,0.07);
  --radius-card: 20px;
  --radius-sm: 10px;
  --section-py: 96px;
  --section-py-sm: 64px;
}

/* =============================================
   GLOBAL SECTION SHARED STYLES
   ============================================= */
.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(250, 140, 22, 0.1);
  border: 1px solid rgba(250, 140, 22, 0.25);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  height: min(720px, 100vh);
  min-height: 620px;
  background-color: var(--color-primary-dark);
}
.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Slide backgrounds */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  z-index: 1;
  transition: opacity 1.35s ease-in-out;
  will-change: opacity;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 3;
}

.slide.is-leaving {
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.015);
  transition: transform 5s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}
.slide-bg-1 {
  background-image: url("../img/home-carousel/hero-riego-field-ai.webp");
}
.slide-bg-2 {
  background-image: url("../img/home-carousel/hero-advisor-irrigation-ai.webp");
}
.slide-bg-3 {
  background-image: url("../img/home-carousel/hero-nursery-micro-irrigation-ai.webp");
}
.slide-bg-4 {
  background-image: url("../img/home-carousel/hero-filters-valves-field-ai.webp");
}
.slide-bg-5 {
  background-image: url("../img/home-carousel/hero-hoses-hdpe-field-ai.webp");
}

.slide-bg::before,
.slide-bg::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.slide-bg::before {
  top: 0;
  left: 0;
  bottom: 0;
  width: clamp(560px, 48vw, 820px);
  background:
    linear-gradient(112deg, rgba(2, 5, 54, 0.98) 0%, rgba(2, 5, 54, 0.92) 46%, rgba(2, 5, 54, 0.56) 68%, rgba(2, 5, 54, 0) 100%),
    linear-gradient(180deg, rgba(2, 5, 54, 0.16) 0%, rgba(2, 5, 54, 0) 52%, rgba(2, 5, 54, 0.2) 100%);
  mask-image: linear-gradient(112deg, #000 0%, #000 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(112deg, #000 0%, #000 58%, transparent 100%);
}
.slide-bg::after {
  top: 0;
  left: 0;
  bottom: 0;
  width: clamp(560px, 48vw, 820px);
  display: block;
  opacity: 0.16;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.18) 0 1px, transparent 1.4px),
    radial-gradient(circle at 76% 48%, rgba(255,255,255,0.12) 0 1px, transparent 1.3px),
    radial-gradient(circle at 42% 78%, rgba(0,0,0,0.22) 0 1px, transparent 1.5px);
  background-size: 14px 14px, 18px 18px, 16px 16px;
  mask-image: linear-gradient(112deg, #000 0%, #000 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(112deg, #000 0%, #000 58%, transparent 100%);
}

/* slide content */
.hero-section .slide-content {
  position: relative !important;
  z-index: 3 !important;
  padding: clamp(126px, 20vh, 168px) 24px 150px !important;
  max-width: var(--max-width-container);
  margin: 0 auto;
  width: 100%;
  min-height: 100%;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  color: #fff !important;
}
.slide-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.slide-title {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.06;
  margin-bottom: 0;
  max-width: 620px;
  text-shadow: 0 12px 36px rgba(0,0,0,0.26);
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-quote.whatsapp {
  background: var(--color-success);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
}
.btn-quote.whatsapp:hover {
  background: var(--color-success-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.btn-quote-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: all 0.25s;
  text-decoration: none;
}
.btn-quote-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 540px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(2, 5, 54, 0.38);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: rgba(255,255,255,0.68);
}
.slide-badge-label { font-weight: 500; }
.slide-badge-bold {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.slide-footnote {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 104px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 12px 34px rgba(2,5,54,0.26), inset 0 1px 0 rgba(255,255,255,0.28);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.56), 0 4px 12px rgba(2,5,54,0.22);
  transition: width 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.slider-dot.active {
  width: 30px;
  background: #fa8c16;
  border-color: rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 6px 18px rgba(250,140,22,0.46);
}
.slider-dot:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.92);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateY(-28px);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.34), rgba(255,255,255,0.12));
  border: 1px solid rgba(255,255,255,0.44);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(18px) saturate(1.45);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
  box-shadow:
    0 16px 38px rgba(2,5,54,0.26),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -10px 22px rgba(255,255,255,0.08);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.slider-arrow * {
  pointer-events: none;
}
.slider-arrow:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.48), rgba(255,255,255,0.2));
  border-color: rgba(255,255,255,0.68);
  transform: translateY(-50%) translateY(-28px) scale(1.05);
  box-shadow:
    0 20px 48px rgba(2,5,54,0.3),
    inset 0 1px 0 rgba(255,255,255,0.68),
    inset 0 -12px 24px rgba(255,255,255,0.12);
}
.slider-arrow.left { left: 32px; }
.slider-arrow.right { right: 32px; }

/* Stats bar */
.stats-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(3,8,82,0.08);
  box-shadow: 0 -16px 36px rgba(3,8,82,0.08);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  flex: 1;
  max-width: 220px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(3,8,82,0.12);
  flex-shrink: 0;
}
.stat-number {
  font-size: 34px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.section-steps {
  padding: var(--section-py) 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 117, 255, 0.08), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(8, 117, 255, 0.06), transparent 48%),
    #ffffff;
  position: relative;
}
.section-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-dark), transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  align-items: stretch;
  justify-content: center;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.step-card {
  min-height: 300px;
  height: 100%;
  max-width: 100%;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(3,8,82,0.18);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(3,8,82,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.home-page .section-steps .step-card {
  border-radius: 24px;
  border-color: rgba(3,8,82,0.18);
  transform: none !important;
  opacity: 1 !important;
}
.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(3,8,82,0.48);
  margin-bottom: 16px;
}
.step-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--color-primary);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(244,247,255,0.94) 100%);
  border: 1px solid rgba(3,8,82,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 24px rgba(3,8,82,0.08);
}
.step-icon-box svg,
.step-icon-box [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--color-primary) !important;
  stroke: var(--color-primary) !important;
}
.step-icon-box.blue {
  color: var(--color-primary);
}
.step-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.18;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: #5f6c86;
  line-height: 1.68;
  margin-bottom: 20px;
}
.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  margin-top: auto;
}
.step-tag.blue {
  background: rgba(3,8,82,0.05);
  color: var(--color-primary);
  border: 1px solid rgba(3,8,82,0.12);
}
.steps-connector {
  display: none;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps-connector {
    display: none;
  }

  .step-card {
    min-height: 0;
  }
}

/* =============================================
   CATEGORIES
   ============================================= */
.section-categories {
  padding: var(--section-py) 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 117, 255, 0.08), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(8, 117, 255, 0.06), transparent 48%),
    #ffffff;
  border-top: 1px solid rgba(3,8,82,0.08);
}
.categories-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  grid-template-areas:
    "featured card1 card2"
    "featured card3 card4";
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
  min-height: 560px;
}
.cat-featured {
  grid-area: featured;
}
.categories-grid .cat-card:nth-of-type(2) { grid-area: card1; }
.categories-grid .cat-card:nth-of-type(3) { grid-area: card2; }
.categories-grid .cat-card:nth-of-type(4) { grid-area: card3; }
.categories-grid .cat-card:nth-of-type(5) { grid-area: card4; }
.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(3,8,82,0.18);
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  box-shadow: 0 18px 44px rgba(3,8,82,0.055);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cat-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(3,8,82,0.1);
  border-color: rgba(3,8,82,0.26);
}
.cat-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 18px 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(3,8,82,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(244,247,255,0.78)),
    radial-gradient(circle at 30% 20%, rgba(3,8,82,0.08), transparent 38%);
}
.cat-featured .cat-visual {
  min-height: 320px;
}
.cat-card:not(.cat-featured) .cat-visual {
  min-height: 128px;
}
.cat-visual-1,
.cat-visual-2,
.cat-visual-3,
.cat-visual-4,
.cat-visual-5 {
  background: transparent;
}

.cat-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(3,8,82,0.08), transparent 68%);
  top: -42px;
  right: -38px;
  pointer-events: none;
}
.cat-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(3,8,82,0.08), rgba(255,255,255,0.18)),
    repeating-linear-gradient(135deg, rgba(3,8,82,0.04) 0 1px, transparent 1px 10px);
  opacity: 0.95;
}
.cat-featured .cat-visual::before {
  background:
    radial-gradient(ellipse at 28% 56%, rgba(3,8,82,0.12) 0 9%, transparent 10%),
    radial-gradient(ellipse at 45% 50%, rgba(3,8,82,0.1) 0 10%, transparent 11%),
    radial-gradient(ellipse at 62% 45%, rgba(3,8,82,0.08) 0 11%, transparent 12%),
    linear-gradient(135deg, rgba(3,8,82,0.08), rgba(255,255,255,0.18)),
    repeating-linear-gradient(135deg, rgba(3,8,82,0.035) 0 1px, transparent 1px 10px);
}
.cat-visual::after {
  content: "Imagen";
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(3,8,82,0.58);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(3,8,82,0.1);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  border: 1px solid rgba(3,8,82,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), 0 12px 26px rgba(3,8,82,0.08);
  position: relative;
  z-index: 2;
}
.cat-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-primary);
}
.cat-featured .cat-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 22px;
}
.cat-featured .cat-icon-wrap svg {
  width: 35px;
  height: 35px;
}
.cat-body {
  padding: 20px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-featured .cat-body {
  padding: 24px 30px 30px;
  justify-content: flex-start;
}
.cat-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(3,8,82,0.72);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cat-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 9px;
  letter-spacing: 0;
}
.cat-featured .cat-name { font-size: 26px; }
.cat-desc {
  font-size: 14px;
  color: #5f6c86;
  line-height: 1.66;
  flex: 1;
  margin-bottom: 20px;
}
.cat-featured .cat-desc {
  flex: 0;
  margin-bottom: 18px;
}
.cat-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.cat-feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(3,8,82,0.045);
  border: 1px solid rgba(3,8,82,0.12);
  font-size: 11px;
  font-weight: 600;
}
.cat-featured .cat-cta {
  margin-top: auto;
}
.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0;
  transition: gap 0.2s, background 0.2s, border-color 0.2s;
  padding: 7px 12px;
  border: 1px solid rgba(3,8,82,0.12);
  border-radius: 999px;
  background: rgba(3,8,82,0.04);
}
.cat-cta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cat-card:hover .cat-cta {
  gap: 11px;
  border-color: rgba(3,8,82,0.24);
  background: rgba(3,8,82,0.07);
}
.categories-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid rgba(3,8,82,0.18);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 28px rgba(3,8,82,0.06);
  transition: all 0.25s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.home-page .categories-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  grid-template-areas:
    "featured card1 card2"
    "featured card3 card4";
  gap: 20px;
  min-height: 560px;
}

.home-page .cat-card {
  min-width: 0;
  border-radius: 24px;
}

.home-page .cat-featured {
  grid-area: featured;
}

/* =============================================
   BRANDS
   ============================================= */
.section-brands {
  padding: 72px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}
.brands-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.brand-showcase-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  transition: none;
}
.brand-showcase-card:hover {
  transform: none;
}
.brand-logo-panel {
  position: relative;
  width: 100%;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.brand-logo-panel img {
  position: absolute;
  inset: 18px 24px;
  display: block;
  width: calc(100% - 48px);
  height: calc(100% - 36px);
  object-fit: contain;
  object-position: center;
}
.brand-logo-color {
  opacity: 0;
  transition: opacity 0.24s ease;
}
.brand-logo-blue {
  filter: brightness(0) saturate(100%) invert(8%) sepia(89%) saturate(2090%) hue-rotate(231deg) brightness(78%) contrast(116%);
  opacity: 1;
  transition: opacity 0.24s ease;
}
.brand-showcase-card:hover .brand-logo-color {
  opacity: 1;
}
.brand-showcase-card:hover .brand-logo-blue {
  opacity: 0;
}

/* =============================================
   SOLUTIONS CAROUSEL
   ============================================= */
.section-solutions {
  padding: 78px 0 110px;
  background: var(--color-primary);
}
.section-solutions .section-eyebrow {
  background: rgba(250,140,22,0.15);
  border-color: rgba(250,140,22,0.3);
}
.section-solutions .section-title {
  color: #fff;
}
.section-solutions .section-subtitle {
  color: rgba(255,255,255,0.65);
}
.projects-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.projects-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.project-slide {
  display: flex;
  min-width: 100%;
  min-height: 420px;
}
.project-visual {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-visual-1 {
  background: linear-gradient(135deg, rgba(250,140,22,0.25), rgba(3,8,82,0.6));
}
.project-visual-2 {
  background: linear-gradient(135deg, rgba(37,211,102,0.2), rgba(3,8,82,0.6));
}
.project-visual-icon {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.8);
}
.project-content-container {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(250,140,22,0.12);
  border: 1px solid rgba(250,140,22,0.25);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.project-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.project-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}
.project-details {
  display: flex;
  gap: 32px;
}
.project-detail-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.project-detail-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.solutions-use-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}
.solution-use-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}
.solution-use-card-main {
  grid-row: span 2;
  min-height: 618px;
  justify-content: flex-end;
}
.solution-use-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 30px 82px rgba(0,0,0,0.24);
}
.solution-use-chip {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(3,8,82,0.05);
  border: 1px solid rgba(3,8,82,0.12);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.solution-use-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  border: 1px solid rgba(3,8,82,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), 0 12px 26px rgba(3,8,82,0.08);
}
.solution-use-icon svg {
  width: 30px;
  height: 30px;
}
.solution-use-card h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 600;
}
.solution-use-card-main h3 {
  font-size: 34px;
  max-width: 420px;
}
.solution-use-card p {
  margin: 0 0 24px;
  color: #5f6c86;
  font-size: 14px;
  line-height: 1.68;
}
.solution-use-card-main p {
  max-width: 500px;
  font-size: 15px;
}
.solution-use-link {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(3,8,82,0.04);
  border: 1px solid rgba(3,8,82,0.12);
  font-size: 13px;
  font-weight: 700;
}
.solution-use-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-system {
  position: relative;
}
.solution-arc-stage {
  min-height: 0;
  position: relative;
  overflow: visible;
  padding-top: 10px;
}
.solution-arc {
  position: relative;
  width: min(1040px, 100%);
  min-height: 230px;
  margin: 0 auto;
  padding: 42px 76px 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  align-items: start;
  gap: clamp(18px, 3.2vw, 54px);
}
.solution-arc::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: min(860px, 86%);
  height: 210px;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}
.solution-arc-card {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.74);
  cursor: pointer;
  appearance: none;
  border-radius: 28px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  transform: translateY(var(--card-y, 0px)) rotate(var(--card-rotate, 0deg));
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}
.solution-arc-card:hover {
  transform: translateY(calc(var(--card-y, 0px) - 6px)) rotate(var(--card-rotate, 0deg));
}
.solution-arc-card.active {
  color: #fff;
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.34);
}
.solution-arc-water { --card-y: 82px; --card-rotate: -18deg; }
.solution-arc-irrigation { --card-y: 10px; --card-rotate: -6deg; }
.solution-arc-hoses { --card-y: 10px; --card-rotate: 7deg; }
.solution-arc-control { --card-y: 82px; --card-rotate: 18deg; }
.solution-arc-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--color-primary);
  background: rgba(255,255,255,0.94);
}
.solution-arc-icon svg {
  width: 22px;
  height: 22px;
}
.solution-arc-card span:last-child {
  font-size: 13px;
  font-weight: 600;
}
.solution-panels {
  position: relative;
  max-width: 680px;
  min-height: 330px;
  margin: 54px auto 0;
  text-align: center;
}
.solution-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}
.solution-panel::before {
  display: none;
}
.solution-panel-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--color-accent);
  background: rgba(250,140,22,0.12);
  border: 1px solid rgba(250,140,22,0.24);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.solution-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}
.solution-panel p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.65;
}
.solution-panel-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.solution-panel-meta span {
  padding: 8px 12px;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 600;
}
.solution-panel a {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 13px 20px;
  color: var(--color-primary);
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.solution-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =============================================
   MARQUEE
   ============================================= */
.section-marquee {
  padding: 0;
  overflow: hidden;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.marquee-container {
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-light), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg-light), transparent);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}
.marquee-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  opacity: 0.5;
  padding: 0 20px;
  transition: opacity 0.2s;
}
.marquee-item:hover { opacity: 1; }
.marquee-sep {
  font-size: 12px;
  color: var(--color-accent);
  font-weight: 700;
  align-self: center;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.section-testimonials {
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 117, 255, 0.08), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(8, 117, 255, 0.06), transparent 48%),
    #ffffff;
  border-top: 1px solid rgba(3, 8, 82, 0.08);
}
.section-testimonials .section-header {
  max-width: 720px;
  margin: 0 auto 30px;
}
.section-testimonials .section-subtitle {
  max-width: 660px;
}
.testimonials-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 2fr);
  gap: 18px;
  align-items: stretch;
}
.testimonial-feature {
  position: relative;
  min-height: 340px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 24px;
  color: var(--color-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,249,255,0.86));
  border: 1px solid rgba(3, 8, 82, 0.18);
  box-shadow: 0 18px 44px rgba(3, 8, 82, 0.08);
}
.testimonial-feature::before {
  display: none;
}
.testimonial-feature::after {
  display: none;
}
.testimonial-feature-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.testimonial-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(3,8,82,0.055);
  border: 1px solid rgba(3,8,82,0.14);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.testimonial-feature-quote {
  position: relative;
  z-index: 1;
  margin: 28px 0 28px;
  color: var(--color-primary);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.68;
  font-weight: 720;
  letter-spacing: 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.testimonial-card {
  min-height: 340px;
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,255,0.86));
  border: 1px solid rgba(3, 8, 82, 0.18);
  box-shadow: 0 16px 40px rgba(3, 8, 82, 0.065);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  display: none;
}
.home-page .section-testimonials .testimonial-card {
  border-radius: 24px;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(3, 8, 82, 0.12);
  border-color: rgba(3, 8, 82, 0.24);
}
.testimonial-card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--color-primary);
  background: linear-gradient(180deg, #fff, #f3f6ff);
  border: 1px solid rgba(3, 8, 82, 0.13);
  box-shadow: 0 16px 34px rgba(3, 8, 82, 0.08);
}
.testimonial-card-icon svg {
  width: 21px;
  height: 21px;
}
.testimonial-stars {
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.testimonial-stars i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(250,140,22,0.12);
}
.testimonial-quote {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-dark);
  line-height: 1.7;
  flex: 1;
}
.testimonial-profile {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #dfe6ff);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  border: 1px solid rgba(255,255,255,0.5);
}
.testimonial-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}
.testimonial-role {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}
.testimonial-card .testimonial-role {
  color: var(--color-text-muted);
}
.testimonial-tag {
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  color: var(--color-primary);
  background: rgba(3, 8, 82, 0.05);
  border: 1px solid rgba(3, 8, 82, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}
.testimonial-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.testimonial-metrics div {
  padding: 13px 14px 14px;
  border-radius: 14px;
  background: rgba(3,8,82,0.045);
  border: 1px solid rgba(3,8,82,0.11);
}
.testimonial-metrics strong {
  display: block;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 7px;
}
.testimonial-metrics span {
  display: block;
  margin-top: 0;
  color: var(--color-text-muted);
  font-size: 9px;
  line-height: 1.35;
}

/* =============================================
   CTA BANNER
   ============================================= */
.section-cta-banner {
  padding: var(--section-py) 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--color-primary);
  border-radius: 28px;
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,140,22,0.15), transparent 65%);
  right: -80px;
  top: -120px;
  pointer-events: none;
}
.cta-banner-inner::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  right: 100px;
  bottom: -60px;
  pointer-events: none;
}
.cta-banner-text { flex: 1; position: relative; z-index: 1; }
.cta-banner-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.cta-banner-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 480px;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--color-success);
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  transition: all 0.25s;
}
.btn-cta-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}

/* =============================================
   HOME CONTACT
   ============================================= */
.home-contact-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 34px;
  background:
    radial-gradient(circle at 14% 86%, rgba(0, 119, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fd 100%);
}

.home-contact-section::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 210px;
  height: 120px;
  opacity: 0.28;
  background-image: radial-gradient(#0077ff 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.contact-page-section {
  padding-top: 112px;
}

.home-contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.home-contact-kicker {
  display: inline-flex;
  color: #006cff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.home-contact-info h2 {
  color: #071d3b;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 22px;
}

.contact-page-title {
  color: #071d3b;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 22px;
}

.home-contact-info h2 span {
  color: #006cff;
}

.contact-page-title span {
  color: #006cff;
}

.home-contact-info > p {
  max-width: 380px;
  color: #30445f;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.home-contact-cards {
  display: grid;
  gap: 14px;
  max-width: 380px;
}

.home-contact-card {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 29, 59, 0.06);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(7, 29, 59, 0.06);
}

.home-contact-icon,
.home-contact-form-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #006cff;
  background: #edf5ff;
  border-radius: 50%;
}

.home-contact-icon svg,
.home-contact-form-icon svg {
  width: 25px;
  height: 25px;
}

.home-contact-card small {
  display: block;
  color: #50627a;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 5px;
}

.home-contact-card strong {
  display: block;
  color: #071d3b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.home-contact-form-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 29, 59, 0.08);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(7, 29, 59, 0.08);
}

.home-contact-form-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.home-contact-form-head h3 {
  color: #071d3b;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 6px;
}

.home-contact-form-head p {
  color: #344762;
  font-size: 13px;
}

.home-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
}

.home-contact-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.home-contact-field.full {
  grid-column: 1 / -1;
}

.home-contact-field label {
  color: #071d3b;
  font-size: 12px;
  font-weight: 700;
}

.home-contact-field input,
.home-contact-field select,
.home-contact-field textarea {
  width: 100%;
  border: 1px solid rgba(7, 29, 59, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #071d3b;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-contact-field input,
.home-contact-field select {
  height: 46px;
  padding: 0 16px;
}

.home-contact-field textarea {
  min-height: 126px;
  resize: vertical;
  padding: 15px 16px 26px;
}

.home-contact-field input::placeholder,
.home-contact-field textarea::placeholder {
  color: #8798b1;
}

.home-contact-field select {
  appearance: none;
  color: #7c8ba4;
  background-image:
    linear-gradient(45deg, transparent 50%, #0b3b74 50%),
    linear-gradient(135deg, #0b3b74 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 20px,
    calc(100% - 14px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.home-contact-field input:focus,
.home-contact-field select:focus,
.home-contact-field textarea:focus {
  border-color: rgba(0, 108, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 108, 255, 0.08);
}

.home-contact-counter {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #667891;
  font-size: 12px;
}

.home-contact-perks {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-contact-perks article {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px;
  background: #f7faff;
  border: 1px solid rgba(7, 29, 59, 0.05);
  border-radius: 8px;
}

.home-contact-perks svg {
  width: 28px;
  height: 28px;
  color: #006cff;
  flex: 0 0 28px;
}

.home-contact-perks strong {
  display: block;
  color: #071d3b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.home-contact-perks span {
  display: block;
  color: #6d7d95;
  font-size: 11px;
  line-height: 1.25;
}

.home-contact-submit {
  min-width: 194px;
  min-height: 48px;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #006cff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 108, 255, 0.22);
}

.home-contact-submit:hover {
  background: #005ddc;
  transform: translateY(-1px);
}

.home-contact-submit svg {
  width: 18px;
  height: 18px;
}

.home-contact-security {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: #667891;
  font-size: 13px;
  text-align: center;
}

.home-contact-security svg {
  width: 16px;
  height: 16px;
  color: #071d3b;
}

@media (max-width: 1024px) {
  .home-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-info,
  .home-contact-info > p,
  .home-contact-cards {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .home-contact-section {
    padding: 56px 0 28px;
  }

  .contact-page-section {
    padding-top: 88px;
  }

  .home-contact-form-card {
    padding: 22px;
  }

  .home-contact-form,
  .home-contact-perks {
    grid-template-columns: 1fr;
  }

  .home-contact-submit {
    width: 100%;
  }
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-description {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 340px;
}
.footer-legal-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.footer-col {}
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
  text-decoration: none;
}
.footer-social-link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-copyright, .footer-address {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   FLOATING BUTTON
   ============================================= */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  left: auto;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-floating.whatsapp {
  width: auto;
  min-width: 132px;
  height: 56px;
  padding: 0 20px 0 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 14px 34px rgba(37,211,102,0.34);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  animation: pulse-whatsapp 2.6s infinite;
}
.btn-floating.whatsapp svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: block;
}
.btn-floating.whatsapp:hover {
  transform: translateY(-4px);
  background: #1ebe5d;
  box-shadow: 0 18px 42px rgba(37,211,102,0.46);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .solutions-use-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-use-card-main {
    grid-column: span 2;
    min-height: 360px;
  }

  .solution-arc-stage {
    min-height: 0;
    padding: 0;
  }

  .solution-arc {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .solution-arc::before {
    display: none;
  }

  .solution-arc-card,
  .solution-arc-water,
  .solution-arc-irrigation,
  .solution-arc-hoses,
  .solution-arc-control {
    position: static;
    width: auto;
    height: 118px;
    transform: none;
  }

  .solution-panels {
    min-height: 310px;
    margin: 34px auto 0;
  }

  .testimonials-showcase {
    grid-template-columns: 1fr;
  }

  .testimonial-feature,
  .testimonial-card {
    min-height: 0;
  }

  .brands-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand-showcase-card {
    min-height: 0;
  }

  .brand-logo-panel {
    height: 96px;
  }

  .home-page .categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: none;
    min-height: 0;
  }

  .home-page .cat-featured {
    grid-column: span 2;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    min-height: 0;
  }
  .cat-featured {
    grid-column: span 2;
    grid-row: auto;
  }
  .cat-featured .cat-visual {
    min-height: 126px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }
  .steps-grid { flex-wrap: wrap; justify-content: center; }
  .steps-connector { display: none; }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .hero-section,
  .slider-container {
    height: 620px;
    min-height: 620px;
  }
  .slide {
    align-items: flex-start;
  }
  .slide-bg {
    background-position: center bottom;
  }
  .slide-bg::before {
    width: 100%;
    background:
      linear-gradient(180deg, rgba(2, 5, 54, 0.96) 0%, rgba(2, 5, 54, 0.84) 42%, rgba(2, 5, 54, 0.32) 72%, rgba(2, 5, 54, 0.56) 100%);
  }
  .slide-bg::after {
    display: none;
  }
  .hero-section .slide-content {
    min-height: auto;
    padding: 96px 24px 0 !important;
  }
  .slider-dots {
    bottom: 112px;
  }
  .section-header.centered { margin-bottom: 40px; }
  .home-page .categories-grid,
  .categories-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    min-height: 0;
  }
  .solutions-use-grid {
    grid-template-columns: 1fr;
  }
  .solution-use-card,
  .solution-use-card-main {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding: 24px;
  }
  .solution-use-card-main h3 {
    font-size: 28px;
  }
  .solution-arc {
    grid-template-columns: 1fr 1fr;
  }
  .solution-arc-card {
    height: 104px;
  }
  .solution-panel {
    padding: 0 4px;
  }
  .solution-panel h3 {
    font-size: 30px;
  }
  .solution-panel p {
    font-size: 14px;
  }
  .section-testimonials {
    padding: 64px 0 76px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-feature {
    padding: 26px;
    border-radius: 22px;
  }
  .testimonial-feature-top,
  .testimonial-metrics {
    grid-template-columns: 1fr;
  }
  .testimonial-feature-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonial-feature-quote {
    font-size: 24px;
  }
  .testimonial-card {
    padding: 22px;
    border-radius: 20px;
  }
  .home-page .cat-card,
  .home-page .cat-featured,
  .cat-card,
  .cat-featured {
    grid-column: auto;
  }
  .cat-featured { flex-direction: column; }
  .cat-featured .cat-visual { min-height: 112px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .project-slide { flex-direction: column; }
  .project-visual { flex: 0 0 200px; width: 100%; }
  .project-content-container { padding: 28px; }
  .stats-grid { gap: 0; }
  .stat-item { padding: 0 12px; }
  .stat-number { font-size: 26px; }
  .stat-label { font-size: 10px; text-align: center; }
}
@media (max-width: 480px) {
  .floating-actions {
    right: 14px;
    left: auto;
    bottom: 16px;
  }
  .btn-floating.whatsapp {
    min-width: 112px;
    height: 48px;
    padding: 0 15px 0 13px;
    font-size: 13px;
  }
  .btn-floating.whatsapp svg {
    width: 20px;
    height: 20px;
  }
  .slide-title {
    font-size: 31px;
    max-width: 330px;
  }
  .slide-eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .btn-quote,
  .btn-quote-outline {
    width: 100%;
    justify-content: center;
  }
  .slide-badge {
    display: none;
  }
  .cta-banner-inner { padding: 28px; }
  .cta-banner-actions { width: 100%; flex-direction: column; }
  .btn-cta-primary, .btn-cta-secondary { justify-content: center; }
  .slider-arrow.left { left: 12px; }
  .slider-arrow.right { right: 12px; }
}

/* Final hero overrides with home-page specificity */
.home-page .hero-section {
  height: min(720px, 100vh);
  min-height: 620px;
}

.home-page .slider-container,
.home-page .slide {
  height: 100%;
}

.home-page .hero-section .slide-content {
  max-width: 1180px !important;
  padding: clamp(126px, 20vh, 168px) 24px 128px !important;
}

.home-page .slide-title {
  max-width: 600px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-page .stats-section {
  padding: 0;
}

.home-page .stats-grid {
  display: flex;
  padding: 14px 24px;
}

.home-page .stat-item {
  padding: 0 34px;
}

.home-page .stat-number {
  font-size: 30px;
  letter-spacing: 0;
}

.home-page .stat-label {
  color: #667085;
}

@media (max-width: 768px) {
  .home-page .hero-section,
  .home-page .slider-container,
  .home-page .slide {
    height: 620px;
    min-height: 620px;
  }

  .home-page .hero-section .slide-content {
    padding: 96px 24px 0 !important;
  }

  .home-page .slide-title {
    max-width: 330px;
    font-size: 31px;
  }

  .home-page .stats-grid {
    padding: 12px 12px;
  }

  .home-page .stat-item {
    padding: 0 10px;
  }

  .home-page .stat-number {
    font-size: 25px;
  }
}

/* Carousel composition fix */
.home-page .slide-bg,
.home-page .slide-bg-1,
.home-page .slide-bg-2,
.home-page .slide-bg-3,
.home-page .slide-bg-4,
.home-page .slide-bg-5 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-page .slide-bg-1 {
  background-image: url("../img/home-carousel/wide-riego-field-ai.webp");
}

.home-page .slide-bg-2 {
  background-image: url("../img/home-carousel/wide-advisor-irrigation-ai.webp");
}

.home-page .slide-bg-3 {
  background-image: url("../img/home-carousel/wide-nursery-micro-irrigation-ai.webp");
}

.home-page .slide-bg-4 {
  background-image: url("../img/home-carousel/wide-filters-valves-field-ai.webp");
}

.home-page .slide-bg-5 {
  background-image: url("../img/home-carousel/wide-hoses-hdpe-field-ai.webp");
}

.home-page .slide-bg::before {
  inset: 0;
  width: 100%;
  background:
    linear-gradient(112deg, rgba(2, 5, 54, 0.42) 0%, rgba(2, 5, 54, 0.32) 24%, rgba(2, 5, 54, 0.16) 43%, rgba(2, 5, 54, 0.05) 58%, rgba(2, 5, 54, 0) 74%),
    linear-gradient(180deg, rgba(2, 5, 54, 0.03) 0%, rgba(2, 5, 54, 0) 50%, rgba(2, 5, 54, 0.06) 100%);
  backdrop-filter: grayscale(0.38) saturate(0.28) brightness(0.8) contrast(0.9);
  -webkit-backdrop-filter: grayscale(0.38) saturate(0.28) brightness(0.8) contrast(0.9);
  mask-image: linear-gradient(112deg, #000 0%, rgba(0,0,0,0.86) 28%, rgba(0,0,0,0.5) 50%, transparent 76%);
  -webkit-mask-image: linear-gradient(112deg, #000 0%, rgba(0,0,0,0.86) 28%, rgba(0,0,0,0.5) 50%, transparent 76%);
}

.home-page .slide-bg::after {
  inset: 0;
  width: 100%;
  display: block;
  opacity: 0.08;
  background:
    radial-gradient(circle at 20% 22%, rgba(255,255,255,0.18) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 52%, rgba(255,255,255,0.11) 0 1px, transparent 1.3px),
    radial-gradient(circle at 44% 78%, rgba(0,0,0,0.24) 0 1px, transparent 1.5px);
  background-size: 13px 13px, 18px 18px, 15px 15px;
  mask-image: linear-gradient(112deg, #000 0%, rgba(0,0,0,0.82) 28%, rgba(0,0,0,0.38) 50%, transparent 76%);
  -webkit-mask-image: linear-gradient(112deg, #000 0%, rgba(0,0,0,0.82) 28%, rgba(0,0,0,0.38) 50%, transparent 76%);
}

.home-page .slide-media {
  display: none;
}

.home-page .slide-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-page .hero-section .slide-content {
  max-width: 100% !important;
  padding: 120px 80px !important;
  align-items: flex-start;
  justify-content: center !important;
  text-align: left;
}

.home-page .slide-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  letter-spacing: 0.08em;
}

.home-page .slide-title {
  max-width: 650px;
  font-size: clamp(36px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 0;
  text-wrap: balance;
  text-shadow: 0 14px 36px rgba(2,5,54,0.56), 0 2px 10px rgba(2,5,54,0.34);
}

.home-page .slide-subtitle {
  max-width: 560px;
  margin: 16px 0 0;
  color: #fa8c16;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 10px 24px rgba(2,5,54,0.54), 0 2px 8px rgba(2,5,54,0.36);
}

.home-page .cta-row {
  gap: 12px;
}

.home-page .hero-section .slide .cta-row {
  display: flex;
  margin-top: 14px;
}

.home-page .hero-section .slide .cta-row .btn-quote {
  min-height: 48px;
  border-radius: 8px;
  padding: 14px 22px;
}

.home-page .btn-quote,
.home-page .btn-quote-outline {
  min-height: 46px;
  border-radius: 8px;
  padding: 13px 20px;
}

.home-page .slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.48), rgba(255,255,255,0.16));
  color: #020536;
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow:
    0 16px 38px rgba(2,5,54,0.22),
    inset 0 1px 0 rgba(255,255,255,0.68),
    inset 0 -10px 24px rgba(255,255,255,0.12);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}

.home-page .slider-arrow:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.62), rgba(255,255,255,0.24));
  color: #020536;
  border-color: rgba(255,255,255,0.76);
  transform: translateY(-50%) translateY(-28px) scale(1.05);
}

.home-page .slider-arrow.left {
  left: 12px;
}

.home-page .slider-arrow.right {
  right: 12px;
}

.home-page .slider-dot {
  background: rgba(255,255,255,0.68);
  border-color: rgba(255,255,255,0.78);
}

.home-page .slider-dot.active {
  background: #fa8c16;
}

@media (max-width: 1024px) {
  .home-page .slide-media {
    right: 32px;
    width: 48vw;
  }

  .home-page .slide-title {
    max-width: 600px;
    font-size: 40px;
  }

  .home-page .slide-subtitle {
    max-width: 500px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .home-page .hero-section,
  .home-page .slider-container,
  .home-page .slide {
    height: 690px;
    min-height: 690px;
  }

  .home-page .slide-bg,
  .home-page .slide-bg-1,
  .home-page .slide-bg-2,
  .home-page .slide-bg-3,
  .home-page .slide-bg-4,
  .home-page .slide-bg-5 {
    background-size: cover;
    background-position: center bottom;
  }

  .home-page .slide-bg::before {
    background:
      linear-gradient(180deg, rgba(2, 5, 54, 0.98) 0%, rgba(2, 5, 54, 0.88) 42%, rgba(2, 5, 54, 0.44) 72%, rgba(2, 5, 54, 0.68) 100%);
  }

  .home-page .hero-section .slide-content {
    padding: 100px 60px !important;
    align-items: flex-start;
    justify-content: center !important;
    text-align: left;
  }

  .home-page .slide-title {
    max-width: 420px;
    font-size: 31px;
    line-height: 1.08;
  }

  .home-page .slide-subtitle {
    max-width: 360px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.32;
  }

  .home-page .hero-section .slide .cta-row {
    width: 100%;
    margin-top: 18px;
  }

  .home-page .hero-section .slide .cta-row .btn-quote {
    width: 100%;
    justify-content: center;
  }

  .home-page .slider-arrow {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%) translateY(-28px);
  }

  .home-page .slider-arrow:hover {
    transform: translateY(-50%) translateY(-28px) scale(1.04);
  }

  .home-page .slider-dots {
    bottom: 102px;
  }
}

@media (max-width: 480px) {
  .home-page .slide-title {
    font-size: 29px;
  }

  .home-page .slide-subtitle {
    max-width: 320px;
    font-size: 14px;
  }

  .home-page .hero-global-cta {
    left: 18px;
    right: 18px;
  }

  .home-page .slider-arrow.left {
    left: 10px;
  }

  .home-page .slider-arrow.right {
    right: 10px;
  }
}

/* Home replica requested 2026-06-30
   Keeps the existing hero carousel intact and replaces the rest of the home surface. */
.home-page .section-steps,
.home-page .section-categories,
.home-page .section-brands,
.home-page .section-solutions,
.home-page .section-marquee,
.home-page .section-testimonials,
.home-page .section-cta-banner {
  display: none !important;
}

.home-page .stats-section {
  display: none !important;
}

.home-page {
  background: #ffffff;
}

.home-page .home-start-complete {
  position: relative;
  overflow: hidden;
  padding: 56px 0 70px;
  background: #ffffff;
}

.home-page .home-start-complete::before {
  display: none;
}

.home-page .home-start-complete > .container {
  position: relative;
  z-index: 1;
}

.home-page .home-experts-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 54px;
  align-items: center;
  justify-content: center;
  padding-bottom: 54px;
}

.home-page .home-experts-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-page .home-mini-kicker {
  display: inline-block;
  color: #0875ff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.home-page .home-experts-copy h2,
.home-page .home-section-centered h2,
.home-page .home-final-quote h2 {
  color: #071d44;
  font-weight: 700;
  letter-spacing: 0;
}

.home-page .home-experts-copy h2 {
  max-width: 480px;
  margin: 0 auto 16px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
}

.home-page .home-experts-copy p {
  max-width: 590px;
  margin: 0 auto 22px;
  color: #4f5f77;
  font-size: 15px;
  line-height: 1.78;
}

.home-page .home-outline-arrow {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #071d44;
  background: #fff;
  border: 1px solid rgba(7, 29, 68, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(7, 29, 68, 0.06);
}

.home-page .home-outline-arrow span {
  color: #0875ff;
}

.home-page .home-metrics-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
  border: 1px solid rgba(7, 29, 68, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(7, 29, 68, 0.09);
}

.home-page .home-metrics-row-section {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  padding: 0 0 26px;
}

.home-page .home-metrics-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: none;
}

.home-page .home-metrics-card article {
  min-height: 118px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 24px;
  border-right: 1px solid rgba(7, 29, 68, 0.08);
  border-bottom: 1px solid rgba(7, 29, 68, 0.08);
}

.home-page .home-metrics-row article {
  min-height: 96px;
  border-bottom: 0;
}

.home-page .home-metrics-row article:nth-child(2n) {
  border-right: 1px solid rgba(7, 29, 68, 0.08);
}

.home-page .home-metrics-row article:last-child {
  border-right: 0;
}

.home-page .home-metrics-card article:nth-child(2n) {
  border-right: 0;
}

.home-page .home-metrics-card article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.home-page .home-metrics-row article,
.home-page .home-metrics-row article:nth-child(2n),
.home-page .home-metrics-row article:nth-last-child(-n + 2) {
  border-right: 1px solid rgba(7, 29, 68, 0.08);
  border-bottom: 0;
}

.home-page .home-metrics-row article:last-child {
  border-right: 0;
}

.home-page .metric-icon,
.home-page .system-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.home-page .metric-icon {
  width: 42px;
  height: 42px;
  background: #f3f8ff;
  border: 1px solid rgba(7, 29, 68, 0.07);
}

.home-page .metric-icon svg,
.home-page .system-icon svg,
.home-page .home-process-flow svg,
.home-page .home-final-actions svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .metric-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
  stroke-width: 1.85;
}

.home-page .metric-icon.blue,
.home-page .system-icon.blue {
  color: #0875ff;
  background: #edf9f1;
}

.home-page .metric-icon.green,
.home-page .system-icon.green {
  color: #17b45b;
  background: #ecfbf2;
}

.home-page .metric-icon.orange,
.home-page .system-icon.orange {
  color: #ff8a00;
  background: #fff3e2;
}

.home-page .metric-icon.navy,
.home-page .system-icon.navy {
  color: #071d44;
  background: #eef2f8;
}

.home-page .home-metrics-card strong {
  display: block;
  color: #071d44;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 6px;
}

.home-page .home-metrics-card p {
  margin: 0;
  color: #66758d;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.home-page .home-system-showcase {
  position: relative;
  margin: 20px calc(50% - 50vw) 0;
  padding: 70px calc(50vw - 50%) 58px;
  overflow: hidden;
  background: var(--color-primary);
}

.home-page .home-system-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.2;
  pointer-events: none;
}

.home-page .home-system-head {
  position: relative;
  z-index: 2;
  display: block;
}

.home-page .home-section-centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-page .home-section-centered h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.16;
}

.home-page .home-system-showcase .home-mini-kicker {
  color: #63d991;
}

.home-page .home-system-showcase .home-section-centered h2 {
  color: #fff;
}

.home-page .home-system-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
}

.home-page .home-system-nav {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-page .home-system-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
}

.home-page .home-system-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .home-system-carousel {
  position: relative;
  z-index: 1;
  margin: 0 -20px;
  padding: 0 20px;
  overflow: hidden;
}

.home-page .home-system-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0 8px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.home-page .home-system-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.home-page .home-system-grid.is-dragging .home-system-card {
  pointer-events: none;
}

.home-page .home-system-grid.is-looping {
  scroll-snap-type: none;
}

.home-page .home-system-grid::-webkit-scrollbar {
  display: none;
}

.home-page .home-system-card {
  position: relative;
  flex: 0 0 clamp(240px, 26vw, 310px);
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  text-align: left;
  color: #071d44;
  background: #fff;
  border: 1px solid rgba(7, 29, 68, 0.075);
  border-radius: 12px;
  box-shadow: none;
  scroll-snap-align: start;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-page .home-system-card::before {
  display: none;
}

.home-page .home-system-card[data-system-theme="green"]::before {
  background: rgba(24, 181, 101, 0.1);
}

.home-page .home-system-card[data-system-theme="orange"]::before {
  background: rgba(250, 140, 22, 0.12);
}

.home-page .home-system-card[data-system-theme="navy"]::before {
  background: rgba(7, 29, 68, 0.08);
}

.home-page .home-system-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 117, 255, 0.16);
  box-shadow: none;
}

.home-page .system-card-count {
  display: none;
}

.home-page .system-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  background: #f4f8ff;
  border: 1px solid rgba(7, 29, 68, 0.06);
}

.home-page .system-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}

.home-page .home-brands-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(48px, 9vw, 110px);
  margin-top: 48px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.home-page .home-brand-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(46px, 7vw, 84px);
  max-width: 240px;
  opacity: 0.72;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-page .home-brand-logo-link img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-page .home-brand-logo-link:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.home-page .home-system-card h3 {
  margin: auto 0 8px;
  color: #071d44;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
}

.home-page .home-system-card p {
  max-width: 240px;
  margin: 0 0 14px;
  color: #60708a;
  font-size: 12px;
  line-height: 1.5;
}

.home-page .home-system-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0875ff;
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
}

.home-page .home-process-strip {
  position: relative;
  margin: 14px 0 8px;
  padding: 58px 0 46px;
  overflow: hidden;
}

.home-page .home-process-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 117, 255, 0.08), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(8, 117, 255, 0.06), transparent 48%),
    #ffffff;
  border: 1px solid rgba(7, 29, 68, 0.045);
  border-radius: 12px;
  pointer-events: none;
}

.home-page .home-process-strip .home-section-centered {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.home-page .home-process-intro {
  max-width: 590px;
  margin: 12px auto 0;
  color: #66768d;
  font-size: 15px;
  line-height: 1.68;
}

.home-page .home-process-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0 20px;
}

.home-page .home-process-flow::before {
  display: none !important;
}

.home-page .home-process-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 238px;
  min-width: 0;
  padding: 28px 22px 26px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(7, 29, 68, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-page .home-process-flow article:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 117, 255, 0.12);
  box-shadow: 0 10px 30px rgba(8, 117, 255, 0.05);
}

.home-page .home-process-flow article > span {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0875ff;
  background: #f2f7ff;
  border: 1px solid rgba(8, 117, 255, 0.08);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  box-shadow: none;
}

.home-page .home-process-flow i {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0875ff;
  margin: 12px 0 24px;
  font-style: normal;
  background: #f2f7ff;
  border: 1px solid rgba(8, 117, 255, 0.08);
  border-radius: 50%;
  box-shadow: none;
}

.home-page .home-process-flow i svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.8;
}

.home-page .home-process-flow h3 {
  margin: 0 0 16px;
  color: #071d44;
  font-size: 17px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.home-page .home-process-flow h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: #0875ff;
  border-radius: 2px;
}

.home-page .home-process-flow p {
  max-width: 230px;
  margin: 0 auto;
  color: #66768d;
  font-size: 13px;
  line-height: 1.62;
}

.home-page .home-final-quote {
  min-height: 144px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 34px 42px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(6, 29, 69, 0.2);
}

.home-page .home-final-quote h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.08;
}

.home-page .home-final-quote p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.home-page .home-final-actions {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.home-page .home-final-actions > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: #061d45;
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.home-page .home-final-actions small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.home-page .home-final-actions svg {
  width: 20px;
  height: 20px;
  color: #21c15f;
}

.home-page .logo img,
.drawer-logo {
  display: block;
  width: auto;
  height: 29px;
  max-width: 178px;
}

.home-page header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

.home-page header.scrolled .logo img {
  filter: none;
}

.home-page .left-section {
  gap: clamp(18px, 2.3vw, 34px);
}

.home-page .nav-links {
  gap: clamp(14px, 1.8vw, 26px);
}

.home-page .nav-link {
  font-weight: 700;
}

.home-page .btn-login {
  min-width: 88px;
}

.home-page .home-trust-strip {
  position: relative;
  z-index: 15;
  margin-top: -48px;
  padding: 0 0 36px;
}

.home-page .home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(3, 8, 82, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(3, 8, 82, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .home-trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid rgba(3, 8, 82, 0.1);
}

.home-page .home-trust-item:last-child {
  border-right: 0;
}

.home-page .home-line-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061d45;
}

.home-page .home-line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .home-line-icon.white {
  color: #fff;
}

.home-page .home-trust-item h3 {
  margin: 0 0 5px;
  color: #071d44;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.home-page .home-trust-item p {
  margin: 0;
  color: #536177;
  font-size: 12px;
  line-height: 1.45;
}

.home-page .home-about {
  padding: 28px 0 56px;
  background: #fff;
}

.home-page .home-about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.home-page .home-kicker {
  display: inline-block;
  color: #0b7cff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.home-page .home-about-copy h2,
.home-page .home-section-head h2,
.home-page .home-project-inner h2 {
  letter-spacing: 0;
}

.home-page .home-about-copy h2 {
  max-width: 520px;
  margin: 0 0 18px;
  color: #071d44;
  font-size: clamp(29px, 3.1vw, 40px);
  font-weight: 700;
  line-height: 1.12;
}

.home-page .home-about-copy p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #4b5870;
  font-size: 16px;
  line-height: 1.72;
}

.home-page .home-pill-btn,
.home-page .home-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.home-page .home-pill-btn {
  color: #fff;
  background: #061d45;
  box-shadow: 0 12px 28px rgba(6, 29, 69, 0.18);
}

.home-page .home-pill-btn span,
.home-page .home-light-btn span,
.home-page .home-solution-card span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.home-page .home-pill-btn span,
.home-page .home-solution-card span {
  color: #061d45;
  background: #fff;
}

.home-page .home-about-media {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  border-radius: 8px;
  background: #dfe8f2;
}

.home-page .home-about-media img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
  object-position: center;
}

.home-page .brand-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  pointer-events: none;
}

.home-page .brand-shape-a {
  width: 92px;
  height: 92px;
  background: #061d45;
  border-radius: 0 42px 0 0;
}

.home-page .brand-shape-b {
  left: 72px;
  bottom: 28px;
  width: 78px;
  height: 64px;
  background: #0b83ff;
  border-radius: 34px 34px 34px 0;
}

.home-page .home-solutions {
  padding: 42px 0 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 8, 36, 0.96), rgba(3, 23, 65, 0.94)),
    #031741;
}

.home-page .home-section-head {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-page .home-solutions .home-kicker {
  margin-bottom: 6px;
}

.home-page .home-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.18;
}

.home-page .home-solution-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.home-page .home-solution-card {
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  color: #071d44;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.home-page .home-solution-card img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
}

.home-page .home-solution-card div {
  position: relative;
  flex: 1;
  padding: 18px 58px 20px 22px;
}

.home-page .home-solution-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.home-page .home-solution-card p {
  margin: 0;
  color: #29384f;
  font-size: 13px;
  line-height: 1.48;
}

.home-page .home-solution-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 32px;
  height: 32px;
  color: #fff;
  background: #0b83ff;
  font-size: 18px;
}

.home-page .home-project-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--color-primary);
}

.home-page .home-project-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 22px;
}

.home-page .home-project-inner h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.18;
}

.home-page .home-project-inner p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.home-page .home-light-btn {
  color: #0b65d8;
  background: #fff;
  min-width: 174px;
}

.home-page .home-light-btn span {
  color: #fff;
  background: #0b83ff;
}

.home-page footer {
  padding-top: 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--color-primary-dark);
}

.home-page .home-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(140px, 1fr));
  gap: 42px;
  padding-top: 54px;
  padding-bottom: 48px;
}

.home-page .home-footer-brand p,
.home-page .home-newsletter-copy {
  margin: 18px 0 0;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.home-page .footer-logo {
  display: block;
  width: 172px;
  height: auto;
  filter: brightness(0) invert(1);
}

.home-page .footer-col-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 16px;
}

.home-page .footer-link,
.home-page .footer-contact-item {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-bottom: 8px;
}

.home-page .footer-link:hover {
  color: #fff;
}

.home-page .footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.home-page .footer-social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.home-page .home-newsletter-form {
  position: relative;
  max-width: 250px;
  margin-top: 18px;
}

.home-page .home-newsletter-form input {
  width: 100%;
  height: 46px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 0 54px 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.home-page .home-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.home-page .home-newsletter-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061d45;
  background: #fff;
  border-radius: 50%;
}

.home-page .home-newsletter-form svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .home-page .home-experts-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-page .home-system-card {
    flex-basis: clamp(230px, 34vw, 300px);
  }
}

@media (max-width: 900px) {
  .home-page .home-metrics-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-metrics-row article:nth-child(2n) {
    border-right: 0;
  }

  .home-page .home-metrics-row article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-page .home-metrics-row article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 29, 68, 0.08);
  }

  .home-page .home-system-showcase {
    padding-top: 54px;
    padding-bottom: 46px;
  }

  .home-page .home-system-head {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-page .home-system-actions {
    justify-content: center;
    margin: -14px 0 24px;
  }

  .home-page .home-system-carousel {
    margin: 0 -14px;
    padding: 0 14px;
  }

  .home-page .home-process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 12px;
  }

  .home-page .home-process-flow::before {
    display: none;
  }

  .home-page .home-final-quote {
    grid-template-columns: 1fr;
  }

  .home-page .home-final-actions {
    justify-items: start;
  }
}

/* Alineación definitiva del encabezado Categorías. */
.catalog-page .providers-sidebar .sidebar-card.categories-card .sidebar-title.sidebar-title-with-icon {
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
}

.catalog-page .providers-sidebar .sidebar-card.categories-card .sidebar-heading-icon {
  margin: 0 !important;
  align-self: center !important;
}

@media (max-width: 640px) {
  .home-page .home-start-complete {
    padding: 34px 0 44px;
  }

  .home-page .home-system-showcase {
    margin-top: 10px;
    padding-top: 44px;
    padding-bottom: 38px;
  }

  .home-page .home-experts-grid {
    padding-bottom: 34px;
  }

  .home-page .home-process-flow {
    grid-template-columns: 1fr;
  }

  .home-page .home-metrics-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-system-card {
    flex-basis: 74vw;
    min-height: 180px;
    padding: 18px;
  }

  .home-page .home-metrics-row article,
  .home-page .home-metrics-row article:nth-child(2n),
  .home-page .home-metrics-row article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 29, 68, 0.08);
  }

  .home-page .home-metrics-row article:last-child {
    border-bottom: 0;
  }

  .home-page .home-metrics-row article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-page .home-metrics-row article:nth-child(odd) {
    border-right: 1px solid rgba(7, 29, 68, 0.08);
  }

  .home-page .home-system-showcase {
    padding: 44px calc(50vw - 50%) 38px;
  }

  .home-page .home-process-strip {
    margin: 8px 0 0;
    padding: 34px 0;
  }

  .home-page .home-process-strip::before {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .home-page .home-process-flow {
    padding: 0;
    gap: 16px;
  }

  .home-page .home-process-flow article {
    min-height: 0;
    padding: 26px 20px 24px;
    border-radius: 12px;
  }

  .home-page .home-process-flow article::after {
    border-radius: 11px;
  }

  .home-page .home-process-flow i {
    width: 68px;
    height: 68px;
    margin-top: 14px;
  }

  .home-page .home-process-flow article:hover {
    transform: none;
  }

  .home-page .home-final-quote {
    padding: 28px 22px;
  }

  .home-page .home-final-actions > a {
    width: 100%;
  }
}

.home-page .footer-bottom {
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-page .footer-copyright {
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 1180px) {
  .home-page .home-trust-grid,
  .home-page .home-solution-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-trust-item {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(3, 8, 82, 0.1);
  }

  .home-page .home-trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-page .home-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-page .home-about-grid,
  .home-page .home-project-inner {
    grid-template-columns: 1fr;
  }

  .home-page .home-project-inner {
    gap: 12px;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .home-page .home-light-btn {
    width: max-content;
  }
}

@media (max-width: 768px) {
  .home-page .home-trust-strip {
    margin-top: 0;
    padding: 20px 0 28px;
  }

  .home-page .home-trust-grid,
  .home-page .home-solution-cards,
  .home-page .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-trust-item,
  .home-page .home-trust-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(3, 8, 82, 0.1);
  }

  .home-page .home-trust-item:last-child {
    border-bottom: 0;
  }

  .home-page .home-about {
    padding-top: 20px;
  }

  .home-page .home-solution-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .home-page .hero-section .slide .cta-row .btn-quote {
    width: min(100%, 260px) !important;
  }

  .home-page .home-about-copy,
  .home-page .home-about-media,
  .home-page .home-section-head,
  .home-page .home-project-inner {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-width: 0;
  }

  .home-page .home-about-copy h2,
  .home-page .home-about-copy p,
  .home-page .home-section-head h2 {
    width: min(100%, 342px);
    max-width: 342px;
    white-space: normal !important;
    overflow: visible;
  }

  .home-page .home-about-copy h2 {
    font-size: 27px;
    line-height: 1.15;
  }

  .home-page .home-trust-grid {
    padding: 8px 12px;
  }

  .home-page .home-trust-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 14px 4px;
  }

  .home-page .home-line-icon {
    width: 34px;
    height: 34px;
  }

  .home-page .home-light-btn,
  .home-page .home-pill-btn {
    width: 100%;
  }
}

/* Franja naranja animada entre Misión y Visión. */
.about-page.about-replica .about-v2-pillars-grid { gap: 96px !important; }

.about-page .about-purpose-ribbon {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  width: 178px;
  min-height: 112px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #030852;
  text-align: center;
  background: linear-gradient(120deg,#ff6502,#ff9b2f,#ff6502);
  background-size: 220% 220%;
  border: 5px solid #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(255,101,2,.25);
  transform: translate(-50%,-50%);
  animation: purpose-orange-flow 5s ease-in-out infinite;
}

.about-page .about-purpose-ribbon::before,
.about-page .about-purpose-ribbon::after {
  content: '';
  position: absolute;
  left: -20%;
  bottom: -30px;
  width: 140%;
  height: 46px;
  border-radius: 45%;
  background: rgba(255,255,255,.22);
  animation: purpose-water-wave 4s linear infinite;
}

.about-page .about-purpose-ribbon::after {
  bottom: -36px;
  opacity: .5;
  animation-duration: 6s;
  animation-direction: reverse;
}

.about-page .about-purpose-ribbon span {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

@keyframes purpose-orange-flow {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes purpose-water-wave {
  from { transform: translateX(-12%) rotate(0); }
  to { transform: translateX(12%) rotate(360deg); }
}

@media (max-width: 900px) {
  .about-page.about-replica .about-v2-pillars-grid { gap: 22px !important; }
  .about-page .about-purpose-ribbon {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 82px;
    transform: none;
    border: 0;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-purpose-ribbon,
  .about-page .about-purpose-ribbon::before,
  .about-page .about-purpose-ribbon::after { animation: none !important; }
}

/* Hero Nosotros: sin marca superior y contenido totalmente centrado. */
.about-page.about-replica .about-v2-hero .about-v2-kicker {
  display: none !important;
}

.about-page.about-replica .about-v2-hero-grid,
.about-page.about-replica .about-v2-hero-copy {
  width: 100% !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-items: center !important;
  align-items: center !important;
  text-align: center !important;
}

.about-page.about-replica .about-v2-hero-copy h1 {
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.about-page.about-replica .about-v2-hero-copy p {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Espaciado compacto para Misión y Visión. */
.about-page.about-replica .about-v2-pillars {
  padding-top: 62px !important;
  padding-bottom: 70px !important;
}

.about-page.about-replica .about-v2-pillars-head {
  margin-bottom: 38px !important;
}

.about-page.about-replica .about-v2-pillars {
  padding-top: 36px !important;
  padding-bottom: 42px !important;
}

.about-page.about-replica .about-v2-pillars-head {
  margin-bottom: 24px !important;
}

@media (max-width: 520px) {
  .about-page.about-replica .about-v2-pillars {
    padding-top: 30px !important;
    padding-bottom: 34px !important;
  }
  .about-page.about-replica .about-v2-pillars-head {
    margin-bottom: 20px !important;
  }
}

/* La luz de la franja verde sigue el cursor. */
.about-page .about-v2-page > .about-purpose-ribbon {
  --ribbon-x: 50%;
  --ribbon-y: 50%;
  background:
    radial-gradient(circle 150px at var(--ribbon-x) var(--ribbon-y),rgba(255,255,255,.42),transparent 70%),
    linear-gradient(105deg,#18ad55,#25d366,#59df8d,#18ad55) !important;
  background-size: auto,180% 100% !important;
  transition: background-position .12s linear;
}

/* CTA final con luz animada y movimiento sereno. */
.about-page .about-v2-cta-card {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background-size: 180% 180% !important;
  animation: about-cta-gradient 12s ease-in-out infinite !important;
}

.about-page .about-v2-cta-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -55%;
  left: -18%;
  width: 48%;
  height: 210%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.13),transparent);
  transform: rotate(18deg);
  animation: about-cta-light 7s ease-in-out infinite;
}

.about-page .about-v2-cta-btn {
  animation: about-cta-button-float 3.2s ease-in-out infinite;
}

@keyframes about-cta-gradient {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes about-cta-light {
  0%,15% { transform: translateX(-130%) rotate(18deg); opacity: 0; }
  45% { opacity: 1; }
  75%,100% { transform: translateX(330%) rotate(18deg); opacity: 0; }
}

@keyframes about-cta-button-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-v2-cta-card,
  .about-page .about-v2-cta-card::before,
  .about-page .about-v2-cta-btn { animation: none !important; }
}

/* About page replica requested 2026-06-30 */
.about-replica {
  background: #f8fafc;
}

.about-replica header {
  height: 64px;
  background:
    linear-gradient(90deg, rgba(2, 8, 36, 0.98), rgba(3, 23, 65, 0.97)),
    #020824;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(2, 8, 36, 0.14);
}

.about-replica header.scrolled {
  height: 58px;
  background:
    linear-gradient(90deg, rgba(2, 8, 36, 0.98), rgba(3, 23, 65, 0.97)),
    #020824;
}

.about-replica .logo img,
.about-replica .drawer-logo {
  display: block;
  width: auto;
  height: 31px;
  max-width: 182px;
  filter: brightness(0) invert(1);
}

.about-replica .nav-links {
  gap: clamp(16px, 2vw, 30px);
}

.about-replica .nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.about-replica .nav-link:hover,
.about-replica .nav-link.active {
  color: #fff;
}

.about-replica .nav-link.active::after {
  background: #fa8c16;
}

.about-replica .btn-login {
  min-width: 104px;
  color: #061d45;
  background: #fff;
  border-color: #fff;
}

.about-replica .btn-login:hover {
  color: #061d45;
  background: #f4f7fb;
}

.about-replica .btn-cart {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.about-replica .btn-mobile-menu {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.about-replica-page {
  padding-top: 64px;
}

.about-replica-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background: #fff;
}

.about-replica-hero-bg {
  position: absolute;
  inset: 0 0 auto auto;
  width: 62%;
  height: 100%;
  pointer-events: none;
}

.about-replica-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.about-replica-hero::before,
.about-replica-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-replica-hero::before {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.98) 37%, rgba(255,255,255,0.72) 56%, rgba(255,255,255,0.92) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%);
  z-index: 1;
}

.about-replica-hero::after {
  background: radial-gradient(circle at 94% 14%, rgba(11, 131, 255, 0.12), transparent 30%);
  z-index: 2;
}

.about-replica-hero-grid {
  position: relative;
  z-index: 3;
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
}

.about-replica-copy {
  max-width: 530px;
}

.about-replica-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #0b83ff;
  font-size: 14px;
  font-weight: 700;
}

.about-replica-copy h1 {
  margin: 0;
  color: #061d45;
  font-size: clamp(31px, 3.05vw, 43px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-replica-copy h1 span {
  display: block;
  color: #197ee8;
}

.about-replica-copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #092348;
  font-size: 15px;
  line-height: 1.7;
}

.about-replica-mark {
  position: relative;
  justify-self: end;
  width: min(30vw, 320px);
  height: min(24vw, 256px);
  margin-right: 34px;
}

.about-replica-mark span {
  position: absolute;
  display: block;
}

.about-mark-main {
  right: 54px;
  top: 0;
  width: 184px;
  height: 184px;
  background: #061d45;
  border-radius: 92px 92px 0 92px;
}

.about-mark-main::after {
  content: '';
  position: absolute;
  right: 44px;
  top: 44px;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50% 50% 0 50%;
}

.about-mark-orange {
  right: 0;
  top: 88px;
  width: 82px;
  height: 82px;
  background: linear-gradient(135deg, #ff6502, #ff8b10);
  border-radius: 44px 44px 44px 0;
}

.about-mark-blue {
  right: 54px;
  top: 194px;
  width: 58px;
  height: 44px;
  background: #20a8ff;
  border-radius: 0 0 30px 30px;
  transform: skewY(-16deg);
}

.about-replica-content {
  padding: 0 0 30px;
  background: #fff;
}

.about-info-panel,
.about-stats-panel,
.about-contact-panel {
  border: 1px solid rgba(3, 8, 82, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(3, 8, 82, 0.08);
}

.about-info-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 34px 52px;
  margin-top: 0;
  transform: none;
}

.about-info-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  min-width: 0;
}

.about-info-icon,
.about-stat-icon,
.about-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061d45;
}

.about-info-icon {
  width: 42px;
  height: 42px;
}

.about-info-icon svg,
.about-stat-icon svg,
.about-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-info-card h2 {
  margin: 0 0 14px;
  color: #061d45;
  font-size: 16px;
  font-weight: 700;
}

.about-info-card p,
.about-info-card li {
  color: #102847;
  font-size: 13px;
  line-height: 1.72;
}

.about-info-card p,
.about-info-card ul {
  margin: 0;
}

.about-info-card ul {
  padding-left: 16px;
}

.about-stats-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  padding: 22px 54px;
}

.about-stats-panel article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 0 38px;
  border-right: 1px solid rgba(3, 8, 82, 0.14);
}

.about-stats-panel article:first-child {
  padding-left: 0;
}

.about-stats-panel article:last-child {
  border-right: 0;
  padding-right: 0;
}

.about-stat-icon {
  width: 56px;
  height: 56px;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b7cff, #1a9fff);
  box-shadow: 0 10px 26px rgba(11, 124, 255, 0.24);
}

.about-stats-panel strong {
  display: block;
  color: #061d45;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.05;
}

.about-stats-panel p {
  margin: 5px 0 0;
  color: #102847;
  font-size: 13px;
}

.about-contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 78px;
}

.about-contact-copy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.about-contact-icon {
  width: 50px;
  height: 50px;
  color: #0b83ff;
  padding: 12px;
  border-radius: 50%;
  background: #edf9f1;
}

.about-contact-copy h2 {
  margin: 0;
  color: #061d45;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.about-contact-copy p {
  margin: 4px 0 0;
  color: #102847;
  font-size: 13px;
}

.about-contact-btn {
  min-width: 150px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #061d45;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(6, 29, 69, 0.18);
}

.about-replica footer {
  padding-top: 0;
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(90deg, rgba(2, 8, 36, 0.98), rgba(3, 23, 65, 0.97)),
    #020824;
}

.about-replica .home-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(140px, 1fr));
  gap: 42px;
  padding-top: 54px;
  padding-bottom: 48px;
}

.about-replica .home-footer-brand p,
.about-replica .home-newsletter-copy {
  margin: 18px 0 0;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.about-replica .footer-logo {
  display: block;
  width: 172px;
  height: auto;
  filter: brightness(0) invert(1);
}

.about-replica .footer-col-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 16px;
}

.about-replica .footer-link,
.about-replica .footer-contact-item {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-bottom: 8px;
}

.about-replica .footer-contact-item svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-replica .footer-link:hover {
  color: #fff;
}

.about-replica .footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.about-replica .home-newsletter-form {
  position: relative;
  max-width: 250px;
  margin-top: 18px;
}

.about-replica .home-newsletter-form input {
  width: 100%;
  height: 46px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 0 54px 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.about-replica .home-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.about-replica .home-newsletter-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061d45;
  background: #fff;
  border-radius: 50%;
}

.about-replica .home-newsletter-form svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-replica .footer-bottom {
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-replica .footer-copyright {
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 1180px) {
  .about-info-panel,
  .about-stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats-panel article:nth-child(2) {
    border-right: 0;
  }

  .about-stats-panel article {
    padding: 18px 24px;
  }

  .about-replica .home-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-replica-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 40px;
  }

  .about-replica-hero-bg {
    width: 100%;
  }

  .about-replica-mark {
    justify-self: start;
    width: 260px;
    height: 210px;
    margin: 0;
    transform: scale(0.82);
    transform-origin: left top;
  }

  .about-info-panel,
  .about-stats-panel,
  .about-replica .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-panel article,
  .about-stats-panel article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(3, 8, 82, 0.14);
    padding: 18px 0;
  }

  .about-stats-panel article:last-child {
    border-bottom: 0;
  }

  .about-contact-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .about-replica {
    overflow-x: hidden;
  }

  .about-replica header {
    height: 54px;
  }

  .about-replica-page {
    padding-top: 54px;
  }

  .about-replica .logo img {
    height: 27px;
  }

  .about-replica-hero-grid {
    min-height: 0;
  }

  .about-replica-mark {
    width: 245px;
    height: 175px;
    transform: scale(0.68);
    margin-bottom: -42px;
  }

  .about-replica-copy,
  .about-replica-copy h1,
  .about-replica-copy p,
  .about-info-panel,
  .about-stats-panel,
  .about-contact-panel {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-width: 0;
  }

  .about-replica-copy h1 {
    width: 315px !important;
    max-width: 315px !important;
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .about-replica-copy h1 span {
    display: inline;
  }

  .about-replica-copy p {
    width: 315px !important;
    max-width: 315px !important;
    font-size: 14px;
    overflow-wrap: break-word;
  }

  .about-info-panel,
  .about-stats-panel {
    padding: 22px;
    overflow: hidden;
  }

  .about-info-card {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .about-info-card > div,
  .about-stats-panel article > div,
  .about-contact-copy > div {
    width: 250px;
    max-width: 250px;
    min-width: 0;
  }

  .about-info-card p,
  .about-info-card li,
  .about-stats-panel p,
  .about-contact-copy p {
    overflow-wrap: break-word;
  }

  .about-contact-copy {
    align-items: flex-start;
  }

  .about-contact-btn {
    width: 100%;
  }
}

/* About page v2 - long reference layout */
.about-v2-page {
  padding-top: 64px;
  background: #fff;
  color: #071d44;
}

.about-page.about-replica .floating-actions {
  display: none;
}

.about-v2-kicker {
  display: inline-block;
  color: #0b83ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-v2-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-bottom: 1px solid rgba(3, 8, 82, 0.08);
  background:
    radial-gradient(circle at 96% 0%, rgba(11, 131, 255, 0.11), transparent 34%),
    linear-gradient(90deg, #fff 0%, #fff 50%, #f2f8ff 100%);
}

.about-v2-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(640px, 1.22fr);
  align-items: center;
  gap: 10px;
}

.about-v2-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 575px;
}

.about-v2-hero-copy h1 {
  margin: 0;
  color: #071d44;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-v2-hero-copy p {
  max-width: 585px;
  margin: 22px 0 28px;
  color: #102847;
  font-size: 15px;
  line-height: 1.72;
}

.about-v2-primary-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 22px;
  color: #fff;
  background: #061d45;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(6, 29, 69, 0.18);
}

.about-v2-primary-btn span {
  font-size: 18px;
}

.about-v2-hero-art {
  position: relative;
  min-height: 460px;
  margin-right: -125px;
}

.about-v2-hero-art::before,
.about-v2-hero-art::after {
  display: none;
}

.about-v2-hero-art img {
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 1;
  width: 790px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.about-v2-logo-main,
.about-v2-logo-orange,
.about-v2-logo-blue {
  position: absolute;
  display: block;
  z-index: 4;
}

.about-v2-logo-main {
  left: 8px;
  top: 118px;
  width: 168px;
  height: 168px;
  background: #061d45;
  border-radius: 84px 84px 0 84px;
}

.about-v2-logo-main::after {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.9);
  border-radius: 50% 50% 0 50%;
}

.about-v2-logo-orange {
  left: 156px;
  top: 176px;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #ff6502, #ff8b10);
  border-radius: 40px 40px 40px 0;
}

.about-v2-logo-blue {
  left: 104px;
  top: 262px;
  width: 54px;
  height: 36px;
  background: #149bff;
  border-radius: 28px 0 28px 28px;
}

.about-v2-story {
  padding: 38px 0 22px;
}

.about-v2-story-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 42px;
}

.about-v2-story-image {
  overflow: hidden;
  border-radius: 8px;
  min-height: 300px;
  background: #e8eef6;
}

.about-v2-story-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.about-v2-story-copy {
  padding-right: 12px;
}

.about-v2-story-copy p {
  margin: 0 0 24px;
  color: #102847;
  font-size: 14px;
  line-height: 1.78;
}

.about-v2-pillars {
  padding: 14px 0 38px;
}

.about-v2-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.about-v2-pillar-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  min-width: 0;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(3, 8, 82, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(3, 8, 82, 0.06);
}

.about-v2-pillar-card > div {
  min-width: 0;
}

.about-v2-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b83ff;
  padding: 14px;
  border-radius: 50%;
  background: #eaf9ef;
}

.about-v2-card-icon svg,
.about-v2-metrics svg,
.about-v2-difference svg,
.about-v2-final-inner svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-v2-pillar-card h2 {
  margin: 0 0 14px;
  color: #071d44;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.about-v2-pillar-card p,
.about-v2-pillar-card li {
  color: #102847;
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.about-v2-pillar-card p,
.about-v2-pillar-card ul {
  margin: 0;
}

.about-v2-pillar-card ul {
  padding-left: 16px;
}

.about-v2-pillar-card li::marker {
  color: #0b83ff;
}

.about-v2-metrics {
  background:
    linear-gradient(90deg, rgba(2, 8, 36, 0.98), rgba(3, 23, 65, 0.97)),
    #020824;
}

.about-v2-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 138px;
}

.about-v2-metrics article {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 22px;
  min-width: 0;
  padding: 0 38px;
  border-right: 1px solid rgba(255,255,255,0.22);
}

.about-v2-metrics article:last-child {
  border-right: 0;
}

.about-v2-metrics article > span {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.about-v2-metrics strong {
  display: block;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.about-v2-metrics p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}

.about-v2-difference {
  padding: 42px 0 56px;
  background: #fff;
}

.about-v2-difference h2 {
  margin: 0 0 28px;
  color: #071d44;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.12;
}

.about-v2-difference-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-v2-difference-grid article {
  min-height: 180px;
  padding: 0 26px;
  text-align: center;
  border-right: 1px solid rgba(3, 8, 82, 0.12);
}

.about-v2-difference-grid article:last-child {
  border-right: 0;
}

.about-v2-difference-grid span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b83ff;
  margin-bottom: 18px;
}

.about-v2-difference-grid h3 {
  margin: 0 0 14px;
  color: #071d44;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.about-v2-difference-grid p {
  margin: 0;
  color: #2d3d55;
  font-size: 12px;
  line-height: 1.7;
}

.about-v2-team {
  padding: 48px 0 44px;
  background: #f8fbff;
}

.about-v2-team-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 46px;
}

.about-v2-team-copy h2 {
  margin: 0 0 18px;
  color: #071d44;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.13;
}

.about-v2-team-copy p {
  margin: 0 0 22px;
  color: #102847;
  font-size: 14px;
  line-height: 1.78;
}

.about-v2-team-copy a {
  color: #0b83ff;
  font-size: 14px;
  font-weight: 700;
}

.about-v2-team-photo {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 120px 0 0 120px;
}

.about-v2-team-photo img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center 42%;
}

.about-v2-team-orange,
.about-v2-team-blue {
  position: absolute;
  display: block;
  left: 0;
  pointer-events: none;
}

.about-v2-team-orange {
  bottom: 82px;
  width: 92px;
  height: 82px;
  background: linear-gradient(135deg, #ff6502, #ff8b10);
  border-radius: 46px 46px 46px 0;
}

.about-v2-team-blue {
  bottom: 38px;
  left: 70px;
  width: 40px;
  height: 34px;
  background: #149bff;
  border-radius: 22px 0 22px 22px;
}

.about-v2-final-cta {
  padding: 24px 0 36px;
  background: #fff;
}

.about-v2-final-inner {
  min-height: 120px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 48px;
  color: #fff;
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 48%, rgba(255,255,255,0.18), transparent 22%),
    linear-gradient(90deg, #061d45, #092d5d);
}

.about-v2-final-inner > span {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}

.about-v2-final-inner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.1;
}

.about-v2-final-inner p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}

.about-v2-final-inner a {
  min-width: 154px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #061d45;
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .about-v2-hero-grid,
  .about-v2-story-grid,
  .about-v2-team-grid {
    grid-template-columns: 1fr;
  }

  .about-v2-hero-art {
    min-height: 410px;
    margin-right: 0;
  }

  .about-v2-hero-art img {
    left: 50%;
    right: auto;
    width: min(100%, 760px);
    transform: translateX(-50%);
    border-radius: 0;
  }

  .about-v2-pillars-grid,
  .about-v2-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-v2-difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }
}

@media (max-width: 760px) {
  .about-page .container {
    max-width: 390px;
    margin-left: 0;
    margin-right: 0;
  }

  .about-v2-page {
    padding-top: 54px;
    overflow-x: hidden;
  }

  .about-v2-hero,
  .about-v2-hero-grid {
    min-height: 0;
  }

  .about-v2-hero-grid {
    padding-top: 44px;
    padding-bottom: 28px;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
  }

  .about-v2-hero-copy,
  .about-v2-story-copy,
  .about-v2-team-copy,
  .about-v2-difference,
  .about-v2-final-inner {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-width: 0;
  }

  .about-v2-hero-copy h1 {
    width: 330px;
    max-width: 100%;
    font-size: 29px;
    overflow-wrap: break-word;
  }

  .about-v2-hero-copy p,
  .about-v2-story-copy p,
  .about-v2-team-copy p {
    width: 330px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .about-v2-hero-copy p,
  .about-v2-story-copy p,
  .about-v2-team-copy p {
    font-size: 13px;
  }

  .about-v2-hero-art {
    min-height: 260px;
  }

  .about-v2-hero-art::before,
  .about-v2-hero-art::after {
    display: none;
  }

  .about-v2-hero-art img {
    width: 470px;
    max-width: none;
    height: auto;
    top: 0;
  }

  .about-v2-story {
    padding-top: 24px;
  }

  .about-v2-pillars-grid,
  .about-v2-metrics-grid,
  .about-v2-difference-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: calc(100vw - 48px);
    min-width: 0;
  }

  .about-v2-pillar-card {
    grid-template-columns: 58px 1fr;
    padding: 24px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .about-v2-metrics article,
  .about-v2-difference-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .about-v2-metrics article {
    min-height: 110px;
    padding: 20px 0;
  }

  .about-v2-difference-grid article {
    border-bottom-color: rgba(3, 8, 82, 0.12);
  }

  .about-v2-final-inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .about-v2-final-inner a {
    width: 100%;
  }
}

/* Solutions page v2 */
.solutions-page-v2 {
  background: #fff;
}

.solutions-v2-main {
  padding-top: 64px;
  color: #071d44;
  background: #fff;
}

.solutions-v2-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: #0b83ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.solutions-v2-hero {
  min-height: 705px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 25%, rgba(11, 131, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.solutions-v2-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.92fr 1.12fr 0.42fr;
  align-items: center;
  gap: 34px;
}

.solutions-v2-hero-copy {
  min-width: 0;
  max-width: 500px;
}

.solutions-v2-hero-copy h1 {
  margin: 0;
  color: #071d44;
  font-size: clamp(36px, 3.35vw, 48px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
}

.solutions-v2-hero-copy h1 span {
  color: #168aff;
}

.solutions-v2-hero-copy p {
  max-width: 380px;
  margin: 28px 0 32px;
  color: #263a54;
  font-size: 15px;
  line-height: 1.8;
}

.solutions-v2-dark-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  color: #fff;
  background: #061d45;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(6, 29, 69, 0.18);
}

.solutions-v2-dark-btn span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061d45;
  background: #fff;
  border-radius: 50%;
}

.solutions-v2-hero-art {
  position: relative;
  height: 600px;
}

.solutions-v2-logo-core {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 340px;
  height: 340px;
  overflow: hidden;
  border-radius: 170px 170px 0 170px;
  transform: translateX(-50%);
  background: #061d45;
  box-shadow: 0 24px 72px rgba(6, 29, 69, 0.12);
}

.solutions-v2-logo-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solutions-v2-logo-core::after {
  content: '';
  position: absolute;
  top: 86px;
  right: 86px;
  width: 128px;
  height: 128px;
  border-radius: 50% 50% 0 50%;
  background: #fff;
}

.solutions-v2-logo-orange,
.solutions-v2-logo-blue {
  position: absolute;
  display: block;
  z-index: 3;
}

.solutions-v2-logo-orange {
  right: 70px;
  top: 240px;
  width: 128px;
  height: 128px;
  border-radius: 64px 64px 64px 0;
  background: linear-gradient(135deg, #ff6502, #ff8913);
}

.solutions-v2-logo-blue {
  left: 50%;
  top: 372px;
  width: 84px;
  height: 68px;
  border-radius: 0 0 42px 42px;
  background: linear-gradient(135deg, #0b83ff, #23b5ff);
  transform: translateX(44px) skewY(-15deg);
}

.solutions-v2-drop {
  position: absolute;
  left: calc(50% + 87px);
  top: 452px;
  z-index: 2;
  width: 14px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0b83ff, rgba(11, 131, 255, 0.05));
  opacity: 0;
  transform: translateY(-44px);
}

.solutions-ready .solutions-v2-drop {
  animation: solutionDrop 1.7s ease-out 0.25s forwards;
}

.solutions-v2-ripple {
  position: absolute;
  left: calc(50% + 94px);
  top: 506px;
  z-index: 1;
  width: 20px;
  height: 8px;
  border: 2px solid rgba(6, 29, 69, 0.2);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.solutions-ready .ripple-one {
  animation: solutionRipple 1.8s ease-out 1.05s forwards;
}

.solutions-ready .ripple-two {
  animation: solutionRipple 2s ease-out 1.26s forwards;
}

.solutions-v2-hero-art::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 520px;
  height: 155px;
  transform: translateX(-38%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.92) 52%, #fff 74%),
    repeating-radial-gradient(ellipse at center, rgba(6,29,69,0.15) 0 2px, transparent 2px 16px);
  filter: blur(0.2px);
}

.solutions-v2-hero-note {
  align-self: center;
  max-width: 190px;
  padding-top: 260px;
}

.solutions-v2-hero-note strong {
  display: block;
  color: #071d44;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.solutions-v2-hero-note span {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 22px;
  background: #0b83ff;
}

@keyframes solutionDrop {
  0% { opacity: 0; transform: translateY(-58px) scaleY(0.5); }
  35% { opacity: 1; }
  76% { opacity: 1; transform: translateY(38px) scaleY(1); }
  100% { opacity: 0; transform: translateY(58px) scaleY(0.45); }
}

@keyframes solutionRipple {
  0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(9); }
}

.solutions-v2-catalog {
  padding: 68px 0 82px;
  background: #fff;
}

.solutions-v2-section-head {
  max-width: 490px;
  margin-bottom: 62px;
}

.solutions-v2-section-head h2 {
  margin: 0;
  color: #071d44;
  font-size: clamp(29px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.16;
}

.solutions-v2-section-head p {
  margin: 24px 0 0;
  color: #44546b;
  font-size: 14px;
  line-height: 1.8;
}

.solutions-v2-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.solutions-v2-card-grid article {
  position: relative;
  min-width: 0;
  min-height: 390px;
  padding: 0 18px 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(3, 8, 82, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(3, 8, 82, 0.08);
}

.solutions-v2-card-grid img {
  width: calc(100% + 36px);
  height: 185px;
  margin: 0 -18px;
  object-fit: cover;
  object-position: center;
}

.solutions-v2-card-grid span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b83ff;
  padding: 14px;
  margin-top: -29px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(3, 8, 82, 0.12);
}

.solutions-v2-card-grid svg,
.solutions-v2-benefits svg,
.solutions-v2-process svg,
.solutions-v2-dark-stats svg,
.solutions-v2-cta svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solutions-v2-card-grid h3 {
  margin: 20px 0 12px;
  color: #071d44;
  font-size: 18px;
  font-weight: 700;
}

.solutions-v2-card-grid p {
  min-height: 68px;
  margin: 0;
  color: #44546b;
  font-size: 12px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.solutions-v2-card-grid a {
  display: inline-flex;
  margin-top: 16px;
  color: #0b83ff;
  font-size: 13px;
  font-weight: 700;
}

.solutions-v2-benefits {
  padding: 76px 0 82px;
  border-top: 1px solid rgba(3, 8, 82, 0.08);
  background: #fff;
}

.solutions-v2-benefits-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.solutions-v2-benefits-title h2 {
  margin: 0;
  color: #071d44;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.16;
}

.solutions-v2-benefits-title i {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 22px;
  background: #0b83ff;
}

.solutions-v2-benefits article {
  padding: 0 22px;
}

.solutions-v2-benefits article span {
  display: block;
  width: 48px;
  height: 48px;
  color: #0b83ff;
  margin-bottom: 22px;
}

.solutions-v2-benefits h3 {
  margin: 0 0 12px;
  color: #071d44;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.solutions-v2-benefits p {
  margin: 0;
  color: #44546b;
  font-size: 12px;
  line-height: 1.75;
}

.solutions-v2-process {
  padding: 70px 0 78px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.solutions-v2-process-head {
  text-align: center;
  margin-bottom: 58px;
}

.solutions-v2-process-head h2 {
  margin: 0;
  color: #071d44;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
}

.solutions-v2-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
}

.solutions-v2-process-grid article {
  position: relative;
  text-align: center;
}

.solutions-v2-process-grid article:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 58px;
  right: -38px;
  width: 76px;
  border-top: 2px dotted rgba(11, 131, 255, 0.55);
}

.solutions-v2-process-grid b {
  position: absolute;
  top: -8px;
  left: calc(50% - 52px);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0b83ff;
  border-radius: 50%;
  font-size: 12px;
}

.solutions-v2-process-grid span {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071d44;
  padding: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 34px rgba(3, 8, 82, 0.08);
}

.solutions-v2-process-grid h3 {
  margin: 24px 0 10px;
  color: #071d44;
  font-size: 16px;
  font-weight: 700;
}

.solutions-v2-process-grid p {
  max-width: 190px;
  margin: 0 auto;
  color: #44546b;
  font-size: 12px;
  line-height: 1.65;
}

.solutions-v2-dark-stats {
  padding: 42px 0;
  background: #fff;
}

.solutions-v2-dark-inner {
  min-height: 250px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.7fr));
  align-items: center;
  gap: 42px;
  padding: 44px 66px;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 8, 36, 0.96), rgba(3, 23, 65, 0.86)),
    url("../img/about/about-nursery-micro-irrigation-ai.jpg") center/cover;
}

.solutions-v2-dark-inner h2 {
  max-width: 390px;
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.18;
}

.solutions-v2-dark-inner h2 span {
  color: #0b83ff;
}

.solutions-v2-dark-inner p {
  max-width: 360px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.75;
}

.solutions-v2-dark-inner article {
  text-align: center;
}

.solutions-v2-dark-inner article span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
}

.solutions-v2-dark-inner strong {
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.solutions-v2-dark-inner article p {
  max-width: 120px;
  margin: 4px auto 0;
}

.solutions-v2-cta {
  padding: 24px 0 62px;
  background: #fff;
}

.solutions-v2-cta-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 66px;
  border-radius: 8px;
  background: #edf9f1;
}

.solutions-v2-cta-inner > span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 16px;
  border-radius: 50%;
  background: #0b83ff;
}

.solutions-v2-cta-inner h2 {
  margin: 0;
  color: #071d44;
  font-size: 25px;
  font-weight: 700;
}

.solutions-v2-cta-inner p {
  margin: 5px 0 0;
  color: #243951;
  font-size: 14px;
}

.solutions-v2-cta-inner a {
  min-width: 154px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #061d45;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.solutions-page-v2 .home-footer-grid {
  grid-template-columns: minmax(200px, 1fr) repeat(5, minmax(118px, 0.78fr));
}

.solutions-page-v2 .floating-actions {
  display: none;
}

@media (max-width: 1160px) {
  .solutions-v2-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .solutions-v2-hero,
  .solutions-v2-hero-grid {
    min-height: 0;
  }

  .solutions-v2-hero-art {
    height: 570px;
  }

  .solutions-v2-hero-note {
    max-width: 360px;
    padding-top: 0;
  }

  .solutions-v2-card-grid,
  .solutions-v2-benefits-grid,
  .solutions-v2-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-v2-process-grid article::after {
    display: none;
  }

  .solutions-v2-dark-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .solutions-page-v2 .container {
    max-width: 390px;
    margin-left: 0;
    margin-right: 0;
  }

  .solutions-v2-main {
    padding-top: 54px;
    overflow-x: hidden;
  }

  .solutions-v2-hero-grid {
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .solutions-v2-hero-copy,
  .solutions-v2-section-head,
  .solutions-v2-benefits-title {
    max-width: calc(100vw - 48px);
  }

  .solutions-v2-hero-copy h1 {
    max-width: 330px;
    font-size: 30px;
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .solutions-v2-hero-copy p {
    font-size: 13px;
  }

  .solutions-v2-hero-art {
    height: 430px;
    transform: scale(0.74);
    transform-origin: left top;
    margin-bottom: -110px;
  }

  .solutions-v2-hero-note {
    display: none;
  }

  .solutions-v2-card-grid,
  .solutions-v2-benefits-grid,
  .solutions-v2-process-grid,
  .solutions-v2-dark-inner,
  .solutions-v2-cta-inner {
    grid-template-columns: 1fr;
  }

  .solutions-v2-catalog,
  .solutions-v2-benefits,
  .solutions-v2-process {
    padding: 44px 0;
  }

  .solutions-v2-section-head {
    margin-bottom: 32px;
  }

  .solutions-v2-section-head h2,
  .solutions-v2-benefits-title h2,
  .solutions-v2-process-head h2,
  .solutions-v2-dark-inner h2 {
    font-size: 28px;
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .solutions-v2-card-grid article {
    min-height: 0;
  }

  .solutions-v2-card-grid p {
    min-height: 0;
    font-size: 13px;
  }

  .solutions-v2-benefits article {
    padding: 22px 0;
    border-bottom: 1px solid rgba(3, 8, 82, 0.1);
  }

  .solutions-v2-dark-inner,
  .solutions-v2-cta-inner {
    padding: 28px;
  }

  .solutions-v2-cta-inner a {
    width: 100%;
  }

  .solutions-page-v2 .home-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Match the index navbar on internal pages */
.about-replica header {
  height: 54px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.about-replica header.scrolled {
  height: 46px;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(3, 8, 82, 0.08);
  box-shadow: var(--shadow-sm);
}

.about-replica .logo img,
.about-replica .drawer-logo {
  display: block;
  height: 29px;
  width: auto;
  max-width: 178px;
  filter: none;
}

.about-replica .left-section {
  gap: clamp(18px, 2.3vw, 34px);
}

.about-replica .nav-links {
  gap: clamp(14px, 1.8vw, 26px);
}

.about-replica .nav-link {
  color: var(--color-primary);
  font-weight: 700;
}

.about-replica .nav-link:hover,
.about-replica .nav-link.active {
  color: var(--color-accent);
}

.about-replica .btn-login {
  min-width: 88px;
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-primary);
}

.about-replica .btn-login:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.about-replica .btn-cart {
  color: var(--color-primary);
  border-color: var(--color-border);
  background: var(--color-bg-light);
}

.about-replica .btn-cart:hover {
  background-color: #eef2ff;
}

.about-replica .btn-mobile-menu {
  color: var(--color-primary);
  border-color: var(--color-border);
}

/* Store page replica */
.shop-page {
  background: #f7f9fc;
}

.shop-page header,
.shop-page header.scrolled {
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 28px rgba(0, 31, 69, 0.16);
}

.shop-page header {
  height: 54px;
}

.shop-page header.scrolled {
  height: 46px;
}

.shop-page .logo img {
  height: 29px;
  filter: brightness(0) invert(1);
}

.shop-page .header-container {
  max-width: var(--max-width-container);
}

.shop-page .left-section {
  gap: clamp(18px, 2.3vw, 34px);
}

.shop-page .nav-links {
  gap: clamp(14px, 1.8vw, 26px);
}

.shop-page .nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.shop-page .nav-link:hover,
.shop-page .nav-link.active {
  color: var(--color-accent);
}

.shop-page .nav-link.active::after {
  display: block;
  background-color: var(--color-accent);
}

.shop-page .btn-login {
  min-width: 88px;
  color: #071d3b;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 7px 20px rgba(255, 255, 255, 0.18);
}

.shop-page .btn-login:hover {
  color: #071d3b;
  background: #f5f8ff;
}

.shop-page .btn-cart {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.shop-page .btn-cart svg {
  width: 16px;
  height: 16px;
}

.shop-page .btn-mobile-menu {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.shop-main {
  padding: 86px 0 16px;
}

.shop-main .container {
  max-width: 1280px;
}

.shop-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 26px;
}

.shop-heading h1 {
  color: #071d3b;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
}

.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #071d3b;
  font-size: 14px;
}

.shop-breadcrumb a,
.shop-breadcrumb span:last-child {
  color: #071d3b;
}

.shop-breadcrumb span[aria-hidden] {
  color: #0b64c0;
  font-weight: 600;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.shop-filter-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 29, 59, 0.1);
  border-radius: 8px;
  padding: 22px 16px;
  box-shadow: 0 18px 42px rgba(7, 29, 59, 0.06);
}

.shop-filter-panel h2 {
  color: #071d3b;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.shop-category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.shop-category {
  width: 100%;
  color: #071d3b;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.shop-category.active,
.shop-category:hover {
  color: #001f45;
  font-weight: 700;
}

.shop-filter-divider {
  height: 1px;
  background: rgba(7, 29, 59, 0.1);
  margin: 24px 0 18px;
}

.shop-filter-group {
  padding: 0 0 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(7, 29, 59, 0.1);
}

.shop-filter-group h3 {
  color: #071d3b;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.shop-price-range {
  width: 100%;
  accent-color: #0077ff;
}

.shop-price-labels {
  display: flex;
  justify-content: space-between;
  color: #6b7a90;
  font-size: 13px;
  margin-top: 8px;
}

.shop-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #273c5c;
  font-size: 13px;
  font-weight: 500;
  margin: 9px 0;
  cursor: pointer;
}

.shop-check input {
  width: 14px;
  height: 14px;
  accent-color: #0077ff;
}

.shop-clear-filters {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border: 1px solid #071d3b;
  color: #071d3b;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.shop-clear-filters svg {
  width: 17px;
  height: 17px;
}

.shop-content {
  min-width: 0;
}

.shop-toolbar {
  min-height: 42px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.shop-toolbar p {
  color: #071d3b;
  font-size: 14px;
  font-weight: 600;
}

.shop-sort {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(7, 29, 59, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #071d3b;
  font-size: 13px;
  font-weight: 700;
}

.shop-sort select {
  border: 0;
  color: #071d3b;
  font: inherit;
  background: transparent;
  outline: none;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shop-product-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(7, 29, 59, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(7, 29, 59, 0.05);
}

.shop-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(7, 29, 59, 0.08);
}

.shop-product-image {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 8px;
  background: #fff;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 18px 18px;
}

.shop-product-info h3 {
  min-height: 42px;
  color: #071d3b;
  font-size: 15px;
  line-height: 1.28;
  font-weight: 700;
}

.shop-product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.shop-product-bottom strong {
  color: #0077ff;
  font-size: 16px;
  font-weight: 700;
}

.shop-cart-btn {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #071d3b;
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(7, 29, 59, 0.18);
}

.shop-cart-btn:hover {
  background: #0077ff;
}

.shop-cart-btn svg {
  width: 18px;
  height: 18px;
}

.shop-empty {
  grid-column: 1 / -1;
  padding: 80px 20px;
  text-align: center;
  color: #071d3b;
  background: #fff;
  border: 1px solid rgba(7, 29, 59, 0.1);
  border-radius: 8px;
}

.shop-empty h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 36px;
}

.shop-page-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071d3b;
  background: #fff;
  border: 1px solid rgba(7, 29, 59, 0.12);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.shop-page-btn.active {
  color: #fff;
  background: #071d3b;
}

.shop-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid rgba(7, 29, 59, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(7, 29, 59, 0.06);
}

.shop-benefits article {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(7, 29, 59, 0.1);
}

.shop-benefits article:last-child {
  border-right: 0;
}

.shop-benefits svg {
  width: 32px;
  height: 32px;
  color: #071d3b;
  flex: 0 0 32px;
}

.shop-benefits strong {
  display: block;
  color: #071d3b;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
}

.shop-benefits span {
  display: block;
  color: #63758f;
  font-size: 11px;
}

.shop-page .floating-actions {
  display: none;
}

.shop-modal-open {
  overflow: hidden;
}

.shop-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.shop-detail-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.shop-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 35, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.shop-detail-dialog {
  position: relative;
  width: min(1040px, calc(100vw - 32px));
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(4, 16, 34, 0.28);
}

.shop-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8391a7;
  background: #fff;
  border: 1px solid rgba(7, 29, 59, 0.09);
  border-radius: 50%;
}

.shop-detail-close:hover {
  color: #071d3b;
  background: #f6f9ff;
}

.shop-detail-close svg {
  width: 17px;
  height: 17px;
}

.shop-detail-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 24px 34px;
  padding: 30px;
}

.shop-detail-gallery {
  min-width: 0;
}

.shop-detail-main-image {
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #f8fbff;
  border: 1px solid rgba(7, 29, 59, 0.08);
  border-radius: 8px;
}

.shop-detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 58px) 34px;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.shop-detail-thumb {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid rgba(7, 29, 59, 0.1);
  border-radius: 7px;
  background: #fff;
}

.shop-detail-thumb.active {
  border-color: #0077ff;
  box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.14);
}

.shop-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-detail-thumb.arrow {
  height: 34px;
  color: #071d3b;
  font-size: 22px;
  font-weight: 700;
}

.shop-detail-info {
  min-width: 0;
  padding-right: 26px;
}

.shop-detail-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.shop-detail-topline span {
  color: #0077ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-detail-fav {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6d7d92;
  border: 1px solid rgba(7, 29, 59, 0.1);
  border-radius: 50%;
}

.shop-detail-fav svg {
  width: 16px;
  height: 16px;
}

.shop-detail-info h2 {
  color: #071d3b;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 10px;
  max-width: 480px;
}

.shop-detail-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #6e7d92;
  font-size: 12px;
  margin-bottom: 14px;
}

.shop-detail-stars {
  color: #ff9b00;
  letter-spacing: 1px;
}

.shop-detail-rating strong {
  color: #071d3b;
  font-weight: 700;
}

.shop-detail-rating i {
  margin-left: auto;
  color: #12b76a;
  font-style: normal;
  font-weight: 600;
}

.shop-detail-price {
  color: #0077ff;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
}

.shop-detail-tax {
  display: block;
  color: #8795a9;
  font-size: 11px;
  margin-bottom: 12px;
}

.shop-detail-desc {
  color: #384b66;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.shop-detail-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.shop-detail-qty-row > span {
  color: #071d3b;
  font-size: 12px;
  font-weight: 700;
}

.shop-detail-qty {
  height: 30px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 59, 0.12);
  border-radius: 7px;
}

.shop-detail-qty button,
.shop-detail-qty strong {
  width: 32px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071d3b;
  font-size: 13px;
  font-weight: 700;
}

.shop-detail-qty button:hover {
  background: #f0f6ff;
}

.shop-detail-add {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: #0077ff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 119, 255, 0.22);
}

.shop-detail-add:hover {
  background: #0068df;
}

.shop-detail-add svg {
  width: 17px;
  height: 17px;
}

.shop-detail-assurance {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(7, 29, 59, 0.09);
  border-radius: 8px;
  overflow: hidden;
}

.shop-detail-assurance article {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-right: 1px solid rgba(7, 29, 59, 0.09);
}

.shop-detail-assurance article:last-child {
  border-right: 0;
}

.shop-detail-assurance svg {
  width: 29px;
  height: 29px;
  color: #0077ff;
  flex: 0 0 29px;
}

.shop-detail-assurance strong {
  display: block;
  color: #071d3b;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
}

.shop-detail-assurance span {
  display: block;
  color: #6f7f94;
  font-size: 11px;
}

.shop-detail-tabs {
  grid-column: 1 / 2;
}

.shop-detail-tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(7, 29, 59, 0.1);
}

.shop-detail-tab-buttons button {
  min-height: 38px;
  color: #5d6e86;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid transparent;
}

.shop-detail-tab-buttons button.active {
  color: #0077ff;
  border-bottom-color: #0077ff;
}

.shop-detail-tab-panel {
  padding-top: 14px;
  color: #374962;
  font-size: 12px;
  line-height: 1.55;
}

.shop-detail-tab-panel ul {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.shop-detail-tab-panel li {
  position: relative;
  padding-left: 22px;
}

.shop-detail-tab-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9ecff;
  box-shadow: inset 0 0 0 3px #0077ff;
}

.shop-detail-tab-panel dl {
  display: grid;
  gap: 8px;
}

.shop-detail-tab-panel dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(7, 29, 59, 0.08);
}

.shop-detail-tab-panel dt {
  color: #071d3b;
  font-weight: 700;
}

.shop-detail-tab-panel dd {
  color: #60718a;
}

.shop-detail-help {
  grid-column: 2 / 3;
  align-self: start;
  min-height: 170px;
  padding: 22px;
  background: linear-gradient(145deg, #f5f9ff, #eef5ff);
  border: 1px solid rgba(0, 119, 255, 0.08);
  border-radius: 8px;
}

.shop-detail-help-badge {
  position: relative;
  width: 42px;
  height: 32px;
  margin-bottom: 14px;
}

.shop-detail-help-badge span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.shop-detail-help-badge span:first-child {
  left: 0;
  top: 6px;
  background: #0077ff;
}

.shop-detail-help-badge span:last-child {
  right: 3px;
  top: 0;
  background: #ff9b00;
}

.shop-detail-help strong {
  display: block;
  color: #071d3b;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}

.shop-detail-help p {
  color: #65768e;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.shop-detail-help a {
  color: #0077ff;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .shop-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
  }

  .shop-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-benefits article:nth-child(2) {
    border-right: 0;
  }

  .shop-detail-content {
    grid-template-columns: 1fr;
  }

  .shop-detail-info {
    padding-right: 0;
  }

  .shop-detail-tabs,
  .shop-detail-help {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .shop-page header,
  .shop-page header.scrolled {
    height: 54px;
  }

  .shop-main {
    padding-top: 78px;
  }

  .shop-heading h1 {
    font-size: 34px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .shop-sort {
    justify-content: space-between;
  }

  .shop-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .shop-product-card {
    min-height: 260px;
  }

  .shop-product-image {
    height: 150px;
    padding: 14px 14px 8px;
  }

  .shop-product-info {
    padding: 0 14px 14px;
  }

  .shop-product-info h3 {
    font-size: 13px;
  }

  .shop-benefits {
    grid-template-columns: 1fr;
  }

  .shop-benefits article,
  .shop-benefits article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 29, 59, 0.1);
  }

  .shop-benefits article:last-child {
    border-bottom: 0;
  }

  .shop-detail-modal {
    padding: 10px;
    align-items: flex-start;
  }

  .shop-detail-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    margin-top: 10px;
  }

  .shop-detail-content {
    gap: 20px;
    padding: 18px;
  }

  .shop-detail-main-image {
    height: 230px;
  }

  .shop-detail-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr)) 34px;
  }

  .shop-detail-info h2 {
    font-size: 22px;
  }

  .shop-detail-assurance {
    grid-template-columns: 1fr;
  }

  .shop-detail-assurance article {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 29, 59, 0.09);
  }

  .shop-detail-assurance article:last-child {
    border-bottom: 0;
  }

  .shop-detail-tab-buttons {
    grid-template-columns: 1fr;
  }

  .shop-detail-tab-buttons button {
    text-align: left;
  }
}

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

.mobile-shop-home,
.mobile-shop-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .shop-page {
    background: #fff;
  }

  .shop-page header,
  .shop-page header.scrolled {
    height: 92px;
    background: #fff;
    border-bottom: 1px solid rgba(7, 29, 59, 0.08);
    box-shadow: 0 8px 28px rgba(7, 29, 59, 0.08);
  }

  .shop-page .header-container {
    height: 92px;
    padding: 0 22px;
  }

  .shop-page .btn-mobile-menu,
  .shop-page .nav-links,
  .shop-page .btn-login {
    display: none;
  }

  .shop-page .logo img {
    height: 38px;
    filter: none;
  }

  .shop-page .left-section {
    gap: 0;
  }

  .shop-page .actions-section {
    display: flex;
    margin-left: auto;
  }

  .shop-page .btn-cart {
    width: 46px;
    height: 46px;
    color: #071d3b;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .shop-page .btn-cart svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.9;
  }

  .shop-page .cart-count {
    top: 1px;
    right: -2px;
    width: 24px;
    height: 24px;
    font-size: 12px;
    background: #0875ff;
    border: 0;
  }

  .shop-main {
    padding: 92px 0 96px;
  }

  .shop-desktop-store,
  .shop-page footer,
  .shop-page .floating-actions {
    display: none;
  }

  .mobile-shop-home {
    display: block;
    color: #071d3b;
    background:
      radial-gradient(circle at 10% 12%, rgba(0, 119, 255, 0.08), transparent 26%),
      linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  }

  .mobile-shop-shell {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 26px 22px 20px;
  }

  .mobile-shop-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 4px;
    overflow: hidden;
    padding: 36px 0 16px 14px;
    background: #fff;
    border: 1px solid rgba(7, 29, 59, 0.06);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(7, 29, 59, 0.08);
  }

  .mobile-shop-hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding-left: 0;
  }

  .mobile-shop-hero-copy span {
    display: inline-block;
    color: #0875ff;
    font-size: clamp(13px, 2.8vw, 16px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .mobile-shop-hero-copy h1 {
    max-width: 330px;
    color: #071d3b;
    font-size: clamp(31px, 6.2vw, 42px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 22px;
  }

  .mobile-shop-hero-copy h1 strong {
    display: inline;
    color: #0875ff;
    font: inherit;
  }

  .mobile-shop-hero-copy p {
    max-width: 318px;
    color: #152846;
    font-size: clamp(15px, 3vw, 18px);
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 28px;
  }

  .mobile-shop-primary {
    width: 204px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff;
    background: #0875ff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(0, 119, 255, 0.24);
  }

  .mobile-shop-primary svg {
    width: 23px;
    height: 23px;
  }

  .mobile-shop-shipping {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: #071d3b;
  }

  .mobile-shop-shipping svg {
    width: 32px;
    height: 32px;
  }

  .mobile-shop-shipping strong {
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-shop-hero-visual {
    position: relative;
    min-height: 450px;
    margin-right: -22px;
  }

  .mobile-shop-field {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 58vw);
    height: 330px;
    object-fit: cover;
    border-top-left-radius: 130px;
    border-bottom-left-radius: 130px;
    border-top-right-radius: 8px;
    opacity: 0.94;
  }

  .mobile-shop-products {
    position: absolute;
    right: -6px;
    bottom: 24px;
    width: min(430px, 60vw);
    height: 190px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0;
  }

  .mobile-shop-products img {
    width: 24%;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 16px 15px rgba(7, 29, 59, 0.2));
    margin-left: -8%;
  }

  .mobile-shop-products img:first-child {
    width: 34%;
    height: 180px;
    margin-left: 0;
  }

  .mobile-shop-products img:nth-child(4) {
    width: 36%;
    height: 164px;
  }

  .mobile-shop-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 28px;
  }

  .mobile-shop-dots span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #d8e7fb;
  }

  .mobile-shop-dots span:first-child {
    background: #0875ff;
  }

  .mobile-shop-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid rgba(7, 29, 59, 0.06);
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(7, 29, 59, 0.08);
  }

  .mobile-shop-benefits article {
    min-width: 0;
    text-align: center;
    padding: 0 8px;
  }

  .mobile-shop-benefits article > span {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0875ff;
    background: #f2f7ff;
    border-radius: 50%;
    margin-bottom: 12px;
  }

  .mobile-shop-benefits svg {
    width: 36px;
    height: 36px;
  }

  .mobile-shop-benefits strong {
    display: block;
    min-height: 44px;
    color: #071d3b;
    font-size: clamp(13px, 2.8vw, 17px);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .mobile-shop-benefits p {
    color: #132743;
    font-size: clamp(12px, 2.5vw, 15px);
    line-height: 1.45;
    font-weight: 500;
  }

  .mobile-shop-section {
    margin-top: 36px;
  }

  .mobile-shop-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
  }

  .mobile-shop-section-head h2 {
    color: #071d3b;
    font-size: clamp(20px, 4.4vw, 25px);
    line-height: 1.15;
    font-weight: 700;
  }

  .mobile-shop-section-head a {
    flex: 0 0 auto;
    color: #0875ff;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-shop-category-grid,
  .mobile-shop-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .mobile-shop-category-card,
  .mobile-shop-product-card {
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(7, 29, 59, 0.07);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(7, 29, 59, 0.08);
  }

  .mobile-shop-category-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    padding: 16px;
  }

  .mobile-shop-category-card img {
    width: 100%;
    height: 96px;
    object-fit: contain;
    margin-bottom: 13px;
  }

  .mobile-shop-category-card strong {
    min-height: 42px;
    color: #071d3b;
    font-size: clamp(13px, 2.7vw, 16px);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 13px;
  }

  .mobile-shop-category-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0875ff;
    font-size: clamp(12px, 2.5vw, 15px);
    font-weight: 700;
    margin-top: auto;
  }

  .mobile-shop-category-card svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-shop-product-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 16px;
  }

  .mobile-shop-product-card img {
    width: 100%;
    height: 122px;
    object-fit: contain;
    margin-bottom: 12px;
  }

  .mobile-shop-product-card h3 {
    min-height: 58px;
    color: #071d3b;
    font-size: clamp(13px, 2.7vw, 16px);
    line-height: 1.22;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .mobile-shop-product-card > strong {
    display: block;
    color: #0875ff;
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    margin-bottom: 16px;
  }

  .mobile-shop-cart-btn {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #061d3a;
    border-radius: 8px;
    margin-top: auto;
  }

  .mobile-shop-cart-btn svg {
    width: 22px;
    height: 22px;
  }

  .mobile-shop-help {
    min-height: 188px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
    padding: 26px 30px;
    background: linear-gradient(110deg, #edf9f1 0%, #f8fbff 55%, #eaf8ef 100%);
    border-radius: 8px;
  }

  .mobile-shop-help h2 {
    color: #071d3b;
    font-size: clamp(22px, 4.9vw, 30px);
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .mobile-shop-help p {
    max-width: 420px;
    color: #132743;
    font-size: clamp(14px, 3vw, 17px);
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .mobile-shop-help a {
    width: 174px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: #0875ff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-shop-help > span {
    width: 118px;
    height: 118px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0875ff;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    justify-self: center;
  }

  .mobile-shop-help svg {
    width: 62px;
    height: 62px;
  }

  .mobile-shop-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    height: 82px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 8px 18px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(7, 29, 59, 0.08);
    box-shadow: 0 -12px 34px rgba(7, 29, 59, 0.1);
  }

  .mobile-shop-bottom-nav a {
    min-width: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #071d3b;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .mobile-shop-bottom-nav span {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-align: center;
  }

  .mobile-shop-bottom-nav a.active {
    color: #0875ff;
  }

  .mobile-shop-bottom-nav svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 520px) {
  .mobile-shop-shell {
    padding: 24px 16px 20px;
  }

  .mobile-shop-hero {
    min-height: 620px;
    grid-template-columns: 1fr;
    padding: 30px 0 14px 14px;
  }

  .mobile-shop-hero-copy {
    max-width: 236px;
  }

  .mobile-shop-hero-copy h1 {
    max-width: 236px;
    font-size: 30px;
  }

  .mobile-shop-hero-copy p {
    max-width: 232px;
    font-size: 15px;
  }

  .mobile-shop-primary {
    width: 174px;
    min-height: 54px;
  }

  .mobile-shop-hero-visual {
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 48%;
    min-height: 0;
    margin-right: 0;
    pointer-events: none;
  }

  .mobile-shop-field {
    top: 0;
    right: -98px;
    width: 190px;
    height: 250px;
  }

  .mobile-shop-products {
    right: -42px;
    width: 174px;
    height: 160px;
    bottom: 126px;
  }

  .mobile-shop-products img {
    width: 25%;
    height: 112px;
    margin-left: -10%;
  }

  .mobile-shop-products img:first-child,
  .mobile-shop-products img:nth-child(4) {
    width: 35%;
    height: 134px;
  }

  .mobile-shop-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
    padding: 22px 12px;
  }

  .mobile-shop-category-grid,
  .mobile-shop-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .mobile-shop-category-card {
    min-height: 218px;
    padding: 14px;
  }

  .mobile-shop-product-card {
    min-height: 302px;
    padding: 14px;
  }

  .mobile-shop-help {
    grid-template-columns: minmax(0, 1fr) 94px;
    padding: 24px 18px;
  }

  .mobile-shop-help > span {
    width: 86px;
    height: 86px;
  }

  .mobile-shop-help svg {
    width: 46px;
    height: 46px;
  }

  .mobile-shop-bottom-nav a {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .shop-page .logo img {
    height: 32px;
  }

  .mobile-shop-hero {
    grid-template-columns: 1fr;
    min-height: 640px;
    padding-right: 14px;
  }

  .mobile-shop-hero-copy h1,
  .mobile-shop-hero-copy p {
    max-width: none;
  }

  .mobile-shop-hero-visual {
    min-height: 240px;
    margin-right: -14px;
  }

  .mobile-shop-field {
    width: 100%;
    height: 210px;
  }

  .mobile-shop-products {
    right: -10px;
    bottom: 0;
    width: 100%;
  }

  .mobile-shop-bottom-nav {
    padding-left: 8px;
    padding-right: 8px;
  }

  .mobile-shop-bottom-nav a {
    font-size: 9px;
  }
}

/* Cross-page consistency pass */
.about-replica {
  --inner-bg: #f6f9fc;
  --inner-surface: rgba(255, 255, 255, 0.96);
  --inner-border: rgba(7, 29, 59, 0.09);
  --inner-shadow: 0 18px 46px rgba(7, 29, 59, 0.075);
  --inner-blue: #071d44;
  --inner-accent: #0875ff;
  background: var(--inner-bg);
}

.about-replica .drawer-link.active {
  color: var(--inner-accent);
  background: rgba(8, 117, 255, 0.08);
}

.about-replica .btn-login.active,
.about-replica .btn-login.active:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.about-page .about-v2-page,
.catalog-page .providers-layout,
.contact-page main,
.shop-page .shop-main {
  background:
    radial-gradient(circle at 92% 4%, rgba(8, 117, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 44%, #ffffff 100%);
}

.catalog-page .providers-layout {
  padding: 104px 0 58px;
}

.inner-page-head,
.shop-page .shop-heading {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px !important;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--inner-border);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 24%, rgba(250, 140, 22, 0.14), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: var(--inner-shadow);
}

.inner-page-head::before,
.shop-page .shop-heading::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--inner-accent), var(--color-accent));
}

.inner-page-kicker,
.catalog-page .inner-page-head::after {
  color: var(--inner-accent);
}

.inner-page-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.inner-page-head h1,
.catalog-page .inner-page-head h1,
.shop-page .shop-heading h1 {
  max-width: 720px;
  margin: 0 0 10px !important;
  color: var(--inner-blue) !important;
  font-size: clamp(34px, 4vw, 50px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.inner-page-head p,
.catalog-page .inner-page-head p {
  max-width: 650px;
  margin: 0 !important;
  color: #30445f !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.about-v2-hero {
  border-bottom-color: var(--inner-border);
  background:
    radial-gradient(circle at 92% 12%, rgba(250, 140, 22, 0.12), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

.about-v2-kicker,
.home-contact-kicker {
  color: var(--inner-accent);
  letter-spacing: 0;
}

.about-v2-primary-btn,
.about-v2-final-inner a,
.home-contact-submit,
.mobile-shop-primary,
.mobile-shop-help a {
  border-radius: 8px;
}

.about-v2-primary-btn,
.home-contact-submit,
.mobile-shop-primary,
.shop-clear-filters {
  background: var(--inner-accent);
  box-shadow: 0 14px 30px rgba(8, 117, 255, 0.22);
}

.about-v2-primary-btn:hover,
.home-contact-submit:hover,
.mobile-shop-primary:hover,
.shop-clear-filters:hover {
  background: #0567e1;
}

.about-v2-story-image,
.about-v2-pillar-card,
.about-v2-difference-grid article,
.home-contact-card,
.home-contact-form-card,
.home-contact-perks article,
.sidebar-card,
.shop-filter-panel,
.product-card,
.shop-card,
.shop-benefits article,
.mobile-shop-category-card,
.mobile-shop-product-card {
  border-radius: 8px;
  border-color: var(--inner-border);
  box-shadow: var(--inner-shadow);
}

.about-v2-pillar-card,
.home-contact-card,
.home-contact-form-card,
.sidebar-card,
.shop-filter-panel,
.mobile-shop-category-card,
.mobile-shop-product-card {
  background: var(--inner-surface);
}

.providers-grid-container,
.shop-layout,
.home-contact-grid,
.about-v2-story-grid,
.about-v2-team-grid {
  gap: clamp(28px, 4vw, 52px);
}

.contact-page-section {
  padding-top: 104px;
  padding-bottom: 48px;
  background:
    radial-gradient(circle at 14% 86%, rgba(8, 117, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.shop-page .shop-desktop-store {
  padding-top: 104px;
  padding-bottom: 56px;
}

.shop-page .shop-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 168px;
}

.shop-page .shop-breadcrumb {
  margin-top: 14px;
}

.catalog-page .filter-btn.active,
.shop-page .shop-category-button.active {
  color: #fff;
  background: var(--inner-blue);
}

@media (max-width: 760px) {
  .catalog-page .providers-layout,
  .shop-page .shop-desktop-store,
  .contact-page-section {
    padding-top: 82px;
  }

  .inner-page-head,
  .shop-page .shop-heading {
    padding: 24px 22px;
  }

  .inner-page-head h1,
  .catalog-page .inner-page-head h1,
  .shop-page .shop-heading h1 {
    font-size: 30px !important;
  }
}

/* Inventory management system */
.inventory-main {
  padding: 104px 0 64px;
  background:
    radial-gradient(circle at 92% 6%, rgba(8, 117, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 52%, #ffffff 100%);
}

.inventory-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 92px 20px 42px;
  background:
    radial-gradient(circle at 12% 88%, rgba(8, 117, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.inventory-auth[hidden],
.inventory-main[hidden] {
  display: none !important;
}

.inventory-auth-card {
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--inner-border);
  border-radius: 8px;
  background: var(--inner-surface);
  box-shadow: var(--inner-shadow);
}

.inventory-auth-card > img {
  grid-column: 1 / -1;
  width: 180px;
  height: auto;
}

.inventory-auth-card > div {
  grid-column: 1 / -1;
}

.inventory-auth-card h1 {
  margin: 0 0 10px;
  color: var(--inner-blue);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 700;
}

.inventory-auth-card p {
  max-width: 650px;
  margin: 0;
  color: #30445f;
  font-size: 15px;
  line-height: 1.7;
}

.inventory-auth-card form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(7, 29, 59, 0.09);
  border-radius: 8px;
  background: #fff;
}

.inventory-auth-card h2 {
  margin: 0;
  color: var(--inner-blue);
  font-size: 20px;
  font-weight: 700;
}

.inventory-auth-card label {
  display: grid;
  gap: 8px;
  color: #20324a;
  font-size: 12px;
  font-weight: 700;
}

.inventory-auth-card input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(7, 29, 59, 0.14);
  border-radius: 8px;
  color: #071d3b;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

.inventory-auth-message {
  grid-column: 1 / -1;
  color: #ad2727;
  font-weight: 600;
}

.inventory-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.inventory-stats article,
.inventory-panel {
  border: 1px solid var(--inner-border);
  border-radius: 8px;
  background: var(--inner-surface);
  box-shadow: var(--inner-shadow);
}

.inventory-stats article {
  padding: 22px;
}

.inventory-stats span {
  display: block;
  color: #667891;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.inventory-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--inner-blue);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  font-weight: 700;
}

.inventory-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  gap: 24px;
  align-items: start;
}

.inventory-lower {
  margin-top: 24px;
}

.inventory-panel {
  padding: 24px;
  min-width: 0;
}

.inventory-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.inventory-panel-head h2 {
  margin: 0;
  color: var(--inner-blue);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.inventory-form,
.movement-form {
  display: grid;
  gap: 16px;
}

.inventory-form label,
.movement-form label {
  display: grid;
  gap: 8px;
  color: #20324a;
  font-size: 12px;
  font-weight: 700;
}

.inventory-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inventory-form input,
.inventory-form select,
.inventory-form textarea,
.movement-form input,
.movement-form select,
.movement-form textarea,
.inventory-toolbar input,
.inventory-toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(7, 29, 59, 0.14);
  border-radius: 8px;
  background: #fff;
  color: #071d3b;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  padding: 0 14px;
}

.inventory-form textarea,
.movement-form textarea {
  min-height: 96px;
  padding: 14px;
  resize: vertical;
}

.inventory-form input:focus,
.inventory-form select:focus,
.inventory-form textarea:focus,
.movement-form input:focus,
.movement-form select:focus,
.movement-form textarea:focus,
.inventory-toolbar input:focus,
.inventory-toolbar select:focus {
  border-color: rgba(8, 117, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(8, 117, 255, 0.08);
}

.inventory-primary-btn,
.inventory-ghost-btn,
.inventory-file-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.inventory-primary-btn {
  color: #fff;
  background: var(--inner-accent);
  box-shadow: 0 14px 30px rgba(8, 117, 255, 0.22);
}

.inventory-ghost-btn,
.inventory-file-btn {
  color: var(--inner-blue);
  border: 1px solid rgba(7, 29, 59, 0.13);
  background: #fff;
  cursor: pointer;
}

.inventory-actions,
.inventory-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.inventory-toolbar {
  margin-bottom: 16px;
}

.inventory-toolbar input {
  flex: 1 1 260px;
}

.inventory-toolbar select {
  flex: 0 0 190px;
}

.inventory-table-wrap {
  overflow-x: auto;
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.inventory-table th {
  padding: 12px 10px;
  color: #667891;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(7, 29, 59, 0.09);
}

.inventory-table td {
  padding: 14px 10px;
  color: #20324a;
  font-size: 13px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(7, 29, 59, 0.07);
}

.inventory-product-cell {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.inventory-product-cell img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  background: #eef4fb;
}

.inventory-product-cell strong,
.inventory-product-cell span,
.inventory-table small {
  display: block;
}

.inventory-product-cell strong {
  color: var(--inner-blue);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.inventory-product-cell span,
.inventory-table small {
  margin-top: 4px;
  color: #667891;
  font-size: 11px;
  line-height: 1.3;
}

.inventory-status,
.inventory-movement {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.inventory-status.disponible,
.inventory-movement.compra {
  color: #0d7a3c;
  background: rgba(37, 211, 102, 0.12);
}

.inventory-status.agotado,
.inventory-movement.venta {
  color: #ad2727;
  background: rgba(220, 38, 38, 0.1);
}

.inventory-status.pausado,
.inventory-movement.ajuste {
  color: #805600;
  background: rgba(250, 140, 22, 0.15);
}

.inventory-low {
  color: #ad2727;
}

.inventory-row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.inventory-row-actions button {
  min-height: 30px;
  padding: 0 10px;
  color: var(--inner-blue);
  border: 1px solid rgba(7, 29, 59, 0.12);
  border-radius: 8px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.inventory-empty {
  text-align: center;
  color: #667891 !important;
  padding: 32px !important;
}

@media (max-width: 1100px) {
  .inventory-layout,
  .inventory-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .inventory-main {
    padding-top: 82px;
  }

  .inventory-auth-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .inventory-layout,
  .inventory-stats,
  .inventory-form-grid {
    grid-template-columns: 1fr;
  }

  .inventory-panel-head,
  .inventory-actions,
  .inventory-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .inventory-toolbar select,
  .inventory-toolbar input,
  .inventory-ghost-btn,
  .inventory-file-btn {
    width: 100%;
    flex-basis: auto;
  }
}

/* Minimal content pass */
.home-info-panel {
  padding: 76px 0;
  background: #f7fafc;
  border-top: 1px solid rgba(7, 29, 59, 0.08);
  border-bottom: 1px solid rgba(7, 29, 59, 0.08);
}

.home-info-head {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-info-head h2 {
  margin: 10px 0 12px;
  color: var(--inner-blue);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.home-info-head p {
  margin: 0;
  color: #53647a;
  font-size: 15px;
  line-height: 1.7;
}

.home-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-info-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(7, 29, 59, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 29, 59, 0.05);
}

.home-info-card h3 {
  margin: 16px 0 8px;
  color: var(--inner-blue);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.home-info-card p {
  margin: 0;
  color: #607189;
  font-size: 13px;
  line-height: 1.65;
}

.home-page .slide-title {
  max-width: 720px;
  font-size: clamp(30px, 3.5vw, 44px) !important;
  line-height: 1.05 !important;
}

.home-page .section-title,
.about-v2-difference h2,
.about-v2-team-copy h2,
.about-v2-final-inner h2 {
  font-size: clamp(24px, 2.6vw, 34px) !important;
  line-height: 1.15 !important;
}

.about-v2-hero-copy h1,
.contact-page-title,
.inner-page-head h1,
.catalog-page .inner-page-head h1,
.mobile-shop-hero-copy h1 {
  font-size: clamp(26px, 2.8vw, 36px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

.about-v2-pillar-card h2,
.mobile-shop-section-head h2,
.mobile-shop-help h2,
.inventory-panel-head h2 {
  font-size: clamp(20px, 2vw, 26px) !important;
  line-height: 1.18 !important;
}

.home-page .home-about-media,
.home-page .section-marquee,
.about-v2-hero-art,
.about-v2-story-image,
.about-v2-team-photo,
.mobile-shop-hero-visual,
.mobile-shop-dots {
  display: none !important;
}

.home-page .home-about-grid,
.about-v2-hero-grid,
.about-v2-story-grid,
.about-v2-team-grid,
.mobile-shop-hero {
  grid-template-columns: minmax(0, 1fr) !important;
}

.home-page .home-about-copy,
.about-v2-hero-copy,
.about-v2-story-copy,
.about-v2-team-copy,
.mobile-shop-hero-copy {
  max-width: 760px;
}

.about-v2-hero,
.about-v2-hero-grid {
  min-height: auto !important;
}

.about-v2-hero {
  padding: 120px 0 72px !important;
}

.about-v2-story,
.about-v2-team,
.about-v2-difference,
.section-steps,
.section-categories,
.section-brands,
.section-solutions,
.section-testimonials {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.brand-logo-blue {
  display: none !important;
}

.brand-showcase-card {
  min-height: 120px;
}

.brand-showcase-card img {
  max-height: 42px;
}

.mobile-shop-hero {
  min-height: auto !important;
  padding: 34px !important;
}

.mobile-shop-category-card img {
  display: none !important;
}

.mobile-shop-category-card {
  min-height: auto !important;
  padding: 18px !important;
}

.contact-page-title br {
  display: none;
}

@media (max-width: 980px) {
  .home-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-info-panel {
    padding: 52px 0;
  }

  .home-info-grid {
    grid-template-columns: 1fr;
  }

  .home-page .slide-title {
    font-size: clamp(26px, 7.8vw, 32px) !important;
  }

  .about-v2-hero {
    padding: 96px 0 54px !important;
  }
}

/* About page refresh */
.about-page.about-replica {
  background: #f6f9fc;
}

.about-page.about-replica .about-v2-page {
  padding-top: 0 !important;
  background:
    radial-gradient(circle at 8% 10%, rgba(8, 117, 255, 0.09), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7fbff 100%);
}

/* Transparent navbar state for about replica page */
.about-replica header:not(.scrolled) {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.about-replica header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

.about-replica header:not(.scrolled) .nav-link:hover {
  color: var(--color-accent) !important;
}

.about-replica header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1) !important;
}

.about-replica header:not(.scrolled) .btn-login {
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

.about-replica header:not(.scrolled) .btn-login:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #FFFFFF !important;
}

.about-replica header:not(.scrolled) .btn-cart {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.about-replica header:not(.scrolled) .btn-cart:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: #FFFFFF !important;
}

.about-replica header:not(.scrolled) .btn-mobile-menu {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.about-page.about-replica .about-v2-hero {
  padding: 130px 0 110px !important;
  background: url("../img/fondo-seccion-nosotros.webp") no-repeat center center !important;
  background-size: cover !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-page.about-replica .about-v2-hero-grid,
.about-page.about-replica .about-v2-story-grid,
.about-page.about-replica .about-v2-team-grid {
  grid-template-columns: 1fr !important;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  justify-items: center;
}

.about-page.about-replica .about-v2-hero-copy {
  max-width: 100%;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.about-page.about-replica .about-v2-story-copy,
.about-page.about-replica .about-v2-team-copy {
  max-width: 100%;
}

.about-page.about-replica .about-v2-kicker {
  color: var(--color-secondary) !important;
}

.about-page.about-replica .about-v2-hero-copy h1 {
  max-width: 720px;
  color: #ffffff !important;
  font-size: clamp(38px, 4.8vw, 64px) !important;
  line-height: 1.02 !important;
  font-weight: 700;
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
}

.about-page.about-replica .about-v2-hero-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 16px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.about-page.about-replica .about-v2-primary-btn {
  background: #ffffff !important;
  color: var(--color-primary) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 0 24px 0 14px !important;
  min-height: 48px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
}

.about-page.about-replica .about-v2-primary-btn:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--color-primary) !important;
  transform: translateY(-2px) !important;
}

.about-page.about-replica .about-v2-primary-btn .btn-arrow-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  background-color: #0875ff !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  transition: transform 0.25s ease !important;
}

.about-page.about-replica .about-v2-primary-btn:hover .btn-arrow-icon {
  transform: translateX(2px) !important;
}

.about-page.about-replica .about-v2-primary-btn .btn-arrow-icon svg {
  width: 14px !important;
  height: 14px !important;
}

.about-v2-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.about-v2-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #071d44;
  background: #fff;
  border: 1px solid rgba(7, 29, 59, 0.09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(7, 29, 59, 0.06);
}

.about-page.about-replica .about-v2-hero-art,
.about-page.about-replica .about-v2-story-image,
.about-page.about-replica .about-v2-team-photo {
  display: block !important;
}

.about-page.about-replica .about-v2-hero-art {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  box-shadow: 0 26px 64px rgba(7, 29, 59, 0.14);
}

.about-page.about-replica .about-v2-hero-art img,
.about-page.about-replica .about-v2-story-image img,
.about-page.about-replica .about-v2-team-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.about-page.about-replica .about-v2-story {
  padding: 76px 0 !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 117, 255, 0.08), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(8, 117, 255, 0.06), transparent 48%),
    #ffffff;
  border-bottom: 1px solid rgba(7, 29, 59, 0.05);
}

.about-page.about-replica .about-v2-story-grid {
  grid-template-columns: 1fr !important;
}

.about-page.about-replica .about-v2-story-copy h2 {
  color: #071d44;
  font-size: clamp(28px, 3.5vw, 42px) !important;
  font-weight: 700;
  line-height: 1.15;
  margin: 12px auto 28px;
  padding-bottom: 16px;
  position: relative;
  max-width: 680px;
}

.about-page.about-replica .about-v2-story-copy h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2.5px;
  background-color: #0875ff;
  border-radius: 2px;
}

.about-page.about-replica .about-v2-story-copy p {
  color: #4d5f78;
  font-size: 15px;
  line-height: 1.78;
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}

.about-page.about-replica .about-v2-team-copy p {
  color: #4d5f78;
  font-size: 15px;
  line-height: 1.78;
}

.about-page.about-replica .about-v2-pillars {
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 117, 255, 0.08), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(8, 117, 255, 0.06), transparent 48%),
    #ffffff;
  border-bottom: 1px solid rgba(7, 29, 59, 0.05);
}

.about-page.about-replica .about-v2-pillars-head {
  text-align: center;
  margin-bottom: 48px;
}

.about-page.about-replica .about-v2-pillars-head h2 {
  color: #071d44;
  font-size: clamp(28px, 3.5vw, 42px) !important;
  font-weight: 700;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.about-page.about-replica .about-v2-pillars-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
}

.about-page.about-replica .about-v2-pillars-divider::before,
.about-page.about-replica .about-v2-pillars-divider::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background-color: #0875ff;
}

.about-page.about-replica .about-v2-pillars-divider .divider-dot {
  width: 6px;
  height: 6px;
  background-color: #0875ff;
  border-radius: 50%;
  display: inline-block;
}

.about-page.about-replica .about-v2-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
}

.about-page.about-replica .about-v2-pillar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.about-page.about-replica .about-v2-pillar-col .pillar-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0875ff;
  background: #f2f7ff;
  border: 1px solid rgba(8, 117, 255, 0.08);
  border-radius: 50%;
  margin-bottom: 24px;
}

.about-page.about-replica .about-v2-pillar-col .pillar-icon svg {
  width: 32px;
  height: 32px;
}

.about-page.about-replica .about-v2-pillar-col h3 {
  color: #071d44;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-page.about-replica .about-v2-pillar-col p {
  color: #4d5f78;
  font-size: 14.5px;
  line-height: 1.68;
  max-width: 300px;
  margin: 0;
}

.about-page.about-replica .about-v2-pillar-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.about-page.about-replica .about-v2-pillar-col li {
  color: #4d5f78;
  font-size: 14.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-page.about-replica .about-v2-pillar-col li::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #0875ff;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 768px) {
  .about-page.about-replica .about-v2-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .about-page.about-replica .about-v2-pillar-col ul {
    align-items: center;
  }
}

.about-page.about-replica .about-v2-metrics {
  padding: 54px 0 88px;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 117, 255, 0.08), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(8, 117, 255, 0.06), transparent 48%),
    #ffffff;
}

.about-page.about-replica .about-v2-metrics-grid {
  background:
    radial-gradient(circle at 88% 20%, rgba(8, 117, 255, 0.22), transparent 30%),
    linear-gradient(105deg, #061d45 0%, #021636 100%) !important;
  border-radius: 12px !important;
  padding: 56px 32px !important;
  box-shadow: 0 24px 54px rgba(6, 29, 69, 0.15) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 0 !important;
}

.about-page.about-replica .about-v2-metrics-grid article {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  color: #ffffff !important;
  padding: 0 16px !important;
}

.about-page.about-replica .about-v2-metrics-grid article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.about-page.about-replica .about-v2-metrics-grid article > span {
  width: 52px !important;
  height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 1px solid rgba(8, 117, 255, 0.3) !important;
  background: rgba(8, 117, 255, 0.08) !important;
  color: #0b83ff !important;
  margin-bottom: 18px !important;
}

.about-page.about-replica .about-v2-metrics-grid article > span svg {
  width: 24px !important;
  height: 24px !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
}

.about-page.about-replica .about-v2-metrics-grid article strong {
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
  display: block !important;
  color: #ffffff !important;
}

.about-page.about-replica .about-v2-metrics-grid article p {
  font-size: 13.5px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

@media (max-width: 991px) {
  .about-page.about-replica .about-v2-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 36px 0 !important;
    padding: 44px 24px !important;
  }
  .about-page.about-replica .about-v2-metrics-grid article:nth-child(2n) {
    border-right: none !important;
  }
  .about-page.about-replica .about-v2-metrics-grid article:nth-child(1),
  .about-page.about-replica .about-v2-metrics-grid article:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 24px !important;
  }
}

@media (max-width: 567px) {
  .about-page.about-replica .about-v2-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 32px 0 !important;
    padding: 40px 16px !important;
  }
  .about-page.about-replica .about-v2-metrics-grid article {
    border-right: none !important;
  }
  .about-page.about-replica .about-v2-metrics-grid article:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 20px !important;
  }
}

.about-page.about-replica .about-v2-difference {
  padding: 74px 0 !important;
  background: #fff;
}

.about-page.about-replica .about-v2-difference-grid {
  gap: 16px;
}

.about-page.about-replica .about-v2-difference-grid article {
  min-height: 210px;
  padding: 26px 20px;
  background: #fff;
  border: 1px solid rgba(7, 29, 59, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 29, 59, 0.05);
}

.about-page.about-replica .about-v2-team {
  padding: 74px 0 !important;
  background: #f7fbff;
}

.about-page.about-replica .about-v2-process {
  padding: 76px 0;
  background: #fff;
}

.about-v2-process-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-v2-process-head h2 {
  margin: 0;
  color: #071d44;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 700;
}

.about-v2-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-v2-process-grid article {
  min-height: 210px;
  padding: 26px 22px;
  background: #f7fbff;
  border: 1px solid rgba(7, 29, 59, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 29, 59, 0.05);
}

.about-v2-process-grid span {
  display: inline-flex;
  color: #0875ff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-v2-process-grid h3 {
  margin: 0 0 10px;
  color: #071d44;
  font-size: 18px;
  font-weight: 700;
}

.about-v2-process-grid p {
  margin: 0;
  color: #5a6b84;
  font-size: 13px;
  line-height: 1.65;
}

.about-page.about-replica .about-v2-final-cta {
  padding: 28px 0 60px;
  background: #fff;
}

.about-page.about-replica .about-v2-final-inner {
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 20%, rgba(8, 117, 255, 0.36), transparent 30%),
    linear-gradient(105deg, #061d45 0%, #021636 100%);
}

@media (max-width: 1100px) {
  .about-page.about-replica .about-v2-hero-grid,
  .about-page.about-replica .about-v2-story-grid,
  .about-page.about-replica .about-v2-team-grid {
    grid-template-columns: 1fr !important;
  }

  .about-page.about-replica .about-v2-hero-art {
    min-height: 360px;
  }

  .about-v2-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .about-page.about-replica .about-v2-hero {
    padding: 92px 0 48px !important;
  }

  .about-page.about-replica .about-v2-hero-copy h1 {
    font-size: clamp(31px, 9vw, 42px) !important;
  }

  .about-page.about-replica .about-v2-hero-art,
  .about-page.about-replica .about-v2-story-image,
  .about-page.about-replica .about-v2-team-photo {
    min-height: 250px;
  }

  .about-v2-process-grid {
    grid-template-columns: 1fr;
  }
}

/* Shadow cleanup requested: keep the layout clean with borders instead of heavy depth. */
.home-page .home-outline-arrow,
.home-page .home-metrics-card,
.home-page .home-system-card,
.home-page .home-system-card:hover,
.home-page .home-final-quote,
.home-page .home-trust-grid,
.home-page .home-pill-btn,
.home-page .home-solution-card,
.about-page.about-replica .about-v2-hero-art,
.about-page.about-replica .about-v2-story-image,
.about-page.about-replica .about-v2-team-photo,
.about-page.about-replica .about-v2-pillar-card,
.about-page.about-replica .about-v2-difference-grid article,
.about-page.about-replica .about-v2-process-grid article,
.about-v2-hero-points span,
.about-v2-final-inner {
  box-shadow: none !important;
}

.about-page.about-replica .about-v2-difference-grid article:hover {
  transform: none !important;
}

/* Premium home motion and interaction polish. */
.home-page {
  overflow-x: clip;
}

.home-page .slide.active .slide-bg {
  animation: homeHeroDrift 10s cubic-bezier(0.2, 0.65, 0.25, 1) both;
}

.home-page .slide.active .slide-title,
.home-page .slide.active .slide-subtitle,
.home-page .slide.active .cta-row {
  animation: homeHeroIntro 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-page .slide.active .slide-subtitle {
  animation-delay: 90ms;
}

.home-page .slide.active .cta-row {
  animation-delay: 170ms;
}

.home-page.motion-ready .premium-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(4px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 620ms ease var(--reveal-delay, 0ms);
}

.home-page.motion-ready .premium-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.home-page .home-metrics-row article {
  transition: background-color 260ms ease, border-color 260ms ease;
}

.home-page .home-metrics-row article:hover {
  background: #f8fbff;
}

.home-page .metric-icon,
.home-page .system-icon,
.home-page .home-process-flow i {
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), background-color 260ms ease;
}

.home-page .home-metrics-row article:hover .metric-icon,
.home-page .home-system-card:hover .system-icon,
.home-page .home-process-flow article:hover i {
  transform: translateY(-2px) scale(1.055);
}

.home-page .home-outline-arrow,
.home-page .home-final-actions > a,
.home-page .btn-quote {
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, background-color 220ms ease;
}

.home-page .home-outline-arrow:hover,
.home-page .home-final-actions > a:hover,
.home-page .btn-quote:hover {
  transform: translateY(-2px);
}

.home-page .home-outline-arrow span,
.home-page .home-final-actions > a span,
.home-page .home-system-card small span {
  display: inline-block;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .home-outline-arrow:hover span,
.home-page .home-final-actions > a:hover span,
.home-page .home-system-card:hover small span {
  transform: translateX(4px);
}

.home-page .home-process-flow::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

.home-page .home-process-flow.is-visible::before {
  transform: scaleX(1);
}

.home-page .footer-link {
  position: relative;
  width: max-content;
}

.home-page .footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.home-page :where(a, button, input):focus-visible {
  outline: 3px solid rgba(8, 117, 255, 0.34);
  outline-offset: 3px;
}

@keyframes homeHeroIntro {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes homeHeroDrift {
  from { transform: scale(1.015); }
  to { transform: scale(1.065); }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .home-page.motion-ready .premium-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ========================================================================== */
/* NOSOTROS — definición vigente y única de Misión y Visión                  */
/* ========================================================================== */
.about-page.about-replica .about-v2-kicker {
  display: inline-block !important;
  width: auto !important;
  padding: 0 !important;
  color: #009245 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .1em !important;
}

.about-page.about-replica .about-v2-hero .about-v2-kicker {
  color: #25d366 !important;
}

.about-page.about-replica .about-v2-pillars {
  padding: 88px 0 94px !important;
  overflow: visible !important;
  color: #ffffff !important;
  background: #ffffff !important;
}

.about-page.about-replica .about-v2-pillars::before,
.about-page.about-replica .about-v2-pillars::after,
.about-page.about-replica .about-v2-pillars-grid::before,
.about-page.about-replica .about-v2-pillar-col::before {
  display: none !important;
  content: none !important;
}

.about-page.about-replica .about-v2-pillars > .container {
  width: 100% !important;
  max-width: 1240px !important;
  margin-inline: auto !important;
}

.about-page.about-replica .about-v2-pillars-head {
  width: 100% !important;
  max-width: 780px !important;
  margin: 0 auto 52px !important;
  text-align: center !important;
}

.about-page.about-replica .about-v2-pillars-head h2 {
  margin: 12px 0 0 !important;
  color: #030852 !important;
  font-size: clamp(36px,4vw,54px) !important;
  font-weight: 750 !important;
  line-height: 1.05 !important;
  letter-spacing: -.05em !important;
}

.about-page.about-replica .about-v2-pillars-head .about-title-line {
  display: none !important;
}

.about-page.about-replica .about-v2-pillars-grid {
  width: min(100%,1080px) !important;
  max-width: 1080px !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 22px !important;
  justify-content: center !important;
  justify-items: stretch !important;
}

.about-page.about-replica .about-v2-pillar-col,
.about-page.about-replica .about-v2-pillar-col:nth-child(1),
.about-page.about-replica .about-v2-pillar-col:nth-child(2) {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 230px !important;
  margin: 0 !important;
  padding: 34px 32px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 28px !important;
  color: #030852 !important;
  text-align: left !important;
  background: #f5f5f7 !important;
  border: 0 !important;
  border-radius: 26px !important;
  box-shadow: none !important;
  transform: none !important;
  backdrop-filter: none !important;
  transition: none !important;
}

.about-page.about-replica .about-v2-pillar-col:hover,
.about-page.about-replica .about-v2-pillar-col:nth-child(2):hover {
  transform: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.about-page.about-replica .about-v2-pillar-col .pillar-icon {
  flex: 0 0 126px !important;
  width: 126px !important;
  height: 126px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 28px !important;
  box-shadow: 0 16px 34px rgba(3,8,82,.1) !important;
  transform: none !important;
}

.about-page.about-replica .about-v2-pillar-col .pillar-icon img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}

.about-page.about-replica .about-v2-pillar-col > div:last-child {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.about-page.about-replica .about-v2-pillar-col h3 {
  margin: 0 0 10px !important;
  color: #030852 !important;
  font-size: 25px !important;
  font-weight: 750 !important;
  line-height: 1.15 !important;
  letter-spacing: -.035em !important;
  text-align: left !important;
}

.about-page.about-replica .about-v2-pillar-col p {
  max-width: none !important;
  margin: 0 !important;
  color: #465474 !important;
  font-size: 14px !important;
  line-height: 1.58 !important;
  text-align: left !important;
}

@media (max-width: 900px) {
  .about-page.about-replica .about-v2-pillars-grid {
    max-width: 680px !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .about-page.about-replica .about-v2-pillars { padding: 64px 0 70px !important; }
  .about-page.about-replica .about-v2-pillars-head { margin-bottom: 38px !important; }
  .about-page.about-replica .about-v2-pillar-col,
  .about-page.about-replica .about-v2-pillar-col:nth-child(1),
  .about-page.about-replica .about-v2-pillar-col:nth-child(2) {
    min-height: 0 !important;
    padding: 26px 22px !important;
    gap: 18px !important;
  }
  .about-page.about-replica .about-v2-pillar-col .pillar-icon {
    flex-basis: 88px !important;
    width: 88px !important;
    height: 88px !important;
  }
}

/* Gota SVG completa, sin recortes del navegador. */
.home-page svg.home-impact-drop {
  flex: 0 0 auto !important;
  width: 38px !important;
  height: 46px !important;
  overflow: visible !important;
  fill: #030852 !important;
  background: none !important;
  clip-path: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0 8px 10px rgba(3,8,82,.22));
}

.home-page svg.home-impact-drop .home-impact-drop-shine {
  fill: none !important;
  stroke: rgba(255,255,255,.72) !important;
  stroke-width: 1.7 !important;
  stroke-linecap: round !important;
}

@media (max-width: 620px) {
  .home-page svg.home-impact-drop { width: 30px !important; height: 38px !important; }
}

/* ==========================================================================
   Catalog Page Refresh (providers.html)
   ========================================================================== */

.catalog-page {
  background-color: #f7f9fc !important;
}

.catalog-page .providers-layout {
  padding: 110px 0 80px !important;
}

/* Sidebar styling */
.catalog-page .providers-sidebar {
  width: 290px !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky !important;
  top: 76px !important;
  align-self: flex-start !important;
  max-height: calc(100vh - 96px) !important;
  overflow-y: auto !important;
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}

.catalog-page .providers-sidebar::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
}

.catalog-page .sidebar-card {
  background: #ffffff !important;
  border: 1px solid #eef2f6 !important;
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.catalog-page .sidebar-card.categories-card {
  padding: 20px 0 !important;
}

.catalog-page .sidebar-card.categories-card .sidebar-title {
  padding: 0 24px !important;
  margin-bottom: 16px !important;
}

.catalog-page .sidebar-title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #030852 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 12px 0;
}

.catalog-page .sidebar-title-main {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #030852 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 18px 0;
  border-bottom: 1px solid #eef2f6;
  padding-bottom: 12px;
}

/* Categories items */
.catalog-page .filter-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catalog-page .filter-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding: 11px 24px !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #4a5568 !important;
  text-align: left !important;
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.2s ease !important;
}

.catalog-page .filter-btn-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.catalog-page .category-icon {
  width: 17px !important;
  height: 17px !important;
  color: #718096 !important;
  transition: color 0.2s ease !important;
}

/* Hover state */
.catalog-page .filter-btn:hover {
  background-color: #f7fafc !important;
  color: #030852 !important;
}

.catalog-page .filter-btn:hover .category-icon {
  color: #030852 !important;
}

/* Active state with blue left indicator bar */
.catalog-page .filter-btn.active {
  background-color: rgba(8, 117, 255, 0.06) !important;
  color: #0875ff !important;
  font-weight: 600 !important;
}

.catalog-page .filter-btn.active .category-icon {
  color: #0875ff !important;
}

.catalog-page .filter-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #0875ff;
  border-radius: 0 4px 4px 0;
}

/* Search wrapper */
.catalog-page .search-wrapper {
  position: relative !important;
  margin-bottom: 20px !important;
}

.catalog-page .search-icon {
  position: absolute !important;
  left: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 16px !important;
  height: 16px !important;
  color: #a0aec0 !important;
}

.catalog-page .search-input {
  width: 100% !important;
  padding: 10px 12px 10px 38px !important;
  background: #f7fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  color: #2d3748 !important;
  transition: all 0.2s ease !important;
}

.catalog-page .search-input:focus {
  border-color: #0875ff !important;
  background: #ffffff !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(8, 117, 255, 0.1) !important;
}

/* Collapsible filter groups */
.catalog-page .filter-group {
  border-bottom: 1px solid #eef2f6 !important;
  padding: 16px 0 !important;
}

.catalog-page .filter-group:last-of-type {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.catalog-page .filter-group-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #4a5568 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  margin-bottom: 12px !important;
}

.catalog-page .chevron-icon {
  width: 14px !important;
  height: 14px !important;
  color: #a0aec0 !important;
}

.catalog-page .filter-group-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.catalog-page .brand-filter-option,
.catalog-page .price-filter-option,
.catalog-page .availability-option {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 13.5px !important;
  color: #4a5568 !important;
  cursor: pointer !important;
  user-select: none !important;
}

.catalog-page .brand-filter-option input[type="checkbox"],
.catalog-page .price-filter-option input[type="checkbox"],
.catalog-page .availability-option input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  border-radius: 4px !important;
  border: 1px solid #cbd5e0 !important;
  cursor: pointer !important;
}

/* Min/Max price text fields */
.catalog-page .price-range-inputs {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 6px !important;
}

.catalog-page .price-input {
  width: 100% !important;
  padding: 8px 10px !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e0 !important;
  border-radius: 6px !important;
  font-size: 12.5px !important;
  color: #4a5568 !important;
  text-align: center !important;
}

/* Limpiar filtros sidebar button */
.catalog-page .btn-clear-filters {
  width: 100% !important;
  background: #ffffff !important;
  color: #0875ff !important;
  border: 1px solid #0875ff !important;
  border-radius: 8px !important;
  padding: 11px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 20px !important;
  transition: all 0.2s ease !important;
}

.catalog-page .btn-clear-filters:hover {
  background: #0875ff !important;
  color: #ffffff !important;
}

/* Products Main Panel Header */
.catalog-page .catalog-header-panel {
  background: #ffffff !important;
  border: 1px solid #eef2f6 !important;
  border-radius: 12px !important;
  padding: 24px 28px !important;
  margin-bottom: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.catalog-page .catalog-breadcrumbs {
  font-size: 12px !important;
  color: #a0aec0 !important;
  margin-bottom: 12px !important;
}

.catalog-page .catalog-breadcrumbs a {
  color: #a0aec0 !important;
  text-decoration: none !important;
}

.catalog-page .catalog-breadcrumbs a:hover {
  color: #0875ff !important;
}

.catalog-page .catalog-main-title {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #030852 !important;
  margin: 0 0 6px 0 !important;
  text-transform: uppercase !important;
}

.catalog-page .catalog-subtitle {
  font-size: 14.5px !important;
  color: #718096 !important;
  margin: 0 0 20px 0 !important;
}

.catalog-page .catalog-bar-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-top: 1px solid #eef2f6 !important;
  padding-top: 16px !important;
}

.catalog-page .catalog-results-count {
  font-size: 13.5px !important;
  color: #718096 !important;
  font-weight: 500 !important;
}

.catalog-page .catalog-sort-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.catalog-page .sort-label {
  font-size: 13.5px !important;
  color: #718096 !important;
}

.catalog-page .sort-select {
  padding: 6px 10px !important;
  border: 1px solid #cbd5e0 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  font-size: 13.5px !important;
  color: #4a5568 !important;
  cursor: pointer !important;
}

/* 4-column Products Grid */
.catalog-page .providers-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

/* Product Card Refresh */
.catalog-page .product-card {
  background: #ffffff !important;
  border: 1px solid #eef2f6 !important;
  border-radius: 12px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01) !important;
  min-height: 350px !important;
}

.catalog-page .product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(6, 29, 69, 0.08) !important;
}

/* Wishlist Heart Button */
.catalog-page .btn-wishlist {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  background: transparent !important;
  border: none !important;
  color: #a0aec0 !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: color 0.2s ease !important;
}

.catalog-page .btn-wishlist:hover {
  color: #e53e3e !important;
}

.catalog-page .btn-wishlist svg {
  width: 18px !important;
  height: 18px !important;
}

/* Image Container Wrapper */
.catalog-page .product-image-wrapper {
  background-color: #f2f6fa !important;
  border-radius: 8px !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  margin-bottom: 14px !important;
  border: 1px solid #eef2f6 !important;
}

.catalog-page .product-image-wrapper img {
  max-height: 85% !important;
  max-width: 85% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
}

/* Placeholder picture icon */
.catalog-page .placeholder-img-icon {
  width: 48px !important;
  height: 48px !important;
  color: #cbd5e0 !important;
}

/* Product Content */
.catalog-page .product-card-content {
  padding: 0 4px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.catalog-page .product-card-title {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #030852 !important;
  line-height: 1.4 !important;
  margin: 0 0 8px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 38px !important;
  text-align: left !important;
}

/* Stock status badge */
.catalog-page .stock-badge {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  background: #f0fbf5 !important;
  color: #10b981 !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
  padding: 4px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  z-index: 5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
}

.catalog-page .stock-dot {
  width: 5px !important;
  height: 5px !important;
  background-color: #10b981 !important;
  border-radius: 50% !important;
  display: inline-block !important;
}

/* Brand indicator in card */
.catalog-page .product-card-brand {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #718096 !important;
  margin-top: 4px !important;
  display: block !important;
  text-align: left !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
}

/* Double action buttons wrapper */
.catalog-page .product-card-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: 16px !important;
  width: 100% !important;
}

/* Orange Cotizar button */
.catalog-page .btn-direct-quote {
  background: #f58c16 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 9px 12px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, transform 0.1s ease !important;
  width: 100% !important;
}

.catalog-page .btn-direct-quote svg {
  width: 15px !important;
  height: 15px !important;
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.catalog-page .btn-direct-quote:hover {
  background-color: #e07b0c !important;
}

.catalog-page .btn-direct-quote:active {
  transform: scale(0.98) !important;
}

/* Light blue Add to cart button */
.catalog-page .btn-add-to-quote {
  background: rgba(8, 117, 255, 0.05) !important;
  color: #0875ff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, transform 0.1s ease !important;
  width: 100% !important;
}

.catalog-page .btn-add-to-quote svg {
  width: 16px !important;
  height: 16px !important;
  stroke: #0875ff !important;
  fill: none !important;
  stroke-width: 2.2 !important;
}

.catalog-page .btn-add-to-quote:hover {
  background: rgba(8, 117, 255, 0.12) !important;
}

.catalog-page .btn-add-to-quote:active {
  transform: scale(0.98) !important;
}

/* Pagination */
.catalog-page .catalog-pagination-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 48px !important;
}

.catalog-page .pagination-btn {
  width: 36px !important;
  height: 36px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  color: #4a5568 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.catalog-page .pagination-btn:hover {
  border-color: #cbd5e0 !important;
  background: #f7fafc !important;
}

.catalog-page .pagination-btn.active {
  background: #0875ff !important;
  border-color: #0875ff !important;
  color: #ffffff !important;
}

.catalog-page .pagination-dots {
  color: #a0aec0 !important;
  font-size: 14px !important;
  padding: 0 4px !important;
}

/* Responsive styling */
@media (max-width: 1200px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .catalog-page .providers-grid-container {
    flex-direction: column !important;
  }
  .catalog-page .providers-sidebar {
    width: 100% !important;
  }
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Force header navbar on catalog page and contact page to be solid white with dark nav links */
.catalog-page header,
.contact-page header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(7, 29, 59, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.catalog-page header:not(.scrolled),
.contact-page header:not(.scrolled) {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(7, 29, 59, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.catalog-page header:not(.scrolled) .nav-link,
.contact-page header:not(.scrolled) .nav-link {
  color: #030852 !important;
}

.catalog-page header:not(.scrolled) .nav-link:hover,
.contact-page header:not(.scrolled) .nav-link:hover {
  color: var(--color-accent, #0875ff) !important;
}

.catalog-page header:not(.scrolled) .logo img,
.contact-page header:not(.scrolled) .logo img {
  filter: none !important;
}

.catalog-page header:not(.scrolled) .btn-login,
.contact-page header:not(.scrolled) .btn-login {
  color: #030852 !important;
  border-color: #030852 !important;
}

.catalog-page header:not(.scrolled) .btn-login:hover,
.contact-page header:not(.scrolled) .btn-login:hover {
  background-color: var(--color-accent, #0875ff) !important;
  border-color: var(--color-accent, #0875ff) !important;
  color: #ffffff !important;
}

.catalog-page header:not(.scrolled) .btn-cart,
.contact-page header:not(.scrolled) .btn-cart {
  color: #030852 !important;
  border-color: rgba(3, 8, 82, 0.15) !important;
  background: rgba(3, 8, 82, 0.03) !important;
}

.catalog-page header:not(.scrolled) .btn-cart:hover,
.contact-page header:not(.scrolled) .btn-cart:hover {
  background-color: var(--color-accent, #0875ff) !important;
  border-color: var(--color-accent, #0875ff) !important;
  color: #ffffff !important;
}

.catalog-page header:not(.scrolled) .btn-mobile-menu,
.contact-page header:not(.scrolled) .btn-mobile-menu {
  color: #030852 !important;
  border-color: rgba(3, 8, 82, 0.15) !important;
}


/* ==========================================================================
   Contact Page Refresh (contacto.html)
   ========================================================================== */

/* Left column details */
.contact-page-section {
  background: #ffffff !important;
}

.contact-page-section .contact-page-desc {
  font-size: 16px !important;
  color: #718096 !important;
  margin-top: 8px !important;
  margin-bottom: 32px !important;
}

.contact-page-section .home-contact-kicker {
  color: #0875ff !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  display: inline-block !important;
  margin-bottom: 8px !important;
  border-bottom: 2px solid #0875ff !important;
  padding-bottom: 4px !important;
}

.contact-page-section .contact-page-title {
  font-size: 38px !important;
  font-weight: 700 !important;
  color: #030852 !important;
  line-height: 1.15 !important;
  margin-bottom: 12px !important;
}

.contact-page-section .contact-page-title span {
  color: #0875ff !important;
}

/* Contact Cards Info */
.contact-page-section .home-contact-card {
  background: #ffffff !important;
  border: 1px solid #eef2f6 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  padding: 16px 20px !important;
  margin-bottom: 12px !important;
}

.contact-page-section .home-contact-icon {
  background: rgba(8, 117, 255, 0.08) !important;
  color: #0875ff !important;
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
}

.contact-page-section .home-contact-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.contact-page-section .home-contact-card small {
  color: #718096 !important;
  font-size: 13px !important;
  margin-bottom: 2px !important;
}

.contact-page-section .home-contact-card strong {
  color: #030852 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* Right column form card */
.contact-page-section .home-contact-form-card {
  background: #ffffff !important;
  border: 1px solid #eef2f6 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03) !important;
  padding: 38px 40px !important;
}

.contact-page-section .home-contact-form-head {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  margin-bottom: 32px !important;
}

.contact-page-section .home-contact-form-icon {
  background: rgba(8, 117, 255, 0.08) !important;
  color: #0875ff !important;
  width: 52px !important;
  height: 52px !important;
  flex: 0 0 52px !important;
}

.contact-page-section .home-contact-form-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.contact-page-section .home-contact-form-head h3 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #030852 !important;
  margin: 0 0 4px 0 !important;
}

.contact-page-section .home-contact-form-head p {
  font-size: 14px !important;
  color: #718096 !important;
  margin: 0 !important;
}

/* Form inputs & nested icons */
.contact-page-section .form-row-2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.contact-page-section .home-contact-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 0 !important;
}

.contact-page-section .home-contact-field.full {
  margin-top: 20px !important;
}

.contact-page-section .home-contact-field label {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #030852 !important;
}

.contact-page-section .input-icon-wrapper {
  position: relative !important;
  width: 100% !important;
}

.contact-page-section .field-icon {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  color: #a0aec0 !important;
  pointer-events: none !important;
}

.contact-page-section .input-icon-wrapper input {
  width: 100% !important;
  padding: 12px 16px 12px 48px !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e0 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  color: #2d3748 !important;
  transition: all 0.2s ease !important;
}

.contact-page-section .input-icon-wrapper input:focus {
  border-color: #0875ff !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(8, 117, 255, 0.1) !important;
}

.contact-page-section textarea {
  width: 100% !important;
  padding: 14px 16px !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e0 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  color: #2d3748 !important;
  min-height: 120px !important;
  resize: vertical !important;
  transition: all 0.2s ease !important;
}

.contact-page-section textarea:focus {
  border-color: #0875ff !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(8, 117, 255, 0.1) !important;
}

/* Submit button styled */
.contact-page-section .home-contact-submit {
  background: #0875ff !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  margin-top: 24px !important;
  box-shadow: 0 4px 14px rgba(8, 117, 255, 0.25) !important;
}

.contact-page-section .home-contact-submit svg {
  width: 16px !important;
  height: 16px !important;
  stroke: #ffffff !important;
  stroke-width: 2.2 !important;
  fill: none !important;
}

.contact-page-section .home-contact-submit:hover {
  background: #0056cc !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(8, 117, 255, 0.35) !important;
}

/* Responsive Overrides */

/* ==========================================================================
   Mobile Premium Responsive Updates
   ========================================================================== */

/* 1. Mobile Footer Accordion & Whatsapp Button Styling */
@media (max-width: 768px) {
  .footer-col-title {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 0 !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  
  .footer-col-title::after {
    content: '' !important;
    width: 6px !important;
    height: 6px !important;
    border-right: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
    transform: rotate(45deg) !important;
    transition: transform 0.2s ease !important;
    margin-right: 4px !important;
  }
  
  .footer-col.open .footer-col-title::after {
    transform: rotate(-135deg) !important;
  }
  
  .footer-col .footer-link,
  .footer-col .home-newsletter-copy,
  .footer-col .home-newsletter-form {
    display: none !important;
  }
  
  .footer-col.open .footer-link,
  .footer-col.open .home-newsletter-copy,
  .footer-col.open .home-newsletter-form {
    display: block !important;
    margin-top: 10px !important;
  }

  .footer-whatsapp-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    padding: 12px 20px !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin: 20px 0 10px 0 !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
  }
  
  .footer-whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }
}

/* 2. Step Cards Grid (2 columns on mobile) */
@media (max-width: 768px) {
  .home-page .home-process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 0 4px !important;
  }
  
  .home-page .home-process-flow article {
    position: relative !important;
    padding: 28px 12px 18px !important;
    border: 1px solid rgba(7, 29, 68, 0.06) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 18px rgba(7, 29, 68, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .home-page .home-process-flow article > span {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: #0875ff !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(8, 117, 255, 0.2) !important;
  }
  
  .home-page .home-process-flow i {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: rgba(8, 117, 255, 0.08) !important;
    color: #0875ff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
    margin-top: 0 !important;
  }
  
  .home-page .home-process-flow i svg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 2 !important;
  }
  
  .home-page .home-process-flow h3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #030852 !important;
    margin: 0 0 6px 0 !important;
  }
  
  .home-page .home-process-flow h3::after {
    display: none !important;
  }
  
  .home-page .home-process-flow p {
    font-size: 11px !important;
    color: #718096 !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }
}

/* 3. Metrics Card stacked vertically in 1 column on mobile */
@media (max-width: 576px) {
  .home-page .home-metrics-row {
    grid-template-columns: 1fr !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid rgba(7, 29, 68, 0.06) !important;
    box-shadow: 0 10px 30px rgba(7, 29, 68, 0.04) !important;
    padding: 20px 24px !important;
    margin-top: -30px !important;
    gap: 16px !important;
  }
  
  .home-page .home-metrics-row article {
    min-height: 0 !important;
    border-right: none !important;
    border-bottom: none !important;
    padding: 8px 0 !important;
    grid-template-columns: 42px 1fr !important;
    gap: 16px !important;
    align-items: center !important;
    text-align: left !important;
    display: grid !important;
  }
  
  .home-page .home-metrics-row article:nth-child(odd),
  .home-page .home-metrics-row article:nth-child(2n),
  .home-page .home-metrics-row article:nth-last-child(-n + 2),
  .home-page .home-metrics-row article:last-child {
    border-right: none !important;
    border-bottom: none !important;
  }
  
  .home-page .metric-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .home-page .metric-icon.blue { color: #0875ff !important; background: rgba(8, 117, 255, 0.08) !important; }
  .home-page .metric-icon.green { color: #10b981 !important; background: rgba(16, 185, 129, 0.08) !important; }
  .home-page .metric-icon.orange { color: #f58c16 !important; background: rgba(245, 140, 22, 0.08) !important; }
  .home-page .metric-icon.navy { color: #030852 !important; background: rgba(3, 8, 82, 0.08) !important; }
  
  .home-page .home-metrics-row strong {
    font-size: 18px !important;
    color: #030852 !important;
    margin-bottom: 2px !important;
    display: block !important;
  }
  
  .home-page .home-metrics-row p {
    font-size: 12px !important;
    color: #718096 !important;
    margin: 0 !important;
  }
}

/* 4. Floating whatsapp pill style */
.btn-floating.whatsapp {
  background-color: #25d366 !important;
  color: #ffffff !important;
  padding: 10px 18px !important;
  border-radius: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
}

.btn-floating.whatsapp:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}



/* ==========================================================================
   Nosotros (aboutus.html) Mobile Responsive Update
   ========================================================================== */

/* Blue title divider line */
.about-title-line {
  width: 40px !important;
  height: 3px !important;
  background: #0875ff !important;
  margin: 12px 0 20px 0 !important;
  border-radius: 2px !important;
}

.about-v2-pillars-head .about-title-line,
.about-v2-cta-card .about-title-line {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* About Us Metrics Card (Dark blue container) */
.about-v2-metrics-section {
  padding: 40px 0 !important;
  background: #ffffff !important;
}

.about-v2-metrics-card {
  background: #030852 !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 10px 30px rgba(3, 8, 82, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.about-v2-metrics-card article {
  display: grid !important;
  grid-template-columns: 48px 1fr !important;
  gap: 16px !important;
  align-items: center !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.about-v2-metrics-card article:last-child {
  border-bottom: 0 !important;
  padding-bottom: 8px !important;
}

.about-v2-metrics-card article:first-child {
  padding-top: 8px !important;
}

.about-metric-icon {
  width: 44px !important;
  height: 44px !important;
  background: #ffffff !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #0875ff !important;
}

.about-metric-icon svg {
  width: 22px !important;
  height: 22px !important;
}

.about-v2-metrics-card strong {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  display: block !important;
  margin-bottom: 2px !important;
}

.about-v2-metrics-card p {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 0 !important;
}

/* About Us Pillars (Misión, Visión, Valores) */
.about-v2-pillars {
  background: #ffffff !important;
  padding: 40px 0 !important;
}

.about-v2-pillars-head {
  text-align: center !important;
  margin-bottom: 32px !important;
}

.about-v2-pillars-head h2 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #030852 !important;
}

.about-v2-pillars-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 24px !important;
}

.about-v2-pillar-col {
  background: #ffffff !important;
  border: 1px solid rgba(7, 29, 68, 0.06) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.about-v2-pillar-col .pillar-icon {
  width: 48px !important;
  height: 48px !important;
  background: rgba(8, 117, 255, 0.08) !important;
  color: #0875ff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
}

.about-v2-pillar-col .pillar-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.about-v2-pillar-col h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #030852 !important;
  margin: 0 0 10px 0 !important;
}

.about-v2-pillar-col p {
  font-size: 13.5px !important;
  color: #718096 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.about-v2-pillar-col ul {
  margin: 0 !important;
  padding-left: 18px !important;
  font-size: 13.5px !important;
  color: #718096 !important;
  line-height: 1.6 !important;
}

/* Call to Action card (aboutus.html) */
.about-v2-cta-section {
  padding: 40px 0 60px 0 !important;
  background: #ffffff !important;
}

.about-v2-cta-card {
  text-align: center !important;
  padding: 0 16px !important;
}

.about-v2-cta-kicker {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #0875ff !important;
  letter-spacing: 0.8px !important;
  display: inline-block !important;
  margin-bottom: 8px !important;
}

.about-v2-cta-card h2 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #030852 !important;
}

.about-v2-cta-card p {
  font-size: 14.5px !important;
  color: #718096 !important;
  line-height: 1.6 !important;
  max-width: 600px !important;
  margin: 0 auto 28px auto !important;
}

.about-v2-cta-btn {
  background-color: #00c968 !important; /* Premium green */
  color: #ffffff !important;
  padding: 14px 28px !important;
  border-radius: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 201, 104, 0.25) !important;
  transition: all 0.2s ease !important;
}

.about-v2-cta-btn svg.wa-icon {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}

.about-v2-cta-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0, 201, 104, 0.35) !important;
}

/* Responsive Overrides (aboutus.html mobile) */
@media (max-width: 768px) {
  .about-v2-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .about-v2-pillar-col {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
    border-radius: 12px !important;
  }
  
  .about-v2-pillar-col .pillar-icon {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    margin-bottom: 0 !important;
  }
  
  .about-v2-pillar-col h3 {
    font-size: 15.5px !important;
    margin-bottom: 4px !important;
  }
  
  .about-v2-pillar-col p,
  .about-v2-pillar-col ul {
    font-size: 12.5px !important;
  }
  
  .about-v2-cta-btn {
    width: 100% !important;
    padding: 13px 20px !important;
  }
}


/* ==========================================================================
   Catálogo de Productos (providers.html) Mobile Responsive Update
   ========================================================================== */

/* Hide search inputs and filters trigger on desktop by default */
.mobile-search-bar-container {
  display: none !important;
}

#mobile-filters-trigger {
  display: none !important;
}

@media (max-width: 768px) {
  /* Main page layouts */
  .catalog-page .providers-grid-container {
    padding: 0 !important;
    gap: 16px !important;
  }
  
  .catalog-page .providers-main-content {
    padding: 0 16px !important;
  }
  
  /* Mobile Search Bar styled */
  .mobile-search-bar-container {
    display: block !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  .mobile-search-bar-container .search-wrapper {
    position: relative !important;
    width: 100% !important;
  }
  
  .mobile-search-bar-container .search-icon {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    color: #a0aec0 !important;
    pointer-events: none !important;
  }
  
  .mobile-search-bar-container .search-input {
    width: 100% !important;
    padding: 12px 16px 12px 48px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 14.5px !important;
    color: #2d3748 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.2s ease !important;
  }
  
  .mobile-search-bar-container .search-input:focus {
    border-color: #0875ff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(8, 117, 255, 0.1) !important;
  }
  
  /* Filters trigger & Sort drop-down row */
  .catalog-page .catalog-bar-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
    border: none !important;
    padding: 0 !important;
  }
  
  #mobile-filters-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: #ffffff !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    color: #0875ff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex: 1 1 auto !important;
  }
  
  #mobile-filters-trigger .filters-icon {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
  }
  
  .catalog-page .catalog-sort-wrapper {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    justify-content: space-between !important;
  }
  
  .catalog-page .catalog-sort-wrapper .sort-label {
    font-size: 13.5px !important;
    color: #718096 !important;
    font-weight: 600 !important;
  }
  
  .catalog-page .catalog-sort-wrapper .sort-select {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #030852 !important;
    padding: 0 !important;
    cursor: pointer !important;
  }
  
  .catalog-page .catalog-results-counter-row {
    display: block !important;
    margin-bottom: 16px !important;
  }
  
  .catalog-page .catalog-results-count {
    font-size: 13px !important;
    color: #718096 !important;
    font-weight: 600 !important;
  }
  
  /* Horizontal Categories Pill Scrolling List */
  .catalog-page .categories-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 16px !important;
  }
  
  .catalog-page .categories-card .sidebar-title {
    display: none !important;
  }
  
  .catalog-page .categories-card .filter-list {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 4px 4px 8px 4px !important;
    scrollbar-width: none !important;
  }
  
  .catalog-page .categories-card .filter-list::-webkit-scrollbar {
    display: none !important;
  }
  
  .catalog-page .categories-card .filter-btn {
    flex: 0 0 auto !important;
    width: auto !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #4a5568 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
  }
  
  .catalog-page .categories-card .filter-btn::before {
    display: none !important; /* Hide left indicator line */
  }
  
  .catalog-page .categories-card .filter-btn.active {
    background: #0875ff !important;
    border-color: #0875ff !important;
    color: #ffffff !important;
  }
  
  .catalog-page .categories-card .filter-btn .category-icon {
    width: 15px !important;
    height: 15px !important;
    stroke: currentColor !important;
  }

  /* Bottom sheet filters card overlay drawer */
  .catalog-page .providers-sidebar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: 85vh !important;
    background: #ffffff !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
    z-index: 99999 !important;
    padding: 28px 24px 32px 24px !important;
    transform: translateY(100%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  .catalog-page .providers-sidebar::before {
    content: '' !important;
    width: 44px !important;
    height: 5px !important;
    background: #cbd5e0 !important;
    border-radius: 3px !important;
    margin: -12px auto 16px auto !important;
    display: block !important;
  }
  
  .catalog-page .providers-sidebar.active {
    transform: translateY(0) !important;
  }
  
  .catalog-page .providers-sidebar .categories-card {
    display: none !important; /* Hide categories in sidebar list on mobile */
  }
  
  .catalog-page .filters-card {
    position: relative !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  
  .catalog-page .sidebar-title-main {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #030852 !important;
    margin-bottom: 24px !important;
  }
  
  .catalog-page .btn-clear-filters {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    background: transparent !important;
    border: none !important;
    color: #0875ff !important;
    font-weight: 600 !important;
    font-size: 14.5px !important;
    padding: 0 !important;
    cursor: pointer !important;
    margin: 0 !important;
    text-align: right !important;
  }
  
  .catalog-page .filters-card .search-wrapper {
    display: none !important; /* Hide search input inside active sidebar */
  }
}

/* =====================================================================
   Catálogo Mobile - Continuation: Pills row, overlay, product cards
   ===================================================================== */

/* Mobile category pills row – hidden on desktop */
.mobile-categories-pills-row {
  display: none !important;
}

@media (max-width: 768px) {
  /* Mobile category pills row */
  .mobile-categories-pills-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 4px 16px 12px 16px !important;
    scrollbar-width: none !important;
    margin-bottom: 4px !important;
  }

  .mobile-categories-pills-row::-webkit-scrollbar {
    display: none !important;
  }

  .mobile-categories-pills-row .filter-btn {
    flex: 0 0 auto !important;
    width: auto !important;
    padding: 8px 14px !important;
    border-radius: 20px !important;
    border: 1.5px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #4a5568 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  }

  .mobile-categories-pills-row .filter-btn.active {
    background: #0875ff !important;
    border-color: #0875ff !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(8, 117, 255, 0.2) !important;
  }

  .mobile-categories-pills-row .category-icon {
    width: 14px !important;
    height: 14px !important;
    stroke: currentColor !important;
  }

  /* Sidebar dark overlay backdrop */
  .sidebar-overlay {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 99998 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
  }

  .sidebar-overlay.active {
    display: block !important;
    opacity: 1 !important;
  }

  /* Product cards in 2-column grid on mobile */
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 !important;
  }

  /* Product card mobile: compact & clean */
  .catalog-page .product-card {
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    padding: 0 0 12px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border: 1px solid #edf2f7 !important;
    position: relative !important;
  }

  .catalog-page .product-card-image-wrapper {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    background: #f7fafc !important;
  }

  .catalog-page .product-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 6px !important;
  }

  .catalog-page .product-card .product-card-body {
    padding: 8px 10px 0 10px !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .catalog-page .product-card .product-name {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .catalog-page .product-card .product-brand {
    font-size: 11px !important;
    color: #a0aec0 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
  }

  .catalog-page .product-card .product-card-actions {
    padding: 8px 10px 0 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  /* Orange "Cotizar" CTA button on product cards */
  .catalog-page .product-card .btn-quote {
    width: 100% !important;
    padding: 9px 12px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    background: #f58c16 !important;
    color: #ffffff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  /* Cart button underneath */
  .catalog-page .product-card .btn-cart {
    width: 100% !important;
    padding: 8px 12px !important;
    font-size: 12.5px !important;
    border-radius: 8px !important;
    background: #edf2f7 !important;
    color: #4a5568 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  /* Stock badge */
  .catalog-page .product-card .product-stock-badge {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 3px 7px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #38a169 !important;
    letter-spacing: 0.3px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
  }

  /* Heart / wish button */
  .catalog-page .product-card .btn-wish {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
  }

  /* Pagination row – compact on mobile */
  .catalog-page .catalog-pagination-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 28px !important;
    margin-bottom: 32px !important;
    padding: 0 16px !important;
  }

  .catalog-page .pagination-btn {
    min-width: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }

  /* Catalog page header title area */
  .catalog-page .catalog-main-title {
    font-size: 22px !important;
    margin-bottom: 4px !important;
  }

  .catalog-page .catalog-subtitle {
    font-size: 13.5px !important;
    margin-bottom: 20px !important;
  }
}

/* ===== Portada Riegohidra: estilo marketplace sin ocultar contenido ===== */
.home-page { background: #f5f8fc; }
.home-page .home-start-complete,
.home-page .home-metrics-row-section,
.home-page .section-marquee { display: block !important; }

.home-page .hero-section {
  min-height: 560px;
  height: min(72vh, 680px);
  border-radius: 0;
}
.home-page .hero-section .slide::after {
  background: linear-gradient(90deg, rgba(3,8,82,.96), rgba(3,8,82,.72) 34%, rgba(3,8,82,.16) 68%, transparent);
}
.home-page .hero-section .slide-content { max-width: 1180px; padding-bottom: 78px; }
.home-page .slide-text { max-width: 570px; }
.home-page .slide-title {
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.home-page .slide-subtitle { max-width: 500px; font-size: 17px; line-height: 1.55; }
.home-page .stats-section { min-height: 62px; background: #06105d; border: 0; }
.home-page .stats-grid { max-width: 760px; }
.home-page .stat-number { color: #ff7a00; }

.home-page .section-steps,
.home-page .section-categories,
.home-page .section-brands,
.home-page .section-testimonials { padding: 92px 0; }
.home-page .section-steps,
.home-page .section-categories,
.home-page .section-testimonials { background: #f5f8fc; }
.home-page .section-brands { background: #fff; }
.home-page .section-header { max-width: 760px; margin: 0 auto 42px; }
.home-page .section-eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: #e9f9ef;
  color: #168f4d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}
.home-page .section-title {
  margin-top: 12px;
  color: #06105d;
  font-size: clamp(31px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.home-page .section-subtitle { max-width: 620px; margin: 10px auto 0; color: #7c879d; }

.home-page .steps-grid { max-width: 960px; margin: 0 auto; align-items: stretch; }
.home-page .step-card {
  min-height: 285px;
  padding: 30px 25px;
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(6,16,93,.06);
}
.home-page .step-icon-box {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  border-radius: 50%;
  background: #eaf9ef;
  color: #087bc1;
}
.home-page .step-title, .home-page .step-desc { text-align: center; }
.home-page .step-tag { display: table; margin: 18px auto 0; }

.home-page .categories-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.home-page .cat-card,
.home-page .cat-card.cat-featured,
.home-page .cat-card.cat-compact {
  min-height: 112px;
  display: grid;
  grid-template-columns: 94px 1fr;
  grid-column: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e5eaf2;
  border-radius: 14px;
  background: #eaf0f7;
  box-shadow: none;
}
.home-page .cat-visual { min-height: 112px; border-radius: 0; }
.home-page .cat-body { min-width: 0; padding: 20px 14px; align-self: center; }
.home-page .cat-name { margin: 0; color: #06105d; font-size: 15px; line-height: 1.2; }
.home-page .cat-count { margin-bottom: 6px; color: #ff7a00; font-size: 10px; }
.home-page .cat-desc { margin-top: 7px; font-size: 11px; line-height: 1.35; }
.home-page .cat-feature-list { margin-top: 8px; }
.home-page .cat-cta { margin-top: 9px; font-size: 11px; }
.home-page .categories-footer { margin-top: 34px; }
.home-page .categories-footer .btn-secondary {
  color: #fff;
  background: #07113f;
  border-color: #07113f;
  border-radius: 999px;
}

.home-page .brands-showcase { max-width: 900px; margin: 0 auto; gap: 20px; }
.home-page .brand-showcase-card {
  min-height: 138px;
  border-radius: 14px;
  border: 1px solid #edf0f5;
  box-shadow: 0 10px 28px rgba(6,16,93,.06);
}
.home-page .section-cta-banner { padding: 100px 0; background: #050f50; }
.home-page .cta-banner-inner {
  min-height: 260px;
  padding: 54px 64px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(13,38,113,.92), rgba(4,12,60,.96)), url("../img/home-carousel/wide-advisor-irrigation-ai.webp") center/cover;
}
.home-page .cta-banner-title { font-size: clamp(32px,3.4vw,50px); }
.home-page .testimonials-showcase { max-width: 1080px; margin: 0 auto; }
.home-page footer { background: #071027; }

@media (max-width: 900px) {
  .home-page .hero-section { min-height: 620px; height: 76vh; }
  .home-page .categories-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-page .cta-banner-inner { padding: 42px 30px; }
}
@media (max-width: 620px) {
  .home-page .section-steps,
  .home-page .section-categories,
  .home-page .section-brands,
  .home-page .section-testimonials { padding: 64px 0; }
  .home-page .slide-title { font-size: 36px; }
  .home-page .categories-grid { grid-template-columns: 1fr; }
  .home-page .cat-card,
  .home-page .cat-card.cat-featured,
  .home-page .cat-card.cat-compact { grid-template-columns: 82px 1fr; }
}

/* Nuestras marcas: fondo claro y colores oficiales de cada logotipo. */
.home-page .home-system-showcase {
  background: #ffffff !important;
  border-top: 1px solid #edf1f6;
  border-bottom: 1px solid #edf1f6;
}

.home-page .home-system-showcase::before {
  display: none !important;
}

.home-page .home-system-showcase .home-section-centered h2 {
  color: #071d44 !important;
}

.home-page .home-brand-logo-link {
  opacity: 1 !important;
}

.home-page .home-brand-logo-link img {
  filter: none !important;
  opacity: 1 !important;
}

/* Así trabajamos contigo: recorrido abierto, sin caja ni numeración. */
.home-page .home-process-strip {
  margin: 36px calc(50% - 50vw) 22px !important;
  padding: 86px max(24px, calc(50vw - 590px)) 92px !important;
  overflow: visible !important;
  background: radial-gradient(circle at 14% 28%, rgba(0,146,69,.08), transparent 24%), radial-gradient(circle at 86% 74%, rgba(255,101,2,.08), transparent 25%) !important;
}
.home-page .home-process-strip::before { display: none !important; content: none !important; }
.home-page .home-process-strip .home-section-centered { margin-bottom: 58px !important; }
.home-page .home-process-flow {
  position: relative !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  gap: 38px !important;
}
.home-page .home-process-flow::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: 51px !important;
  left: 10% !important;
  right: 10% !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #009245, #20b86a 38%, #0875ff 68%, #ff6502) !important;
  opacity: .32 !important;
  transform: scaleX(1) !important;
}
.home-page .home-process-flow article {
  position: relative !important;
  min-height: 0 !important;
  padding: 0 10px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
.home-page .home-process-flow article > span { display: none !important; }
.home-page .home-process-flow i {
  position: relative !important;
  z-index: 2 !important;
  width: 104px !important;
  height: 104px !important;
  margin: 0 0 28px !important;
  color: #009245 !important;
  background: #fff !important;
  border: 3px solid rgba(0,146,69,.2) !important;
  border-radius: 32px !important;
  box-shadow: 0 18px 38px rgba(7,29,68,.12) !important;
  transform: rotate(-5deg) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}
.home-page .home-process-flow article:nth-child(2) i { color: #169b55 !important; border-color: rgba(22,155,85,.22) !important; transform: rotate(5deg) !important; }
.home-page .home-process-flow article:nth-child(3) i { color: #0875ff !important; border-color: rgba(8,117,255,.2) !important; }
.home-page .home-process-flow article:nth-child(4) i { color: #ff6502 !important; border-color: rgba(255,101,2,.22) !important; transform: rotate(5deg) !important; }
.home-page .home-process-flow article:hover i { transform: translateY(-8px) rotate(0) scale(1.04) !important; box-shadow: 0 24px 46px rgba(7,29,68,.18) !important; }
.home-page .home-process-flow i svg { width: 42px !important; height: 42px !important; stroke-width: 1.8 !important; }
.home-page .home-process-flow h3 { margin: 0 0 11px !important; padding: 0 !important; color: #071d44 !important; font-size: 19px !important; font-weight: 800 !important; }
.home-page .home-process-flow h3::after { display: none !important; }
.home-page .home-process-flow p { max-width: 230px !important; margin: 0 auto !important; color: #65738a !important; font-size: 13px !important; line-height: 1.65 !important; }

@media (max-width: 820px) {
  .home-page .home-process-strip { padding: 68px 24px !important; }
  .home-page .home-process-flow { max-width: 560px !important; grid-template-columns: 1fr 1fr !important; gap: 52px 28px !important; }
  .home-page .home-process-flow::before { display: none !important; }
}
@media (max-width: 520px) {
  .home-page .home-process-flow { grid-template-columns: 1fr !important; gap: 48px !important; }
  .home-page .home-process-flow article { max-width: 310px !important; margin: 0 auto !important; }
}

/* Footer completo y compacto, sin espacio vacío inferior. */
body > footer {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #030852 !important;
}

body > footer .footer-bottom {
  background: #030852 !important;
}

body > footer .home-footer-grid {
  padding-top: 34px !important;
  padding-bottom: 26px !important;
  gap: 28px !important;
}

@media (min-width: 1001px) {
  body > footer .home-footer-grid {
    grid-template-columns: minmax(190px,1.3fr) minmax(105px,.7fr) minmax(155px,1fr) minmax(145px,.9fr) minmax(210px,1.2fr) !important;
    align-items: start !important;
  }

  body > footer .home-newsletter-copy {
    margin-top: 0 !important;
  }
}

body > footer .footer-bottom {
  min-height: 0 !important;
  margin-top: 0 !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

body > footer + * {
  margin-top: 0 !important;
}

/* Footer: iconos contenidos y textos legibles en todas las páginas. */
body > footer .footer-social-link {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  padding: 0 !important;
  display: inline-grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border-radius: 50% !important;
  box-sizing: border-box !important;
}

body > footer .footer-social-link svg {
  display: block !important;
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  flex: 0 0 15px !important;
}

body > footer .home-newsletter-form button {
  padding: 0 !important;
  display: inline-grid !important;
  place-items: center !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body > footer .home-newsletter-form button svg {
  display: block !important;
  width: 17px !important;
  height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
}

/* Menú principal centrado respecto al ancho de la pantalla. */
@media (min-width: 769px) {
  #main-header .header-container {
    position: relative;
  }

  #main-header .nav-links {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
  }
}

/* Presentación de expertos: azul a ancho completo, sin cortes blancos. */
.home-page .home-start-complete {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.home-page .home-experts-grid {
  position: relative !important;
  isolation: isolate !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(50% - 50vw) !important;
  padding: 96px max(24px, calc(50vw - 590px)) 104px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 20%, rgba(0,146,69,.28), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(8,117,255,.38), transparent 34%),
    linear-gradient(125deg, #020a43 0%, #071d68 48%, #064f91 100%) !important;
}

.home-page .home-experts-grid::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent);
  pointer-events: none;
}

.home-page .home-experts-copy .home-mini-kicker {
  color: #59df8d !important;
}

.home-page .home-experts-copy h2 {
  color: #ffffff !important;
  text-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.home-page .home-experts-copy p {
  color: rgba(255,255,255,.78) !important;
}

.home-page .home-experts-copy .home-outline-arrow {
  color: #ffffff !important;
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.38) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.2) !important;
  backdrop-filter: blur(10px);
}

.home-page .home-experts-copy .home-outline-arrow span {
  color: #59df8d !important;
}

.home-page .home-system-showcase {
  margin-top: 0 !important;
}

@media (max-width: 620px) {
  .home-page .home-experts-grid {
    padding: 72px 24px 78px !important;
  }
}

/* Indicadores en franja azul continua, siguiendo la referencia visual. */
.home-page .home-metrics-row-section {
  position: relative !important;
  z-index: 5 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: linear-gradient(90deg, #02084f 0%, #06106d 52%, #02084f 100%) !important;
  box-shadow: 0 10px 28px rgba(3,8,82,.16) !important;
}

.home-page .home-metrics-row-section > .container {
  max-width: 1040px !important;
  padding-inline: 24px !important;
}

.home-page .home-metrics-card.home-metrics-row {
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-page .home-metrics-row article,
.home-page .home-metrics-row article:nth-child(2n),
.home-page .home-metrics-row article:nth-last-child(-n + 2) {
  min-height: 72px !important;
  padding: 14px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255,255,255,.2) !important;
  text-align: left !important;
}

.home-page .home-metrics-row article:last-child {
  border-right: 0 !important;
}

.home-page .home-metrics-row .metric-icon {
  display: none !important;
}

.home-page .home-metrics-row article > div {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 8px !important;
}

.home-page .home-metrics-row strong {
  margin: 0 !important;
  color: #ff8a00 !important;
  font-size: clamp(19px,2vw,27px) !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.home-page .home-metrics-row p {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

@media (max-width: 820px) {
  .home-page .home-metrics-card.home-metrics-row {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
  .home-page .home-metrics-row article:nth-child(2) { border-right: 0 !important; }
  .home-page .home-metrics-row article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16) !important; }
}

@media (max-width: 480px) {
  .home-page .home-metrics-row-section > .container { padding-inline: 12px !important; }
  .home-page .home-metrics-row article { padding: 12px 8px !important; }
  .home-page .home-metrics-row article > div { flex-direction: column !important; align-items: center !important; gap: 2px !important; text-align: center !important; }
}

/* En tablet y escritorio, cada indicador permanece completo en una sola línea. */
@media (min-width: 641px) {
  .home-page .home-metrics-card.home-metrics-row {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }

  .home-page .home-metrics-row article,
  .home-page .home-metrics-row article:nth-child(2),
  .home-page .home-metrics-row article:nth-child(-n+2) {
    min-width: 0 !important;
    padding: 14px clamp(8px,1.5vw,20px) !important;
    border-bottom: 0 !important;
    border-right: 1px solid rgba(255,255,255,.2) !important;
  }

  .home-page .home-metrics-row article:last-child {
    border-right: 0 !important;
  }

  .home-page .home-metrics-row article > div {
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: clamp(5px,.7vw,9px) !important;
    white-space: nowrap !important;
  }

  .home-page .home-metrics-row strong {
    flex: 0 0 auto !important;
    font-size: clamp(18px,2.1vw,27px) !important;
  }

  .home-page .home-metrics-row p {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    font-size: clamp(8px,.82vw,11px) !important;
  }
}

/* Indicadores estáticos con acento verde, sin efectos hover. */
.home-page .home-metrics-row strong {
  color: #25d366 !important;
}

.home-page .home-metrics-row article,
.home-page .home-metrics-row article:hover {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
  cursor: default !important;
}

.home-page .home-metrics-row article:hover strong,
.home-page .home-metrics-row article:hover p {
  transform: none !important;
  color: inherit;
  transition: none !important;
}

.home-page .home-metrics-row article:hover strong {
  color: #25d366 !important;
}

.home-page .home-metrics-row article:hover p {
  color: #ffffff !important;
}

/* La franja aprovecha todo el ancho; verde solo para cifras. */
.home-page .home-metrics-row-section > .container {
  width: 100% !important;
  max-width: 1440px !important;
  padding-inline: clamp(20px,4vw,72px) !important;
}

.home-page .home-metrics-card.home-metrics-row {
  width: 100% !important;
}

.home-page .home-metrics-row article {
  padding-inline: clamp(14px,2.3vw,38px) !important;
}

.home-page .home-metrics-row article > div {
  width: auto !important;
  min-width: 0 !important;
}

.home-page .home-metrics-row strong { color: #25d366 !important; }
.home-page .home-metrics-row p { color: #ffffff !important; }

/* Iconos 3D del proceso de trabajo. */
.home-page .home-process-flow i,
.home-page .home-process-flow article:nth-child(2) i,
.home-page .home-process-flow article:nth-child(3) i,
.home-page .home-process-flow article:nth-child(4) i {
  width: 116px !important;
  height: 116px !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: inherit !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 30px !important;
  box-shadow: 0 18px 38px rgba(7,29,68,.14) !important;
  transform: none !important;
}

.home-page .home-process-flow i img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}

.home-page .home-process-flow article:hover i {
  transform: translateY(-6px) scale(1.035) !important;
  box-shadow: 0 24px 46px rgba(7,29,68,.2) !important;
}

/* Carrusel horizontal de tarjetas de marca. */
.home-page .home-brands-logo-row {
  position: relative !important;
  width: 100% !important;
  max-width: 1180px !important;
  height: auto !important;
  margin: 28px auto 30px !important;
  padding: 24px 0 34px !important;
  display: block !important;
  overflow: hidden !important;
  perspective: none !important;
  mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}

.home-page .home-brands-logo-row::before {
  display: none !important;
  content: none !important;
}

.home-page .home-brands-carousel-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  animation: brands-card-scroll 18s linear infinite;
  will-change: transform;
}

.home-page .home-brands-logo-row:hover .home-brands-carousel-track {
  animation-play-state: paused;
}

.home-page .home-brand-logo-link,
.home-page .home-brand-logo-link:nth-child(2),
.home-page .home-brand-logo-link:nth-child(3) {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  flex: 0 0 270px !important;
  width: 270px !important;
  height: 128px !important;
  margin: 0 !important;
  padding: 28px 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid rgba(3,8,82,.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 38px rgba(3,8,82,.11) !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease !important;
}

.home-page .home-brand-logo-link:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(37,211,102,.45) !important;
  box-shadow: 0 26px 48px rgba(3,8,82,.16) !important;
}

.home-page .home-brand-logo-link img {
  width: 100% !important;
  height: 100% !important;
  max-width: 205px !important;
  max-height: 70px !important;
  object-fit: contain !important;
  filter: none !important;
}

@keyframes brands-card-scroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 700px) {
  .home-page .home-brands-logo-row { padding-block: 18px 28px !important; }
  .home-page .home-brands-carousel-track { gap: 18px; padding-right: 18px; }
  .home-page .home-brand-logo-link,
  .home-page .home-brand-logo-link:nth-child(2),
  .home-page .home-brand-logo-link:nth-child(3) {
    flex-basis: 210px !important;
    width: 210px !important;
    height: 104px !important;
    padding: 22px 26px !important;
  }
  @keyframes brands-card-scroll {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(-50%,0,0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-brands-carousel-track { animation-play-state: paused; }
}

/* Carrusel limpio: solo logotipos, sin apariencia de tarjeta. */
.home-page .home-brand-logo-link,
.home-page .home-brand-logo-link:nth-child(2),
.home-page .home-brand-logo-link:nth-child(3) {
  padding: 12px 24px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-page .home-brand-logo-link:hover {
  border: 0 !important;
  box-shadow: none !important;
  transform: scale(1.06) !important;
}

/* Franja de impacto entre Marcas y Proceso. */
.home-page .home-impact-strip {
  position: relative;
  width: 100vw;
  min-height: 108px;
  margin: 0 calc(50% - 50vw);
  padding: 24px max(24px,calc(50vw - 620px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 0%,rgba(255,255,255,.28),transparent 26%), linear-gradient(105deg,#25d366 0%,#57df89 48%,#18b95b 100%);
  color: #030852;
}

.home-page .home-impact-strip::before,
.home-page .home-impact-strip::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(3,8,82,.1);
  border-radius: 50%;
}
.home-page .home-impact-strip::before { left: -110px; top: -135px; }
.home-page .home-impact-strip::after { right: -95px; bottom: -150px; }

.home-page .home-impact-drop {
  flex: 0 0 auto;
  width: 28px;
  height: 36px;
  background: #030852;
  clip-path: polygon(50% 0,92% 54%,100% 72%,95% 88%,82% 100%,18% 100%,5% 88%,0 72%,8% 54%);
  box-shadow: 0 8px 20px rgba(3,8,82,.2);
}

.home-page .home-impact-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #030852;
  font-size: clamp(20px,2.25vw,32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-align: center;
}

.home-page .home-impact-strip strong { font-weight: 900; }

@media (max-width: 620px) {
  .home-page .home-impact-strip { min-height: 126px; padding: 26px 22px; gap: 13px; }
  .home-page .home-impact-drop { width: 22px; height: 29px; }
}

/* Ritmo vertical más compacto para Marcas y Proceso. */
.home-page .home-system-showcase {
  padding-top: 42px !important;
  padding-bottom: 30px !important;
}

.home-page .home-system-showcase .home-section-centered {
  margin-bottom: 16px !important;
}

.home-page .home-brands-logo-row {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  padding-top: 10px !important;
  padding-bottom: 16px !important;
}

.home-page .home-process-strip {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  padding-top: 60px !important;
  padding-bottom: 66px !important;
}

.home-page .home-process-strip .home-section-centered {
  margin-bottom: 42px !important;
}

@media (max-width: 620px) {
  .home-page .home-system-showcase { padding-top: 34px !important; padding-bottom: 24px !important; }
  .home-page .home-process-strip { padding-top: 48px !important; padding-bottom: 52px !important; }
  .home-page .home-process-strip .home-section-centered { margin-bottom: 34px !important; }
}

/* ===== Nosotros: identidad visual alineada con Inicio ===== */
.about-page.about-replica .about-v2-hero {
  padding: 126px 0 92px !important;
  background: linear-gradient(110deg,rgba(3,8,82,.96),rgba(3,8,82,.72) 48%,rgba(0,146,69,.34)), url("../img/fondo-seccion-nosotros.webp") center/cover no-repeat !important;
}

.about-page .about-v2-kicker {
  display: inline-flex !important;
  width: max-content;
  padding: 7px 13px !important;
  color: #08723f !important;
  background: #e9f9ef !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
}

.about-page .about-v2-hero .about-v2-kicker {
  color: #030852 !important;
  background: #25d366 !important;
}

.about-page .about-v2-story {
  padding: 72px 0 !important;
  background: radial-gradient(circle at 8% 18%,rgba(37,211,102,.1),transparent 30%),#ffffff !important;
}

.about-page .about-v2-story-copy h2,
.about-page .about-v2-pillars-head h2 {
  color: #030852 !important;
  letter-spacing: -.03em !important;
}

.about-page .about-title-line {
  width: 52px !important;
  background: #25d366 !important;
}

.about-page .about-v2-pillars {
  padding: 68px 0 !important;
  background: #f5f8fc !important;
}

.about-page .about-v2-pillars-grid {
  gap: 20px !important;
}

.about-page .about-v2-pillar-col {
  position: relative !important;
  overflow: hidden !important;
  padding: 30px !important;
  border: 1px solid rgba(3,8,82,.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px rgba(3,8,82,.06) !important;
  transition: transform .25s ease,box-shadow .25s ease !important;
}

.about-page .about-v2-pillar-col::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg,#25d366,#009245);
}

.about-page .about-v2-pillar-col:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 44px rgba(3,8,82,.11) !important;
}

.about-page .about-v2-pillar-col .pillar-icon {
  width: 58px !important;
  height: 58px !important;
  color: #009245 !important;
  background: #e9f9ef !important;
  border-radius: 18px !important;
}

.about-page .about-v2-metrics-section {
  padding: 0 !important;
  background: #030852 !important;
}

.about-page .about-v2-metrics-section > .container {
  max-width: 1280px !important;
}

.about-page .about-v2-metrics-card {
  display: grid !important;
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  padding: 0 !important;
  background: #030852 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.about-page .about-v2-metrics-card article,
.about-page .about-v2-metrics-card article:first-child,
.about-page .about-v2-metrics-card article:last-child {
  min-height: 92px !important;
  padding: 20px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-right: 1px solid rgba(255,255,255,.16) !important;
  text-align: center !important;
}

.about-page .about-v2-metrics-card article:last-child { border-right: 0 !important; }
.about-page .about-metric-icon { display: none !important; }
.about-page .about-v2-metrics-card strong { color: #25d366 !important; font-size: 24px !important; }
.about-page .about-v2-metrics-card p { color: #ffffff !important; }

.about-page .about-v2-cta-section {
  padding: 72px 0 !important;
  background: #f5f8fc !important;
}

.about-page .about-v2-cta-card {
  padding: 58px 34px !important;
  overflow: hidden;
  background: radial-gradient(circle at 12% 10%,rgba(37,211,102,.2),transparent 30%),linear-gradient(125deg,#030852,#075086) !important;
  border-radius: 22px !important;
  box-shadow: 0 24px 54px rgba(3,8,82,.18) !important;
}

.about-page .about-v2-cta-kicker { color: #59df8d !important; }
.about-page .about-v2-cta-card h2 { color: #ffffff !important; font-size: clamp(28px,3vw,42px) !important; }
.about-page .about-v2-cta-card p { color: rgba(255,255,255,.78) !important; }
.about-page .about-v2-cta-btn { background: #25d366 !important; color: #030852 !important; }

@media (max-width: 800px) {
  .about-page .about-v2-metrics-card { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  .about-page .about-v2-metrics-card article:nth-child(2) { border-right: 0 !important; }
  .about-page .about-v2-metrics-card article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16) !important; }
}

@media (max-width: 560px) {
  .about-page.about-replica .about-v2-hero { padding: 110px 0 72px !important; }
  .about-page .about-v2-story,.about-page .about-v2-pillars,.about-page .about-v2-cta-section { padding-block: 52px !important; }
  .about-page .about-v2-metrics-card { grid-template-columns: 1fr !important; }
  .about-page .about-v2-metrics-card article { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.16) !important; }
  .about-page .about-v2-cta-card { padding: 44px 22px !important; border-radius: 16px !important; }
}

/* Movimiento orgánico de la franja verde. */
.home-page .home-impact-strip {
  background-size: 180% 180% !important;
  animation: impact-gradient-flow 8s ease-in-out infinite;
}

.home-page .home-impact-strip::before {
  animation: impact-orb-left 7s ease-in-out infinite alternate;
}

.home-page .home-impact-strip::after {
  animation: impact-orb-right 9s ease-in-out infinite alternate;
}

.home-page .home-impact-drop {
  animation: impact-drop-float 2.8s ease-in-out infinite;
}

.home-page .home-impact-strip p::after {
  content: '';
  position: absolute;
  left: -10%;
  bottom: -12px;
  width: 120%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,transparent,rgba(3,8,82,.5),transparent);
  transform: scaleX(.15);
  opacity: 0;
  animation: impact-line-sweep 5s ease-in-out infinite;
}

@keyframes impact-gradient-flow {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes impact-orb-left {
  from { transform: translate3d(0,0,0) scale(1); opacity: .6; }
  to { transform: translate3d(70px,34px,0) scale(1.18); opacity: 1; }
}

@keyframes impact-orb-right {
  from { transform: translate3d(0,0,0) scale(1); opacity: .55; }
  to { transform: translate3d(-78px,-28px,0) scale(1.22); opacity: .95; }
}

@keyframes impact-drop-float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.06); }
}

@keyframes impact-line-sweep {
  0%,20%,100% { transform: scaleX(.15); opacity: 0; }
  50% { transform: scaleX(1); opacity: .75; }
  80% { transform: scaleX(.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-impact-strip,
  .home-page .home-impact-strip::before,
  .home-page .home-impact-strip::after,
  .home-page .home-impact-drop,
  .home-page .home-impact-strip p::after {
    animation: none !important;
  }
}

@media (min-width: 901px) {
  .about-page.about-replica .about-v2-pillars-grid {
    gap: 22px !important;
  }
}

/* Franja situada entre Historia y Misión/Visión. */
.about-page .about-v2-page > .about-purpose-ribbon {
  position: relative !important;
  z-index: 2 !important;
  left: auto !important;
  top: auto !important;
  width: 100% !important;
  min-height: 104px !important;
  margin: 0 !important;
  padding: 25px 24px !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.about-page .about-v2-page > .about-purpose-ribbon span {
  font-size: clamp(20px,2.2vw,30px) !important;
  font-weight: 850 !important;
  letter-spacing: -.025em !important;
}

/* Nuestra historia: tratamiento minimalista, sin líneas decorativas. */
.about-page.about-replica .about-v2-story {
  padding: 76px 0 !important;
  background: #ffffff !important;
  border: 0 !important;
}

.about-page.about-replica .about-v2-story-grid {
  max-width: 880px !important;
  margin-inline: auto !important;
}

.about-page.about-replica .about-v2-story-copy {
  max-width: 760px !important;
  margin-inline: auto !important;
  text-align: left !important;
}

.about-page.about-replica .about-v2-story-copy h2 {
  margin: 12px 0 24px !important;
  color: #030852 !important;
  font-size: clamp(34px,3.5vw,48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
}

.about-page.about-replica .about-v2-story .about-title-line,
.about-page.about-replica .about-v2-story-copy h2::after {
  display: none !important;
  content: none !important;
}

.about-page.about-replica .about-v2-story-copy p {
  margin: 0 0 18px !important;
  color: #536079 !important;
  font-size: 16px !important;
  line-height: 1.78 !important;
}

/* Primera franja de indicadores en verde de marca. */
.about-page .about-v2-metrics-section,
.about-page .about-v2-metrics-card {
  background: linear-gradient(100deg,#18b95b 0%,#25d366 48%,#15a951 100%) !important;
}

.about-page .about-v2-metrics-card article,
.about-page .about-v2-metrics-card article:first-child,
.about-page .about-v2-metrics-card article:last-child {
  border-color: rgba(3,8,82,.16) !important;
}

.about-page .about-v2-metrics-card strong {
  color: #030852 !important;
}

.about-page .about-v2-metrics-card p {
  color: #030852 !important;
  opacity: .8 !important;
}

@media (max-width: 620px) {
  .about-page.about-replica .about-v2-story { padding: 56px 0 !important; }
  .about-page.about-replica .about-v2-story-copy { text-align: left !important; }
}

/* Encabezado de Historia centrado. */
.about-page.about-replica .about-v2-story-copy .about-v2-kicker {
  display: table !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.about-page.about-replica .about-v2-story-copy h2 {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Franja verde con movimiento de agua lento y sereno. */
.about-page .about-v2-page > .about-purpose-ribbon {
  background: linear-gradient(105deg,#18ad55,#25d366,#59df8d,#18ad55) !important;
  background-size: 180% 100% !important;
  animation: about-ribbon-green-flow 12s ease-in-out infinite !important;
}

.about-page .about-purpose-ribbon::before,
.about-page .about-purpose-ribbon::after {
  left: -10% !important;
  bottom: -38px !important;
  width: 120% !important;
  height: 58px !important;
  border-radius: 50% 48% 0 0 !important;
  background: rgba(255,255,255,.18) !important;
  animation: about-water-drift 8s ease-in-out infinite alternate !important;
}

.about-page .about-purpose-ribbon::after {
  bottom: -45px !important;
  opacity: .45 !important;
  animation-duration: 11s !important;
  animation-direction: alternate-reverse !important;
}

@keyframes about-ribbon-green-flow {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes about-water-drift {
  from { transform: translate3d(-2.5%,0,0) scaleY(.9); }
  to { transform: translate3d(2.5%,-5px,0) scaleY(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-v2-page > .about-purpose-ribbon,
  .about-page .about-purpose-ribbon::before,
  .about-page .about-purpose-ribbon::after { animation: none !important; }
}

/* ========================================================================== */
/* PRODUCTOS — línea gráfica azul y verde vigente                            */
/* ========================================================================== */
.catalog-page {
  background: #f5f8fc !important;
}

.catalog-page #main-header,
.catalog-page #main-header:not(.scrolled),
.catalog-page #main-header.scrolled {
  background: rgba(255,255,255,.94) !important;
  border-bottom: 1px solid rgba(3,8,82,.08) !important;
  box-shadow: 0 8px 30px rgba(3,8,82,.06) !important;
  backdrop-filter: blur(16px) !important;
}

.catalog-page #main-header .logo img {
  filter: none !important;
}

.catalog-page #main-header .nav-link,
.catalog-page #main-header:not(.scrolled) .nav-link {
  color: #030852 !important;
}

.catalog-page #main-header .nav-link:hover,
.catalog-page #main-header .nav-link.active {
  color: #009245 !important;
}

.catalog-page #main-header .nav-link.active::after {
  background: #25d366 !important;
}

.catalog-page #main-header .btn-login {
  color: #030852 !important;
  background: transparent !important;
  border-color: #030852 !important;
}

.catalog-page #main-header .btn-login:hover {
  color: #030852 !important;
  background: #25d366 !important;
  border-color: #25d366 !important;
}

.catalog-page #main-header .btn-cart,
.catalog-page #main-header .btn-mobile-menu {
  color: #030852 !important;
  background: #f4f7fb !important;
  border-color: rgba(3,8,82,.1) !important;
}

.catalog-page .providers-layout {
  padding-top: 92px !important;
  padding-bottom: 72px !important;
  background: #f5f8fc !important;
}

.catalog-page .providers-grid-container {
  gap: 24px !important;
  align-items: start !important;
}

.catalog-page .catalog-header-panel {
  position: relative !important;
  overflow: hidden !important;
  margin-bottom: 26px !important;
  padding: 36px 38px 28px !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 88% 20%,rgba(37,211,102,.24),transparent 27%),
    linear-gradient(125deg,#030852 0%,#07216e 58%,#075783 100%) !important;
  border: 0 !important;
  border-radius: 22px !important;
  box-shadow: 0 22px 48px rgba(3,8,82,.16) !important;
}

.catalog-page .catalog-header-panel::after {
  content: '';
  position: absolute;
  right: -85px;
  top: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}

.catalog-page .catalog-breadcrumbs {
  color: rgba(255,255,255,.68) !important;
  font-size: 12px !important;
}

.catalog-page .catalog-breadcrumbs a,
.catalog-page .catalog-breadcrumbs .active-breadcrumb-cat {
  color: #59df8d !important;
}

.catalog-page .catalog-main-title {
  margin: 12px 0 8px !important;
  color: #ffffff !important;
  font-size: clamp(30px,3.2vw,46px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.045em !important;
}

.catalog-page .catalog-subtitle {
  max-width: 640px !important;
  margin-bottom: 24px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 14px !important;
}

.catalog-page .catalog-bar-row,
.catalog-page .catalog-results-counter-row {
  border-color: rgba(255,255,255,.14) !important;
}

.catalog-page .catalog-results-count,
.catalog-page .sort-label {
  color: rgba(255,255,255,.76) !important;
}

.catalog-page .sort-select {
  color: #030852 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 10px !important;
}

.catalog-page .sidebar-card {
  padding: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(3,8,82,.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px rgba(3,8,82,.06) !important;
}

.catalog-page .sidebar-title,
.catalog-page .sidebar-title-main,
.catalog-page .filter-group-header {
  color: #030852 !important;
}

.catalog-page .filter-list .filter-btn {
  border-radius: 11px !important;
  transition: background-color .2s ease,color .2s ease !important;
}

.catalog-page .filter-list .filter-btn:hover {
  color: #075f37 !important;
  background: #eefaf2 !important;
}

.catalog-page .filter-list .filter-btn.active,
.catalog-page .mobile-categories-pills-row .filter-btn.active {
  color: #030852 !important;
  background: #25d366 !important;
  border-color: #25d366 !important;
  box-shadow: none !important;
}

.catalog-page .search-wrapper,
.catalog-page .search-input,
.catalog-page .price-input {
  border-color: rgba(3,8,82,.12) !important;
  border-radius: 11px !important;
}

.catalog-page .search-input:focus,
.catalog-page .price-input:focus {
  border-color: #25d366 !important;
  box-shadow: 0 0 0 3px rgba(37,211,102,.12) !important;
}

.catalog-page .btn-clear-filters {
  color: #030852 !important;
  background: #eefaf2 !important;
  border-color: rgba(0,146,69,.16) !important;
  border-radius: 11px !important;
}

.catalog-page .providers-products-grid {
  gap: 18px !important;
}

.catalog-page .product-card {
  min-height: 350px !important;
  padding: 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(3,8,82,.07) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(3,8,82,.045) !important;
}

.catalog-page .product-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(0,146,69,.2) !important;
  box-shadow: 0 18px 38px rgba(3,8,82,.1) !important;
}

.catalog-page .product-image-wrapper {
  background: #f5f7fa !important;
  border: 0 !important;
  border-radius: 14px !important;
}

.catalog-page .stock-badge {
  color: #075f37 !important;
  background: #e7f9ee !important;
}

.catalog-page .stock-dot {
  background: #25d366 !important;
}

.catalog-page .product-card-title {
  color: #030852 !important;
  font-weight: 650 !important;
}

.catalog-page .btn-direct-quote {
  color: #030852 !important;
  background: #25d366 !important;
  border-radius: 10px !important;
}

.catalog-page .btn-direct-quote:hover {
  background: #20bd5b !important;
}

.catalog-page .btn-direct-quote svg {
  stroke: #030852 !important;
}

.catalog-page .btn-add-to-quote {
  color: #ffffff !important;
  background: #030852 !important;
  border-color: #030852 !important;
  border-radius: 10px !important;
}

.catalog-page .btn-add-to-quote:hover {
  color: #ffffff !important;
  background: #071d68 !important;
}

.catalog-page .pagination-btn {
  color: #030852 !important;
  background: #ffffff !important;
  border-color: rgba(3,8,82,.1) !important;
  border-radius: 10px !important;
}

.catalog-page .pagination-btn.active,
.catalog-page .pagination-btn:hover {
  color: #030852 !important;
  background: #25d366 !important;
  border-color: #25d366 !important;
}

@media (max-width: 1100px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  }
}

@media (max-width: 768px) {
  .catalog-page .providers-layout { padding-top: 72px !important; padding-bottom: 48px !important; }
  .catalog-page .catalog-header-panel { padding: 28px 20px 22px !important; border-radius: 16px !important; }
  .catalog-page .providers-products-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 12px !important; }
  .catalog-page .mobile-categories-pills-row { background: #ffffff !important; }
}

/* Detalle profesional de producto. */
.catalog-page .product-card { cursor: pointer !important; }

.catalog-page .product-view-hint {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin-top: 10px !important;
  color: #009245 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.catalog-page .product-view-hint b {
  transition: transform .2s ease;
}

.catalog-page .product-card:hover .product-view-hint b {
  transform: translateX(4px);
}

/* Tarjetas del catálogo: formato amplio y compacto. */
@media (min-width: 1101px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }
}

.catalog-page .product-card {
  min-height: 0 !important;
  padding: 13px !important;
}

.catalog-page .product-image-wrapper {
  aspect-ratio: 4 / 3 !important;
  margin-bottom: 11px !important;
}

.catalog-page .product-image-wrapper img {
  max-width: 82% !important;
  max-height: 82% !important;
}

.catalog-page .product-card-content {
  flex-grow: 0 !important;
  min-height: 94px !important;
  padding: 0 3px !important;
}

.catalog-page .product-card-title {
  min-height: 39px !important;
  margin-bottom: 4px !important;
}

.catalog-page .product-card-brand {
  margin-top: 1px !important;
}

.catalog-page .product-view-hint {
  margin-top: 7px !important;
}

.catalog-page .product-card-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 48px !important;
  gap: 8px !important;
  margin-top: 10px !important;
}

.catalog-page .btn-direct-quote,
.catalog-page .btn-add-to-quote {
  min-height: 38px !important;
  padding: 8px 10px !important;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .catalog-page .product-image-wrapper {
    aspect-ratio: 1 / 1 !important;
  }

  .catalog-page .product-card-content {
    min-height: 98px !important;
  }
}

body.catalog-detail-open { overflow: hidden !important; }

.catalog-detail-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease,visibility .25s ease;
}

.catalog-detail-modal.open {
  opacity: 1;
  visibility: visible;
}

.catalog-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,5,40,.76);
  backdrop-filter: blur(12px);
}

.catalog-detail-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px,100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 26px;
  box-shadow: 0 40px 100px rgba(0,0,0,.32);
  transform: translateY(24px) scale(.98);
  transition: transform .28s ease;
}

.catalog-detail-modal.open .catalog-detail-dialog {
  transform: translateY(0) scale(1);
}

.catalog-detail-close {
  position: sticky;
  z-index: 10;
  top: 18px;
  float: right;
  width: 42px;
  height: 42px;
  margin: 18px 18px -60px 0;
  display: grid;
  place-items: center;
  color: #030852;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(3,8,82,.1);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(3,8,82,.12);
  font-size: 28px;
  line-height: 1;
}

.catalog-detail-hero {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr);
}

.catalog-detail-visual {
  position: relative;
  min-height: 500px;
  padding: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%,#ffffff,#eef3f8 72%);
}

.catalog-detail-visual::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(3,8,82,.07);
  border-radius: 50%;
}

.catalog-detail-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 440px;
  max-height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 28px rgba(3,8,82,.14));
}

.catalog-detail-stock {
  position: absolute;
  z-index: 3;
  left: 26px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #075f37;
  background: #e7f9ee;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.catalog-detail-stock i {
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
}

.catalog-detail-visual-caption {
  position: absolute;
  left: 26px;
  bottom: 22px;
  color: #7b879a;
  font-size: 10px;
}

.catalog-detail-summary {
  padding: 68px 52px 48px;
  color: #ffffff;
  background: radial-gradient(circle at 100% 0,rgba(37,211,102,.22),transparent 30%),linear-gradient(145deg,#030852,#073a78);
}

.catalog-detail-kicker {
  color: #59df8d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-detail-summary h2 {
  margin: 13px 0 18px;
  color: #ffffff;
  font-size: clamp(28px,3vw,42px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.catalog-detail-code {
  display: inline-flex;
  gap: 9px;
  padding: 7px 10px;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 11px;
}

.catalog-detail-code strong { color: #ffffff; }

.catalog-detail-summary > p {
  margin: 22px 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.7;
}

.catalog-detail-benefits-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.catalog-detail-benefits-mini span {
  padding: 7px 10px;
  color: #dfffea;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.catalog-detail-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.catalog-detail-quantity {
  display: grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  color: #030852;
  background: #ffffff;
  border-radius: 11px;
  text-align: center;
}

.catalog-detail-quantity button {
  height: 42px;
  color: #030852;
  font-size: 18px;
}

.catalog-detail-add,
.catalog-detail-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 850;
}

.catalog-detail-add {
  color: #030852;
  background: #25d366;
}

.catalog-detail-whatsapp {
  grid-column: 1 / -1;
  color: #ffffff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}

.catalog-detail-body {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(280px,.7fr);
  gap: 28px;
  padding: 42px;
}

.catalog-detail-section-head span,
.catalog-detail-value > span {
  color: #009245;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.catalog-detail-section-head h3,
.catalog-detail-value h3 {
  margin: 8px 0 20px;
  color: #030852;
  font-size: 23px;
  letter-spacing: -.035em;
}

.catalog-detail-specs dl {
  overflow: hidden;
  border: 1px solid rgba(3,8,82,.1);
  border-radius: 14px;
}

.catalog-detail-specs dl > div {
  display: grid;
  grid-template-columns: minmax(140px,.8fr) minmax(0,1.2fr);
  border-bottom: 1px solid rgba(3,8,82,.08);
}

.catalog-detail-specs dl > div:last-child { border-bottom: 0; }
.catalog-detail-specs dt,
.catalog-detail-specs dd { padding: 13px 16px; font-size: 12px; }
.catalog-detail-specs dt { color: #030852; background: #f3f6f9; font-weight: 750; }
.catalog-detail-specs dd { margin: 0; color: #536079; }

.catalog-detail-value {
  padding: 28px;
  background: linear-gradient(145deg,#effcf4,#ffffff);
  border: 1px solid rgba(37,211,102,.22);
  border-radius: 18px;
}

.catalog-detail-value ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.catalog-detail-value li {
  position: relative;
  padding-left: 22px;
  color: #536079;
  font-size: 12px;
  line-height: 1.55;
}

.catalog-detail-value li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #009245;
  font-weight: 900;
}

.catalog-detail-value a {
  color: #030852;
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 860px) {
  .catalog-detail-modal { padding: 12px; }
  .catalog-detail-dialog { max-height: calc(100vh - 24px); border-radius: 18px; }
  .catalog-detail-hero { grid-template-columns: 1fr; }
  .catalog-detail-visual { min-height: 330px; padding: 48px; }
  .catalog-detail-summary { padding: 38px 26px 30px; }
  .catalog-detail-body { grid-template-columns: 1fr; padding: 28px 20px; }
}

@media (max-width: 480px) {
  .catalog-detail-actions { grid-template-columns: 1fr; }
  .catalog-detail-quantity { width: 106px; }
  .catalog-detail-add,.catalog-detail-whatsapp { grid-column: 1; }
  .catalog-detail-specs dl > div { grid-template-columns: 1fr; }
  .catalog-detail-specs dt { padding-bottom: 5px; }
  .catalog-detail-specs dd { padding-top: 5px; }
}

/* Mega menú Productos: mini tienda en el navbar. */
#main-header .products-mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(3,8,82,.06);
  border-bottom: 1px solid rgba(3,8,82,.08);
  box-shadow: 0 30px 70px rgba(3,8,82,.18);
  backdrop-filter: blur(18px);
  transform: translateY(-12px);
  transition: opacity .22s ease,transform .22s ease,visibility .22s ease;
}

#main-header .products-mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.products-mega-inner {
  display: grid;
  grid-template-columns: 260px minmax(0,1fr);
  gap: 34px;
  padding-top: 30px;
  padding-bottom: 32px;
}

.products-mega-heading {
  padding: 22px;
  color: #ffffff;
  background: radial-gradient(circle at 100% 0,rgba(37,211,102,.25),transparent 35%),linear-gradient(145deg,#030852,#074376);
  border-radius: 18px;
}

.products-mega-heading > span {
  color: #59df8d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.products-mega-heading h2 {
  margin: 10px 0 9px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.products-mega-heading p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  line-height: 1.55;
}

.products-mega-heading a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #030852;
  background: #25d366;
  padding: 10px 13px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 850;
}

.products-mega-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
}

.products-mega-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 76px minmax(0,1fr);
  grid-template-rows: auto auto auto;
  column-gap: 13px;
  align-items: center;
  padding: 11px;
  color: #030852 !important;
  background: #f6f8fb;
  border: 1px solid rgba(3,8,82,.06);
  border-radius: 14px;
  transition: transform .2s ease,background-color .2s ease,border-color .2s ease;
}

.products-mega-card:hover {
  color: #030852 !important;
  background: #ffffff;
  border-color: rgba(37,211,102,.35);
  transform: translateY(-3px);
}

.products-mega-image {
  grid-row: 1 / 4;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  border-radius: 11px;
}

.products-mega-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.products-mega-brand {
  overflow: hidden;
  color: #009245;
  font-size: 9px;
  font-weight: 850;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.products-mega-card strong {
  overflow: hidden;
  color: #030852;
  font-size: 11px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.products-mega-card small {
  color: #6b7890;
  font-size: 9px;
  font-weight: 750;
}

@media (max-width: 980px) {
  .products-mega-inner { grid-template-columns: 220px minmax(0,1fr); gap: 18px; }
  .products-mega-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .products-mega-card:nth-child(n+5) { display: none; }
}

@media (max-width: 768px) {
  #main-header .products-mega-menu { display: none !important; }
}

/* Aislamiento estricto del mega menú frente a estilos del catálogo. */
#main-header > .products-mega-menu {
  position: absolute !important;
  inset: 100% 0 auto 0 !important;
  width: 100vw !important;
  height: auto !important;
  max-height: 390px !important;
  margin: 0 !important;
  padding: 0 !important;
}

#main-header > .products-mega-menu > .products-mega-inner {
  width: min(100%,1280px) !important;
  max-width: 1280px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 26px 24px 28px !important;
  display: grid !important;
  grid-template-columns: 250px minmax(0,1fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

#main-header .products-mega-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  min-width: 0 !important;
  padding: 22px !important;
  color: #ffffff !important;
  background: radial-gradient(circle at 100% 0,rgba(37,211,102,.25),transparent 35%),linear-gradient(145deg,#030852,#074376) !important;
  border-radius: 18px !important;
}

#main-header .products-mega-grid {
  min-width: 0 !important;
  height: auto !important;
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  grid-auto-rows: 1fr !important;
  gap: 12px !important;
}

#main-header .products-mega-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 104px !important;
  max-height: 118px !important;
  margin: 0 !important;
  padding: 11px !important;
  display: grid !important;
  grid-template-columns: 76px minmax(0,1fr) !important;
  grid-template-rows: auto auto auto !important;
  column-gap: 13px !important;
  overflow: hidden !important;
  background: #f6f8fb !important;
  border: 1px solid rgba(3,8,82,.06) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

#main-header .products-mega-image {
  grid-row: 1 / 4 !important;
  width: 76px !important;
  min-width: 76px !important;
  max-width: 76px !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border-radius: 11px !important;
}

#main-header .products-mega-image > img {
  position: static !important;
  width: 68px !important;
  min-width: 0 !important;
  max-width: 68px !important;
  height: 68px !important;
  min-height: 0 !important;
  max-height: 68px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
}

@media (max-width: 980px) and (min-width: 769px) {
  #main-header > .products-mega-menu > .products-mega-inner {
    grid-template-columns: 210px minmax(0,1fr) !important;
  }
  #main-header .products-mega-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  #main-header .products-mega-card:nth-child(n+5) { display: none !important; }
}

/* Catálogo — panel de filtros con controles 3D. */
@media (min-width: 769px) {
  .catalog-page .providers-sidebar {
    gap: 18px !important;
    perspective: 1000px;
  }

  .catalog-page .sidebar-card {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(3, 8, 82, .09) !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 35px rgba(3, 8, 82, .08), 0 3px 0 rgba(3, 8, 82, .04) !important;
  }

  .catalog-page .categories-card {
    background: linear-gradient(155deg, #ffffff 0%, #f5faf7 100%) !important;
  }

  .catalog-page .categories-card::after {
    content: '';
    position: absolute;
    right: -38px;
    top: -44px;
    width: 115px;
    height: 115px;
    pointer-events: none;
    border: 20px solid rgba(37, 211, 102, .09);
    border-radius: 50%;
  }

  .catalog-page .filters-card {
    padding: 0 20px 21px !important;
    background:
      radial-gradient(circle at 100% 0, rgba(37, 211, 102, .11), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%) !important;
  }

  .catalog-page .sidebar-title-main {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 58px !important;
    margin: 0 -20px 18px !important;
    padding: 0 20px 0 54px !important;
    color: #ffffff !important;
    background:
      radial-gradient(circle at 88% 20%, rgba(37, 211, 102, .35), transparent 22%),
      linear-gradient(125deg, #030852 0%, #074376 100%) !important;
    border: 0 !important;
    letter-spacing: .85px !important;
  }

  .catalog-page .sidebar-title-main::before {
    content: '';
    position: absolute;
    left: 20px;
    width: 22px;
    height: 22px;
    border: 2px solid #25d366;
    border-radius: 7px;
    background:
      linear-gradient(#25d366, #25d366) 5px 6px / 10px 2px no-repeat,
      linear-gradient(#25d366, #25d366) 5px 13px / 7px 2px no-repeat;
    box-shadow: 0 0 16px rgba(37, 211, 102, .5), inset 0 0 8px rgba(37, 211, 102, .18);
  }

  .catalog-page .search-wrapper {
    margin-bottom: 12px !important;
  }

  .catalog-page .search-input {
    min-height: 43px !important;
    padding-left: 41px !important;
    background: #f2f6f4 !important;
    border: 1px solid rgba(3, 8, 82, .08) !important;
    border-radius: 12px !important;
    box-shadow: inset 0 2px 5px rgba(3, 8, 82, .08), 0 1px 0 #ffffff !important;
  }

  .catalog-page .search-icon {
    left: 14px !important;
    color: #009245 !important;
  }

  .catalog-page .filter-group {
    margin-top: 8px !important;
    padding: 13px 12px 15px !important;
    background: rgba(255, 255, 255, .72) !important;
    border: 1px solid rgba(3, 8, 82, .065) !important;
    border-radius: 14px !important;
    box-shadow: 0 5px 14px rgba(3, 8, 82, .035) !important;
  }

  .catalog-page .filter-group-header {
    margin-bottom: 10px !important;
    color: #030852 !important;
  }

  .catalog-page .chevron-icon {
    box-sizing: content-box !important;
    padding: 4px !important;
    color: #009245 !important;
    background: #e9f9ef !important;
    border-radius: 7px !important;
  }

  .catalog-page .brand-filter-option,
  .catalog-page .price-filter-option,
  .catalog-page .availability-option {
    position: relative !important;
    min-height: 36px !important;
    padding: 5px 9px !important;
    color: #34415e !important;
    background: linear-gradient(180deg, #ffffff, #f3f6f5) !important;
    border: 1px solid rgba(3, 8, 82, .07) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 0 #dfe7e3, 0 7px 12px rgba(3, 8, 82, .04) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
  }

  .catalog-page .brand-filter-option:hover,
  .catalog-page .price-filter-option:hover,
  .catalog-page .availability-option:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(0, 146, 69, .2) !important;
    box-shadow: 0 6px 0 #d9e9df, 0 10px 17px rgba(3, 8, 82, .07) !important;
  }

  .catalog-page .brand-filter-option:has(input:checked),
  .catalog-page .price-filter-option:has(input:checked),
  .catalog-page .availability-option:has(input:checked) {
    color: #030852 !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #effff4, #ffffff) !important;
    border-color: rgba(37, 211, 102, .38) !important;
    box-shadow: 0 3px 0 #b7dec5, 0 6px 14px rgba(0, 146, 69, .1) !important;
  }

  .catalog-page .brand-filter-option input[type="checkbox"],
  .catalog-page .price-filter-option input[type="checkbox"],
  .catalog-page .availability-option input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    position: relative !important;
    flex: 0 0 21px !important;
    width: 21px !important;
    height: 21px !important;
    margin: 0 !important;
    background: linear-gradient(145deg, #ffffff, #e6ece9) !important;
    border: 1px solid #b9c6c0 !important;
    border-radius: 7px !important;
    box-shadow: inset 1px 1px 1px #ffffff, 0 3px 0 #aebbb5, 0 5px 8px rgba(3, 8, 82, .12) !important;
    transform: translateY(-1px) !important;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease !important;
  }

  .catalog-page .brand-filter-option input[type="checkbox"]::after,
  .catalog-page .price-filter-option input[type="checkbox"]::after,
  .catalog-page .availability-option input[type="checkbox"]::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #030852;
    border-width: 0 2.5px 2.5px 0;
    opacity: 0;
    transform: rotate(45deg) scale(.4);
    transition: opacity .16s ease, transform .16s ease;
  }

  .catalog-page .brand-filter-option input[type="checkbox"]:checked,
  .catalog-page .price-filter-option input[type="checkbox"]:checked,
  .catalog-page .availability-option input[type="checkbox"]:checked {
    background: linear-gradient(145deg, #49eb87, #20bd5b) !important;
    border-color: #15994a !important;
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, .45), 0 2px 0 #087e3a, 0 0 12px rgba(37, 211, 102, .32) !important;
    transform: translateY(1px) !important;
  }

  .catalog-page .brand-filter-option input[type="checkbox"]:checked::after,
  .catalog-page .price-filter-option input[type="checkbox"]:checked::after,
  .catalog-page .availability-option input[type="checkbox"]:checked::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }

  .catalog-page .price-range-inputs {
    margin-top: 4px !important;
  }

  .catalog-page .price-input {
    min-width: 0 !important;
    background: #f3f7f5 !important;
    border-color: rgba(3, 8, 82, .09) !important;
    box-shadow: inset 0 2px 4px rgba(3, 8, 82, .07) !important;
  }

  .catalog-page .btn-clear-filters {
    min-height: 42px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #030852, #074376) !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 0 #02052f, 0 9px 18px rgba(3, 8, 82, .16) !important;
    transform: translateY(0) !important;
  }

  .catalog-page .btn-clear-filters:hover {
    color: #030852 !important;
    background: linear-gradient(135deg, #49eb87, #25d366) !important;
    box-shadow: 0 5px 0 #15994a, 0 9px 18px rgba(0, 146, 69, .18) !important;
  }

  .catalog-page .btn-clear-filters:active {
    transform: translateY(3px) !important;
    box-shadow: 0 2px 0 #15994a, 0 4px 9px rgba(3, 8, 82, .14) !important;
  }

  .catalog-page .categories-card .sidebar-title {
    position: relative !important;
    z-index: 1 !important;
    color: #030852 !important;
    letter-spacing: .9px !important;
  }

  .catalog-page .categories-card .filter-btn {
    margin: 3px 10px !important;
    width: calc(100% - 20px) !important;
    padding: 10px 13px !important;
    border-radius: 12px !important;
  }

  .catalog-page .categories-card .category-icon {
    box-sizing: content-box !important;
    padding: 7px !important;
    color: #030852 !important;
    background: #ffffff !important;
    border: 1px solid rgba(3, 8, 82, .08) !important;
    border-radius: 9px !important;
    box-shadow: 0 3px 0 #dfe7e3 !important;
  }

  .catalog-page .categories-card .filter-btn.active {
    color: #030852 !important;
    background: linear-gradient(135deg, #49eb87, #25d366) !important;
    box-shadow: 0 5px 0 #15994a, 0 9px 16px rgba(0, 146, 69, .13) !important;
  }

  .catalog-page .categories-card .filter-btn.active::before {
    display: none !important;
  }
}

/* Catálogo — acabado flat y minimalista definitivo. */
@media (min-width: 769px) {
  .catalog-page .sidebar-card {
    background: #ffffff !important;
    border: 1px solid rgba(3, 8, 82, .09) !important;
    border-radius: 14px !important;
    box-shadow: 0 5px 16px rgba(3, 8, 82, .045) !important;
  }

  .catalog-page .categories-card::after {
    display: none !important;
  }

  .catalog-page .filters-card {
    background: #ffffff !important;
  }

  .catalog-page .sidebar-title-main {
    color: #030852 !important;
    background: #f2faf5 !important;
    border-bottom: 1px solid rgba(0, 146, 69, .12) !important;
  }

  .catalog-page .sidebar-title-main::before {
    border-color: #009245 !important;
    background:
      linear-gradient(#009245, #009245) 4px 5px / 9px 2px no-repeat,
      linear-gradient(#009245, #009245) 4px 11px / 6px 2px no-repeat !important;
    box-shadow: none !important;
  }

  .catalog-page .search-input {
    background: #f7f9fa !important;
    border-color: rgba(3, 8, 82, .1) !important;
    box-shadow: none !important;
  }

  .catalog-page .filter-group,
  .catalog-page .filter-group:last-of-type {
    background: #ffffff !important;
    border-color: rgba(3, 8, 82, .075) !important;
    box-shadow: none !important;
  }

  .catalog-page .chevron-icon {
    background: #edf8f1 !important;
  }

  .catalog-page .brand-filter-option,
  .catalog-page .price-filter-option,
  .catalog-page .availability-option {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .catalog-page .brand-filter-option:hover,
  .catalog-page .price-filter-option:hover,
  .catalog-page .availability-option:hover {
    background: #f4faf6 !important;
    border-color: rgba(0, 146, 69, .1) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .catalog-page .brand-filter-option:has(input:checked),
  .catalog-page .price-filter-option:has(input:checked),
  .catalog-page .availability-option:has(input:checked) {
    color: #030852 !important;
    background: #effaf3 !important;
    border-color: rgba(0, 146, 69, .13) !important;
    box-shadow: none !important;
  }

  .catalog-page .brand-filter-option input[type="checkbox"],
  .catalog-page .price-filter-option input[type="checkbox"],
  .catalog-page .availability-option input[type="checkbox"] {
    background: #ffffff !important;
    border: 1.5px solid #b8c7c0 !important;
    border-radius: 5px !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .catalog-page .brand-filter-option input[type="checkbox"]:checked,
  .catalog-page .price-filter-option input[type="checkbox"]:checked,
  .catalog-page .availability-option input[type="checkbox"]:checked {
    background: #25d366 !important;
    border-color: #15994a !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .catalog-page .price-input {
    background: #f7f9fa !important;
    box-shadow: none !important;
  }

  .catalog-page .btn-clear-filters,
  .catalog-page .btn-clear-filters:hover,
  .catalog-page .btn-clear-filters:active {
    color: #030852 !important;
    background: #eefaf2 !important;
    border: 1px solid rgba(0, 146, 69, .18) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .catalog-page .btn-clear-filters:hover {
    background: #25d366 !important;
  }

  .catalog-page .categories-card .category-icon {
    background: #f5f8f7 !important;
    border-color: rgba(3, 8, 82, .07) !important;
    box-shadow: none !important;
  }

  .catalog-page .categories-card .filter-btn.active {
    color: #030852 !important;
    background: #eaf9ef !important;
    border: 1px solid rgba(0, 146, 69, .13) !important;
    box-shadow: none !important;
  }

  .catalog-page .categories-card .filter-btn.active .category-icon {
    color: #009245 !important;
    background: #ffffff !important;
  }
}

/* Productos: diseño completamente plano, sin sombras. */
.catalog-page,
.catalog-page *,
.catalog-page *::before,
.catalog-page *::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

.catalog-page .product-card:hover,
.catalog-page .filter-btn:hover,
.catalog-page button:hover,
.catalog-page button:focus,
.catalog-page input:focus,
.catalog-page .catalog-detail-dialog {
  box-shadow: none !important;
}

/* Panel de herramientas minimalista: sin ningún efecto 3D. */
@media (min-width: 769px) {
  .catalog-page .providers-sidebar,
  .catalog-page .providers-sidebar * {
    filter: none !important;
    text-shadow: none !important;
  }

  .catalog-page .providers-sidebar {
    perspective: none !important;
  }

  .catalog-page .sidebar-card,
  .catalog-page .filters-card,
  .catalog-page .categories-card {
    background: #ffffff !important;
    border: 1px solid #e4e9ed !important;
    border-radius: 12px !important;
  }

  .catalog-page .sidebar-title-main {
    color: #030852 !important;
    background: #f5f8f6 !important;
    border-bottom: 1px solid #e4e9ed !important;
  }

  .catalog-page .filter-group {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #edf0f2 !important;
    border-radius: 0 !important;
  }

  .catalog-page .filter-group:last-of-type {
    border-bottom: 0 !important;
  }

  .catalog-page .brand-filter-option,
  .catalog-page .price-filter-option,
  .catalog-page .availability-option,
  .catalog-page .brand-filter-option:hover,
  .catalog-page .price-filter-option:hover,
  .catalog-page .availability-option:hover,
  .catalog-page .brand-filter-option:has(input:checked),
  .catalog-page .price-filter-option:has(input:checked),
  .catalog-page .availability-option:has(input:checked) {
    transform: none !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 6px !important;
  }

  .catalog-page .brand-filter-option:hover,
  .catalog-page .price-filter-option:hover,
  .catalog-page .availability-option:hover {
    color: #009245 !important;
    background: #f5faf7 !important;
  }

  .catalog-page .brand-filter-option input[type="checkbox"],
  .catalog-page .price-filter-option input[type="checkbox"],
  .catalog-page .availability-option input[type="checkbox"],
  .catalog-page .brand-filter-option input[type="checkbox"]:checked,
  .catalog-page .price-filter-option input[type="checkbox"]:checked,
  .catalog-page .availability-option input[type="checkbox"]:checked {
    transform: none !important;
    border-radius: 4px !important;
  }

  .catalog-page .categories-card .filter-btn,
  .catalog-page .categories-card .filter-btn:hover,
  .catalog-page .categories-card .filter-btn.active {
    transform: none !important;
    border: 0 !important;
    border-radius: 7px !important;
  }

  .catalog-page .categories-card .filter-btn.active {
    color: #075f37 !important;
    background: #edf8f1 !important;
  }

  .catalog-page .categories-card .category-icon,
  .catalog-page .categories-card .filter-btn.active .category-icon {
    padding: 2px !important;
    color: #009245 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  .catalog-page .chevron-icon {
    color: #009245 !important;
    background: transparent !important;
  }

  .catalog-page .search-input,
  .catalog-page .price-input {
    background: #f7f9fa !important;
    border: 1px solid #dfe5e8 !important;
  }

  .catalog-page .btn-clear-filters,
  .catalog-page .btn-clear-filters:hover,
  .catalog-page .btn-clear-filters:active {
    transform: none !important;
    color: #075f37 !important;
    background: #edf8f1 !important;
    border: 1px solid #cfe9d8 !important;
  }

  .catalog-page .btn-clear-filters:hover {
    background: #dff4e6 !important;
  }
}

/* Filtros sin sombras y selector de precio en barra. */
.catalog-page .providers-sidebar,
.catalog-page .providers-sidebar *,
.catalog-page .providers-sidebar *::before,
.catalog-page .providers-sidebar *::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

.catalog-page .providers-sidebar .filter-btn,
.catalog-page .providers-sidebar .filter-btn:hover,
.catalog-page .providers-sidebar .filter-btn.active,
.catalog-page .providers-sidebar label,
.catalog-page .providers-sidebar label:hover,
.catalog-page .providers-sidebar label:has(input:checked) {
  box-shadow: none !important;
  border-bottom: 0 !important;
}

.catalog-page .price-slider-panel {
  gap: 7px !important;
}

.catalog-page .price-slider-summary,
.catalog-page .price-slider-scale {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.catalog-page .price-slider-summary {
  color: #64718a !important;
  font-size: 10.5px !important;
}

.catalog-page .price-slider-summary strong {
  color: #075f37 !important;
  font-size: 11px !important;
}

.catalog-page .price-slider-scale {
  margin-top: -4px !important;
  color: #8b96a8 !important;
  font-size: 9.5px !important;
}

.catalog-page .catalog-price-slider {
  --price-progress: 100%;
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  height: 4px !important;
  margin: 7px 0 4px !important;
  padding: 0 !important;
  cursor: pointer !important;
  outline: none !important;
  background: linear-gradient(to right, #25d366 0 var(--price-progress), #dfe6e2 var(--price-progress) 100%) !important;
  border: 0 !important;
  border-radius: 999px !important;
}

.catalog-page .catalog-price-slider::-webkit-slider-thumb {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  background: #ffffff !important;
  border: 3px solid #009245 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.catalog-page .catalog-price-slider::-moz-range-thumb {
  width: 12px !important;
  height: 12px !important;
  background: #ffffff !important;
  border: 3px solid #009245 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.catalog-page .price-slider-panel .price-range-inputs {
  position: relative !important;
  gap: 14px !important;
}

.catalog-page .price-slider-panel .price-range-inputs::after {
  content: '—';
  position: absolute;
  left: 50%;
  top: 50%;
  color: #9aa4b2;
  transform: translate(-50%, -50%);
}

.catalog-page .price-slider-panel .price-input {
  height: 29px !important;
  padding: 5px 7px !important;
  background: #f7f9fa !important;
  border: 1px solid #dfe5e8 !important;
  border-radius: 7px !important;
  box-shadow: none !important;
}

/* Catálogo — versión compacta del panel para verlo completo en pantalla. */
@media (min-width: 769px) {
  .catalog-page .providers-sidebar {
    gap: 10px !important;
    top: 70px !important;
    max-height: calc(100vh - 82px) !important;
    padding: 2px 0 8px !important;
    overflow-y: auto !important;
  }

  .catalog-page .sidebar-card {
    flex: 0 0 auto !important;
    border-radius: 16px !important;
    box-shadow: 0 9px 22px rgba(3, 8, 82, .065), 0 2px 0 rgba(3, 8, 82, .035) !important;
  }

  .catalog-page .sidebar-card.categories-card {
    padding: 12px 0 10px !important;
  }

  .catalog-page .sidebar-card.categories-card .sidebar-title {
    margin-bottom: 6px !important;
    padding: 0 18px !important;
    font-size: 12.5px !important;
  }

  .catalog-page .categories-card::after {
    right: -46px !important;
    top: -52px !important;
    width: 105px !important;
    height: 105px !important;
    border-width: 16px !important;
  }

  .catalog-page .categories-card .filter-list {
    gap: 1px !important;
  }

  .catalog-page .categories-card .filter-btn {
    min-height: 34px !important;
    margin: 1px 9px !important;
    width: calc(100% - 18px) !important;
    padding: 5px 10px !important;
    font-size: 12.5px !important;
    border-radius: 9px !important;
  }

  .catalog-page .categories-card .filter-btn-left {
    gap: 8px !important;
  }

  .catalog-page .categories-card .category-icon {
    width: 14px !important;
    height: 14px !important;
    padding: 4px !important;
    border-radius: 7px !important;
    box-shadow: 0 2px 0 #dfe7e3 !important;
  }

  .catalog-page .categories-card .filter-btn.active {
    box-shadow: 0 3px 0 #15994a, 0 6px 11px rgba(0, 146, 69, .11) !important;
  }

  .catalog-page .filters-card {
    padding: 0 14px 14px !important;
  }

  .catalog-page .sidebar-title-main {
    min-height: 44px !important;
    margin: 0 -14px 10px !important;
    padding: 0 14px 0 44px !important;
    font-size: 12.5px !important;
    border-radius: 15px 15px 0 0 !important;
  }

  .catalog-page .sidebar-title-main::before {
    left: 14px !important;
    width: 19px !important;
    height: 19px !important;
    border-radius: 6px !important;
    background:
      linear-gradient(#25d366, #25d366) 4px 5px / 9px 2px no-repeat,
      linear-gradient(#25d366, #25d366) 4px 11px / 6px 2px no-repeat !important;
  }

  .catalog-page .search-wrapper {
    margin-bottom: 7px !important;
  }

  .catalog-page .search-input {
    min-height: 35px !important;
    height: 35px !important;
    padding: 7px 10px 7px 36px !important;
    font-size: 12.5px !important;
    border-radius: 10px !important;
  }

  .catalog-page .search-icon {
    left: 12px !important;
    width: 14px !important;
    height: 14px !important;
  }

  .catalog-page .filter-group,
  .catalog-page .filter-group:last-of-type {
    margin-top: 6px !important;
    padding: 8px 9px 9px !important;
    border-radius: 11px !important;
    box-shadow: 0 3px 9px rgba(3, 8, 82, .03) !important;
  }

  .catalog-page .filter-group-header {
    margin-bottom: 6px !important;
    font-size: 11.5px !important;
  }

  .catalog-page .chevron-icon {
    width: 11px !important;
    height: 11px !important;
    padding: 3px !important;
    border-radius: 6px !important;
  }

  .catalog-page .filter-group-content {
    gap: 5px !important;
  }

  .catalog-page .brand-filter-option,
  .catalog-page .price-filter-option,
  .catalog-page .availability-option {
    min-height: 29px !important;
    padding: 3px 7px !important;
    gap: 8px !important;
    font-size: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 0 #dfe7e3, 0 4px 8px rgba(3, 8, 82, .035) !important;
  }

  .catalog-page .brand-filter-option:hover,
  .catalog-page .price-filter-option:hover,
  .catalog-page .availability-option:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 0 #d9e9df, 0 6px 10px rgba(3, 8, 82, .055) !important;
  }

  .catalog-page .brand-filter-option:has(input:checked),
  .catalog-page .price-filter-option:has(input:checked),
  .catalog-page .availability-option:has(input:checked) {
    box-shadow: 0 2px 0 #b7dec5, 0 4px 9px rgba(0, 146, 69, .08) !important;
  }

  .catalog-page .brand-filter-option input[type="checkbox"],
  .catalog-page .price-filter-option input[type="checkbox"],
  .catalog-page .availability-option input[type="checkbox"] {
    flex-basis: 18px !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 6px !important;
    box-shadow: inset 1px 1px 1px #ffffff, 0 2px 0 #aebbb5, 0 3px 6px rgba(3, 8, 82, .1) !important;
  }

  .catalog-page .brand-filter-option input[type="checkbox"]::after,
  .catalog-page .price-filter-option input[type="checkbox"]::after,
  .catalog-page .availability-option input[type="checkbox"]::after {
    left: 5px !important;
    top: 2px !important;
    width: 5px !important;
    height: 9px !important;
    border-width: 0 2px 2px 0 !important;
  }

  .catalog-page .price-range-inputs {
    gap: 5px !important;
    margin-top: 2px !important;
  }

  .catalog-page .price-input {
    height: 28px !important;
    padding: 5px 6px !important;
    font-size: 11px !important;
    border-radius: 7px !important;
  }

  .catalog-page .btn-clear-filters {
    min-height: 34px !important;
    margin-top: 9px !important;
    padding: 7px !important;
    font-size: 11.5px !important;
    border-radius: 9px !important;
    box-shadow: 0 3px 0 #02052f, 0 6px 12px rgba(3, 8, 82, .13) !important;
  }
}

/* REGLA FINAL: catálogo totalmente plano y sin sombras. */
.catalog-page,
.catalog-page *,
.catalog-page *::before,
.catalog-page *::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

.catalog-page .providers-sidebar,
.catalog-page .providers-sidebar * {
  filter: none !important;
}

.catalog-page .sidebar-card,
.catalog-page .filter-group,
.catalog-page .filter-btn,
.catalog-page .filter-btn:hover,
.catalog-page .filter-btn.active,
.catalog-page .brand-filter-option,
.catalog-page .brand-filter-option:hover,
.catalog-page .brand-filter-option:has(input:checked),
.catalog-page .btn-clear-filters,
.catalog-page .btn-clear-filters:hover,
.catalog-page .btn-clear-filters:active {
  box-shadow: none !important;
  transform: none !important;
}

.catalog-page .filter-btn.active,
.catalog-page .btn-clear-filters,
.catalog-page .btn-clear-filters:hover,
.catalog-page .btn-clear-filters:active {
  border-bottom-width: 1px !important;
}

.catalog-page .filter-btn.active::before,
.catalog-page .filter-btn.active::after {
  display: none !important;
}

/* Tienda — sistema cromático estratégico: azul, verde y naranja. */
:root {
  --store-blue: #030852;
  --store-blue-soft: #eef0f8;
  --store-green: #009245;
  --store-green-bright: #25d366;
  --store-green-soft: #edf8f1;
  --store-orange: #f28c18;
  --store-orange-soft: #fff4e7;
}

/* Catálogo: azul estructura, verde acción, naranja información comercial. */
.catalog-page .catalog-header-panel {
  background: linear-gradient(125deg, var(--store-blue) 0%, #083e70 100%) !important;
  border: 0 !important;
}

.catalog-page .catalog-breadcrumbs,
.catalog-page .catalog-breadcrumbs a,
.catalog-page .catalog-header-panel .catalog-eyebrow {
  color: #ffb04a !important;
}

.catalog-page .catalog-header-panel h1,
.catalog-page .catalog-header-panel p {
  color: #ffffff !important;
}

.catalog-page .catalog-header-panel::after {
  content: '';
  position: absolute;
  left: 28px;
  right: auto;
  top: auto;
  bottom: 0;
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--store-green-bright) 0 55%, var(--store-orange) 55% 100%);
  border: 0;
  border-radius: 4px 4px 0 0;
}

.catalog-page .sidebar-title,
.catalog-page .sidebar-title-main,
.catalog-page .filter-group-header,
.catalog-page .catalog-results-count {
  color: var(--store-blue) !important;
}

.catalog-page .sidebar-title-main::before,
.catalog-page .stock-dot {
  border-color: var(--store-green) !important;
}

.catalog-page .filter-btn.active {
  color: #075f37 !important;
  background: var(--store-green-soft) !important;
}

.catalog-page .filter-btn.active .category-icon,
.catalog-page .product-view-hint,
.catalog-page .stock-badge {
  color: var(--store-green) !important;
}

.catalog-page .product-card-brand,
.catalog-page .price-slider-summary strong {
  color: #c86700 !important;
}

.catalog-page .catalog-price-slider {
  background: linear-gradient(to right, var(--store-orange) 0 var(--price-progress), #e2e7e4 var(--price-progress) 100%) !important;
}

.catalog-page .catalog-price-slider::-webkit-slider-thumb {
  border-color: var(--store-orange) !important;
}

.catalog-page .catalog-price-slider::-moz-range-thumb {
  border-color: var(--store-orange) !important;
}

.catalog-page .btn-direct-quote,
.catalog-page .catalog-detail-add {
  color: var(--store-blue) !important;
  background: var(--store-green-bright) !important;
}

.catalog-page .btn-add-to-quote {
  color: #ffffff !important;
  background: var(--store-blue) !important;
  border-color: var(--store-blue) !important;
}

.catalog-page .btn-add-to-quote svg,
.catalog-page .catalog-detail-kicker,
.catalog-page .catalog-detail-close {
  color: var(--store-orange) !important;
  stroke: var(--store-orange) !important;
}

.catalog-page .pagination-btn.active {
  color: var(--store-blue) !important;
  background: var(--store-orange) !important;
  border-color: var(--store-orange) !important;
}

.catalog-page .btn-clear-filters,
.catalog-page .btn-clear-filters:hover {
  color: var(--store-blue) !important;
  background: var(--store-orange-soft) !important;
  border-color: #f5c58e !important;
}

/* Vista Tienda: misma jerarquía cromática y acabado plano. */
.shop-page,
.shop-page *,
.shop-page *::before,
.shop-page *::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

.shop-page .shop-heading h1,
.shop-page .shop-filter-panel h2,
.shop-page .shop-filter-group h3,
.shop-page .shop-toolbar,
.shop-page .shop-product-info h3 {
  color: var(--store-blue) !important;
}

.shop-page .shop-heading {
  border-left: 4px solid var(--store-green) !important;
}

.shop-page .shop-breadcrumb span:last-child,
.shop-page .shop-product-bottom strong,
.shop-page [data-shop-price-value] {
  color: #c86700 !important;
}

.shop-page .shop-category.active,
.shop-page .shop-category:hover {
  color: #075f37 !important;
  background: var(--store-green-soft) !important;
  border-color: #cde9d7 !important;
}

.shop-page .shop-price-range {
  accent-color: var(--store-orange) !important;
}

.shop-page .shop-check input {
  accent-color: var(--store-green) !important;
}

.shop-page .shop-cart-btn,
.shop-page .mobile-shop-cart-btn,
.shop-page .shop-detail-add {
  color: var(--store-blue) !important;
  background: var(--store-green-bright) !important;
  border-color: var(--store-green-bright) !important;
}

.shop-page .shop-cart-btn svg,
.shop-page .mobile-shop-cart-btn svg {
  color: var(--store-blue) !important;
  stroke: var(--store-blue) !important;
}

.shop-page .shop-clear-filters {
  color: var(--store-blue) !important;
  background: var(--store-orange-soft) !important;
  border-color: #f5c58e !important;
}

.shop-page .shop-page-btn.active {
  color: #ffffff !important;
  background: var(--store-blue) !important;
  border-color: var(--store-blue) !important;
}

.shop-page .shop-benefits article:nth-child(3n + 1) svg {
  color: var(--store-green) !important;
}

.shop-page .shop-benefits article:nth-child(3n + 2) svg {
  color: var(--store-orange) !important;
}

.shop-page .shop-benefits article:nth-child(3n) svg {
  color: var(--store-blue) !important;
}

.shop-page .shop-detail-kicker,
.shop-page .shop-detail-close {
  color: var(--store-orange) !important;
}

/* Productos — portada comercial inspirada en marketplace B2B. */
.catalog-page .catalog-intro-hero {
  position: relative;
  min-height: 520px;
  margin-top: 68px;
  overflow: hidden;
  color: #ffffff;
  background: var(--store-blue);
}

.catalog-page .catalog-intro-media,
.catalog-page .catalog-intro-overlay {
  position: absolute;
  inset: 0;
}

.catalog-page .catalog-intro-media {
  background: #0b2457 url('../img/home-carousel/wide-hoses-hdpe-field-ai.webp') center / cover no-repeat;
}

.catalog-page .catalog-intro-overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 82, .98) 0%, rgba(3, 8, 82, .92) 35%, rgba(3, 8, 82, .55) 60%, rgba(3, 8, 82, .08) 100%),
    linear-gradient(0deg, rgba(3, 8, 82, .42), transparent 48%);
}

.catalog-page .catalog-intro-content {
  position: relative;
  z-index: 1;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 46px;
}

.catalog-page .catalog-intro-copy {
  width: min(650px, 58%);
}

.catalog-page .catalog-intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #65e99a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.catalog-page .catalog-intro-kicker::before {
  content: '';
  width: 27px;
  height: 3px;
  background: var(--store-orange);
  border-radius: 999px;
}

.catalog-page .catalog-intro-copy h1 {
  max-width: 640px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.01;
  letter-spacing: -.052em;
}

.catalog-page .catalog-intro-copy p {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.65;
}

.catalog-page .catalog-intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
}

.catalog-page .catalog-intro-primary,
.catalog-page .catalog-intro-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 9px;
}

.catalog-page .catalog-intro-primary {
  color: var(--store-blue);
  background: var(--store-orange);
  border: 1px solid var(--store-orange);
}

.catalog-page .catalog-intro-secondary {
  gap: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .42);
}

.catalog-page .catalog-intro-secondary span {
  color: var(--store-green-bright);
  font-size: 17px;
}

.catalog-page .catalog-intro-metrics {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  background: rgba(3, 8, 82, .96);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.catalog-page .catalog-intro-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-page .catalog-intro-metrics-grid > div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 5px 20px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.catalog-page .catalog-intro-metrics-grid > div:last-child {
  border-right: 0;
}

.catalog-page .catalog-intro-metrics strong {
  color: var(--store-green-bright);
  font-size: 22px;
  white-space: nowrap;
}

.catalog-page .catalog-intro-metrics-grid > div:nth-child(even) strong {
  color: #ff9f28;
}

.catalog-page .catalog-intro-metrics span {
  color: #ffffff;
  font-size: 11px;
  font-weight: 650;
}

.catalog-page .providers-layout {
  scroll-margin-top: 72px;
  padding-top: 48px !important;
}

.catalog-page .catalog-header-panel {
  padding: 22px 25px 18px !important;
  color: var(--store-blue) !important;
  background: #ffffff !important;
  border: 1px solid #e5e9ed !important;
  border-radius: 14px !important;
}

.catalog-page .catalog-header-panel::after {
  display: none !important;
}

.catalog-page .catalog-header-panel .catalog-breadcrumbs,
.catalog-page .catalog-header-panel .catalog-breadcrumbs a,
.catalog-page .catalog-header-panel .active-breadcrumb-cat {
  color: #c86700 !important;
}

.catalog-page .catalog-header-panel .catalog-main-title {
  margin-top: 9px !important;
  color: var(--store-blue) !important;
  font-size: clamp(27px, 2.6vw, 39px) !important;
}

.catalog-page .catalog-header-panel .catalog-subtitle {
  color: #596781 !important;
}

@media (max-width: 900px) {
  .catalog-page .catalog-intro-hero {
    min-height: 500px;
  }

  .catalog-page .catalog-intro-copy {
    width: min(670px, 78%);
  }

  .catalog-page .catalog-intro-metrics-grid > div {
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .catalog-page .catalog-intro-hero {
    min-height: 590px;
    margin-top: 60px;
  }

  .catalog-page .catalog-intro-media {
    background-image: url('../img/home-carousel/hero-hoses-hdpe-field-ai.webp');
  }

  .catalog-page .catalog-intro-overlay {
    background: linear-gradient(180deg, rgba(3, 8, 82, .82), rgba(3, 8, 82, .97) 68%);
  }

  .catalog-page .catalog-intro-content {
    min-height: 485px;
    align-items: flex-end;
    padding-bottom: 42px;
  }

  .catalog-page .catalog-intro-copy {
    width: 100%;
  }

  .catalog-page .catalog-intro-copy h1 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .catalog-page .catalog-intro-copy p {
    font-size: 14px;
  }

  .catalog-page .catalog-intro-primary,
  .catalog-page .catalog-intro-secondary {
    flex: 1 1 100%;
  }

  .catalog-page .catalog-intro-metrics {
    min-height: 105px;
  }

  .catalog-page .catalog-intro-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 9px;
  }

  .catalog-page .catalog-intro-metrics-grid > div {
    padding: 2px 7px;
    border-right: 0;
  }

  .catalog-page .catalog-intro-metrics strong {
    font-size: 17px;
  }

  .catalog-page .catalog-intro-metrics span {
    font-size: 9px;
  }

  .catalog-page .providers-layout {
    padding-top: 30px !important;
  }
}

/* Productos — usa la misma portada y composición visual de Inicio. */
.catalog-page .products-hero-section .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.catalog-page .products-hero-section,
.catalog-page .products-hero-section .slider-container,
.catalog-page .products-hero-section .slide {
  height: min(720px, 100vh) !important;
  min-height: 620px !important;
}

.catalog-page .products-hero-section .slide-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.catalog-page .products-hero-section .slide-bg-3 {
  background-image: url('../img/home-carousel/wide-nursery-micro-irrigation-ai.webp') !important;
}

.catalog-page .products-hero-section .slide-bg-4 {
  background-image: url('../img/home-carousel/wide-filters-valves-field-ai.webp') !important;
}

.catalog-page .products-hero-section .slide-bg-5 {
  background-image: url('../img/home-carousel/wide-hoses-hdpe-field-ai.webp') !important;
}

.catalog-page .products-hero-section .slide-bg::before {
  inset: 0 !important;
  width: 100% !important;
  background:
    linear-gradient(112deg, rgba(2, 5, 54, .94) 0%, rgba(2, 5, 54, .79) 28%, rgba(2, 5, 54, .39) 51%, rgba(2, 5, 54, .04) 76%),
    linear-gradient(180deg, rgba(2, 5, 54, .03), rgba(2, 5, 54, .09)) !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.catalog-page .catalog-mobile-tools {
  display: none;
}

@media (max-width: 768px) {
  .catalog-page .catalog-mobile-tools {
    display: flex;
    margin-bottom: 14px;
  }

  .catalog-page .catalog-mobile-tools .btn-mobile-filters-trigger {
    width: 100% !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #030852 !important;
    background: #edf8f1 !important;
    border: 1px solid #cfe9d8 !important;
    border-radius: 9px !important;
    font-weight: 750 !important;
  }
}

/* Productos: unión limpia entre carrusel e indicadores. */
.catalog-page .products-hero-section .stats-section {
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  background: #030852 !important;
  border-top: 1px solid rgba(255, 255, 255, .13) !important;
}

.catalog-page .products-hero-section .stats-grid {
  width: min(100%, 960px) !important;
  min-height: 72px !important;
  display: grid !important;
  grid-template-columns: 1fr 1px 1fr 1px 1fr !important;
  align-items: center !important;
  padding: 0 22px !important;
}

.catalog-page .products-hero-section .stat-item {
  max-width: none !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 9px !important;
  padding: 0 24px !important;
}

.catalog-page .products-hero-section .stat-divider {
  width: 1px !important;
  height: 30px !important;
  background: rgba(255, 255, 255, .2) !important;
}

.catalog-page .products-hero-section .stat-number {
  color: var(--store-green-bright) !important;
  font-size: 27px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.catalog-page .products-hero-section .stat-item:nth-child(3) .stat-number {
  color: var(--store-orange) !important;
}

.catalog-page .products-hero-section .stat-label {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
}

.catalog-page .products-hero-section .slider-dots {
  bottom: 85px !important;
  padding: 6px 9px !important;
  background: rgba(3, 8, 82, .64) !important;
  border: 1px solid rgba(255, 255, 255, .38) !important;
}

@media (max-width: 768px) {
  .catalog-page .products-hero-section .stats-section,
  .catalog-page .products-hero-section .stats-grid {
    min-height: 86px !important;
  }

  .catalog-page .products-hero-section .stats-grid {
    padding: 0 7px !important;
  }

  .catalog-page .products-hero-section .stat-item {
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
    padding: 0 5px !important;
    text-align: center !important;
  }

  .catalog-page .products-hero-section .stat-number {
    font-size: 21px !important;
  }

  .catalog-page .products-hero-section .stat-label {
    font-size: 8.5px !important;
    white-space: normal !important;
  }

  .catalog-page .products-hero-section .slider-dots {
    bottom: 97px !important;
  }
}

/* Productos: portada compacta, sin espacios verticales excesivos. */
@media (min-width: 769px) {
  .catalog-page .products-hero-section,
  .catalog-page .products-hero-section .slider-container,
  .catalog-page .products-hero-section .slide {
    height: 520px !important;
    min-height: 520px !important;
  }

  .catalog-page .products-hero-section .slide-content {
    padding: 82px 80px 108px !important;
  }

  .catalog-page .products-hero-section .slide-title {
    max-width: 760px !important;
    font-size: clamp(34px, 3.25vw, 45px) !important;
  }

  .catalog-page .products-hero-section .slide-subtitle {
    margin-top: 11px !important;
    font-size: clamp(15px, 1.2vw, 18px) !important;
  }

  .catalog-page .products-hero-section .cta-row {
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }

  .catalog-page .products-hero-section .btn-quote.whatsapp {
    min-height: 43px !important;
    padding: 11px 20px !important;
  }

  .catalog-page .products-hero-section .stats-section,
  .catalog-page .products-hero-section .stats-grid {
    min-height: 62px !important;
  }

  .catalog-page .products-hero-section .stat-number {
    font-size: 24px !important;
  }

  .catalog-page .products-hero-section .slider-dots {
    bottom: 73px !important;
  }
}

@media (max-width: 768px) {
  .catalog-page .products-hero-section,
  .catalog-page .products-hero-section .slider-container,
  .catalog-page .products-hero-section .slide {
    height: 550px !important;
    min-height: 550px !important;
  }

  .catalog-page .products-hero-section .slide-content {
    padding: 78px 22px 105px !important;
  }

  .catalog-page .products-hero-section .stats-section,
  .catalog-page .products-hero-section .stats-grid {
    min-height: 76px !important;
  }

  .catalog-page .products-hero-section .slider-dots {
    bottom: 86px !important;
  }
}

/* Categorías visuales exclusivas del Inicio móvil. */
.home-mobile-categories {
  display: none;
}

@media (max-width: 620px) {
  .home-page .section-categories {
    display: none !important;
  }

  .home-page .home-mobile-categories {
    display: block !important;
    padding: 52px 20px 48px !important;
    background: #ffffff !important;
  }

  .home-page .home-mobile-categories-head {
    max-width: 350px !important;
    margin: 0 auto 32px !important;
    text-align: center !important;
  }

  .home-page .home-mobile-categories-head > span {
    display: inline-flex !important;
    padding: 8px 17px !important;
    color: #199b55 !important;
    background: #e4f6ed !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
  }

  .home-page .home-mobile-categories-head h2 {
    max-width: 310px !important;
    margin: 15px auto 13px !important;
    color: #030852 !important;
    font-size: 31px !important;
    line-height: 1.08 !important;
    letter-spacing: -.025em !important;
    text-wrap: balance !important;
  }

  .home-page .home-mobile-categories-head p {
    max-width: 330px !important;
    margin: 0 auto !important;
    color: #818995 !important;
    font-size: 16px !important;
    line-height: 1.42 !important;
  }

  .home-page .home-mobile-categories-list {
    max-width: 356px !important;
    display: grid !important;
    gap: 11px !important;
    margin: 0 auto !important;
  }

  .home-page .home-mobile-category-row {
    min-height: 78px !important;
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    align-items: center !important;
    overflow: hidden !important;
    color: #07153d !important;
    background: #25d366 !important;
    border-radius: 18px !important;
    text-decoration: none !important;
  }

  .home-page .home-mobile-category-row img {
    width: 112px !important;
    height: 78px !important;
    display: block !important;
    object-fit: cover !important;
  }

  .home-page .home-mobile-category-row strong {
    padding: 0 17px !important;
    color: #030852 !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .home-page .home-mobile-categories-all {
    width: max-content !important;
    min-height: 39px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    margin: 24px auto 0 !important;
    padding: 10px 17px !important;
    color: #030852 !important;
    background: #25d366 !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    font-weight: 750 !important;
    text-decoration: none !important;
  }
}

/* Inicio móvil: composición compacta inspirada en la referencia. */
@media (max-width: 620px) {
  .home-page {
    overflow-x: hidden !important;
    background: #f5f8fc !important;
  }

  .home-page #main-header,
  .home-page #main-header .header-container {
    min-height: 56px !important;
    height: 56px !important;
  }

  .home-page #main-header .logo img {
    width: 132px !important;
    max-height: 34px !important;
  }

  .home-page .hero-section,
  .home-page .hero-section .slider-container,
  .home-page .hero-section .slide {
    min-height: 360px !important;
    height: 360px !important;
  }

  .home-page .hero-section .slide-content {
    padding: 54px 42px 82px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .home-page .hero-section .slide-title {
    max-width: 290px !important;
    margin: 0 auto !important;
    font-size: 26px !important;
    line-height: 1.08 !important;
    text-wrap: balance !important;
  }

  .home-page .hero-section .slide-subtitle {
    max-width: 285px !important;
    margin: 10px auto 0 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .home-page .hero-section .cta-row {
    justify-content: center !important;
    margin-top: 14px !important;
  }

  .home-page .hero-section .btn-quote.whatsapp {
    min-height: 38px !important;
    padding: 9px 15px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
  }

  .home-page .hero-section .slider-arrow {
    width: 34px !important;
    height: 34px !important;
  }

  .home-page .hero-section .slider-arrow.left { left: 8px !important; }
  .home-page .hero-section .slider-arrow.right { right: 8px !important; }

  .home-page .hero-section .slider-dots {
    bottom: 60px !important;
    transform: translateX(-50%) scale(.82) !important;
  }

  .home-page .hero-section .stats-section,
  .home-page .hero-section .stats-grid {
    min-height: 52px !important;
    height: 52px !important;
  }

  .home-page .hero-section .stats-grid {
    grid-template-columns: 1fr 1px 1fr 1px 1fr !important;
    padding: 0 8px !important;
  }

  .home-page .hero-section .stat-item {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 3px !important;
  }

  .home-page .hero-section .stat-number {
    font-size: 15px !important;
  }

  .home-page .hero-section .stat-label {
    max-width: 58px !important;
    font-size: 7px !important;
    line-height: 1.12 !important;
  }

  .home-page .hero-section .stat-divider {
    display: block !important;
    height: 22px !important;
  }

  .home-page .home-metrics-row-section {
    display: none !important;
  }

  .home-page .home-start-complete {
    padding: 0 !important;
    background: #ffffff !important;
  }

  .home-page .home-start-complete > .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .home-page .home-experts-grid {
    min-height: 0 !important;
    padding: 46px 22px !important;
    background: linear-gradient(145deg, #030852, #063768) !important;
  }

  .home-page .home-experts-copy {
    max-width: 340px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .home-page .home-experts-copy h2 {
    margin: 8px 0 12px !important;
    color: #ffffff !important;
    font-size: 27px !important;
    line-height: 1.08 !important;
  }

  .home-page .home-experts-copy p {
    margin: 0 auto 17px !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 11.5px !important;
    line-height: 1.55 !important;
  }

  .home-page .home-experts-copy .home-mini-kicker { color: #25d366 !important; }
  .home-page .home-experts-copy .home-outline-arrow { color: #ffffff !important; border-color: rgba(255,255,255,.45) !important; }

  .home-page .home-system-showcase {
    padding: 38px 0 28px !important;
    background: #ffffff !important;
  }

  .home-page .home-system-showcase h2,
  .home-page .home-process-strip h2 {
    font-size: 26px !important;
  }

  .home-page .home-brands-logo-row {
    margin: 2px 0 !important;
    padding: 10px 0 14px !important;
  }

  .home-page .home-brand-logo-link,
  .home-page .home-brand-logo-link:nth-child(2),
  .home-page .home-brand-logo-link:nth-child(3) {
    width: 104px !important;
    height: 58px !important;
    flex: 0 0 104px !important;
  }

  .home-page .home-brands-carousel-track {
    gap: 7px !important;
    padding-right: 7px !important;
  }

  .home-page .home-brand-logo-link img {
    width: 88px !important;
    max-width: 88px !important;
    max-height: 42px !important;
  }

  .home-page .home-impact-strip {
    min-height: 92px !important;
    margin: 0 !important;
    padding: 20px 18px !important;
    border-radius: 0 !important;
  }

  .home-page .home-impact-strip p {
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  .home-page .home-process-strip {
    margin: 0 !important;
    padding: 44px 18px 48px !important;
  }

  .home-page .home-process-strip .home-section-centered {
    max-width: 340px !important;
    margin: 0 auto 25px !important;
  }

  .home-page .home-process-intro {
    font-size: 11.5px !important;
  }

  .home-page .home-process-flow {
    width: 100% !important;
    max-width: 350px !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .home-page .home-process-flow article {
    max-width: none !important;
    min-height: 104px !important;
    display: grid !important;
    grid-template-columns: 78px minmax(0,1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    column-gap: 13px !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    text-align: left !important;
    background: #ffffff !important;
    border: 1px solid #e5ebf2 !important;
    border-radius: 15px !important;
  }

  .home-page .home-process-flow i,
  .home-page .home-process-flow article:nth-child(2) i,
  .home-page .home-process-flow article:nth-child(3) i,
  .home-page .home-process-flow article:nth-child(4) i {
    grid-row: 1 / 3 !important;
    width: 74px !important;
    height: 74px !important;
    margin: 0 !important;
    border-radius: 13px !important;
  }

  .home-page .home-process-flow h3 {
    align-self: end !important;
    margin: 0 0 4px !important;
    font-size: 15px !important;
    text-align: left !important;
  }

  .home-page .home-process-flow p {
    align-self: start !important;
    margin: 0 !important;
    font-size: 10.5px !important;
    line-height: 1.4 !important;
    text-align: left !important;
  }

  .home-page .home-final-quote {
    margin: 0 !important;
    padding: 34px 22px !important;
    border-radius: 0 !important;
    text-align: center !important;
  }

  .home-page .home-final-quote h2 { font-size: 25px !important; }
  .home-page .home-final-actions { justify-content: center !important; }

  .home-page .section-steps,
  .home-page .section-categories,
  .home-page .section-brands,
  .home-page .section-testimonials {
    padding: 48px 0 !important;
  }

  .home-page .section-header {
    max-width: 340px !important;
    margin: 0 auto 25px !important;
    padding: 0 16px !important;
  }

  .home-page .section-title {
    font-size: 27px !important;
    line-height: 1.1 !important;
  }

  .home-page .section-subtitle {
    margin-top: 8px !important;
    font-size: 11.5px !important;
    line-height: 1.45 !important;
  }

  .home-page .steps-grid {
    max-width: 350px !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 0 auto !important;
  }

  .home-page .steps-connector { display: none !important; }

  .home-page .step-card {
    min-height: 0 !important;
    padding: 22px 18px !important;
    border: 1px solid #e4eaf1 !important;
    border-radius: 15px !important;
    background: #ffffff !important;
  }

  .home-page .categories-grid {
    max-width: 350px !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin: 0 auto !important;
  }

  .home-page .cat-card,
  .home-page .cat-card.cat-featured,
  .home-page .cat-card.cat-compact {
    min-height: 68px !important;
    grid-template-columns: 62px minmax(0,1fr) !important;
    gap: 11px !important;
    padding: 7px !important;
    background: #e9eef5 !important;
    border: 0 !important;
    border-radius: 12px !important;
  }

  .home-page .cat-visual,
  .home-page .cat-card.cat-featured .cat-visual,
  .home-page .cat-card.cat-compact .cat-visual {
    width: 62px !important;
    min-height: 54px !important;
    height: 54px !important;
    border-radius: 9px !important;
  }

  .home-page .cat-body {
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 8px 0 0 !important;
  }

  .home-page .cat-name {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  .home-page .cat-count,
  .home-page .cat-desc,
  .home-page .cat-feature-list,
  .home-page .cat-cta {
    display: none !important;
  }

  .home-page .categories-footer { margin-top: 22px !important; }

  .home-page .brands-showcase {
    max-width: 350px !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 8px !important;
    margin: 0 auto !important;
  }

  .home-page .brand-showcase-card {
    min-height: 76px !important;
    border-radius: 11px !important;
  }

  .home-page .brand-logo-panel { padding: 11px !important; }

  .home-page .section-marquee {
    min-height: 54px !important;
    padding: 0 !important;
  }

  .home-page .testimonials-showcase {
    max-width: 350px !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 0 auto !important;
  }

  .home-page .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .home-page .testimonial-feature,
  .home-page .testimonial-card {
    padding: 20px !important;
    border-radius: 14px !important;
  }

  .home-page .section-cta-banner { padding: 0 !important; }

  .home-page .cta-banner-inner {
    padding: 38px 22px !important;
    border-radius: 0 !important;
    text-align: center !important;
  }

  .home-page .cta-banner-title { font-size: 28px !important; }
  .home-page .cta-banner-actions { width: 100% !important; flex-direction: column !important; }
  .home-page .cta-banner-actions a { width: 100% !important; justify-content: center !important; }

  .home-page footer .home-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 32px 20px 24px !important;
  }

  .home-page footer .footer-col {
    width: 100% !important;
  }

  .home-page footer .footer-col-title::after {
    display: none !important;
    content: none !important;
  }

  .home-page footer .footer-col .footer-link,
  .home-page footer .footer-col .home-newsletter-copy,
  .home-page footer .footer-col .home-newsletter-form {
    display: block !important;
  }

  .home-page footer .footer-col-title {
    cursor: default !important;
    margin-bottom: 8px !important;
    padding: 8px 0 !important;
  }
}

/* Inicio móvil: separación correcta entre CTA e indicadores del carrusel. */
@media (max-width: 620px) {
  .home-page .hero-section .slide-content {
    padding-bottom: 72px !important;
    transform: none !important;
  }

  .home-page .hero-section .cta-row {
    display: none !important;
  }

  .home-page .hero-section .btn-quote.whatsapp {
    width: auto !important;
    min-width: 150px !important;
    max-width: 190px !important;
    min-height: 38px !important;
    padding: 9px 18px !important;
    justify-content: center !important;
  }

  .home-page .hero-section .slider-dots {
    bottom: 58px !important;
    z-index: 12 !important;
    margin: 0 !important;
    padding: 4px 7px !important;
    transform: translateX(-50%) scale(.78) !important;
  }
}

/* Filtros de Productos: únicamente azul y colores sólidos. */
.catalog-page .providers-sidebar .sidebar-card,
.catalog-page .providers-sidebar .filters-card,
.catalog-page .providers-sidebar .categories-card,
.catalog-page .providers-sidebar .filter-group {
  background: #ffffff !important;
  background-image: none !important;
}

.catalog-page .providers-sidebar .sidebar-title,
.catalog-page .providers-sidebar .sidebar-title-main,
.catalog-page .providers-sidebar .filter-group-header,
.catalog-page .providers-sidebar .filter-btn,
.catalog-page .providers-sidebar .brand-filter-option,
.catalog-page .providers-sidebar .price-slider-summary,
.catalog-page .providers-sidebar .price-slider-summary strong {
  color: #030852 !important;
}

.catalog-page .providers-sidebar .sidebar-title-main {
  background: #f1f3fb !important;
  background-image: none !important;
  border-color: #dce1f1 !important;
}

.catalog-page .providers-sidebar .sidebar-title-main::before {
  border-color: #030852 !important;
  background: #ffffff !important;
  background-image: none !important;
}

.catalog-page .providers-sidebar .category-icon,
.catalog-page .providers-sidebar .chevron-icon {
  color: #030852 !important;
  stroke: #030852 !important;
  background: transparent !important;
  background-image: none !important;
}

.catalog-page .providers-sidebar .filter-btn:hover,
.catalog-page .providers-sidebar .filter-btn.active {
  color: #030852 !important;
  background: #eef1fb !important;
  background-image: none !important;
  border-color: #d5dbef !important;
}

.catalog-page .providers-sidebar .brand-filter-option:hover,
.catalog-page .providers-sidebar .brand-filter-option:has(input:checked) {
  color: #030852 !important;
  background: #f4f6fc !important;
  background-image: none !important;
  border-color: transparent !important;
}

.catalog-page .providers-sidebar .brand-filter-option input[type="checkbox"] {
  background: #ffffff !important;
  background-image: none !important;
  border-color: #7782a9 !important;
}

.catalog-page .providers-sidebar .brand-filter-option input[type="checkbox"]:checked {
  background: #030852 !important;
  background-image: none !important;
  border-color: #030852 !important;
}

.catalog-page .providers-sidebar .brand-filter-option input[type="checkbox"]:checked::after {
  border-color: #ffffff !important;
}

.catalog-page .providers-sidebar .catalog-price-slider {
  background: #030852 !important;
  background-image: none !important;
}

.catalog-page .providers-sidebar .catalog-price-slider::-webkit-slider-thumb {
  background: #ffffff !important;
  border-color: #030852 !important;
}

.catalog-page .providers-sidebar .catalog-price-slider::-moz-range-thumb {
  background: #ffffff !important;
  border-color: #030852 !important;
}

.catalog-page .providers-sidebar .price-input {
  color: #030852 !important;
  background: #f6f7fb !important;
  background-image: none !important;
  border-color: #d9deec !important;
}

.catalog-page .providers-sidebar .btn-clear-filters,
.catalog-page .providers-sidebar .btn-clear-filters:hover,
.catalog-page .providers-sidebar .btn-clear-filters:active {
  color: #ffffff !important;
  background: #030852 !important;
  background-image: none !important;
  border-color: #030852 !important;
}

/* Productos: cinta continua de marcas e información. */
.catalog-page .products-brand-ribbon {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #dfe3ee;
  border-bottom: 1px solid #dfe3ee;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.catalog-page .products-brand-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: products-brand-ribbon-scroll 32s linear infinite;
  will-change: transform;
}

.catalog-page .products-brand-sequence {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
}

.catalog-page .products-ribbon-logo,
.catalog-page .products-ribbon-info {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.catalog-page .products-ribbon-logo {
  width: 132px;
  height: 48px;
  padding: 5px 10px;
}

.catalog-page .products-ribbon-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 116px;
  max-height: 38px;
  object-fit: contain;
  filter: none !important;
}

.catalog-page .products-ribbon-info {
  position: relative;
  gap: 5px;
  min-height: 32px;
  padding-left: 21px;
  color: #43506b;
  font-size: 12px;
  font-weight: 550;
  white-space: nowrap;
}

.catalog-page .products-ribbon-info::before {
  content: '';
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  background: #030852;
  border-radius: 50%;
}

.catalog-page .products-ribbon-info strong {
  color: #030852;
  font-size: 14px;
  font-weight: 800;
}

.catalog-page .products-hero-section .slider-dots {
  bottom: 84px !important;
}

@keyframes products-brand-ribbon-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
  .catalog-page .products-brand-ribbon {
    height: 76px;
  }

  .catalog-page .products-brand-sequence {
    gap: 24px;
    padding-right: 24px;
  }

  .catalog-page .products-ribbon-logo {
    width: 105px;
    height: 42px;
  }

  .catalog-page .products-ribbon-logo img {
    max-width: 92px;
    max-height: 32px;
  }

  .catalog-page .products-ribbon-info {
    padding-left: 16px;
    font-size: 10px;
  }

  .catalog-page .products-ribbon-info::before {
    width: 6px;
    height: 6px;
  }

  .catalog-page .products-ribbon-info strong {
    font-size: 12px;
  }

  .catalog-page .products-hero-section .slider-dots {
    bottom: 88px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-page .products-brand-track {
    animation-play-state: paused;
  }
}

/* Productos: tarjetas editoriales inspiradas en la referencia. */
.catalog-page .providers-products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.catalog-page .product-card {
  min-height: 470px !important;
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid #e1e6ec !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  transform: none !important;
}

.catalog-page .product-card:hover {
  border-color: #c8d0dd !important;
  box-shadow: none !important;
  transform: none !important;
}

.catalog-page .product-image-wrapper {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  margin: 0 0 18px !important;
  padding: 20px 10px 16px !important;
  background: #ffffff !important;
  border: 0 !important;
  border-bottom: 1px solid #e8ebef !important;
  border-radius: 0 !important;
}

.catalog-page .product-image-wrapper img {
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
}

.catalog-page .stock-badge {
  top: 20px !important;
  left: 20px !important;
  padding: 7px 13px !important;
  color: #08723f !important;
  background: #eaf8ef !important;
  border-radius: 999px !important;
  font-size: 10.5px !important;
}

.catalog-page .stock-dot {
  width: 7px !important;
  height: 7px !important;
  background: #0aa854 !important;
}

.catalog-page .btn-wishlist {
  top: 18px !important;
  right: 18px !important;
  width: 40px !important;
  height: 40px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  color: #030852 !important;
  background: #ffffff !important;
  border: 1px solid #dfe4eb !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.catalog-page .btn-wishlist svg {
  width: 20px !important;
  height: 20px !important;
}

.catalog-page .product-card-content {
  min-height: 138px !important;
  flex: 1 1 auto !important;
  padding: 0 6px !important;
}

.catalog-page .product-card-title {
  min-height: 50px !important;
  margin: 0 0 9px !important;
  color: #030852 !important;
  font-size: 17px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
  -webkit-line-clamp: 2 !important;
}

.catalog-page .product-card-brand {
  margin: 0 !important;
  color: #d96d13 !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  letter-spacing: .045em !important;
}

.catalog-page .product-view-hint {
  min-height: 26px !important;
  margin-top: 14px !important;
  gap: 7px !important;
  color: #009245 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.catalog-page .product-view-icon {
  width: 19px !important;
  height: 19px !important;
  flex: 0 0 19px !important;
}

.catalog-page .product-card-actions {
  grid-template-columns: minmax(0, 1fr) 54px !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

.catalog-page .btn-direct-quote,
.catalog-page .btn-add-to-quote {
  min-height: 50px !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.catalog-page .btn-direct-quote {
  color: #ffffff !important;
  background: #009245 !important;
  border: 1px solid #009245 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.catalog-page .btn-direct-quote svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #ffffff !important;
}

.catalog-page .btn-add-to-quote {
  color: #ffffff !important;
  background: #030852 !important;
  border: 1px solid #030852 !important;
}

.catalog-page .btn-add-to-quote svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #ffffff !important;
}

@media (max-width: 1100px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: 1fr !important;
  }

  .catalog-page .product-card {
    min-height: 0 !important;
    border-radius: 20px !important;
  }
}

/* Productos: tarjeta completa en proporción cuadrada 1:1. */
.catalog-page .product-card {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: 12px !important;
  overflow: hidden !important;
  border-radius: 19px !important;
}

.catalog-page .product-image-wrapper {
  flex: 0 0 auto !important;
  width: 100% !important;
  height: clamp(98px, 9vw, 114px) !important;
  aspect-ratio: auto !important;
  margin-bottom: 9px !important;
  padding: 16px 8px 9px !important;
}

.catalog-page .product-image-wrapper img {
  max-width: 86% !important;
  max-height: 86% !important;
}

.catalog-page .stock-badge {
  top: 13px !important;
  left: 13px !important;
  padding: 5px 9px !important;
  font-size: 9px !important;
}

.catalog-page .stock-dot {
  width: 5px !important;
  height: 5px !important;
}

.catalog-page .btn-wishlist {
  top: 12px !important;
  right: 12px !important;
  width: 32px !important;
  height: 32px !important;
}

.catalog-page .btn-wishlist svg {
  width: 17px !important;
  height: 17px !important;
}

.catalog-page .product-card-content {
  min-height: 0 !important;
  flex: 1 1 auto !important;
  padding: 0 4px !important;
  overflow: hidden !important;
}

.catalog-page .product-card-title {
  min-height: 38px !important;
  margin-bottom: 4px !important;
  font-size: 13.5px !important;
  line-height: 1.35 !important;
}

.catalog-page .product-card-brand {
  font-size: 10.5px !important;
}

.catalog-page .product-view-hint {
  min-height: 20px !important;
  margin-top: 6px !important;
  gap: 5px !important;
  font-size: 10px !important;
}

.catalog-page .product-view-icon {
  width: 15px !important;
  height: 15px !important;
  flex-basis: 15px !important;
}

.catalog-page .product-card-actions {
  flex: 0 0 auto !important;
  grid-template-columns: minmax(0, 1fr) 43px !important;
  gap: 7px !important;
  margin-top: 7px !important;
}

.catalog-page .btn-direct-quote,
.catalog-page .btn-add-to-quote {
  min-height: 39px !important;
  height: 39px !important;
  padding: 7px 9px !important;
  border-radius: 10px !important;
}

.catalog-page .btn-direct-quote {
  font-size: 12.5px !important;
}

.catalog-page .btn-direct-quote svg,
.catalog-page .btn-add-to-quote svg {
  width: 16px !important;
  height: 16px !important;
}

@media (max-width: 1100px) {
  .catalog-page .product-image-wrapper {
    height: clamp(120px, 18vw, 160px) !important;
  }
}

@media (max-width: 640px) {
  .catalog-page .product-card {
    aspect-ratio: 1 / 1 !important;
  }

  .catalog-page .product-image-wrapper {
    height: 42% !important;
  }
}

/* Productos: modal técnico blanco inspirado en la referencia. */
.catalog-page .catalog-detail-modal {
  padding: 18px !important;
}

.catalog-page .catalog-detail-backdrop {
  background: rgba(3, 8, 82, .62) !important;
  backdrop-filter: blur(6px) !important;
}

.catalog-page .catalog-detail-dialog {
  width: min(1080px, 100%) !important;
  max-height: calc(100vh - 36px) !important;
  padding: 0 !important;
  overflow: auto !important;
  color: #030852 !important;
  background: #ffffff !important;
  border: 1px solid #dbe1e9 !important;
  border-radius: 24px !important;
  box-shadow: none !important;
}

.catalog-page .catalog-detail-content {
  padding: 28px 38px 24px !important;
}

.catalog-page .catalog-detail-close {
  top: 24px !important;
  right: 28px !important;
  width: 43px !important;
  height: 43px !important;
  display: grid !important;
  place-items: center !important;
  color: #53627f !important;
  background: #f5f7fa !important;
  border: 0 !important;
  border-radius: 50% !important;
  font-size: 27px !important;
  line-height: 1 !important;
}

.catalog-page .catalog-detail-topbar {
  min-height: 49px !important;
  display: flex !important;
  align-items: center !important;
  margin-bottom: 14px !important;
}

.catalog-page .catalog-detail-stock {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 15px !important;
  color: #08723f !important;
  background: #eaf8ef !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
}

.catalog-page .catalog-detail-stock i {
  width: 8px !important;
  height: 8px !important;
  background: #0aa854 !important;
}

.catalog-page .catalog-detail-hero {
  display: grid !important;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important;
  gap: 36px !important;
  padding: 0 !important;
  background: #ffffff !important;
}

.catalog-page .catalog-detail-visual {
  min-height: 0 !important;
  padding: 0 !important;
  display: block !important;
  overflow: visible !important;
  background: transparent !important;
}

.catalog-page .catalog-detail-visual::after {
  display: none !important;
}

.catalog-page .catalog-detail-main-image {
  height: 320px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background: #f7f8fa !important;
  border: 1px solid #edf0f3 !important;
  border-radius: 16px !important;
}

.catalog-page .catalog-detail-main-image img {
  position: static !important;
  width: 90% !important;
  height: 90% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  filter: none !important;
}

.catalog-page .catalog-detail-thumbs {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: 10px !important;
}

.catalog-page .catalog-detail-thumbs button {
  height: 68px !important;
  padding: 5px !important;
  overflow: hidden !important;
  background: #f8f9fb !important;
  border: 1px solid #e1e6ec !important;
  border-radius: 10px !important;
}

.catalog-page .catalog-detail-thumbs button.active {
  border-color: #1747a4 !important;
}

.catalog-page .catalog-detail-thumbs img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
}

.catalog-page .catalog-detail-summary {
  min-width: 0 !important;
  padding: 0 !important;
  color: #030852 !important;
  background: #ffffff !important;
}

.catalog-page .catalog-detail-kicker {
  margin: 3px 0 14px !important;
  color: #e67513 !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  letter-spacing: .065em !important;
  text-transform: uppercase !important;
}

.catalog-page .catalog-detail-summary h2 {
  margin: 0 0 17px !important;
  color: #030852 !important;
  font-size: clamp(27px, 3vw, 39px) !important;
  font-weight: 750 !important;
  line-height: 1.15 !important;
  letter-spacing: -.035em !important;
}

.catalog-page .catalog-detail-code {
  min-height: 49px !important;
  display: grid !important;
  grid-template-columns: 24px auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 14px !important;
  color: #4e5e7d !important;
  background: #f5f6f9 !important;
  border: 0 !important;
  border-radius: 11px !important;
}

.catalog-page .catalog-detail-code svg {
  width: 22px !important;
  height: 22px !important;
  color: #536b9b !important;
}

.catalog-page .catalog-detail-code span,
.catalog-page .catalog-detail-code strong {
  color: #030852 !important;
  font-size: 12px !important;
}

.catalog-page .catalog-detail-code strong {
  min-width: 0 !important;
  overflow: hidden !important;
  color: #61708d !important;
  font-weight: 550 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.catalog-page .catalog-detail-features {
  display: grid !important;
  gap: 12px !important;
  margin-top: 18px !important;
}

.catalog-page .catalog-detail-feature {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 35px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
}

.catalog-page .catalog-detail-feature-icon {
  width: 32px !important;
  height: 32px !important;
  display: grid !important;
  place-items: center !important;
  color: #536b9b !important;
}

.catalog-page .catalog-detail-feature-icon svg {
  width: 29px !important;
  height: 29px !important;
}

.catalog-page .catalog-detail-feature > span:last-child {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.catalog-page .catalog-detail-feature strong {
  color: #030852 !important;
  font-size: 12.5px !important;
}

.catalog-page .catalog-detail-feature small {
  overflow: hidden !important;
  color: #61708d !important;
  font-size: 12px !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.catalog-page .catalog-detail-description {
  display: -webkit-box !important;
  margin: 16px 0 0 !important;
  overflow: hidden !important;
  color: #65728c !important;
  font-size: 11.5px !important;
  line-height: 1.55 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

.catalog-page .catalog-detail-tech-link {
  min-height: 62px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 24px !important;
  color: #030852 !important;
  border-top: 1px solid #e1e6ec !important;
  border-bottom: 1px solid #e1e6ec !important;
}

.catalog-page .catalog-detail-tech-link svg {
  width: 25px !important;
  height: 25px !important;
}

.catalog-page .catalog-detail-tech-link strong {
  font-size: 13.5px !important;
}

.catalog-page .catalog-detail-tech-link span {
  font-size: 20px !important;
}

.catalog-page .catalog-detail-specs-wide {
  margin-top: 18px !important;
}

.catalog-page .catalog-detail-specs-wide dl {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  overflow: hidden !important;
  border: 1px solid #dfe4eb !important;
  border-radius: 12px !important;
}

.catalog-page .catalog-detail-specs-wide dl > div {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  border-right: 1px solid #e5e9ee !important;
  border-bottom: 1px solid #e5e9ee !important;
}

.catalog-page .catalog-detail-specs-wide dl > div:nth-child(even) {
  border-right: 0 !important;
}

.catalog-page .catalog-detail-specs-wide dt,
.catalog-page .catalog-detail-specs-wide dd {
  padding: 9px 13px !important;
  background: #ffffff !important;
}

.catalog-page .catalog-detail-specs-wide dt {
  padding-bottom: 2px !important;
  color: #030852 !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
}

.catalog-page .catalog-detail-specs-wide dd {
  padding-top: 2px !important;
  color: #61708d !important;
  font-size: 11.5px !important;
}

.catalog-page .catalog-detail-commerce {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 18px !important;
  margin-top: 18px !important;
  padding: 14px !important;
  background: #f7f9fb !important;
  border: 1px solid #e1e6ec !important;
  border-radius: 12px !important;
}

.catalog-page .catalog-detail-commerce-copy {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.catalog-page .catalog-detail-commerce-copy strong {
  color: #030852 !important;
  font-size: 13px !important;
}

.catalog-page .catalog-detail-commerce-copy span {
  color: #65728c !important;
  font-size: 10.5px !important;
}

.catalog-page .catalog-detail-commerce .catalog-detail-actions {
  display: grid !important;
  grid-template-columns: 102px 105px 175px !important;
  gap: 7px !important;
  margin: 0 !important;
}

.catalog-page .catalog-detail-quantity,
.catalog-page .catalog-detail-add,
.catalog-page .catalog-detail-whatsapp {
  min-height: 40px !important;
  border-radius: 8px !important;
}

.catalog-page .catalog-detail-add {
  color: #ffffff !important;
  background: #030852 !important;
}

.catalog-page .catalog-detail-whatsapp {
  color: #ffffff !important;
  background: #009245 !important;
  border-color: #009245 !important;
}

.catalog-page .catalog-detail-note {
  margin: 14px 0 0 !important;
  color: #8290a8 !important;
  font-size: 10.5px !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .catalog-page .catalog-detail-content {
    padding: 24px !important;
  }

  .catalog-page .catalog-detail-hero {
    grid-template-columns: 1fr !important;
  }

  .catalog-page .catalog-detail-main-image {
    height: 280px !important;
  }

  .catalog-page .catalog-detail-commerce {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .catalog-page .catalog-detail-modal {
    padding: 7px !important;
  }

  .catalog-page .catalog-detail-dialog {
    max-height: calc(100vh - 14px) !important;
    border-radius: 16px !important;
  }

  .catalog-page .catalog-detail-content {
    padding: 17px !important;
  }

  .catalog-page .catalog-detail-close {
    top: 13px !important;
    right: 14px !important;
    width: 37px !important;
    height: 37px !important;
  }

  .catalog-page .catalog-detail-topbar {
    min-height: 43px !important;
  }

  .catalog-page .catalog-detail-main-image {
    height: 225px !important;
  }

  .catalog-page .catalog-detail-thumbs button {
    height: 56px !important;
  }

  .catalog-page .catalog-detail-summary h2 {
    font-size: 25px !important;
  }

  .catalog-page .catalog-detail-specs-wide dl {
    grid-template-columns: 1fr !important;
  }

  .catalog-page .catalog-detail-specs-wide dl > div {
    border-right: 0 !important;
  }

  .catalog-page .catalog-detail-commerce .catalog-detail-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Productos: barra lateral basada en la referencia visual. */
.catalog-page .providers-sidebar {
  gap: 12px !important;
}

.catalog-page .providers-sidebar .sidebar-card {
  padding: 18px !important;
  background: #ffffff !important;
  border: 1px solid #dfe4ec !important;
  border-radius: 20px !important;
  box-shadow: none !important;
}

.catalog-page .providers-sidebar .categories-card {
  padding: 18px !important;
}

.catalog-page .providers-sidebar .sidebar-title-with-icon {
  min-height: 43px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 12px !important;
  padding: 0 0 13px !important;
  color: #030852 !important;
  background: #ffffff !important;
  border-bottom: 1px solid #dfe4ec !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  letter-spacing: .025em !important;
}

.catalog-page .providers-sidebar .sidebar-title-main.sidebar-title-with-icon {
  margin: 0 0 12px !important;
  padding: 0 0 13px !important;
  border-radius: 0 !important;
}

.catalog-page .providers-sidebar .sidebar-title-main::before {
  display: none !important;
  content: none !important;
}

.catalog-page .providers-sidebar .sidebar-heading-icon {
  flex: 0 0 38px !important;
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center !important;
  color: #030852 !important;
  background: #f2f4fa !important;
  border: 1px solid #e0e5ef !important;
  border-radius: 11px !important;
}

.catalog-page .providers-sidebar .sidebar-heading-icon svg {
  width: 22px !important;
  height: 22px !important;
}

.catalog-page .categories-card .filter-list {
  gap: 0 !important;
}

.catalog-page .categories-card .filter-btn,
.catalog-page .categories-card .filter-btn:hover,
.catalog-page .categories-card .filter-btn.active {
  min-height: 48px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 6px 27px 6px 0 !important;
  color: #263758 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-bottom: 1px solid #e3e7ee !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  font-weight: 550 !important;
}

.catalog-page .categories-card .filter-btn:last-child {
  border-bottom: 0 !important;
}

.catalog-page .categories-card .filter-btn.active {
  color: #030852 !important;
  font-weight: 800 !important;
}

.catalog-page .categories-card .filter-btn::after,
.catalog-page .categories-card .filter-btn.active::after {
  content: '›' !important;
  position: absolute !important;
  right: 2px !important;
  display: block !important;
  color: #030852 !important;
  font-size: 25px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.catalog-page .categories-card .filter-btn-left {
  min-width: 0 !important;
  gap: 10px !important;
}

.catalog-page .categories-card .filter-btn-left > span:last-child {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.catalog-page .categories-card .category-icon,
.catalog-page .categories-card .filter-btn.active .category-icon {
  box-sizing: content-box !important;
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 20px !important;
  padding: 6px !important;
  color: #030852 !important;
  background: #ffffff !important;
  border: 1px solid #dfe4ec !important;
  border-radius: 9px !important;
}

.catalog-page .filters-card .filter-group,
.catalog-page .filters-card .filter-group:last-of-type {
  margin: 0 !important;
  padding: 13px 0 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-bottom: 1px solid #e2e6ed !important;
  border-radius: 0 !important;
}

.catalog-page .filters-card .filter-group:last-of-type {
  border-bottom: 0 !important;
}

.catalog-page .filters-card .filter-group-header {
  margin-bottom: 9px !important;
  color: #030852 !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

.catalog-page .filters-card .chevron-icon {
  width: 13px !important;
  height: 13px !important;
  padding: 0 !important;
  color: #030852 !important;
  background: transparent !important;
}

.catalog-page .filters-card .filter-group-content {
  gap: 6px !important;
}

.catalog-page .filters-card .brand-filter-option,
.catalog-page .filters-card .brand-filter-option:hover,
.catalog-page .filters-card .brand-filter-option:has(input:checked) {
  min-height: 36px !important;
  padding: 5px 8px !important;
  gap: 10px !important;
  color: #030852 !important;
  background: #f4f6fb !important;
  border: 0 !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.catalog-page .filters-card .brand-filter-option input[type="checkbox"] {
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: 1px solid #8792b3 !important;
  border-radius: 5px !important;
}

.catalog-page .filters-card .brand-filter-option input[type="checkbox"]:checked {
  background: #030852 !important;
  border: 1px solid #030852 !important;
}

.catalog-page .filters-card .brand-filter-option input[type="checkbox"]::after {
  left: 6px !important;
  top: 3px !important;
  width: 5px !important;
  height: 9px !important;
  border-color: #ffffff !important;
}

.catalog-page .filters-card .price-slider-summary {
  margin-bottom: 2px !important;
  color: #64718a !important;
  font-size: 10.5px !important;
}

.catalog-page .filters-card .price-slider-summary strong {
  color: #030852 !important;
  font-size: 11px !important;
}

.catalog-page .filters-card .catalog-price-slider {
  height: 5px !important;
  margin: 8px 0 5px !important;
  background: #030852 !important;
  border-radius: 999px !important;
}

.catalog-page .filters-card .catalog-price-slider::-webkit-slider-thumb {
  width: 18px !important;
  height: 18px !important;
  background: #ffffff !important;
  border: 4px solid #030852 !important;
}

.catalog-page .filters-card .price-slider-scale {
  margin-top: 0 !important;
  color: #71809a !important;
  font-size: 9.5px !important;
}

.catalog-page .filters-card .price-range-inputs {
  gap: 18px !important;
  margin-top: 7px !important;
}

.catalog-page .filters-card .price-input {
  height: 36px !important;
  color: #030852 !important;
  background: #ffffff !important;
  border: 1px solid #cfd6e4 !important;
  border-radius: 8px !important;
  font-size: 12px !important;
}

.catalog-page .filters-card .btn-clear-filters,
.catalog-page .filters-card .btn-clear-filters:hover,
.catalog-page .filters-card .btn-clear-filters:active {
  min-height: 43px !important;
  margin-top: 13px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #ffffff !important;
  background: #030852 !important;
  border: 1px solid #030852 !important;
  border-radius: 9px !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
}

.catalog-page .filters-card .btn-clear-filters::before {
  content: '✦' !important;
  color: #ffffff !important;
  font-size: 18px !important;
}

@media (max-width: 768px) {
  .catalog-page .providers-sidebar .sidebar-card {
    border-radius: 15px !important;
  }
}

/* Productos: modal técnico en versión compacta. */
@media (min-width: 901px) {
  .catalog-page .catalog-detail-dialog {
    width: min(920px, 100%) !important;
    max-height: calc(100vh - 28px) !important;
    border-radius: 20px !important;
  }

  .catalog-page .catalog-detail-content {
    padding: 21px 28px 18px !important;
  }

  .catalog-page .catalog-detail-close {
    top: 17px !important;
    right: 20px !important;
    width: 37px !important;
    height: 37px !important;
    font-size: 23px !important;
  }

  .catalog-page .catalog-detail-topbar {
    min-height: 40px !important;
    margin-bottom: 10px !important;
  }

  .catalog-page .catalog-detail-stock {
    padding: 6px 12px !important;
    font-size: 10.5px !important;
  }

  .catalog-page .catalog-detail-hero {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
    gap: 27px !important;
  }

  .catalog-page .catalog-detail-main-image {
    height: 245px !important;
    border-radius: 13px !important;
  }

  .catalog-page .catalog-detail-thumbs {
    gap: 6px !important;
    margin-top: 7px !important;
  }

  .catalog-page .catalog-detail-thumbs button {
    height: 50px !important;
    border-radius: 8px !important;
  }

  .catalog-page .catalog-detail-kicker {
    margin-bottom: 9px !important;
    font-size: 12.5px !important;
  }

  .catalog-page .catalog-detail-summary h2 {
    margin-bottom: 12px !important;
    font-size: clamp(24px, 2.5vw, 32px) !important;
  }

  .catalog-page .catalog-detail-code {
    min-height: 41px !important;
    padding: 7px 11px !important;
  }

  .catalog-page .catalog-detail-features {
    gap: 7px !important;
    margin-top: 12px !important;
  }

  .catalog-page .catalog-detail-feature {
    grid-template-columns: 29px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .catalog-page .catalog-detail-feature-icon,
  .catalog-page .catalog-detail-feature-icon svg {
    width: 25px !important;
    height: 25px !important;
  }

  .catalog-page .catalog-detail-feature strong,
  .catalog-page .catalog-detail-feature small {
    font-size: 10.5px !important;
  }

  .catalog-page .catalog-detail-description {
    margin-top: 10px !important;
    font-size: 10.5px !important;
    -webkit-line-clamp: 2 !important;
  }

  .catalog-page .catalog-detail-tech-link {
    min-height: 48px !important;
    margin-top: 16px !important;
  }

  .catalog-page .catalog-detail-tech-link svg {
    width: 21px !important;
    height: 21px !important;
  }

  .catalog-page .catalog-detail-specs-wide {
    margin-top: 13px !important;
  }

  .catalog-page .catalog-detail-specs-wide dt,
  .catalog-page .catalog-detail-specs-wide dd {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 10px !important;
  }

  .catalog-page .catalog-detail-specs-wide dt {
    padding-top: 6px !important;
  }

  .catalog-page .catalog-detail-specs-wide dd {
    padding-bottom: 6px !important;
  }

  .catalog-page .catalog-detail-commerce {
    gap: 12px !important;
    margin-top: 13px !important;
    padding: 10px !important;
  }

  .catalog-page .catalog-detail-commerce .catalog-detail-actions {
    grid-template-columns: 88px 88px 155px !important;
  }

  .catalog-page .catalog-detail-quantity,
  .catalog-page .catalog-detail-add,
  .catalog-page .catalog-detail-whatsapp {
    min-height: 35px !important;
    font-size: 10.5px !important;
  }

  .catalog-page .catalog-detail-note {
    margin-top: 9px !important;
    font-size: 9.5px !important;
  }
}

/* Productos: filtros compactos para evitar cortes verticales. */
@media (min-width: 769px) {
  .catalog-page .providers-sidebar {
    gap: 9px !important;
    top: 66px !important;
    max-height: calc(100vh - 74px) !important;
    padding-bottom: 4px !important;
  }

  .catalog-page .providers-sidebar .sidebar-card,
  .catalog-page .providers-sidebar .categories-card {
    padding: 13px 15px !important;
    border-radius: 16px !important;
  }

  .catalog-page .providers-sidebar .sidebar-title-with-icon,
  .catalog-page .providers-sidebar .sidebar-title-main.sidebar-title-with-icon {
    min-height: 36px !important;
    gap: 9px !important;
    margin-bottom: 7px !important;
    padding-bottom: 8px !important;
    font-size: 12.5px !important;
  }

  .catalog-page .providers-sidebar .sidebar-heading-icon {
    flex-basis: 31px !important;
    width: 31px !important;
    height: 31px !important;
    border-radius: 8px !important;
  }

  .catalog-page .providers-sidebar .sidebar-heading-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .catalog-page .categories-card .filter-btn,
  .catalog-page .categories-card .filter-btn:hover,
  .catalog-page .categories-card .filter-btn.active {
    min-height: 39px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    font-size: 11px !important;
  }

  .catalog-page .categories-card .category-icon,
  .catalog-page .categories-card .filter-btn.active .category-icon {
    flex-basis: 17px !important;
    width: 17px !important;
    height: 17px !important;
    padding: 5px !important;
    border-radius: 7px !important;
  }

  .catalog-page .categories-card .filter-btn::after,
  .catalog-page .categories-card .filter-btn.active::after {
    font-size: 21px !important;
  }

  .catalog-page .filters-card .filter-group,
  .catalog-page .filters-card .filter-group:last-of-type {
    padding: 9px 0 !important;
  }

  .catalog-page .filters-card .filter-group-header {
    margin-bottom: 6px !important;
    font-size: 10.5px !important;
  }

  .catalog-page .filters-card .filter-group-content {
    gap: 4px !important;
  }

  .catalog-page .filters-card .brand-filter-option,
  .catalog-page .filters-card .brand-filter-option:hover,
  .catalog-page .filters-card .brand-filter-option:has(input:checked) {
    min-height: 30px !important;
    padding: 3px 7px !important;
    font-size: 10.5px !important;
  }

  .catalog-page .filters-card .brand-filter-option input[type="checkbox"],
  .catalog-page .filters-card .brand-filter-option input[type="checkbox"]:checked {
    flex-basis: 18px !important;
    width: 18px !important;
    height: 18px !important;
  }

  .catalog-page .filters-card .brand-filter-option input[type="checkbox"]::after {
    left: 5px !important;
    top: 2px !important;
  }

  .catalog-page .filters-card .price-slider-summary {
    font-size: 9.5px !important;
  }

  .catalog-page .filters-card .price-slider-summary strong {
    font-size: 10px !important;
  }

  .catalog-page .filters-card .catalog-price-slider {
    margin: 6px 0 3px !important;
  }

  .catalog-page .filters-card .price-range-inputs {
    margin-top: 4px !important;
  }

  .catalog-page .filters-card .price-input {
    height: 31px !important;
    font-size: 10.5px !important;
  }

  .catalog-page .filters-card .btn-clear-filters,
  .catalog-page .filters-card .btn-clear-filters:hover,
  .catalog-page .filters-card .btn-clear-filters:active {
    min-height: 37px !important;
    margin-top: 9px !important;
    font-size: 10.5px !important;
  }

  .catalog-page .filters-card .btn-clear-filters::before {
    font-size: 15px !important;
  }
}

/* Productos: tamaño ultracompacto del panel lateral. */
@media (min-width: 769px) {
  .catalog-page .providers-sidebar {
    width: 250px !important;
    gap: 7px !important;
    max-height: calc(100vh - 68px) !important;
    overflow-y: visible !important;
  }

  .catalog-page .providers-sidebar .sidebar-card,
  .catalog-page .providers-sidebar .categories-card {
    padding: 10px 12px !important;
    border-radius: 13px !important;
  }

  .catalog-page .providers-sidebar .sidebar-title-with-icon,
  .catalog-page .providers-sidebar .sidebar-title-main.sidebar-title-with-icon {
    min-height: 30px !important;
    gap: 7px !important;
    margin-bottom: 5px !important;
    padding-bottom: 6px !important;
    font-size: 11px !important;
  }

  .catalog-page .providers-sidebar .sidebar-heading-icon {
    flex-basis: 27px !important;
    width: 27px !important;
    height: 27px !important;
    border-radius: 7px !important;
  }

  .catalog-page .providers-sidebar .sidebar-heading-icon svg {
    width: 15px !important;
    height: 15px !important;
  }

  .catalog-page .categories-card .filter-btn,
  .catalog-page .categories-card .filter-btn:hover,
  .catalog-page .categories-card .filter-btn.active {
    min-height: 33px !important;
    padding: 3px 22px 3px 0 !important;
    font-size: 9.8px !important;
  }

  .catalog-page .categories-card .filter-btn-left {
    gap: 7px !important;
  }

  .catalog-page .categories-card .category-icon,
  .catalog-page .categories-card .filter-btn.active .category-icon {
    flex-basis: 15px !important;
    width: 15px !important;
    height: 15px !important;
    padding: 4px !important;
    border-radius: 6px !important;
  }

  .catalog-page .categories-card .filter-btn::after,
  .catalog-page .categories-card .filter-btn.active::after {
    font-size: 18px !important;
  }

  .catalog-page .filters-card .filter-group,
  .catalog-page .filters-card .filter-group:last-of-type {
    padding: 7px 0 !important;
  }

  .catalog-page .filters-card .filter-group-header {
    margin-bottom: 4px !important;
    font-size: 9.5px !important;
  }

  .catalog-page .filters-card .chevron-icon {
    width: 10px !important;
    height: 10px !important;
  }

  .catalog-page .filters-card .filter-group-content {
    gap: 3px !important;
  }

  .catalog-page .filters-card .brand-filter-option,
  .catalog-page .filters-card .brand-filter-option:hover,
  .catalog-page .filters-card .brand-filter-option:has(input:checked) {
    min-height: 26px !important;
    padding: 2px 6px !important;
    gap: 7px !important;
    font-size: 9.5px !important;
    border-radius: 6px !important;
  }

  .catalog-page .filters-card .brand-filter-option input[type="checkbox"],
  .catalog-page .filters-card .brand-filter-option input[type="checkbox"]:checked {
    flex-basis: 16px !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 4px !important;
  }

  .catalog-page .filters-card .brand-filter-option input[type="checkbox"]::after {
    left: 4px !important;
    top: 1px !important;
    width: 5px !important;
    height: 8px !important;
  }

  .catalog-page .filters-card .price-slider-summary,
  .catalog-page .filters-card .price-slider-scale {
    font-size: 8.5px !important;
  }

  .catalog-page .filters-card .price-slider-summary strong {
    font-size: 9px !important;
  }

  .catalog-page .filters-card .catalog-price-slider {
    height: 4px !important;
    margin: 4px 0 2px !important;
  }

  .catalog-page .filters-card .catalog-price-slider::-webkit-slider-thumb {
    width: 16px !important;
    height: 16px !important;
    border-width: 3px !important;
  }

  .catalog-page .filters-card .price-range-inputs {
    gap: 15px !important;
    margin-top: 3px !important;
  }

  .catalog-page .filters-card .price-input {
    height: 27px !important;
    padding: 3px 5px !important;
    font-size: 9.5px !important;
    border-radius: 6px !important;
  }

  .catalog-page .filters-card .btn-clear-filters,
  .catalog-page .filters-card .btn-clear-filters:hover,
  .catalog-page .filters-card .btn-clear-filters:active {
    min-height: 32px !important;
    margin-top: 7px !important;
    padding: 5px !important;
    font-size: 9.5px !important;
    border-radius: 7px !important;
  }

  .catalog-page .filters-card .btn-clear-filters::before {
    font-size: 13px !important;
  }
}

.catalog-page .products-hero-section .slide-bg::after {
  inset: 0 !important;
  width: 100% !important;
  opacity: .08 !important;
  mask-image: linear-gradient(112deg, #000 0%, rgba(0, 0, 0, .82) 28%, rgba(0, 0, 0, .38) 50%, transparent 76%) !important;
  -webkit-mask-image: linear-gradient(112deg, #000 0%, rgba(0, 0, 0, .82) 28%, rgba(0, 0, 0, .38) 50%, transparent 76%) !important;
}

.catalog-page .products-hero-section .slide-content {
  max-width: 100% !important;
  padding: 120px 80px 132px !important;
  justify-content: center !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.catalog-page .products-hero-section .slide-title {
  max-width: 650px !important;
  color: #ffffff !important;
  font-size: clamp(36px, 3.6vw, 48px) !important;
  font-weight: 600 !important;
  line-height: 1.04 !important;
  text-wrap: balance;
}

.catalog-page .products-hero-section .slide-subtitle {
  max-width: 560px !important;
  margin: 16px 0 0 !important;
  color: var(--store-orange) !important;
  font-size: clamp(16px, 1.35vw, 20px) !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
}

.catalog-page .products-hero-section .cta-row {
  margin-top: 18px !important;
}

.catalog-page .products-hero-section .btn-quote.whatsapp {
  min-height: 48px !important;
  padding: 14px 23px !important;
  color: var(--store-blue) !important;
  background: var(--store-green-bright) !important;
  border: 0 !important;
  border-radius: 8px !important;
}

.catalog-page .products-hero-section .stats-section {
  padding: 0 !important;
  background: rgba(255, 255, 255, .96) !important;
  border-top: 1px solid rgba(3, 8, 82, .08) !important;
}

.catalog-page .products-hero-section .stats-grid {
  padding: 14px 24px !important;
}

.catalog-page .products-hero-section .stat-number {
  color: var(--store-blue) !important;
  font-size: 30px !important;
}

.catalog-page .products-hero-section .stat-item:nth-child(3) .stat-number {
  color: var(--store-orange) !important;
}

.catalog-page .products-hero-section .stat-item:nth-child(5) .stat-number {
  color: var(--store-green) !important;
}

.catalog-page .products-hero-section .stat-label {
  color: #667085 !important;
}

@media (max-width: 768px) {
  .catalog-page .products-hero-section,
  .catalog-page .products-hero-section .slider-container,
  .catalog-page .products-hero-section .slide {
    height: 620px !important;
    min-height: 620px !important;
  }

  .catalog-page .products-hero-section .slide-content {
    padding: 96px 24px 120px !important;
    justify-content: center !important;
  }

  .catalog-page .products-hero-section .slide-title {
    max-width: 340px !important;
    font-size: 31px !important;
  }

  .catalog-page .products-hero-section .slide-subtitle {
    max-width: 330px !important;
    font-size: 15px !important;
  }

  .catalog-page .products-hero-section .stats-grid {
    padding: 12px !important;
  }

  .catalog-page .products-hero-section .stat-item {
    padding: 0 9px !important;
  }

  .catalog-page .products-hero-section .stat-number {
    font-size: 24px !important;
  }

  .catalog-page .products-hero-section .slider-arrow {
    width: 38px !important;
    height: 38px !important;
  }
}

/* Productos: contenido del carrusel centrado. */
.catalog-page .products-hero-section .slide-content {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.catalog-page .products-hero-section .slide-title,
.catalog-page .products-hero-section .slide-subtitle {
  margin-left: auto !important;
  margin-right: auto !important;
}

.catalog-page .products-hero-section .slide-title {
  max-width: 790px !important;
}

.catalog-page .products-hero-section .slide-subtitle {
  max-width: 650px !important;
}

.catalog-page .products-hero-section .cta-row {
  justify-content: center !important;
}

.catalog-page .products-hero-section .slide-bg::before {
  background:
    linear-gradient(90deg, rgba(2, 5, 54, .67), rgba(2, 5, 54, .48) 50%, rgba(2, 5, 54, .34)),
    linear-gradient(180deg, rgba(2, 5, 54, .08), rgba(2, 5, 54, .2)) !important;
}

@media (max-width: 768px) {
  .catalog-page .products-hero-section .slide-title,
  .catalog-page .products-hero-section .slide-subtitle {
    max-width: 92% !important;
  }
}

/* Modal de producto: composición técnica amplia basada en la referencia final. */
.catalog-page .catalog-detail-backdrop {
  background: rgba(31, 42, 55, .68) !important;
  backdrop-filter: blur(2px) !important;
}

.catalog-page .catalog-detail-dialog {
  color: #030852 !important;
  background: #ffffff !important;
  border: 1px solid #d9e0e8 !important;
  box-shadow: none !important;
}

.catalog-page .catalog-detail-close {
  color: #52617c !important;
  background: #f7f8fa !important;
  border: 1px solid #edf0f4 !important;
  box-shadow: none !important;
}

.catalog-page .catalog-detail-feature {
  padding: 9px 0 !important;
  border-bottom: 1px solid #e2e7ed !important;
}

.catalog-page .catalog-detail-feature:last-child {
  border-bottom: 0 !important;
}

.catalog-page .catalog-detail-feature > span:last-child {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 7px !important;
}

.catalog-page .catalog-detail-feature strong::after {
  content: ':';
}

.catalog-page .catalog-detail-measures {
  min-height: 48px !important;
  display: grid !important;
  grid-template-columns: 24px auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 9px !important;
  margin-top: 15px !important;
  padding: 10px 14px !important;
  color: #53627f !important;
  background: #f5f6f9 !important;
  border-radius: 11px !important;
}

.catalog-page .catalog-detail-measures svg {
  width: 22px !important;
  height: 22px !important;
  color: #536b9b !important;
}

.catalog-page .catalog-detail-measures strong {
  color: #030852 !important;
  font-size: 12px !important;
}

.catalog-page .catalog-detail-measures span {
  min-width: 0 !important;
  overflow: hidden !important;
  color: #61708d !important;
  font-size: 12px !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.catalog-page .catalog-detail-specs-wide dl {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.catalog-page .catalog-detail-specs-wide dl > div,
.catalog-page .catalog-detail-specs-wide dl > div:nth-child(even) {
  border-right: 1px solid #e5e9ee !important;
  border-bottom: 0 !important;
}

.catalog-page .catalog-detail-specs-wide dl > div:last-child {
  border-right: 0 !important;
}

.catalog-page .catalog-detail-commerce {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: 17px !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.catalog-page .catalog-detail-commerce-copy {
  display: none !important;
}

.catalog-page .catalog-detail-commerce .catalog-detail-actions {
  grid-template-columns: 140px minmax(210px, 250px) 160px !important;
  gap: 10px !important;
}

.catalog-page .catalog-detail-quantity,
.catalog-page .catalog-detail-add,
.catalog-page .catalog-detail-whatsapp {
  min-height: 48px !important;
  border-radius: 10px !important;
}

.catalog-page .catalog-detail-add,
.catalog-page .catalog-detail-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.catalog-page .catalog-detail-add {
  color: #ffffff !important;
  background: #009b4b !important;
}

.catalog-page .catalog-detail-whatsapp {
  color: #030852 !important;
  background: #ffffff !important;
  border: 1px solid #dce3eb !important;
}

.catalog-page .catalog-detail-add svg,
.catalog-page .catalog-detail-whatsapp svg {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
}

.catalog-page .catalog-detail-whatsapp svg {
  color: #00a951 !important;
}

@media (min-width: 901px) {
  .catalog-page .catalog-detail-modal {
    padding: 18px !important;
  }

  .catalog-page .catalog-detail-dialog {
    width: min(1180px, calc(100vw - 36px)) !important;
    max-height: calc(100vh - 36px) !important;
    border-radius: 22px !important;
  }

  .catalog-page .catalog-detail-content {
    padding: 30px 40px 25px !important;
  }

  .catalog-page .catalog-detail-close {
    top: 27px !important;
    right: 30px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 28px !important;
  }

  .catalog-page .catalog-detail-topbar {
    min-height: 48px !important;
    margin-bottom: 13px !important;
  }

  .catalog-page .catalog-detail-stock {
    padding: 8px 15px !important;
    font-size: 12px !important;
  }

  .catalog-page .catalog-detail-hero {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.1fr) !important;
    gap: 46px !important;
  }

  .catalog-page .catalog-detail-main-image {
    height: 390px !important;
    border-radius: 16px !important;
  }

  .catalog-page .catalog-detail-thumbs {
    grid-template-columns: repeat(3, 92px) !important;
    gap: 10px !important;
    margin-top: 12px !important;
    justify-content: center !important;
  }

  .catalog-page .catalog-detail-thumbs button {
    height: 74px !important;
    border-radius: 10px !important;
  }

  .catalog-page .catalog-detail-kicker {
    margin: 2px 0 13px !important;
    font-size: 15px !important;
  }

  .catalog-page .catalog-detail-summary h2 {
    margin-bottom: 18px !important;
    font-size: clamp(31px, 3vw, 42px) !important;
  }

  .catalog-page .catalog-detail-code {
    min-height: 52px !important;
    padding: 11px 15px !important;
  }

  .catalog-page .catalog-detail-code span,
  .catalog-page .catalog-detail-code strong,
  .catalog-page .catalog-detail-feature strong,
  .catalog-page .catalog-detail-feature small {
    font-size: 13px !important;
  }

  .catalog-page .catalog-detail-features {
    gap: 0 !important;
    margin-top: 13px !important;
  }

  .catalog-page .catalog-detail-feature {
    grid-template-columns: 38px minmax(0, 1fr) !important;
  }

  .catalog-page .catalog-detail-tech-link {
    min-height: 60px !important;
    margin-top: 25px !important;
  }

  .catalog-page .catalog-detail-specs-wide dt,
  .catalog-page .catalog-detail-specs-wide dd {
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 11.5px !important;
  }
}

@media (max-width: 900px) {
  .catalog-page .catalog-detail-specs-wide dl {
    grid-template-columns: 1fr !important;
  }

  .catalog-page .catalog-detail-specs-wide dl > div,
  .catalog-page .catalog-detail-specs-wide dl > div:nth-child(even) {
    border-right: 0 !important;
    border-bottom: 1px solid #e5e9ee !important;
  }

  .catalog-page .catalog-detail-specs-wide dl > div:last-child {
    border-bottom: 0 !important;
  }

  .catalog-page .catalog-detail-commerce .catalog-detail-actions {
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }
}

/* Productos: portada más baja y fotografía con mayor presencia. */
.catalog-page .products-hero-section .slide-bg::before {
  background:
    linear-gradient(90deg, rgba(2, 5, 54, .44), rgba(2, 5, 54, .27) 50%, rgba(2, 5, 54, .14)),
    linear-gradient(180deg, rgba(2, 5, 54, .04), rgba(2, 5, 54, .11)) !important;
}

.catalog-page .products-hero-section .slide-bg::after {
  opacity: .035 !important;
}

@media (min-width: 769px) {
  .catalog-page .products-hero-section,
  .catalog-page .products-hero-section .slider-container,
  .catalog-page .products-hero-section .slide {
    height: 460px !important;
    min-height: 460px !important;
  }

  .catalog-page .products-hero-section .slide-content {
    padding: 68px 72px 94px !important;
  }

  .catalog-page .products-hero-section .slide-title {
    font-size: clamp(32px, 3vw, 42px) !important;
  }
}

@media (max-width: 768px) {
  .catalog-page .products-hero-section,
  .catalog-page .products-hero-section .slider-container,
  .catalog-page .products-hero-section .slide {
    height: 520px !important;
    min-height: 520px !important;
  }

  .catalog-page .products-hero-section .slide-content {
    padding: 76px 22px 108px !important;
  }
}

/* Cierre del documento sin franja blanca debajo del footer. */
html {
  min-height: 100% !important;
  background: #030852 !important;
}

body {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
}

body > footer {
  width: 100% !important;
  margin-bottom: -1px !important;
  border-bottom: 1px solid #030852 !important;
}

body > footer .footer-bottom {
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}

/* Navegación móvil limpia y animada. */
@media (max-width: 768px) {
  .btn-mobile-menu,
  .btn-mobile-menu:hover,
  .btn-mobile-menu:focus,
  .btn-mobile-menu:active {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    display: inline-flex !important;
    padding: 5px !important;
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .btn-mobile-menu svg {
    width: 25px !important;
    height: 25px !important;
    overflow: visible !important;
  }

  #main-header.scrolled .btn-mobile-menu,
  #main-header.scrolled .btn-mobile-menu:hover,
  #main-header.scrolled .btn-mobile-menu:focus,
  #main-header.scrolled .btn-mobile-menu:active {
    color: #030852 !important;
  }

  .btn-mobile-menu svg line {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .2s ease !important;
  }

  .btn-mobile-menu.is-open svg line:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  .btn-mobile-menu.is-open svg line:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  .btn-mobile-menu.is-open svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  .mobile-drawer {
    left: 0 !important;
    width: min(320px, 86vw) !important;
    opacity: .98 !important;
    transform: translate3d(-104%, 0, 0) !important;
    transition: transform .44s cubic-bezier(.16,1,.3,1), opacity .3s ease !important;
    will-change: transform !important;
  }

  .mobile-drawer.open {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .drawer-backdrop {
    background: rgba(3, 8, 40, .48) !important;
    backdrop-filter: blur(0) !important;
    transition: opacity .34s ease, visibility .34s ease, backdrop-filter .34s ease !important;
  }

  .drawer-backdrop.active {
    backdrop-filter: blur(3px) !important;
  }

  .mobile-drawer .drawer-logo,
  .mobile-drawer .drawer-close,
  .mobile-drawer .drawer-link,
  .mobile-drawer .drawer-actions {
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity .3s ease, transform .4s cubic-bezier(.16,1,.3,1) !important;
  }

  .mobile-drawer.open .drawer-logo,
  .mobile-drawer.open .drawer-close,
  .mobile-drawer.open .drawer-link,
  .mobile-drawer.open .drawer-actions {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-drawer.open .drawer-logo { transition-delay: .08s !important; }
  .mobile-drawer.open .drawer-close { transition-delay: .11s !important; }
  .mobile-drawer.open .drawer-link:nth-child(1) { transition-delay: .12s !important; }
  .mobile-drawer.open .drawer-link:nth-child(2) { transition-delay: .16s !important; }
  .mobile-drawer.open .drawer-link:nth-child(3) { transition-delay: .20s !important; }
  .mobile-drawer.open .drawer-link:nth-child(4) { transition-delay: .24s !important; }
  .mobile-drawer.open .drawer-actions { transition-delay: .28s !important; }

  .mobile-drawer .drawer-close svg {
    transition: transform .42s cubic-bezier(.16,1,.3,1) !important;
    transform: rotate(-90deg) scale(.75);
  }

  .mobile-drawer.open .drawer-close svg {
    transform: rotate(0) scale(1);
  }
}

/* ===== Unificación final: Nosotros, Contacto y Productos ===== */

/* Nosotros: cinta continua de indicadores. */
.about-page .about-v2-metrics-section {
  width: 100% !important;
  overflow: hidden !important;
  background: #25d366 !important;
}

.about-page .about-v2-metrics-card {
  width: max-content !important;
  display: flex !important;
  grid-template-columns: none !important;
  animation: aboutMetricsRibbon 28s linear infinite !important;
  will-change: transform !important;
}

.about-page .about-v2-metrics-card article,
.about-page .about-v2-metrics-card article:first-child,
.about-page .about-v2-metrics-card article:last-child {
  flex: 0 0 250px !important;
  width: 250px !important;
  min-height: 94px !important;
  padding: 18px 24px !important;
  justify-content: center !important;
  border-right: 1px solid rgba(3,8,82,.17) !important;
  border-bottom: 0 !important;
}

.about-page .about-v2-metrics-card strong {
  color: #030852 !important;
  font-size: 24px !important;
  white-space: nowrap !important;
}

.about-page .about-v2-metrics-card p {
  color: #030852 !important;
  font-size: 12px !important;
  white-space: nowrap !important;
}

@keyframes aboutMetricsRibbon {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

/* Contacto: portada y formulario alineados con Inicio. */
.contact-page .contact-hero-section,
.contact-page .contact-hero-section .slider-container,
.contact-page .contact-hero-section .slide {
  height: 430px !important;
  min-height: 430px !important;
}

.contact-page .contact-hero-section .slide-bg {
  background-size: cover !important;
  background-position: center !important;
}

.contact-page .contact-hero-section .slide-bg::before {
  background: linear-gradient(90deg,rgba(3,8,82,.82),rgba(3,8,82,.48) 55%,rgba(3,8,82,.2)) !important;
}

.contact-page .contact-hero-section .slide-content {
  align-items: center !important;
  justify-content: center !important;
  padding: 82px 70px 62px !important;
  text-align: center !important;
}

.contact-page .contact-hero-section .slide-title {
  max-width: 780px !important;
  margin: 0 auto !important;
  color: #ffffff !important;
  font-size: clamp(36px,4vw,54px) !important;
  line-height: 1.06 !important;
}

.contact-page .contact-hero-section .slide-subtitle {
  max-width: 620px !important;
  margin: 14px auto 0 !important;
  color: #25d366 !important;
  font-size: 17px !important;
}

.contact-page .contact-hero-section .slider-dots { bottom: 22px !important; }

.contact-page .contact-page-section {
  padding: 70px 0 !important;
  background: #ffffff !important;
}

.contact-page .home-contact-grid {
  align-items: start !important;
  gap: 48px !important;
}

.contact-page .home-contact-form-card {
  padding: 34px !important;
  background: #ffffff !important;
  border: 1px solid #dfe6ef !important;
  border-radius: 22px !important;
  box-shadow: none !important;
}

.contact-page .home-contact-form-icon {
  color: #030852 !important;
  background: #eaf9ef !important;
}

.contact-page .home-contact-field input,
.contact-page .home-contact-field textarea {
  width: 100% !important;
  color: #030852 !important;
  background: #f8fafc !important;
  border: 1px solid #d8e0ea !important;
  border-radius: 11px !important;
  box-shadow: none !important;
}

.contact-page .home-contact-field input:focus,
.contact-page .home-contact-field textarea:focus {
  border-color: #25d366 !important;
  outline: 3px solid rgba(37,211,102,.14) !important;
}

.contact-page .home-contact-submit {
  min-height: 52px !important;
  color: #030852 !important;
  background: #25d366 !important;
  border: 0 !important;
  border-radius: 11px !important;
  box-shadow: none !important;
}

.contact-page .home-contact-submit:hover {
  background: #1fc55d !important;
  transform: translateY(-2px) !important;
}

/* Productos: portada sin CTA y tienda móvil ordenada. */
.catalog-page .products-hero-section .cta-row {
  display: none !important;
}

.catalog-page .mobile-filter-close {
  display: none;
}

@media (max-width: 768px) {
  .about-page .about-v2-metrics-card article,
  .about-page .about-v2-metrics-card article:first-child,
  .about-page .about-v2-metrics-card article:last-child {
    flex-basis: 190px !important;
    width: 190px !important;
    min-height: 78px !important;
    padding: 12px 16px !important;
  }

  .about-page .about-v2-metrics-card strong { font-size: 19px !important; }
  .about-page .about-v2-metrics-card p { font-size: 10px !important; }

  .contact-page .contact-hero-section,
  .contact-page .contact-hero-section .slider-container,
  .contact-page .contact-hero-section .slide {
    height: 350px !important;
    min-height: 350px !important;
  }

  .contact-page .contact-hero-section .slide-content {
    padding: 78px 42px 54px !important;
  }

  .contact-page .contact-hero-section .slide-title {
    max-width: 310px !important;
    font-size: 30px !important;
  }

  .contact-page .contact-hero-section .slide-subtitle {
    max-width: 290px !important;
    font-size: 13px !important;
  }

  .contact-page .contact-page-section { padding: 48px 0 !important; }
  .contact-page .home-contact-grid { grid-template-columns: 1fr !important; gap: 26px !important; }
  .contact-page .home-contact-info { text-align: center !important; }
  .contact-page .home-contact-form-card { padding: 24px 20px !important; border-radius: 17px !important; }
  .contact-page .form-row-2col { grid-template-columns: 1fr !important; gap: 18px !important; }
  .contact-page .home-contact-form-head { align-items: center !important; }

  .catalog-page .products-hero-section,
  .catalog-page .products-hero-section .slider-container,
  .catalog-page .products-hero-section .slide {
    height: 420px !important;
    min-height: 420px !important;
  }

  .catalog-page .products-hero-section .slide-content {
    padding: 72px 42px 100px !important;
  }

  .catalog-page .products-hero-section .slide-title {
    max-width: 320px !important;
    font-size: 29px !important;
    line-height: 1.06 !important;
  }

  .catalog-page .products-hero-section .slide-subtitle {
    max-width: 310px !important;
    font-size: 13px !important;
  }

  .catalog-page .providers-layout {
    padding: 24px 0 48px !important;
  }

  .catalog-page .providers-layout > .container {
    padding-inline: 12px !important;
  }

  .catalog-page .mobile-categories-pills-row {
    margin: 0 -12px 10px !important;
    padding: 4px 12px 10px !important;
  }

  .catalog-page .catalog-mobile-tools {
    margin: 0 0 12px !important;
  }

  .catalog-page .catalog-mobile-tools .btn-mobile-filters-trigger {
    min-height: 44px !important;
    color: #ffffff !important;
    background: #030852 !important;
    border: 0 !important;
    border-radius: 10px !important;
  }

  .catalog-page .providers-sidebar {
    position: fixed !important;
    max-height: 76vh !important;
    padding: 18px 16px 20px !important;
    gap: 8px !important;
    border-radius: 22px 22px 0 0 !important;
    box-shadow: none !important;
  }

  .catalog-page .mobile-filter-close {
    position: absolute !important;
    top: 13px !important;
    right: 15px !important;
    z-index: 3 !important;
    width: 34px !important;
    height: 34px !important;
    display: grid !important;
    place-items: center !important;
    color: #030852 !important;
    background: #edf1f7 !important;
    border: 0 !important;
    border-radius: 50% !important;
  }

  .catalog-page .mobile-filter-close svg {
    width: 17px !important;
    height: 17px !important;
  }

  .catalog-page .providers-sidebar::before {
    width: 38px !important;
    height: 4px !important;
    margin: -8px auto 8px !important;
  }

  .catalog-page .filters-card .sidebar-title-main {
    margin-bottom: 10px !important;
    font-size: 15px !important;
  }

  .catalog-page .filters-card .filter-group,
  .catalog-page .filters-card .filter-group:last-of-type {
    padding: 9px 0 !important;
  }

  .catalog-page .filters-card .btn-clear-filters {
    position: static !important;
    width: 100% !important;
    min-height: 42px !important;
    margin-top: 10px !important;
    color: #ffffff !important;
    background: #030852 !important;
    border: 0 !important;
    border-radius: 10px !important;
  }

  .catalog-page .providers-main-content {
    padding: 0 !important;
  }

  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 10px !important;
  }

  .catalog-page .product-card {
    width: 100% !important;
    box-shadow: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .about-v2-metrics-card { animation-play-state: paused !important; }
}

/* Navbar y footer comunes en todas las páginas públicas. */
@media (max-width: 768px) {
  .about-page #main-header:not(.scrolled),
  .contact-page #main-header:not(.scrolled),
  .catalog-page #main-header:not(.scrolled) {
    background: linear-gradient(110deg,#030852,#2855b8) !important;
    border-bottom-color: rgba(255,255,255,.12) !important;
  }

  .about-page #main-header:not(.scrolled) .logo img,
  .contact-page #main-header:not(.scrolled) .logo img,
  .catalog-page #main-header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1) !important;
  }

  .about-page #main-header:not(.scrolled) .btn-cart,
  .contact-page #main-header:not(.scrolled) .btn-cart,
  .catalog-page #main-header:not(.scrolled) .btn-cart {
    color: #ffffff !important;
    border-color: rgba(255,255,255,.25) !important;
    background: rgba(255,255,255,.08) !important;
  }

  .catalog-page #main-header .btn-mobile-menu,
  .catalog-page #main-header .btn-mobile-menu:hover,
  .catalog-page #main-header .btn-mobile-menu:focus,
  .catalog-page #main-header .btn-mobile-menu:active {
    color: #ffffff !important;
    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
  }

  .catalog-page #main-header.scrolled .btn-mobile-menu,
  .catalog-page #main-header.scrolled .btn-mobile-menu:hover,
  .catalog-page #main-header.scrolled .btn-mobile-menu:focus,
  .catalog-page #main-header.scrolled .btn-mobile-menu:active {
    color: #030852 !important;
  }

  .about-page #main-header.scrolled .logo img,
  .contact-page #main-header.scrolled .logo img,
  .catalog-page #main-header.scrolled .logo img {
    filter: none !important;
  }

  body > footer .footer-col-title {
    cursor: pointer !important;
    margin-bottom: 0 !important;
    padding: 14px 0 !important;
  }

  body > footer .footer-col-title::after,
  .home-page footer .footer-col-title::after {
    display: block !important;
    content: '' !important;
  }

  body > footer .footer-col .footer-link,
  body > footer .footer-col .home-newsletter-copy,
  body > footer .footer-col .home-newsletter-form {
    display: none !important;
  }

  body > footer .footer-col.open .footer-link,
  body > footer .footer-col.open .home-newsletter-copy,
  body > footer .footer-col.open .home-newsletter-form {
    display: block !important;
  }
}

/* Productos: texto del carrusel móvil centrado y separado de las flechas. */
@media (max-width: 620px) {
  .catalog-page .products-hero-section .slide-bg::before {
    background: linear-gradient(90deg, rgba(2, 5, 54, .055) 0%, rgba(2, 5, 54, .025) 30%, transparent 58%) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .catalog-page .products-hero-section .slide-bg::after {
    display: none !important;
    opacity: 0 !important;
  }

  .catalog-page .products-hero-section,
  .catalog-page .products-hero-section .slider-container,
  .catalog-page .products-hero-section .slide {
    height: 376px !important;
    min-height: 376px !important;
  }

  .catalog-page .products-hero-section .slide-content {
    min-height: 376px !important;
    padding: 78px 18px 112px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    transform: translateY(-8px) !important;
  }

  .catalog-page .products-hero-section .slide-title {
    width: 100% !important;
    max-width: 310px !important;
    margin: 0 auto 10px !important;
    font-size: clamp(25px, 7.4vw, 29px) !important;
    line-height: 1.04 !important;
    text-wrap: balance !important;
  }

  .catalog-page .products-hero-section .slide-subtitle {
    width: 100% !important;
    max-width: 305px !important;
    margin: 0 auto !important;
    font-size: 12px !important;
    line-height: 1.28 !important;
    text-wrap: balance !important;
  }

  .catalog-page .products-hero-section .slider-arrow {
    display: none !important;
  }

  .catalog-page .products-hero-section .slider-dots {
    bottom: 96px !important;
    z-index: 20 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Filtros móviles: panel limpio, sin tirador ni controles flotantes. */
  .catalog-page .providers-sidebar {
    max-height: calc(100dvh - 62px) !important;
    padding: 16px 16px 20px !important;
    border-radius: 18px 18px 0 0 !important;
  }

  .catalog-page .providers-sidebar::before {
    content: none !important;
    display: none !important;
  }

  .catalog-page .mobile-filter-close {
    top: 14px !important;
    right: 14px !important;
    width: 32px !important;
    height: 32px !important;
    background: #f1f4f8 !important;
  }

  .catalog-page .filters-card .sidebar-title-main {
    min-height: 38px !important;
    margin: 0 42px 10px 0 !important;
    padding-bottom: 10px !important;
  }
}

/* Productos: botón ancho y filtros en panel lateral móvil. */
@media (max-width: 768px) {
  .catalog-page .mobile-categories-pills-row {
    display: none !important;
  }

  .catalog-page .catalog-mobile-tools {
    width: 100% !important;
    display: flex !important;
    margin: 0 0 14px !important;
  }

  .catalog-page #mobile-filters-trigger,
  .catalog-page .catalog-mobile-tools .btn-mobile-filters-trigger {
    width: 100% !important;
    min-height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    color: #ffffff !important;
    background: #030852 !important;
    border: 0 !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    box-shadow: none !important;
  }

  .catalog-page #mobile-filters-trigger .filters-icon {
    width: 17px !important;
    height: 17px !important;
  }

  .catalog-page .providers-sidebar,
  .catalog-page .providers-sidebar.active {
    position: fixed !important;
    z-index: 99999 !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: min(88vw, 340px) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 0 18px 18px 0 !important;
    box-shadow: none !important;
    transform: translateX(-105%) !important;
    transition: transform .32s cubic-bezier(.22,.8,.24,1) !important;
  }

  .catalog-page .providers-sidebar.active {
    transform: translateX(0) !important;
  }

  .catalog-page .providers-sidebar .categories-card {
    display: block !important;
  }

  .catalog-page .providers-sidebar .categories-card,
  .catalog-page .providers-sidebar .filters-card {
    flex: 0 0 auto !important;
    padding: 14px !important;
    border: 1px solid #e0e5ee !important;
    border-radius: 13px !important;
    box-shadow: none !important;
  }

  .catalog-page .providers-sidebar .categories-card .sidebar-title {
    margin-right: 42px !important;
  }

  .catalog-page .mobile-filter-close {
    position: fixed !important;
    top: 12px !important;
    left: min(calc(88vw - 45px), 295px) !important;
    z-index: 100001 !important;
    display: grid !important;
  }

  .catalog-page .providers-sidebar::before {
    content: none !important;
    display: none !important;
  }

  .catalog-page .sidebar-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99998 !important;
    display: none !important;
    opacity: 0 !important;
    background: rgba(3, 8, 82, .28) !important;
    transition: opacity .25s ease !important;
  }

  .catalog-page .sidebar-overlay.active {
    display: block !important;
    opacity: 1 !important;
  }
}

/* Productos: tarjetas móviles completas, legibles y compactas. */
@media (max-width: 620px) {
  .catalog-page .providers-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .catalog-page .product-card {
    width: 100% !important;
    height: auto !important;
    min-height: 278px !important;
    aspect-ratio: auto !important;
    padding: 10px !important;
    overflow: visible !important;
    border-radius: 16px !important;
  }

  .catalog-page .product-image-wrapper {
    flex: 0 0 92px !important;
    width: 100% !important;
    height: 92px !important;
    margin: 0 0 8px !important;
    padding: 18px 4px 5px !important;
  }

  .catalog-page .product-image-wrapper img {
    width: 94% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  .catalog-page .stock-badge {
    top: 10px !important;
    left: 10px !important;
    padding: 4px 7px !important;
    font-size: 8px !important;
  }

  .catalog-page .btn-wishlist {
    top: 9px !important;
    right: 9px !important;
    width: 30px !important;
    height: 30px !important;
  }

  .catalog-page .product-card-content {
    flex: 1 0 91px !important;
    min-height: 91px !important;
    display: block !important;
    padding: 0 2px !important;
    overflow: visible !important;
  }

  .catalog-page .product-card-title {
    min-height: 34px !important;
    margin: 0 0 4px !important;
    font-size: 11.5px !important;
    line-height: 1.28 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
  }

  .catalog-page .product-card-brand {
    display: block !important;
    margin: 0 !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .catalog-page .product-view-hint {
    min-height: 18px !important;
    margin-top: 6px !important;
    gap: 4px !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .catalog-page .product-view-icon {
    width: 13px !important;
    height: 13px !important;
    flex-basis: 13px !important;
  }

  .catalog-page .product-card-actions {
    width: 100% !important;
    flex: 0 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 38px !important;
    gap: 6px !important;
    margin-top: 8px !important;
    padding: 0 !important;
  }

  .catalog-page .btn-direct-quote,
  .catalog-page .btn-add-to-quote {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    padding: 6px !important;
    border-radius: 9px !important;
  }

  .catalog-page .btn-direct-quote {
    font-size: 11px !important;
  }

  .catalog-page .btn-direct-quote svg,
  .catalog-page .btn-add-to-quote svg {
    width: 14px !important;
    height: 14px !important;
  }
}

/* Footer unificado: misma composición completa del Inicio en todas las páginas. */
body > footer {
  padding-top: 0 !important;
  color: rgba(255,255,255,.74) !important;
  background: #030852 !important;
}

body > footer .home-footer-grid {
  display: grid !important;
  grid-template-columns: minmax(190px,1.3fr) minmax(105px,.7fr) minmax(155px,1fr) minmax(145px,.9fr) minmax(210px,1.2fr) !important;
  align-items: start !important;
  gap: 34px !important;
  padding-top: 34px !important;
  padding-bottom: 26px !important;
}

body > footer .footer-logo {
  display: block !important;
  width: 172px !important;
  height: auto !important;
  filter: brightness(0) invert(1) !important;
}

body > footer .home-footer-brand p,
body > footer .home-newsletter-copy {
  max-width: 260px !important;
  margin: 14px 0 0 !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

body > footer .footer-col-title {
  margin: 0 0 14px !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: none !important;
}

body > footer .footer-link,
body > footer .footer-contact-item {
  display: block !important;
  margin-bottom: 8px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body > footer .footer-socials {
  display: flex !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

body > footer .footer-social-link {
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  color: #ffffff !important;
  background: rgba(255,255,255,.09) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 50% !important;
}

body > footer .home-newsletter-form {
  position: relative !important;
  max-width: 250px !important;
  margin-top: 16px !important;
}

body > footer .home-newsletter-form input {
  width: 100% !important;
  height: 46px !important;
  padding: 0 54px 0 18px !important;
  color: #ffffff !important;
  background: rgba(255,255,255,.13) !important;
  border: 0 !important;
  border-radius: 999px !important;
  outline: 0 !important;
}

body > footer .home-newsletter-form button {
  position: absolute !important;
  top: 5px !important;
  right: 5px !important;
  width: 36px !important;
  height: 36px !important;
  display: grid !important;
  place-items: center !important;
  color: #030852 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 50% !important;
}

body > footer .footer-bottom {
  min-height: 0 !important;
  display: flex !important;
  justify-content: center !important;
  padding-top: 20px !important;
  padding-bottom: 24px !important;
  color: rgba(255,255,255,.56) !important;
  background: #030852 !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
}

@media (max-width: 768px) {
  body > footer .home-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 34px 20px 24px !important;
  }

  body > footer .footer-col {
    width: 100% !important;
  }

  body > footer .footer-col-title {
    cursor: default !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
  }

  body > footer .footer-col-title::after {
    content: none !important;
    display: none !important;
  }

  body > footer .footer-col .footer-link,
  body > footer .footer-col .footer-contact-item,
  body > footer .footer-col .home-newsletter-copy,
  body > footer .footer-col .home-newsletter-form {
    display: block !important;
  }

  body > footer .footer-bottom {
    padding: 18px 20px 22px !important;
    text-align: center !important;
  }
}

/* Productos: paginación de tres números en una sola fila. */
.catalog-page .catalog-pagination-row {
  width: 100% !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  overflow: hidden !important;
}

.catalog-page .catalog-pagination-row .pagination-btn {
  flex: 0 0 36px !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  margin: 0 !important;
}

/* Modal de producto: una sola acción clara por WhatsApp. */
.catalog-page .catalog-detail-commerce {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.catalog-page .catalog-detail-commerce .catalog-detail-actions {
  width: 100% !important;
  max-width: 430px !important;
  display: block !important;
  margin: 0 auto !important;
}

.catalog-page .catalog-detail-whatsapp {
  width: 100% !important;
  min-height: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 20px !important;
  color: #ffffff !important;
  background: #20bf5f !important;
  border: 0 !important;
  border-radius: 11px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.catalog-page .catalog-detail-whatsapp:hover,
.catalog-page .catalog-detail-whatsapp:focus {
  color: #ffffff !important;
  background: #18aa52 !important;
}

.catalog-page .catalog-detail-whatsapp .catalog-detail-whatsapp-icon {
  width: 22px !important;
  height: 22px !important;
  flex: 0 0 22px !important;
  display: block !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
  fill: none !important;
}

@media (max-width: 620px) {
  .catalog-page .catalog-detail-commerce .catalog-detail-actions {
    max-width: none !important;
  }
}

/* Nosotros: indicadores móviles siempre horizontales y compactos. */
@media (max-width: 620px) {
  .about-page .about-v2-metrics-section {
    width: 100% !important;
    height: 84px !important;
    min-height: 84px !important;
    max-height: 84px !important;
    overflow: hidden !important;
    background: #25d366 !important;
  }

  .about-page .about-v2-metrics-card {
    width: max-content !important;
    height: 84px !important;
    min-height: 84px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    grid-template-columns: none !important;
    animation: aboutMetricsRibbon 25s linear infinite !important;
  }

  .about-page .about-v2-metrics-card article,
  .about-page .about-v2-metrics-card article:first-child,
  .about-page .about-v2-metrics-card article:last-child {
    position: relative !important;
    box-sizing: border-box !important;
    flex: 0 0 178px !important;
    width: 178px !important;
    height: 84px !important;
    min-height: 84px !important;
    max-height: 84px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    text-align: center !important;
  }

  .about-page .about-v2-metrics-card article::after {
    content: '' !important;
    position: absolute !important;
    top: 14px !important;
    right: 0 !important;
    bottom: 14px !important;
    width: 1px !important;
    display: block !important;
    background: rgba(3,8,82,.38) !important;
  }

  .about-page .about-v2-metrics-card article > div {
    width: 100% !important;
  }

  .about-page .about-v2-metrics-card strong {
    margin: 0 0 3px !important;
    font-size: 19px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .about-page .about-v2-metrics-card p {
    margin: 0 !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

/* Nosotros: la misma cinta continua en tablet y escritorio. */
@media (min-width: 621px) {
  .about-page .about-v2-metrics-section {
    width: 100% !important;
    height: 94px !important;
    min-height: 94px !important;
    overflow: hidden !important;
    background: #25d366 !important;
  }

  .about-page .about-v2-metrics-card {
    width: max-content !important;
    height: 94px !important;
    min-height: 94px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    grid-template-columns: none !important;
    animation: aboutMetricsRibbon 28s linear infinite !important;
    will-change: transform !important;
  }

  .about-page .about-v2-metrics-card article,
  .about-page .about-v2-metrics-card article:first-child,
  .about-page .about-v2-metrics-card article:last-child {
    position: relative !important;
    box-sizing: border-box !important;
    flex: 0 0 250px !important;
    width: 250px !important;
    height: 94px !important;
    min-height: 94px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 22px !important;
    border: 0 !important;
    text-align: center !important;
  }

  .about-page .about-v2-metrics-card article::after {
    content: '' !important;
    position: absolute !important;
    top: 17px !important;
    right: 0 !important;
    bottom: 17px !important;
    width: 1px !important;
    display: block !important;
    background: rgba(3,8,82,.34) !important;
  }

  .about-page .about-v2-metrics-card strong {
    margin: 0 0 4px !important;
    color: #030852 !important;
    font-size: 24px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .about-page .about-v2-metrics-card p {
    margin: 0 !important;
    color: #030852 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }
}

/* Inicio: llamada final directa a WhatsApp. */
.home-page .home-final-actions > a.home-final-whatsapp {
  min-height: 48px !important;
  gap: 9px !important;
  padding: 0 22px !important;
  color: #ffffff !important;
  background: #25d366 !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.home-page .home-final-actions > a.home-final-whatsapp:hover {
  color: #ffffff !important;
  background: #20c85f !important;
}

.home-page .home-final-actions > a.home-final-whatsapp svg {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: none !important;
}

/* Acceso permanente a cotizaciones por WhatsApp. */
.global-whatsapp-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1450;
  min-height: 52px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff !important;
  background: #25d366;
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(3, 8, 82, 0.2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: bottom 160ms ease-out, transform 180ms ease, background-color 180ms ease;
}

.global-whatsapp-quote svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #ffffff;
  fill: #ffffff;
}

.global-whatsapp-quote:hover,
.global-whatsapp-quote:focus-visible {
  color: #ffffff !important;
  background: #16b957;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .global-whatsapp-quote {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 15px;
    font-size: 13px;
  }

  .global-whatsapp-quote svg {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

/* Mega menú final: categorías útiles + productos destacados con fotos limpias. */
#main-header > .products-mega-menu > .products-mega-inner {
  grid-template-columns: 270px minmax(0, 1fr) !important;
  gap: 18px !important;
}

#main-header .products-mega-categories {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 14px !important;
  background: #ffffff !important;
  border: 1px solid #dfe5ee !important;
  border-radius: 16px !important;
  box-shadow: none !important;
}

#main-header .products-mega-category-head {
  display: flex !important;
  align-items: center !important;
  gap: 11px !important;
  padding: 0 2px 11px !important;
  border-bottom: 1px solid #e5e9ef !important;
}

#main-header .products-mega-category-icon {
  width: 37px !important;
  height: 37px !important;
  display: grid !important;
  flex: 0 0 37px !important;
  place-items: center !important;
  color: #07145f !important;
  background: #eef2f8 !important;
  border-radius: 10px !important;
}

#main-header .products-mega-category-icon svg {
  width: 21px !important;
  height: 21px !important;
}

#main-header .products-mega-category-head > span:last-child {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

#main-header .products-mega-category-head small {
  color: #009245 !important;
  font-size: 8px !important;
  font-weight: 850 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

#main-header .products-mega-category-head strong {
  color: #07145f !important;
  font-size: 15px !important;
  line-height: 1.1 !important;
}

#main-header .products-mega-category-list {
  display: grid !important;
  gap: 4px !important;
  padding-top: 9px !important;
}

#main-header .products-mega-category-list a {
  min-width: 0 !important;
  min-height: 31px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 6px 9px !important;
  color: #07145f !important;
  background: #f6f8fb !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

#main-header .products-mega-category-list a:hover,
#main-header .products-mega-category-list a:focus-visible {
  color: #07145f !important;
  background: #edf9f2 !important;
  border-color: #bde8cf !important;
}

#main-header .products-mega-category-list a > span {
  overflow: hidden !important;
  font-size: 10px !important;
  font-weight: 750 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#main-header .products-mega-category-list a > small {
  min-width: 23px !important;
  padding: 2px 5px !important;
  color: #08723f !important;
  background: #dff5e8 !important;
  border-radius: 999px !important;
  font-size: 8px !important;
  font-weight: 850 !important;
  text-align: center !important;
}

#main-header .products-mega-category-list a > b {
  color: #009245 !important;
  font-size: 12px !important;
}

#main-header .products-mega-card {
  background: #ffffff !important;
  border-color: #dfe5ee !important;
}

#main-header .products-mega-card:hover,
#main-header .products-mega-card:focus-visible {
  background: #f9fbfd !important;
  border-color: #8ed6ad !important;
}

#main-header .products-mega-image {
  background: #ffffff !important;
}

#main-header .products-mega-image > img {
  width: 72px !important;
  max-width: 72px !important;
  height: 72px !important;
  max-height: 72px !important;
  mix-blend-mode: normal !important;
  object-fit: contain !important;
}

@media (max-width: 980px) and (min-width: 769px) {
  #main-header > .products-mega-menu > .products-mega-inner {
    grid-template-columns: 220px minmax(0, 1fr) !important;
  }
}

/* Favoritos del catálogo. */
.catalog-page .btn-wishlist {
  cursor: pointer !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease !important;
}

.catalog-page .btn-wishlist:hover,
.catalog-page .btn-wishlist:focus-visible {
  color: #07145f !important;
  background: #eef1ff !important;
  border-color: #07145f !important;
}

.catalog-page .btn-wishlist:active {
  transform: scale(.92) !important;
}

.catalog-page .btn-wishlist.is-favorite {
  color: #ffffff !important;
  background: #07145f !important;
  border-color: #07145f !important;
}

.catalog-page .btn-wishlist.is-favorite svg {
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Firma y derechos del sitio. */
.footer-bottom .footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.56);
}

.footer-bottom .footer-credit a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom .footer-credit a:hover,
.footer-bottom .footer-credit a:focus-visible {
  color: #25d366;
  text-decoration: underline;
}

/* Sistema comercial: inventario, ventas, clientes y portal de acceso. */
.inventory-module-nav {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 10px;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
}

.inventory-module-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: #030852;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.inventory-module-nav a:hover,
.inventory-module-nav a:focus-visible {
  color: #ffffff;
  background: #030852;
}

.inventory-page .inventory-stats {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.inventory-image-upload {
  padding: 14px;
  color: #030852 !important;
  background: #f6f8fc;
  border: 1px dashed #aebbd0;
  border-radius: 10px;
}

.inventory-image-upload span {
  color: #68748a;
  font-size: 11px;
  font-weight: 500;
}

.inventory-image-preview {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f5f7fb;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
}

.inventory-image-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.inventory-business-layout {
  margin-top: 28px;
}

.inventory-clients-panel {
  margin-top: 28px;
}

.inventory-sales-total {
  color: #05964b;
  font-size: 20px;
}

.account-main {
  min-height: 75vh;
  padding-top: 72px;
  color: #030852;
  background: #f6f8fc;
}

.account-page #main-header {
  background: #ffffff;
  border-bottom: 1px solid #e1e6ef;
}

.account-page #main-header .nav-link,
.account-page #main-header .btn-mobile-menu {
  color: #030852;
}

.account-hero {
  padding: 78px 0 70px;
  color: #ffffff;
  background: #030852;
}

.account-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 60px;
}

.account-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.account-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.account-hero-points {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.account-hero-points span {
  padding: 16px 18px;
  color: #ffffff;
  background: #0b176b;
  font-size: 13px;
  font-weight: 700;
}

.account-auth {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  padding-top: 46px;
  padding-bottom: 72px;
}

.account-auth[hidden],
.account-dashboard[hidden] {
  display: none !important;
}

.account-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #dfe5ef;
  border-radius: 18px;
}

.account-card-register {
  border-top: 4px solid #25d366;
}

.account-card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #030852;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.account-card h2 {
  margin: 4px 0 0;
  color: #030852;
  font-size: 28px;
}

.account-card p {
  margin: -8px 0 6px;
  color: #6c7890;
  font-size: 14px;
}

.account-card label {
  display: grid;
  gap: 7px;
  color: #030852;
  font-size: 12px;
  font-weight: 800;
}

.account-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #030852;
  background: #ffffff;
  border: 1px solid #cfd8e7;
  border-radius: 9px;
  font: inherit;
}

.account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.account-message {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.account-dashboard {
  padding-top: 46px;
  padding-bottom: 72px;
}

.account-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #dfe5ef;
  border-left: 5px solid #25d366;
  border-radius: 14px;
}

.account-welcome h2 {
  margin: 5px 0;
  color: #030852;
  font-size: 30px;
}

.account-welcome p {
  margin: 0;
  color: #68748a;
}

.account-dashboard-actions {
  display: flex;
  gap: 10px;
}

.account-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.account-benefits article {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #dfe5ef;
  border-top: 4px solid #25d366;
  border-radius: 14px;
}

.account-benefits article > span {
  color: #05964b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-benefits h3 {
  margin: 10px 0;
  color: #030852;
  font-size: 24px;
}

.account-benefits p {
  margin: 0 0 18px;
  color: #68748a;
  line-height: 1.65;
}

.account-benefits a {
  color: #030852;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .inventory-page .inventory-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .inventory-module-nav { top: 58px; }
  .inventory-page .inventory-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-hero { padding: 52px 0; }
  .account-hero-grid, .account-auth { grid-template-columns: 1fr; gap: 14px; }
  .account-hero-points { margin-top: 4px; }
  .account-card { padding: 22px; }
  .account-form-grid { grid-template-columns: 1fr; }
  .account-welcome { align-items: flex-start; flex-direction: column; }
  .account-dashboard-actions { width: 100%; flex-direction: column; }
  .account-dashboard-actions > * { width: 100%; justify-content: center; }
  .account-benefits { grid-template-columns: 1fr; }
}

/* Carrito: X de cierre visible y centrada. */
.cart-drawer-close {
  position: relative !important;
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  background: #eef1f5 !important;
  border: 1px solid #dfe4eb !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.cart-drawer-close::before,
.cart-drawer-close::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 14px !important;
  height: 2px !important;
  display: block !important;
  background: #030852 !important;
  border-radius: 999px !important;
  transform-origin: center !important;
}

.cart-drawer-close::before {
  transform: translate(-50%,-50%) rotate(45deg) !important;
}

.cart-drawer-close::after {
  transform: translate(-50%,-50%) rotate(-45deg) !important;
}

.cart-drawer-close:hover {
  background: #e3e8ef !important;
}

/* Tienda: selector de categorías simple y compacto. */
@media (min-width: 769px) {
  .catalog-page .providers-sidebar {
    width: 224px !important;
    gap: 0 !important;
  }

  .catalog-page .providers-sidebar .categories-card {
    padding: 11px 12px !important;
    border-radius: 14px !important;
  }
}

.catalog-page .categories-card .sidebar-title {
  min-height: 34px !important;
  margin: 0 0 4px !important;
  padding: 0 0 8px !important;
  gap: 8px !important;
  font-size: 12px !important;
}

.catalog-page .categories-card .sidebar-heading-icon {
  flex-basis: 30px !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 8px !important;
}

.catalog-page .categories-card .sidebar-heading-icon svg {
  width: 17px !important;
  height: 17px !important;
}

.catalog-page .categories-card .filter-btn,
.catalog-page .categories-card .filter-btn:hover,
.catalog-page .categories-card .filter-btn.active {
  min-height: 38px !important;
  padding: 4px 20px 4px 0 !important;
  font-size: 10.5px !important;
}

.catalog-page .categories-card .filter-btn-left {
  gap: 7px !important;
}

.catalog-page .categories-card .category-icon,
.catalog-page .categories-card .filter-btn.active .category-icon {
  flex-basis: 16px !important;
  width: 16px !important;
  height: 16px !important;
  padding: 4px !important;
  border-radius: 7px !important;
}

.catalog-page .categories-card .filter-btn::after,
.catalog-page .categories-card .filter-btn.active::after {
  right: 1px !important;
  font-size: 19px !important;
}

@media (max-width: 768px) {
  .catalog-page .catalog-mobile-tools .btn-mobile-filters-trigger {
    min-height: 42px !important;
    font-size: 12px !important;
  }

  .catalog-page .providers-sidebar,
  .catalog-page .providers-sidebar.active {
    width: min(82vw, 300px) !important;
    gap: 0 !important;
    padding: 11px !important;
  }

  .catalog-page .providers-sidebar .categories-card {
    padding: 10px !important;
  }

  .catalog-page .providers-sidebar .categories-card .sidebar-title {
    margin-right: 38px !important;
  }

  .catalog-page .mobile-filter-close {
    left: min(calc(82vw - 43px), 257px) !important;
  }
}

/* Modal final: muestra la ficha completa extraída de cada catálogo. */
.catalog-page .catalog-detail-specs-wide dl {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.catalog-page .catalog-detail-specs-wide dl > div,
.catalog-page .catalog-detail-specs-wide dl > div:nth-child(even) {
  border-right: 1px solid #e5e9ee !important;
  border-bottom: 1px solid #e5e9ee !important;
}

.catalog-page .catalog-detail-specs-wide dl > div:nth-child(even),
.catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long {
  border-right: 0 !important;
}

.catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long {
  grid-column: 1 / -1 !important;
}

.catalog-page .catalog-detail-specs-wide dd {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.55 !important;
}

@media (max-width: 900px) {
  .catalog-page .catalog-detail-specs-wide dl {
    grid-template-columns: 1fr !important;
  }

  .catalog-page .catalog-detail-specs-wide dl > div {
    grid-column: 1 !important;
    border-right: 0 !important;
  }
}

/* Contacto final: una sola paleta azul corporativa. */
.contact-page .contact-hero-section .slide-subtitle {
  color: #ffffff !important;
  opacity: .9 !important;
}

.contact-page .contact-page-section {
  padding: 64px 0 !important;
  background: #ffffff !important;
}

.contact-page .home-contact-grid {
  grid-template-columns: minmax(300px,.82fr) minmax(0,1.18fr) !important;
  gap: clamp(36px,5vw,76px) !important;
  align-items: center !important;
}

.contact-page .home-contact-kicker,
.contact-page .contact-page-title,
.contact-page .contact-page-title span,
.contact-page .home-contact-card strong,
.contact-page .home-contact-form-head h3,
.contact-page .home-contact-field label,
.contact-page .field-icon,
.contact-page .home-contact-security svg {
  color: #07145f !important;
}

.contact-page .home-contact-icon,
.contact-page .home-contact-form-icon {
  color: #07145f !important;
  background: #f1f4ff !important;
  border: 1px solid #e0e6f5 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.contact-page .home-contact-form-card {
  padding: clamp(26px,4vw,42px) !important;
  border: 1px solid #d9e0f0 !important;
  border-top: 5px solid #07145f !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.contact-page .form-row-2col {
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 16px !important;
}

.contact-page .home-contact-field,
.contact-page .home-contact-field.full {
  min-width: 0 !important;
  margin: 0 0 18px !important;
}

.contact-page .home-contact-field input,
.contact-page .home-contact-field textarea {
  width: 100% !important;
  min-height: 52px !important;
  padding: 13px 16px 13px 46px !important;
  color: #07145f !important;
  border: 1px solid #d9e0f0 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.contact-page .home-contact-field input:focus,
.contact-page .home-contact-field textarea:focus {
  border-color: #07145f !important;
  background: #f1f4ff !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.contact-page .textarea-icon-wrapper .field-icon {
  top: 17px !important;
  transform: none !important;
}

.contact-page .home-contact-field textarea {
  min-height: 132px !important;
  resize: vertical !important;
}

.contact-page .home-contact-submit,
.contact-page .home-contact-submit:hover {
  width: 100% !important;
  min-height: 54px !important;
  justify-content: center !important;
  margin-top: 2px !important;
  color: #ffffff !important;
  background: #07145f !important;
  border: 1px solid #07145f !important;
  border-radius: 12px !important;
  transform: none !important;
  box-shadow: none !important;
}

.contact-page .home-contact-submit:hover { background: #0d248b !important; }
.contact-page .home-contact-submit svg { color: #ffffff !important; stroke: #ffffff !important; }

@media (max-width: 768px) {
  .contact-page .contact-page-section { padding: 42px 0 !important; }
  .contact-page .home-contact-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .contact-page .home-contact-info { text-align: left !important; }
  .contact-page .home-contact-form-card { padding: 25px 18px !important; border-radius: 16px !important; }
  .contact-page .form-row-2col { grid-template-columns: 1fr !important; gap: 0 !important; }
  .contact-page .home-contact-form-head { align-items: flex-start !important; gap: 13px !important; }
}

.contact-page #main-header .nav-link.active,
.contact-page #main-header .nav-link:hover {
  color: #07145f !important;
}

.contact-page #main-header .nav-link.active::after {
  background: #07145f !important;
}

.contact-page .contact-hero-section .slider-dots {
  background: rgba(7,20,95,.42) !important;
  border-color: rgba(255,255,255,.38) !important;
  box-shadow: none !important;
}

.contact-page .contact-hero-section .slider-dot {
  box-shadow: none !important;
}

.contact-page .contact-hero-section .slider-dot.active {
  background: #8fa3ff !important;
  border-color: #dce3ff !important;
  box-shadow: none !important;
}

/* Ficha de producto: contenido completo, legible y sin recortes. */
.catalog-page .catalog-detail-feature small {
  min-width: 0 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.35 !important;
}

.catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long {
  grid-column: 1 / -1 !important;
  border-right: 0 !important;
}

.catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long dt {
  padding: 14px 18px 5px !important;
  font-size: 12px !important;
}

.catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long dd {
  padding: 5px 18px 15px !important;
  color: #43516d !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
}

.catalog-page .catalog-spec-text {
  display: block !important;
  max-width: 100% !important;
  white-space: normal !important;
}

.catalog-page .catalog-spec-list {
  display: grid !important;
  gap: 7px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.catalog-page .catalog-spec-list li {
  position: relative !important;
  margin: 0 !important;
  padding-left: 16px !important;
  line-height: 1.55 !important;
}

.catalog-page .catalog-spec-list li::before {
  content: '' !important;
  position: absolute !important;
  top: .64em !important;
  left: 0 !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: #009245 !important;
}

@media (max-width: 600px) {
  .catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long dt {
    padding: 11px 12px 4px !important;
  }

  .catalog-page .catalog-detail-specs-wide dl > .catalog-spec-long dd {
    padding: 4px 12px 13px !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
  }
}

/* Cuenta de cliente: acceso simple en formato modal. */
.account-page .account-login-stage {
  position: relative !important;
  isolation: isolate !important;
  min-height: calc(100vh - 72px) !important;
  display: grid !important;
  place-items: center !important;
  padding: 112px 20px 54px !important;
  overflow: hidden !important;
  background: #07145f !important;
}

.account-page .account-login-backdrop {
  position: absolute !important;
  z-index: -1 !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(7,20,95,.9), rgba(7,20,95,.58)),
    url('../img/home-carousel/wide-riego-field-ai.webp') center / cover no-repeat !important;
}

.account-page .account-auth-modal {
  position: relative !important;
  width: min(430px, 100%) !important;
  display: block !important;
  padding: 28px !important;
  background: #ffffff !important;
  border: 1px solid #dfe5ee !important;
  border-radius: 22px !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.2) !important;
}

.account-page .account-auth-modal[hidden],
.account-page .account-modal-form[hidden] {
  display: none !important;
}

.account-page .account-modal-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  color: #536079 !important;
  background: #f1f4f8 !important;
  border-radius: 50% !important;
  font-size: 23px !important;
  line-height: 1 !important;
}

.account-page .account-modal-brand img {
  width: 154px !important;
  height: auto !important;
}

.account-page .account-modal-heading {
  padding: 24px 0 19px !important;
}

.account-page .account-modal-heading > span {
  color: #009245 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

.account-page .account-modal-heading h1 {
  margin: 5px 0 6px !important;
  color: #07145f !important;
  font-size: 31px !important;
  line-height: 1.05 !important;
  letter-spacing: -.035em !important;
}

.account-page .account-modal-heading p {
  margin: 0 !important;
  color: #68748a !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.account-page .account-auth-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4px !important;
  margin-bottom: 20px !important;
  padding: 4px !important;
  background: #f1f4f8 !important;
  border-radius: 11px !important;
}

.account-page .account-auth-tabs button {
  min-height: 38px !important;
  padding: 7px 10px !important;
  color: #68748a !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 8px !important;
  font: inherit !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}

.account-page .account-auth-tabs button.active {
  color: #ffffff !important;
  background: #07145f !important;
}

.account-page .account-modal-form {
  display: grid !important;
  gap: 14px !important;
}

.account-page .account-modal-form label {
  display: grid !important;
  gap: 7px !important;
  color: #07145f !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.account-page .account-modal-form input {
  width: 100% !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  color: #07145f !important;
  background: #ffffff !important;
  border: 1px solid #ccd5e2 !important;
  border-radius: 10px !important;
  outline: none !important;
  font: inherit !important;
}

.account-page .account-modal-form input:focus {
  border-color: #07145f !important;
  box-shadow: 0 0 0 3px rgba(7,20,95,.09) !important;
}

.account-page .account-modal-form .account-consent,
.account-page .account-google-access .account-consent {
  grid-template-columns: 17px 1fr !important;
  align-items: start !important;
  gap: 9px !important;
  color: #68748a !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

.account-page .account-consent input[type="checkbox"] {
  width: 17px !important;
  height: 17px !important;
  min-height: 0 !important;
  padding: 0 !important;
  accent-color: #07145f !important;
}

.account-page .account-google-access {
  margin-top: 16px !important;
}

.account-page .account-google-access[hidden] { display: none !important; }

.account-page .account-auth-divider {
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #8792a6 !important;
  font-size: 9px !important;
  text-transform: uppercase !important;
}

.account-page .account-auth-divider::before,
.account-page .account-auth-divider::after {
  content: '' !important;
  height: 1px !important;
  flex: 1 !important;
  background: #dfe5ee !important;
}

.account-page .account-google-button {
  min-height: 44px !important;
  margin-top: 11px !important;
  display: flex !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* Ficha pública indexable de producto. */
.seo-product-page { margin: 0; color: #07145f; background: #f5f7fb; font-family: Inter, sans-serif; }
.seo-product-header { min-height: 70px; padding: 12px max(24px, calc((100% - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #fff; border-bottom: 1px solid #dfe5ee; }
.seo-product-header img { width: 168px; display: block; }
.seo-product-header nav { display: flex; gap: 24px; }
.seo-product-header a { color: #07145f; font-size: 13px; font-weight: 700; text-decoration: none; }
.seo-product-main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 64px; }
.seo-breadcrumb { margin-bottom: 18px; display: flex; gap: 8px; color: #68748a; font-size: 11px; }
.seo-breadcrumb a { color: #07145f; text-decoration: none; }
.seo-product-hero { padding: 28px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 40px; background: #fff; border: 1px solid #dfe5ee; border-radius: 22px; }
.seo-product-media { min-height: 430px; position: relative; display: grid; place-items: center; background: #f5f7fb; border-radius: 16px; }
.seo-product-media img { width: 100%; height: 100%; max-height: 410px; padding: 28px; object-fit: contain; }
.seo-stock { position: absolute; z-index: 1; top: 16px; left: 16px; padding: 8px 11px; color: #8a5400; background: #fff4dd; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.seo-stock.available { color: #08783f; background: #e9f9f0; }
.seo-product-copy { align-self: center; }
.seo-product-brand { color: #009245; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.seo-product-copy h1 { margin: 10px 0 16px; font-size: clamp(34px, 5vw, 58px); line-height: 1.02; letter-spacing: -.045em; }
.seo-product-copy > p { color: #5f6c86; font-size: 15px; line-height: 1.7; }
.seo-product-copy dl { margin: 24px 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid #dfe5ee; border-radius: 12px; overflow: hidden; }
.seo-product-copy dl div { padding: 13px; }
.seo-product-copy dt { color: #8792a6; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.seo-product-copy dd { margin: 5px 0 0; font-size: 12px; font-weight: 700; }
.seo-whatsapp { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: #009245; border-radius: 11px; font-size: 13px; font-weight: 900; text-decoration: none; }
.seo-product-specs { margin-top: 20px; padding: 28px; background: #fff; border: 1px solid #dfe5ee; border-radius: 22px; }
.seo-product-specs > span { color: #009245; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.seo-product-specs h2 { margin: 6px 0 20px; font-size: 25px; }
.seo-product-specs > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #dfe5ee; }
.seo-product-specs dl { margin: 0; padding: 14px 10px; border-bottom: 1px solid #dfe5ee; }
.seo-product-specs dt { margin-bottom: 6px; font-size: 11px; font-weight: 800; }
.seo-product-specs dd { margin: 0; color: #5f6c86; font-size: 12px; line-height: 1.55; overflow-wrap: anywhere; }
.seo-product-footer { padding: 24px max(24px, calc((100% - 1180px) / 2)); display: flex; justify-content: space-between; color: #fff; background: #07145f; font-size: 11px; }
.seo-product-footer a { color: #fff; text-decoration: none; }
@media (max-width: 760px) {
  .seo-product-header nav { display: none; }
  .seo-product-hero { padding: 16px; grid-template-columns: 1fr; gap: 24px; }
  .seo-product-media { min-height: 300px; }
  .seo-product-copy h1 { font-size: 34px; }
  .seo-product-copy dl, .seo-product-specs > div { grid-template-columns: 1fr; }
  .seo-whatsapp { width: 100%; }
}

.account-page .account-submit-btn {
  min-height: 49px !important;
  margin-top: 2px !important;
  color: #07145f !important;
  background: #25d366 !important;
  border: 0 !important;
  border-radius: 10px !important;
  font: inherit !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

.account-page .account-form-switch {
  margin: 0 !important;
  color: #68748a !important;
  font-size: 11px !important;
  text-align: center !important;
}

.account-page .account-form-switch button {
  padding: 0 !important;
  color: #07145f !important;
  background: transparent !important;
  border: 0 !important;
  font: inherit !important;
  font-weight: 850 !important;
  cursor: pointer !important;
}

.account-page .account-auth-modal .account-message {
  min-height: 17px !important;
  margin: 12px 0 0 !important;
  color: #b42318 !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
}

.account-page .account-privacy-note {
  margin: 4px 0 0 !important;
  color: #8792a6 !important;
  font-size: 9px !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.account-page.account-signed-in .account-login-stage {
  place-items: start center !important;
  background: #f6f8fc !important;
}

.account-page.account-signed-in .account-login-backdrop {
  display: none !important;
}

.account-page .account-login-stage > .account-dashboard {
  position: relative !important;
  z-index: 1 !important;
  width: min(1180px, 100%) !important;
  margin: 0 auto !important;
  padding-top: 18px !important;
}

@media (max-width: 600px) {
  .account-page .account-login-stage {
    min-height: calc(100vh - 58px) !important;
    padding: 82px 14px 30px !important;
  }

  .account-page .account-auth-modal {
    padding: 23px 18px !important;
    border-radius: 18px !important;
  }

  .account-page .account-modal-heading {
    padding-top: 20px !important;
  }

  .account-page .account-modal-heading h1 {
    font-size: 27px !important;
  }
}

/* Catálogo: fotografías protagonistas y legibles dentro de cada tarjeta. */
@media (min-width: 641px) {
  .catalog-page .product-card {
    min-height: 405px !important;
    aspect-ratio: auto !important;
  }

  .catalog-page .product-image-wrapper {
    height: 178px !important;
    margin-bottom: 12px !important;
    padding: 22px 12px 10px !important;
  }

  .catalog-page .product-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: scale(1.38) !important;
    transform-origin: center center !important;
  }

  .catalog-page .product-card:hover .product-image-wrapper img {
    transform: scale(1.44) !important;
  }
}

@media (max-width: 640px) {
  .catalog-page .product-card {
    min-height: 320px !important;
  }

  .catalog-page .product-image-wrapper {
    flex-basis: 122px !important;
    height: 122px !important;
    padding: 20px 5px 7px !important;
  }

  .catalog-page .product-image-wrapper img {
    transform: scale(1.28) !important;
    transform-origin: center center !important;
  }
}

/* ==========================================================================
   Mobile Brand Inspo Strip (Tira / Barra de Marca)
   Fondo verde Riegohidra, letras azul marino corporativo
   ========================================================================== */
.mobile-brand-inspo-strip {
  display: none;
}

@media (max-width: 768px) {
  .home-page .mobile-brand-inspo-strip {
    display: block !important;
    width: 100% !important;
    background: #25d366 !important;
    color: #030852 !important;
    padding: 10px 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .home-page .mobile-brand-inspo-strip .inspo-strip-marquee {
    display: flex !important;
    width: max-content !important;
    animation: inspoMarqueeScroll 20s linear infinite !important;
  }

  .home-page .mobile-brand-inspo-strip .inspo-strip-track {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    padding-right: 18px !important;
  }

  .home-page .mobile-brand-inspo-strip .inspo-strip-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    color: #030852 !important;
  }

  .home-page .mobile-brand-inspo-strip .inspo-strip-item svg {
    stroke: #030852 !important;
    flex-shrink: 0 !important;
  }

  .home-page .mobile-brand-inspo-strip .inspo-strip-dot {
    color: rgba(3, 8, 82, 0.45) !important;
    font-weight: 900 !important;
    font-size: 12px !important;
  }
}

@keyframes inspoMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

