:root {
      --bg-primary: #040810;
      --bg-secondary: #080e1c;
      --bg-card: rgba(8, 18, 38, 0.75);
      --neon-cyan: #00d4ff;
      --neon-blue: #0077ff;
      --neon-dark: #0a2e5c;
      --neon-glow: rgba(0, 212, 255, 0.25);
      --text-primary: #ffffff;
      --text-muted: rgba(255,255,255,0.65);
      --border-subtle: rgba(0, 212, 255, 0.12);
      --whatsapp-green: #25d366;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      overflow-x: hidden;
    }

    /* ═══════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      height: 50vh;
      min-height: 440px;
      overflow: hidden;
    }
 
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('img/banner.png');
      background-size: cover;
      background-position: center center;
    }
 
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0, 20, 50, 0.78) 0%,
        rgba(0, 20, 50, 0.55) 35%,
        rgba(0, 0, 0, 0.08) 65%,
        rgba(0, 0, 0, 0.0) 100%
      );
    }
 
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to top,
        rgba(4, 8, 16, 1) 0%,
        rgba(4, 8, 16, 0.6) 15%,
        transparent 45%
      );
    }
 
    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      padding: 24px 36px;
      background: transparent;
      border-bottom: 1px solid rgba(255, 255, 255, 0);
      transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    }
 
    nav.scrolled {
      padding: 16px 36px;
      background: rgba(4, 8, 16, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
 
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      position: relative;
      top: -4px; /* Shifted logo a few pixels upward */
    }

    .logo img {
      height: 60px; /* Increased size for navbar logo */
      width: auto;
      display: block;
      transition: transform 0.25s ease;
    }

    .logo img:hover {
      transform: scale(1.03);
    }

    .logo-text {
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
    }
 
    .nav-links {
      display: flex;
      gap: 0;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
 
    .nav-links a {
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 400;
      letter-spacing: 0.01em;
      padding: 6px 28px;
      border-right: 1px solid rgba(255,255,255,0.25);
      transition: color 0.2s;
    }
    .nav-links a:first-child { border-left: 1px solid rgba(255,255,255,0.25); }
    .nav-links a:hover { color: var(--neon-cyan); }
 
    .btn-contact {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--neon-dark);
      color: #fff;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 10px 22px;
      border-radius: 30px;
      white-space: nowrap;
      transition: background 0.25s, box-shadow 0.25s;
    }
    .btn-contact:hover {
      background: #143f78;
      box-shadow: 0 0 20px var(--neon-glow);
    }
    .btn-contact .arrow {
      font-size: 13px;
      transform: rotate(-45deg);
      display: inline-block;
    }
 
    /* ── HERO CONTENT ── */
    .hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 36px 24px;
      z-index: 5;
    }
 
    .hero-headline {
      font-size: clamp(38px, 5vw, 62px);
      font-weight: 300;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -0.01em;
      position: absolute;
      top: 75px;
      left: 36px;
      z-index: 5;
      text-shadow: 0 2px 30px rgba(0,0,0,0.2);
    }

    .hero-body-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      width: 100%;
      gap: 24px;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      gap: 22px;
      max-width: 320px;
    }

    .hero-desc {
      color: rgba(255,255,255,0.85);
      font-size: 12.5px;
      line-height: 1.65;
      font-weight: 400;
    }

    .btn-about {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(10,46,92,0.88);
      color: #fff;
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 11px 22px;
      border-radius: 30px;
      width: fit-content;
      transition: background 0.25s, box-shadow 0.25s;
    }
    .btn-about:hover {
      background: rgba(10,46,92,1);
      box-shadow: 0 0 18px var(--neon-glow);
    }
    .btn-about .arrow {
      font-size: 11px;
      transform: rotate(-45deg);
      display: inline-block;
    }

    .hero-right {
      display: flex;
      align-items: flex-end;
      gap: 20px;
      flex-shrink: 0;
    }

    .feature-card {
      background: rgba(0,20,50,0.50);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 10px;
      overflow: hidden;
      width: 280px;
      display: flex;
      flex-direction: column;
    }

    .feature-card-img {
      width: 100%;
      height: 84px;
      object-fit: cover;
      display: block;
    }

    .feature-card-body {
      padding: 14px 16px 16px;
    }

    .feature-card-title {
      color: #fff;
      font-size: 13.5px;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .feature-card-text {
      color: rgba(255,255,255,0.72);
      font-size: 11.5px;
      line-height: 1.6;
    }

    .stat-block {
      background: rgba(0,20,50,0.45);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 10px;
      padding: 16px 20px;
      min-width: 160px;
    }

    .stat-avatars {
      display: flex;
      margin-bottom: 10px;
    }

    .stat-avatars img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.3);
      object-fit: cover;
      margin-left: -8px;
    }
    .stat-avatars img:first-child { margin-left: 0; }

    .stat-number {
      color: #fff;
      font-size: 22px;
      font-weight: 600;
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-label {
      color: rgba(255,255,255,0.68);
      font-size: 11px;
      line-height: 1.4;
    }

    /* ═══════════════════════════════════════
       SECTION COMMON
    ═══════════════════════════════════════ */
    .section {
      padding: 100px 36px;
      position: relative;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--neon-cyan);
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--neon-cyan);
      border-radius: 2px;
    }

       /* ═══════════════════════════════════════
       ABOUT SECTION (Reference 1 Style - Light Theme)
     ═══════════════════════════════════════ */
    .about-section {
      background: #ffffff;
      color: #111111;
      position: relative;
      overflow: hidden;
      border-top: 1px solid #e5e7eb;
      padding: 80px 24px;
    }
    
    /* Vertical grid lines (Reference 1 style) */
    .about-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, 
        transparent 25%, rgba(0, 0, 0, 0.02) 25%, 
        rgba(0, 0, 0, 0.02) calc(25% + 1px), transparent calc(25% + 1px),
        transparent 50%, rgba(0, 0, 0, 0.02) 50%, 
        rgba(0, 0, 0, 0.02) calc(50% + 1px), transparent calc(50% + 1px),
        transparent 75%, rgba(0, 0, 0, 0.02) 75%, 
        rgba(0, 0, 0, 0.02) calc(75% + 1px), transparent calc(75% + 1px)
      );
      pointer-events: none;
    }

    .about-container {
      max-width: 1120px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .about-intro {
      text-align: center;
      padding-bottom: 40px;
    }

    .about-section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0066ff; /* Clinical blue label */
      margin-bottom: 16px;
    }

    .about-headline {
      font-size: clamp(20px, 3vw, 32px);
      font-weight: 300;
      line-height: 1.4;
      max-width: 880px;
      margin: 0 auto 28px;
      color: #111111;
      letter-spacing: -0.01em;
    }

    .about-headline strong {
      font-weight: 700;
      color: #000000;
    }

    /* Reference 1 dark pill button */
    .btn-about-us {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #0b1325;
      color: #ffffff;
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 30px;
      transition: all 0.25s ease;
    }

    .btn-about-us:hover {
      background: #0066ff;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    }

    .about-divider {
      height: 1px;
      background: #e5e7eb;
      margin: 36px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: start;
    }

    .about-left {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .about-left .about-section-label {
      margin-bottom: 4px;
      text-align: left;
    }

    .about-left h3 {
      font-size: clamp(22px, 3vw, 28px);
      font-weight: 700;
      line-height: 1.25;
      color: #111111;
      letter-spacing: -0.02em;
    }

    .about-right p {
      font-size: 14.5px;
      line-height: 1.7;
      color: #4b5563;
      margin-bottom: 16px;
    }

    .about-right p:last-child {
      margin-bottom: 0;
    }

    /* ═══════════════════════════════════════
       PRODUCTS SECTION (Reference 2 Style - Soft Light Background)
     ═══════════════════════════════════════ */
    .products-section {
      background: #fafbfe; /* Light blue/cream background */
      position: relative;
      overflow: hidden;
      border-top: 1px solid #eef2f9;
      padding: 80px 24px;
    }

    .products-section .section-label {
      color: #888;
      margin-bottom: 16px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .products-section .section-label::before {
      display: none; /* Centered, clean look */
    }

    .products-section h2 {
      color: #111111;
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      text-align: center;
      margin-bottom: 12px;
      font-size: clamp(28px, 4vw, 40px);
      letter-spacing: -0.02em;
    }

    .products-section h2 strong {
      font-weight: 700;
      color: #000000;
    }

    .products-section .section-subtitle {
      color: #64748b;
      text-align: center;
      margin: 0 auto 36px;
      max-width: 600px;
      font-size: 14px;
      line-height: 1.6;
    }

    /* category filter tabs (Reference 2 style) */
    .filter-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .filter-btn {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      color: #475569;
      padding: 8px 20px;
      font-size: 12.5px;
      font-weight: 500;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .filter-btn:hover {
      background: #f8fafc;
      color: #0f172a;
      border-color: #cbd5e1;
    }

    .filter-btn.active {
      background: #f0f5ff; /* Light blue tint */
      border-color: #0066ff; /* Clinical blue */
      color: #0066ff;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
    }

    /* Slider Structure */
    .product-slider-container {
      max-width: 1120px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
      padding: 16px 8px;
    }

    .product-slider-track {
      display: flex;
      gap: 20px;
      transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
    }

    /* Rectangular product cards */
    .product-card {
      background: #ffffff;
      border: 1px solid #f1ecec;
      border-radius: 20px; /* Larger rounded corners */
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 250px; /* Larger width of the card */
      flex-shrink: 0;
      box-shadow: 0 6px 20px rgba(0,0,0,0.015);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.4s ease;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(0, 102, 255, 0.08);
      border-color: #d0e1ff; /* Light blue border */
    }

    .product-card.filtered-out {
      display: none !important;
    }

    /* Rectangular container for product images with fade effect support */
    .product-image-container {
      width: 100%;
      height: 180px; /* Larger height for the product photos */
      border-radius: 14px; /* Proportional border radius */
      overflow: hidden;
      position: relative;
      background: #faf6f6;
      border: 1px solid #f1ecec;
      box-shadow: 0 4px 12px rgba(0,0,0,0.015);
      margin-bottom: 16px;
      flex-shrink: 0;
    }

    .product-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease, opacity 0.4s ease;
      opacity: 1;
    }

    .product-card-img.fade-out {
      opacity: 0;
    }

    .product-card:hover .product-card-img {
      transform: scale(1.06);
    }

    .product-card-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .product-card-name {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #0f172a;
      line-height: 1.3;
    }

    .product-card-desc {
      color: #64748b;
      font-size: 12px;
      line-height: 1.5;
      margin: 0;
      max-width: 164px;
    }

    /* Slider pagination dots & lines matching screenshot */
    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 36px;
      user-select: none;
    }

    .slider-btn {
      background: transparent;
      border: none;
      font-size: 12px;
      font-weight: 700;
      color: #0f172a;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      cursor: pointer;
      padding: 6px 12px;
      transition: color 0.2s ease;
    }

    .slider-btn:hover {
      color: #0066ff;
    }

    .slider-btn:disabled {
      color: #cbd5e1;
      cursor: not-allowed;
    }

    .slider-line-dots {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .slider-line {
      width: 48px;
      height: 1px;
      background: #cbd5e1;
    }

    .slider-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .slider-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #cbd5e1;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .slider-dot.active {
      background: #0066ff;
      transform: scale(1.4);
    }

    /* ── Cotización Banner ── */
    .quote-banner {
      max-width: 900px;
      margin: 56px auto 0;
      padding: 24px 36px;
      background: #ffffff;
      border: 1px solid #f1ecec;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    }

    .quote-banner-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #faf6f6;
      border: 1px solid #f1ecec;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .quote-banner-text {
      flex-grow: 1;
    }

    .quote-banner-text h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
      color: #0f172a;
    }

    .quote-banner-text p {
      color: #64748b;
      font-size: 13px;
    }

    .btn-neon {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #0b1325;
      color: #ffffff;
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 30px;
      white-space: nowrap;
      transition: all 0.25s ease;
      border: none;
      cursor: pointer;
    }

    .btn-neon:hover {
      background: #0066ff;
      box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
      transform: translateY(-2px);
    }

    /* Premium arrow SVG rules */
    .arrow-svg {
      width: 13px;
      height: 13px;
      display: inline-block;
      vertical-align: middle;
      margin-left: 6px;
      stroke-width: 2.5;
      transition: transform 0.25s ease;
    }

    button:hover .arrow-svg, 
    a:hover .arrow-svg {
      transform: translate(2px, -2px);
    }

    /* ═══════════════════════════════════════
       B2B DISTRIBUTION SECTION (Premium Full Width Split Card)
     ═══════════════════════════════════════ */
    .distribution-section {
      background: #ffffff;
      padding: 60px 24px;
      border-top: 1px solid #f1f5f9;
      position: relative;
    }

    .b2b-card-premium {
      width: 100%;
      max-width: 1120px;
      height: 240px; /* Fixed height on desktop to make it very compact */
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid #eef2f6;
      border-radius: 24px;
      display: grid;
      grid-template-columns: 1.25fr 1px 1.15fr 1.6fr;
      align-items: stretch;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 102, 255, 0.02);
      position: relative;
    }

    /* Left Column */
    .b2b-left-col {
      padding: 16px 36px; /* Highly compact padding */
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    /* Dot grid pattern */
    .b2b-dot-pattern {
      position: absolute;
      width: 72px;
      height: 72px;
      top: 12px;
      left: 20px;
      background-image: radial-gradient(rgba(0, 102, 255, 0.12) 1.5px, transparent 1.5px);
      background-size: 8px 8px;
      z-index: 1;
      pointer-events: none;
    }

    .b2b-brand-badge-container {
      display: flex;
      flex-direction: row; /* Badge and text inline horizontally */
      align-items: flex-start;
      gap: 14px;
      position: relative;
      z-index: 2;
      margin-bottom: 12px;
    }

    .b2b-icon-badge {
      width: 44px; /* More compact badge */
      height: 44px;
      border-radius: 50%;
      border: 1px solid #eef2f6;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
      flex-shrink: 0;
    }

    .b2b-icon-badge i {
      font-size: 18px;
      color: #0066ff;
    }

    .b2b-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: #0066ff;
      text-transform: uppercase;
      margin-bottom: 2px;
      display: block;
    }

    .b2b-title {
      font-size: 19px; /* Very compact title sizing */
      font-weight: 800;
      line-height: 1.2;
      color: #0f172a;
      letter-spacing: -0.02em;
    }

    .b2b-title span {
      color: #0066ff;
    }

    .b2b-line {
      width: 32px;
      height: 2px;
      background: #0066ff;
      margin-top: 8px;
      border-radius: 2px;
    }

    .b2b-bullets {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
      position: relative;
      z-index: 2;
    }

    .b2b-bullets li {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .b2b-bullets li i {
      color: #0066ff;
      font-size: 15px;
      flex-shrink: 0;
    }

    .b2b-bullets li span {
      font-size: 12px;
      color: #475569;
      font-weight: 500;
    }

    /* Vertical Divider */
    .b2b-vertical-divider {
      background: #eef2f6;
      align-self: center;
      height: 65%;
    }

    /* Middle Column */
    .b2b-middle-col {
      padding: 16px 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 12px;
    }

    .b2b-middle-col p {
      font-size: 13px;
      line-height: 1.5;
      color: #475569;
      margin: 0;
    }

    .btn-b2b-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: #0b1325;
      color: #ffffff;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 30px;
      width: fit-content;
      transition: all 0.25s ease;
      margin-top: 2px;
    }

    .btn-b2b-cta:hover {
      background: #0066ff;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    }

    .btn-b2b-cta i {
      font-size: 12px;
    }

    /* Right Column (Image + Mask) */
    .b2b-right-col {
      position: relative;
      overflow: hidden;
      display: flex;
    }

    /* Concave curve divider overlay */
    .b2b-right-col::before {
      content: '';
      position: absolute;
      top: -10%;
      left: -50px; /* Reduced to match the 240px height */
      width: 100px;
      height: 120%;
      background: #ffffff;
      border-radius: 50%;
      z-index: 2;
    }

    .b2b-banner-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Translucent Overlay Box */
    .b2b-overlay-card {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 12px;
      padding: 8px 14px;
      display: flex;
      gap: 12px;
      z-index: 3;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    }

    .b2b-overlay-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      text-align: center;
    }

    .b2b-overlay-item i {
      font-size: 18px;
      color: #0066ff;
    }

    .b2b-overlay-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .b2b-overlay-text span {
      font-size: 8.5px;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: 0.02em;
    }

    @media (max-width: 1024px) {
      .b2b-card-premium {
        grid-template-columns: 1fr;
        border-radius: 20px;
        height: auto; /* Fallback to auto stack on mobile */
      }

      .b2b-vertical-divider {
        display: none;
      }

      .b2b-left-col, .b2b-middle-col {
        padding: 24px 20px;
      }

      .b2b-middle-col {
        padding-top: 0;
      }

      .b2b-right-col {
        height: 240px;
      }

      .b2b-right-col::before {
        top: -50px;
        left: -10%;
        width: 120%;
        height: 100px;
      }

      .b2b-overlay-card {
        bottom: 12px;
        right: 12px;
        left: 12px;
        justify-content: space-around;
        padding: 8px;
      }
    }

    /* ═══════════════════════════════════════
       MAP / LOCATION SECTION (Light Theme)
     ═══════════════════════════════════════ */
    .location-section {
      background: #ffffff;
      position: relative;
      overflow: hidden;
      border-top: 1px solid #f1f5f9;
      padding: 120px 24px;
    }

    .location-section .section-label {
      color: #888;
      margin-bottom: 16px;
    }

    .location-section .section-label::before {
      background: #888;
    }

    .location-section h2 {
      color: #111111;
      font-size: clamp(28px, 4vw, 40px);
      letter-spacing: -0.02em;
    }

    .location-section .section-subtitle {
      color: #4b5563;
      margin-bottom: 40px;
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      align-items: start;
    }

    .location-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .location-detail {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .location-detail-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 10px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .location-detail-icon svg {
      width: 18px;
      height: 18px;
      stroke: #0f172a;
      fill: none;
    }

    .location-detail-text h4 {
      font-size: 13.5px;
      font-weight: 600;
      margin-bottom: 2px;
      color: #0f172a;
    }

    .location-detail-text p {
      color: #475569;
      font-size: 12.5px;
      line-height: 1.5;
    }

    .location-detail-text a {
      color: #0066ff;
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 500;
    }
    .location-detail-text a:hover {
      color: #0052cc;
    }

    .map-container {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
      height: 380px;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: none;
    }

    /* ═══════════════════════════════════════
       FOOTER (Reference 3 Style - Navy Background)
     ═══════════════════════════════════════ */
    footer {
      background: #0b1325; /* Dark navy background matching Reference 3 */
      padding: 72px 24px 28px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-container {
      max-width: 1120px;
      margin: 0 auto;
      position: relative;
      z-index: 3;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-left {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 480px;
    }

    .footer-tagline {
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 300;
      line-height: 1.3;
      color: #ffffff;
      letter-spacing: -0.01em;
    }

    .footer-tagline strong {
      font-weight: 700;
      color: #38bdf8; /* Teal color highlighted from Reference 3 */
    }

    .footer-socials {
      display: flex;
      gap: 12px;
    }

    .footer-social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
    }

    .footer-social-link:hover {
      background: #38bdf8;
      color: #0b1325;
      box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
      transform: translateY(-3px);
      border-color: #38bdf8;
    }

    .footer-social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-links-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .footer-column h4 {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #38bdf8;
      margin-bottom: 16px;
    }

    .footer-column ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-column a {
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      font-size: 12.5px;
      transition: color 0.2s ease;
    }

    .footer-column a:hover {
      color: #ffffff;
    }

    /* Brand Watermark */
    .footer-watermark {
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: clamp(50px, 12vw, 160px);
      font-weight: 900;
      color: rgba(255, 255, 255, 0.015);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      white-space: nowrap;
      user-select: none;
      pointer-events: none;
      z-index: 1;
      font-family: 'Inter', sans-serif;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 3;
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
    }

    .footer-legal-links {
      display: flex;
      gap: 24px;
    }

    .footer-legal-links a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-legal-links a:hover {
      color: rgba(255, 255, 255, 0.85);
    }

    /* ═══════════════════════════════════════
       WHATSAPP FLOATING BUTTON
     ═══════════════════════════════════════ */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--whatsapp-green);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: whatsappPulse 2.5s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
      animation: none;
    }

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }

    .whatsapp-float::after {
      content: '¡Escríbenos!';
      position: absolute;
      right: 64px;
      background: #fff;
      color: #333;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 6px;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateX(8px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }

    .whatsapp-float:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    /* ═══════════════════════════════════════
       ANIMATIONS
     ═══════════════════════════════════════ */
    @keyframes whatsappPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
      50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.45), 0 0 0 10px rgba(37, 211, 102, 0.06); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .location-grid {
        grid-template-columns: 1fr;
      }
      .hero-right { display: none; }
      .nav-links { display: none; }
      nav { padding: 18px 24px; }
      .hero-headline { left: 24px; top: 85px; }
      .hero-content { padding: 0 24px 40px; }
      .section { padding: 72px 24px; }
    }

    @media (max-width: 640px) {
      .products-grid {
        grid-template-columns: 1fr;
      }
      .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .hero-headline {
        font-size: 40px;
      }
      .quote-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
      .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
      }
    }

    /* ═══════════════════════════════════════
       TRUST BAR SECTION
     ═══════════════════════════════════════ */
    .trust-bar {
      background: #080e1c;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 8px 24px; /* Even thinner trust bar */
      position: relative;
      z-index: 10;
    }

    .trust-container {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .trust-icon {
      width: 20px;
      height: 20px;
      stroke: var(--neon-cyan);
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
    }

    .trust-text h4 {
      font-size: 13px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 2px;
    }

    .trust-text p {
      font-size: 11.5px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.3;
    }

    /* ═══════════════════════════════════════
       INDICATIONS SECTION (Indicado Para)
     ═══════════════════════════════════════ */
    .indications-section {
      background: #ffffff;
      padding: 80px 24px;
      border-top: 1px solid #f1f5f9;
      position: relative;
      overflow: hidden; /* Avoids horizontal scroll from background blobs */
    }

    .indications-container {
      max-width: 1120px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .indications-bg-blob-left {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: #e6f1ff; /* Solid filled pastel blue */
      left: -250px;
      top: 12%;
      pointer-events: none;
      z-index: 1;
    }

    .indications-bg-blob-right {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: #e6f1ff; /* Solid filled pastel blue */
      right: -250px;
      bottom: 12%;
      pointer-events: none;
      z-index: 1;
    }

    .indications-label-center {
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #0066ff;
      margin-bottom: 12px;
    }

    .indications-title-center {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 800;
      line-height: 1.2;
      text-align: center;
      color: #0f172a;
      margin-bottom: 48px;
      font-family: 'Inter', sans-serif;
      letter-spacing: -0.02em;
    }

    .indications-title-center span {
      color: #0066ff;
      display: block;
      margin-top: 4px;
    }

    .indications-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .indication-card {
      background: #ffffff;
      border: 1px solid #eef2f6;
      border-radius: 20px;
      padding: 24px 30px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .indication-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 102, 255, 0.05);
      border-color: #d0e1ff;
    }

    .indication-icon-badge {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid #d0e1ff;
      background: #f0f5ff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .indication-icon-badge i, .indication-icon-badge svg {
      font-size: 26px;
      color: #0066ff;
      width: 26px;
      height: 26px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .indication-text-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .indication-text-content h3 {
      font-size: 13.5px;
      font-weight: 700;
      color: #0066ff;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-align: left;
    }

    .indication-text-content p {
      font-size: 13px;
      color: #475569;
      line-height: 1.5;
      margin: 0;
      text-align: left;
    }

    @media (max-width: 1024px) {
      .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .indications-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .indication-card {
        padding: 20px 24px;
        gap: 16px;
      }
      .indication-icon-badge {
        width: 48px;
        height: 48px;
      }
      .indication-icon-badge i {
        font-size: 22px;
      }
    }

    @media (max-width: 640px) {
      .trust-container {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .trust-bar {
        padding: 12px 20px;
      }
    }