/** Shopify CDN: Minification failed

Line 61:0 All "@import" rules must come first

**/
/* ============================================================
   VENTION B2B LANDING — Design System
   Mobile-first | Dark Technology Palette | Neurosales CRO
   ============================================================ */

/* ─── CSS Custom Properties ─── */
:root {
  /* B2B Brand Colors — Alta confianza, tecnológico */
  --b2b-navy:          #0D1B3E;   /* Azul marino profundo */
  --b2b-navy-mid:      #152347;
  --b2b-navy-light:    #1E3263;
  --b2b-blue:          #1A56DB;   /* Azul acción */
  --b2b-blue-hover:    #1447c0;
  --b2b-cyan:          #0EA5E9;   /* Acento tecnológico */
  --b2b-cyan-glow:     rgba(14, 165, 233, 0.35);
  --b2b-emerald:       #10B981;   /* Confianza / éxito */
  --b2b-amber:         #F59E0B;   /* Urgencia / destacado */
  --b2b-red:           #EF4444;   /* Peligro / sold out */

  /* Neutrals */
  --b2b-white:         #FFFFFF;
  --b2b-gray-50:       #F9FAFB;
  --b2b-gray-100:      #F3F4F6;
  --b2b-gray-200:      #E5E7EB;
  --b2b-gray-400:      #9CA3AF;
  --b2b-gray-600:      #4B5563;
  --b2b-gray-800:      #1F2937;
  --b2b-gray-900:      #111827;

  /* Typography */
  --b2b-font-sans: var(--font-body-family), sans-serif;

  /* Shadows */
  --b2b-shadow-sm:     0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --b2b-shadow-md:     0 4px 16px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.12);
  --b2b-shadow-lg:     0 10px 40px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
  --b2b-shadow-glow:   0 0 30px rgba(26, 86, 219, 0.4), 0 4px 20px rgba(0,0,0,0.3);
  --b2b-shadow-glow-cyan: 0 0 20px rgba(14, 165, 233, 0.5);

  /* Borders */
  --b2b-radius-sm:     6px;
  --b2b-radius-md:     12px;
  --b2b-radius-lg:     20px;
  --b2b-radius-xl:     28px;
  --b2b-radius-full:   999px;

  /* Transitions */
  --b2b-transition:    all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --b2b-transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --b2b-section-gap:   80px;
}

/* ─── Google Font Import ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── Global Reset for B2B elements ─── */
.b2b-hero,
.b2b-benefits,
.b2b-products,
.b2b-form-section {
  font-family: var(--b2b-font-sans);
  box-sizing: border-box;
}

.b2b-hero *,
.b2b-benefits *,
.b2b-products *,
.b2b-form-section * {
  box-sizing: border-box;
}

/* ─── Utility Classes ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   SECTION HEADER (Shared)
   ============================================================ */
.b2b-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.b2b-section-header__title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--b2b-gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.b2b-section-header__subtitle {
  font-size: 1.05rem;
  color: var(--b2b-gray-600);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}


/* ============================================================
   BADGES
   ============================================================ */
.b2b-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--b2b-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.b2b-badge--primary {
  background: linear-gradient(135deg, var(--b2b-blue), var(--b2b-cyan));
  color: var(--b2b-white);
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
}

.b2b-badge--outline {
  background: transparent;
  border: 1.5px solid var(--b2b-blue);
  color: var(--b2b-blue);
}

