/* 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;
}

/* 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;
  }
}

@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: #eef6ff;
}

.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: #7fc1ff;
}

.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;
  }
}

@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%;
  }
}

/* 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: #eef6ff;
}

.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: #eaf4ff;
}

.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: #eef6ff;
}

.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, #eef6ff 0%, #f8fbff 55%, #eaf3ff 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;
  }
}



/* ==========================================================================
   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 */
  }
}

/* WhatsApp Mobile Help Banner */
.mobile-help-banner-container {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-help-banner-container {
    display: block !important;
    width: 100% !important;
    padding: 0 16px !important;
    margin: 28px 0 16px 0 !important;
  }
  
  .mobile-help-banner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #030852 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(3, 8, 82, 0.1) !important;
    transition: all 0.2s ease !important;
  }
  
  .mobile-help-banner:hover {
    transform: translateY(-1px) !important;
  }
  
  .help-banner-left {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }
  
  .help-banner-wa-circle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(37, 211, 102, 0.15) !important;
    color: #25d366 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .help-banner-wa-circle svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  .help-banner-left strong {
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 2px !important;
  }
  
  .help-banner-left p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 12px !important;
    margin: 0 !important;
  }
  
  .help-banner-arrow {
    width: 18px !important;
    height: 18px !important;
    color: #ffffff !important;
  }
}


/* =====================================================================
   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;
  }
}