.b2b-badge--accent {
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid var(--b2b-amber);
  color: #92400E;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.b2b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--b2b-radius-md);
  font-family: var(--b2b-font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--b2b-transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.b2b-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.b2b-btn:hover::before { opacity: 1; }

.b2b-btn--primary {
  background: linear-gradient(135deg, var(--b2b-blue), #2563EB);
  color: var(--b2b-white);
  box-shadow: var(--b2b-shadow-md);
}

.b2b-btn--primary:hover {
  background: linear-gradient(135deg, var(--b2b-blue-hover), #1D4ED8);
  transform: translateY(-2px);
  box-shadow: var(--b2b-shadow-glow);
}

.b2b-btn--primary:active {
  transform: translateY(0);
}

.b2b-btn--glow {
  animation: btnPulse 3s infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.4), var(--b2b-shadow-md); }
  50%       { box-shadow: 0 0 0 8px rgba(26, 86, 219, 0), var(--b2b-shadow-md); }
}

.b2b-btn--ghost {
  background: transparent;
  color: var(--b2b-blue);
  border-color: var(--b2b-blue);
}

.b2b-btn--ghost:hover {
  background: var(--b2b-blue);
  color: var(--b2b-white);
  transform: translateY(-2px);
}

.b2b-btn--outline {
  background: transparent;
  color: var(--b2b-gray-800);
  border-color: var(--b2b-gray-200);
}

.b2b-btn--outline:hover {
  border-color: var(--b2b-blue);
  color: var(--b2b-blue);
}

.b2b-btn--full  { width: 100%; }
.b2b-btn--small { padding: 10px 18px; font-size: 0.85rem; border-radius: var(--b2b-radius-sm); }

.b2b-btn__arrow {
  transition: transform 0.2s;
}
.b2b-btn:hover .b2b-btn__arrow {
  transform: translateX(4px);
}


/* ============================================================
   B2B HERO SECTION
   ============================================================ */
.b2b-hero {
  position: relative;
  background: var(--b2b-navy);
  color: var(--b2b-white);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
}
@media screen and (max-width: 749px) {
  .b2b-hero {
    min-height: auto;
  }
}

/* Animated background */
.b2b-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.b2b-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.b2b-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.b2b-hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1A56DB, transparent 70%);
  top: -200px;
  left: -150px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.b2b-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--b2b-cyan), transparent 70%);
  top: 100px;
  right: -100px;
  animation: orbFloat2 10s ease-in-out infinite;
}

.b2b-hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #6366F1, transparent 70%);
  bottom: -100px;
  left: 30%;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, 40px) scale(1.05); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-20px, 30px) scale(0.95); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -20px); }
}

/* Container */
.b2b-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 100px;
  padding-bottom: 80px;
  align-items: center;
  flex: 1;
}

@media screen and (min-width: 900px) {
  .b2b-hero__container {
    grid-template-columns: 1fr 420px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* Eyebrow */
.b2b-hero__eyebrow {
  margin-bottom: 8px;
}

/* Headline */
.b2b-hero__headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--b2b-white);
  margin: 0 0 20px;
}

.b2b-hero__headline-highlight {
  display: inline;
  background: linear-gradient(135deg, var(--b2b-cyan), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.b2b-hero__subheadline {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 28px;
  max-width: 560px;
}

/* Trust Pills */
.b2b-hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.b2b-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--b2b-radius-full);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  transition: var(--b2b-transition);
}

.b2b-trust-pill:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.b2b-trust-pill__icon { font-size: 1rem; }

/* CTAs row */
.b2b-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

/* Urgency */
.b2b-hero__urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.b2b-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--b2b-emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%   { transform: scale(1);   box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70%  { transform: scale(1);   box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Stats Card */
.b2b-stats-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--b2b-radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.b2b-stats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--b2b-blue), var(--b2b-cyan), var(--b2b-blue));
  background-size: 200% auto;
  animation: shimmerLine 3s linear infinite;
}

@keyframes shimmerLine {
  to { background-position: 200% center; }
}

.b2b-stats-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--b2b-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.b2b-stats-card__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.b2b-stat-item__value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--b2b-white);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, var(--b2b-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.b2b-stat-item__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  line-height: 1.4;
}

.b2b-stats-card__disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Scroll Indicator */
.b2b-hero__scroll-indicator {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 32px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.b2b-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.b2b-scroll-mouse__wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}


/* ============================================================
   B2B BENEFITS SECTION
   ============================================================ */
.b2b-benefits {
  background: var(--b2b-white);
}

/* Benefits Grid */
.b2b-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media screen and (min-width: 600px) {
  .b2b-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (min-width: 900px) {
  .b2b-benefits__grid { grid-template-columns: repeat(3, 1fr); }
}

.b2b-benefit-card {
  background: var(--b2b-gray-50);
  border: 1px solid var(--b2b-gray-100);
  border-radius: var(--b2b-radius-lg);
  padding: 28px 24px;
  transition: var(--b2b-transition);
  animation-delay: var(--delay, 0ms);
  position: relative;
  overflow: hidden;
}

.b2b-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--b2b-blue), var(--b2b-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.b2b-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--b2b-shadow-lg);
  border-color: transparent;
}

.b2b-benefit-card:hover::before { transform: scaleX(1); }

.b2b-benefit-card__icon-wrap {
  margin-bottom: 16px;
}

.b2b-benefit-card__icon {
  font-size: 2.4rem;
  line-height: 1;
  display: inline-block;
}

.b2b-benefit-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--b2b-gray-900);
  margin: 0 0 8px;
}

.b2b-benefit-card__desc {
  font-size: 0.88rem;
  color: var(--b2b-gray-600);
  line-height: 1.6;
  margin: 0 0 12px;
}

.b2b-benefit-card__highlight {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.08), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(26, 86, 219, 0.15);
  border-radius: var(--b2b-radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--b2b-blue);
}

/* Comparison Table */
.b2b-comparison {
  margin-top: 64px;
}

.b2b-comparison__title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--b2b-gray-900);
  margin-bottom: 24px;
}

.b2b-comparison__table-wrap {
  overflow-x: auto;
  border-radius: var(--b2b-radius-lg);
  box-shadow: var(--b2b-shadow-md);
}

.b2b-comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 500px;
}

.b2b-comparison__table thead {
  background: var(--b2b-navy);
  color: var(--b2b-white);
}

.b2b-comparison__table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.b2b-comparison__col--wholesale {
  background: rgba(14, 165, 233, 0.12);
  color: var(--b2b-cyan) !important;
}

.b2b-comparison__table tbody tr {
  border-bottom: 1px solid var(--b2b-gray-100);
  transition: background 0.15s;
}

.b2b-comparison__table tbody tr:hover {
  background: var(--b2b-gray-50);
}

.b2b-comparison__table td {
  padding: 14px 20px;
  color: var(--b2b-gray-700, #374151);
}

.b2b-comparison__col--highlighted {
  font-weight: 600;
  color: var(--b2b-blue) !important;
  background: rgba(26, 86, 219, 0.04);
}


/* ============================================================
   B2B PRODUCTS SECTION
   ============================================================ */
.b2b-products {
  background: var(--b2b-gray-50);
}

/* Price Lock Notice */
.b2b-price-lock-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.05), rgba(26, 86, 219, 0.08));
  border: 1px solid rgba(26, 86, 219, 0.2);
  border-radius: var(--b2b-radius-md);
  padding: 14px 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.b2b-price-lock-notice__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.b2b-price-lock-notice__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 200px;
}

.b2b-price-lock-notice__content strong {
  font-size: 0.9rem;
  color: var(--b2b-navy);
  font-weight: 700;
}

.b2b-price-lock-notice__content span {
  font-size: 0.82rem;
  color: var(--b2b-gray-600);
}

/* Products Grid */
.b2b-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media screen and (min-width: 750px) {
  .b2b-products__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media screen and (min-width: 1100px) {
  .b2b-products__grid { grid-template-columns: repeat(4, 1fr); }
}

.b2b-product-card {
  background: var(--b2b-white);
  border-radius: var(--b2b-radius-lg);
  overflow: hidden;
  box-shadow: var(--b2b-shadow-sm);
  border: 1px solid var(--b2b-gray-100);
  transition: var(--b2b-transition);
  animation-delay: var(--delay, 0ms);
}

.b2b-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--b2b-shadow-lg);
  border-color: transparent;
}

.b2b-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--b2b-gray-100);
}

.b2b-product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.b2b-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.b2b-product-card__image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.b2b-product-card:hover .b2b-product-card__image:not(.b2b-product-card__image--hover) {
  transform: scale(1.04);
}

.b2b-product-card:hover .b2b-product-card__image--hover {
  opacity: 1;
  transform: scale(1.04);
}

.b2b-product-card__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--b2b-gray-400);
}

/* Badges */
.b2b-product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.b2b-product-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--b2b-radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.b2b-product-badge--sale     { background: var(--b2b-red);    color: #fff; }
.b2b-product-badge--sold-out { background: var(--b2b-gray-600); color: #fff; }
.b2b-product-badge--wholesale { background: var(--b2b-navy-light); color: var(--b2b-cyan); border: 1px solid rgba(14,165,233,0.4); }

/* Quick Add */
.b2b-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 3;
}

.b2b-product-card:hover .b2b-product-card__quick-add {
  transform: translateY(0);
}

.b2b-quick-add-form { margin: 0; }

/* Product Info */
.b2b-product-card__info {
  padding: 16px;
}

.b2b-product-card__vendor {
  font-size: 0.72rem;
  color: var(--b2b-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.b2b-product-card__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--b2b-gray-900);
  margin: 0 0 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.b2b-product-card__title-link {
  text-decoration: none;
  color: inherit;
}

.b2b-product-card__title-link:hover { color: var(--b2b-blue); }

.b2b-product-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.b2b-product-card__price--compare {
  font-size: 0.78rem;
  color: var(--b2b-gray-400);
  text-decoration: line-through;
}

.b2b-product-card__price--current {
  font-size: 1rem;
  font-weight: 700;
  color: var(--b2b-gray-900);
}

.b2b-product-card__wholesale-teaser {
  font-size: 0.72rem;
  color: var(--b2b-blue);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.b2b-product-card__wholesale-teaser a {
  color: var(--b2b-blue);
  font-weight: 600;
}

.b2b-lock-icon { font-size: 0.8rem; }

/* View All */
.b2b-products__view-all {
  text-align: center;
  margin-top: 40px;
}

.b2b-products__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--b2b-gray-400);
}


/* ============================================================
   B2B LEAD FORM SECTION
   ============================================================ */
.b2b-form-section {
  background: linear-gradient(145deg, var(--b2b-navy), var(--b2b-navy-light));
  color: var(--b2b-white);
  position: relative;
  overflow: hidden;
}

.b2b-form-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.b2b-form-section__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.b2b-form-section__shape--1 {
  width: 500px; height: 500px;
  background: var(--b2b-blue);
  top: -200px; left: -200px;
}

.b2b-form-section__shape--2 {
  width: 400px; height: 400px;
  background: var(--b2b-cyan);
  bottom: -200px; right: -100px;
}

/* Layout */
.b2b-form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 900px) {
  .b2b-form-layout {
    grid-template-columns: 1fr 480px;
    gap: 64px;
    align-items: start;
  }
}

/* Social Proof Column */
.b2b-form-social-proof__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--b2b-white);
  margin: 0 0 12px;
  line-height: 1.2;
}

.b2b-form-social-proof__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0 0 32px;
}

/* Testimonials */
.b2b-testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.b2b-testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--b2b-radius-md);
  padding: 20px;
  backdrop-filter: blur(8px);
}

.b2b-testimonial__stars {
  color: var(--b2b-amber);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.b2b-testimonial__quote {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 14px;
  font-style: italic;
}

.b2b-testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.b2b-testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--b2b-blue), var(--b2b-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.b2b-testimonial__author strong {
  display: block;
  font-size: 0.85rem;
  color: var(--b2b-white);
}

.b2b-testimonial__author span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* Partner Logos */
.b2b-partner-logos__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 12px;
}

.b2b-partner-logos__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.b2b-partner-logo {
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.2s;
}

.b2b-partner-logo:hover { opacity: 0.7; }

.b2b-partner-logo__img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.b2b-partner-logo__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

/* Form Card */
.b2b-form-wrapper {}

.b2b-form-card {
  background: var(--b2b-white);
  border-radius: var(--b2b-radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05);
}

.b2b-form-card__header {
  background: linear-gradient(135deg, var(--b2b-navy), var(--b2b-navy-light));
  padding: 28px 32px 24px;
  text-align: center;
}

.b2b-form-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--b2b-white);
  margin: 0 0 6px;
}

.b2b-form-card__subtitle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Progress Bar */
.b2b-progress-bar {
  padding: 20px 32px 0;
  background: var(--b2b-white);
}

.b2b-progress-bar__track {
  height: 4px;
  background: var(--b2b-gray-100);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.b2b-progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--b2b-blue), var(--b2b-cyan));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2b-progress-bar__steps {
  display: flex;
  justify-content: space-between;
}

.b2b-progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--b2b-gray-400);
  transition: color 0.2s;
}

.b2b-progress-step--active {
  color: var(--b2b-blue);
}

.b2b-progress-step--done {
  color: var(--b2b-emerald);
}

.b2b-progress-step__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--b2b-gray-200);
  color: var(--b2b-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  transition: var(--b2b-transition);
}

.b2b-progress-step--active .b2b-progress-step__dot {
  background: var(--b2b-blue);
  color: white;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.2);
}

.b2b-progress-step--done .b2b-progress-step__dot {
  background: var(--b2b-emerald);
  color: white;
}

/* Multi-step form */
.b2b-multistep-form {
  padding: 0;
  margin: 0;
}

.b2b-form-step {
  display: none;
  padding: 28px 32px 32px;
  animation: stepIn 0.35s ease;
}

.b2b-form-step--active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.b2b-form-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--b2b-gray-900);
  margin: 0 0 4px;
}

.b2b-form-step__hint {
  font-size: 0.8rem;
  color: var(--b2b-gray-400);
  margin: 0 0 20px;
}

/* Form Fields */
.b2b-field {
  position: relative;
  margin-bottom: 16px;
}

.b2b-field__input {
  width: 100%;
  padding: 16px 16px 8px;
  border: 1.5px solid var(--b2b-gray-200);
  border-radius: var(--b2b-radius-md);
  font-family: var(--b2b-font-sans);
  font-size: 0.95rem;
  color: var(--b2b-gray-900);
  background: var(--b2b-white);
  transition: var(--b2b-transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.b2b-field__input:focus {
  border-color: var(--b2b-blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.b2b-field__input:not(:placeholder-shown) + .b2b-field__label,
.b2b-field__input:focus + .b2b-field__label {
  top: 8px;
  font-size: 0.7rem;
  color: var(--b2b-blue);
}

.b2b-field__label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 0.92rem;
  color: var(--b2b-gray-400);
  pointer-events: none;
  transition: var(--b2b-transition);
  background: var(--b2b-white);
  padding: 0 2px;
}

/* Select field fix */
.b2b-field__input--select {
  padding-top: 20px;
  padding-bottom: 8px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.b2b-field__input--select:focus { color: var(--b2b-gray-900); }

.b2b-field__label--select {
  top: 10px;
  transform: none;
  font-size: 0.7rem;
  color: var(--b2b-blue);
}

/* Option Cards (business type) */
.b2b-option-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.b2b-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border: 1.5px solid var(--b2b-gray-200);
  border-radius: var(--b2b-radius-md);
  cursor: pointer;
  transition: var(--b2b-transition);
  text-align: center;
  position: relative;
}

.b2b-option-card:hover {
  border-color: var(--b2b-blue);
  background: rgba(26, 86, 219, 0.03);
}

.b2b-option-card__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.b2b-option-card:has(.b2b-option-card__radio:checked) {
  border-color: var(--b2b-blue);
  background: rgba(26, 86, 219, 0.06);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

/* Fallback for browsers without :has() */
.b2b-option-card--selected {
  border-color: var(--b2b-blue);
  background: rgba(26, 86, 219, 0.06);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.b2b-option-card__icon { font-size: 1.8rem; }

.b2b-option-card__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--b2b-gray-900);
}

.b2b-option-card__desc {
  font-size: 0.72rem;
  color: var(--b2b-gray-400);
}

/* Navigation */
.b2b-form-step__nav {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.b2b-form-step__nav .b2b-btn--primary {
  flex: 1;
}

.b2b-form-step__nav .b2b-btn--ghost {
  flex-shrink: 0;
}

/* Submit button */
#b2bSubmitBtn { width: 100%; margin-top: 4px; }

/* Privacy text */
.b2b-form-privacy {
  font-size: 0.72rem;
  color: var(--b2b-gray-400);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.5;
}

.b2b-form-privacy a {
  color: var(--b2b-blue);
}

/* Spinner */
.b2b-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Trust Badges below form */
.b2b-form-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.b2b-trust-badge {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Success State */
.b2b-form-success {
  padding: 40px 32px;
  text-align: center;
}

.b2b-form-success__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.b2b-form-success__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--b2b-gray-900);
  margin: 0 0 12px;
}

.b2b-form-success__message {
  font-size: 0.95rem;
  color: var(--b2b-gray-600);
  line-height: 1.6;
  margin: 0 0 24px;
}

.b2b-form-success__next-steps {
  text-align: left;
  background: var(--b2b-gray-50);
  border-radius: var(--b2b-radius-md);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--b2b-gray-700, #374151);
}

.b2b-form-success__next-steps ol {
  padding-left: 20px;
  margin: 8px 0 0;
}

.b2b-form-success__next-steps li {
  margin-bottom: 8px;
  line-height: 1.5;
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .scroll-trigger {
    opacity: 0;
    transform: translateY(20px);
  }

  .scroll-trigger.animate--slide-in {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--delay, 0ms);
  }
}

@keyframes slideInUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */
@media screen and (max-width: 599px) {
  .b2b-hero__ctas {
    flex-direction: column;
  }

  .b2b-btn--full,
  .b2b-hero__ctas .b2b-btn {
    width: 100%;
    justify-content: center;
  }

  .b2b-stats-card__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-option-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-form-step {
    padding: 20px 20px 24px;
  }

  .b2b-form-card__header {
    padding: 20px 20px 16px;
  }

  .b2b-progress-bar {
    padding: 16px 20px 0;
  }

  .b2b-form-layout {
    gap: 32px;
  }

  .b2b-comparison__table th,
  .b2b-comparison__table td {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
}


/* ============================================================
   PERFORMANCE — Critical CSS only, rest deferred
   ============================================================ */

/* Lazy-load placeholder */
img[loading="lazy"] {
  will-change: auto;
}

/* Reduce paint operations on scroll */
.b2b-hero__bg,
.b2b-form-section__bg {
  will-change: transform;
  contain: layout style paint;
}

/* GPU compositing solo durante la interaccion, no de forma permanente */
.b2b-benefit-card,
.b2b-product-card {
  backface-visibility: hidden;
}
.b2b-benefit-card:hover,
.b2b-product-card:hover {
  will-change: transform;
}

/* Blur decorativo: costoso en GPUs de gama media (trafico de Meta Ads).
   Se reduce/elimina en mobile para proteger INP y la fluidez de scroll. */
@media screen and (max-width: 749px) {
  .b2b-hero__orb {
    filter: blur(40px);
    opacity: 0.25;
  }
  .b2b-form-section__shape {
    filter: blur(50px) !important;
  }
  .b2b-stats-card,
  .b2b-testimonial {
    backdrop-filter: none !important;
    background: var(--b2b-navy-mid) !important;
  }
}

/* ============================================================
   B2B SOCIAL PROOF
   ============================================================ */
.b2b-social__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .b2b-social__metrics { grid-template-columns: repeat(4, 1fr); }
}
.b2b-social__metric-value {
  display: block;
  font-family: var(--b2b-font-sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--b2b-blue);
}
.b2b-social__metric-label {
  display: block;
  font-size: 0.85rem;
  color: var(--b2b-gray-600);
  margin-top: 4px;
}
.b2b-social__logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 750px) {
  .b2b-social__logo-grid { grid-template-columns: repeat(5, 1fr); }
}
.b2b-social__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.25s ease;
}
.b2b-social__logo:hover { filter: grayscale(0) opacity(1); }
.b2b-social__logo-img { max-width: 100%; height: auto; object-fit: contain; }

/* ============================================================
   B2B STICKY MOBILE CTA BAR
   ============================================================ */
.b2b-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: none;
  gap: 8px;
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: var(--b2b-navy);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.b2b-sticky-cta--visible { transform: translateY(0); }
@media screen and (max-width: 749px) {
  .b2b-sticky-cta { display: flex; }
}
.b2b-sticky-cta .b2b-btn {
  flex: 1;
  padding: 12px 14px;
  font-size: 0.85rem;
  min-height: 44px;
  justify-content: center;
}
