:root {
  --b-black: #000000;
  --b-dark: #0a0a0a;
  --b-dark-2: #111111;
  --b-dark-3: #1a1a1a;
  --b-dark-border: rgba(255, 255, 255, 0.1);

  --b-white: #ffffff;
  --b-cream: #fafafa;
  --b-light: #f5f5f5;
  --b-gray-1: #e8e8e8;
  --b-gray-2: #d4d4d4;
  --b-gray-3: #c8c8c8;
  --b-border: rgba(0, 0, 0, 0.08);
  --b-border-hover: rgba(0, 0, 0, 0.15);

  --b-text: #0a0a0a;
  --b-text-sec: #444444;
  --b-text-mut: #777777;
  --b-text-light: #ffffff;
  --b-text-light-sec: rgba(255, 255, 255, 0.75);
  --b-text-light-mut: rgba(255, 255, 255, 0.5);

  --b-primary: #0066ff;
  --b-primary-hover: #0052cc;
  --b-primary-dark: #0044aa;
  --b-success: #00c853;

  --b-radius: 16px;
  --b-radius-lg: 24px;
  --b-radius-xl: 32px;
}

/* Hero + Icon Curve Wrapper */
.hero-curve-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--b-dark);
}

.hero-curve-wrapper::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -35%;
  width: 80%;
  height: 100%;
  background: #000080;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-curve-wrapper::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -36%;
  width: 78%;
  height: 100%;
  background: #0000cd;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Hero Section Premium */
.hero-premium {
  background: transparent;
  position: relative;
}

.hero-premium > * {
  position: relative;
  z-index: 1;
}

/* Title with gradient animation */
.hero-premium .display-3 {
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out;
}

.btn-solicitar-demo {
  animation: floatImage 6s ease-in-out infinite;
}

.hero-premium .text-gradient {
  background: linear-gradient(135deg, #0abf53 0%, #764ba2 50%, #f5061a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtitle styling */
.hero-premium .fs-3 {
  color: rgba(255, 255, 255, 0.75);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Demo button with subtle glow animation */
.hero-premium .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  animation:
    fadeInUp 0.8s ease-out 0.4s both,
    pulseGlow 3s ease-in-out infinite 1.2s;
}

.hero-premium .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #7b8eef 0%, #8a5db0 100%);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.6);
  }
}

/* Secondary button */
.hero-premium .btn-ghost-dark {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-premium .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Image with subtle float animation */
.hero-premium .hero-image-wrapper {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-premium .hero-image-wrapper .img-fluid {
  animation: floatImage 6s ease-in-out infinite;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Floating media cards */
.hero-premium .media-card {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-premium .media-card.bg-primary {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.9) 100%
  ) !important;
}

.hero-premium .media-card.bg-warning {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.95) 0%,
    rgba(246, 149, 3, 0.95) 100%
  ) !important;
}

/* Icon Blocks Section Premium */
.icon-blocks-premium {
  background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
  padding: 60px 0;
  position: relative;
}

.icon-blocks-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.icon-blocks-premium .text-center h5 {
  color: #ffffff;
}

.icon-blocks-premium .text-center span {
  color: rgba(255, 255, 255, 0.6);
}

.icon-blocks-premium .bi {
  color: #a78bfa !important;
}

.bg-elegant {
  background-color: #111e2d;
}

/* Efecto holográfico de brillo */
@keyframes holoShine {
  0% {
    transform: rotate(-45deg) translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translateY(100%);
    opacity: 0;
  }
}

/* Contenedor de imagen con efecto */
.hero-image-wrapper .position-relative:first-child {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.hero-image-wrapper .position-relative:first-child::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255, 255, 255, 0.4)
  );
  transform: rotate(-45deg) translateY(-100%);
  z-index: 10;
  pointer-events: none;
  animation: holoShine 1.5s ease-out 0.5s forwards;
}

/* Efecto en el título */
.hero-premium .display-4 {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.hero-premium .display-4::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255, 255, 255, 0.6)
  );
  transform: rotate(-45deg) translateY(-100%);
  z-index: 1;
  pointer-events: none;
  animation: holoShine 1.2s ease-out 0.3s forwards;
}

/* ============================================
     TYPOGRAPHY - DM Sans
  ============================================ */
.b-main,
.b-main * {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* Hero title - DM Sans style */
.b-main .display-3,
.b-main .display-4,
.b-main .display-5,
.b-main .display-6 {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.b-display {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--b-text);
}

.b-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--b-text);
}

.b-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.b-headline em,
.b-display em,
.b-title em {
  font-style: italic;
  color: #b8a000;
  background: linear-gradient(135deg, #20b2aa 0%, #20b2aa 40%, #2e8b57 100%);
  /*background: linear-gradient(135deg, #fffc00 0%, #e6d000 40%, #b8a000 100%);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18))
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.1));
}

.b-body {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--b-text-sec);
}

.b-body-sm {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--b-text-sec);
}

/* ============================================
     BUTTONS
  ============================================ */
.b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-btn-primary {
  background: var(--b-primary);
  color: var(--b-white);
}

.b-btn-primary:hover {
  background: var(--b-primary-hover);
  color: var(--b-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.35);
}

.b-btn-dark {
  background: var(--b-black);
  color: var(--b-white);
}

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

.b-btn-outline {
  background: transparent;
  color: var(--b-text);
  border: 2px solid var(--b-gray-2);
}

.b-btn-outline:hover {
  border-color: var(--b-text);
  color: var(--b-text);
  background: var(--b-cream);
}

.b-btn-white {
  background: var(--b-white);
  color: var(--b-black);
}

.b-btn-white:hover {
  background: var(--b-cream);
  color: var(--b-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
     ICON BLOCKS - DARK
  ============================================ */
.b-icon-section {
  position: relative;
  background: transparent;
  padding: 5rem 0;
  z-index: 1;
}

.b-icon-item {
  text-align: center;
  padding: 1.5rem;
}

.b-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(0, 102, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--b-primary);
  transition: all 0.3s ease;
}

.b-icon-item:hover .b-icon-box {
  background: var(--b-primary);
  color: var(--b-white);
  transform: scale(1.1);
}

.b-icon-item h5 {
  color: var(--b-text-light);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.b-icon-item p {
  color: var(--b-text-light-sec);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
     SECTIONS - LIGHT  (Snap-style skirt separators)
  ============================================ */
.b-section {
  background: var(--b-cream);
  padding: 8rem 0;
  padding-top: calc(8rem + 40px);
  position: relative;
  z-index: 2;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
}

.b-section:first-of-type {
  border-radius: 0;
  margin-top: 0;
  padding-top: 8rem;
  z-index: 1;
}

.b-section-white {
  background: var(--b-white);
}

/* Sombra sutil en la curva para dar profundidad */
.b-section + .b-section {
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.04);
}

/* CTA section también recibe el efecto skirt */
.b-cta-section {
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.04);
}

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

.b-section-header p {
  margin-top: 1rem;
}

/* ============================================
     STACK CARD - Cards con efecto galería
     2 capas visibles con colores sólidos
  ============================================ */
.b-stack-card {
  position: relative;
  display: block;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  margin-top: 24px; /* Espacio para las capas */
}

.b-stack-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 94%;
  margin: 0 auto;
  background: #a7f3d0;
  border-radius: var(--b-radius-lg);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.b-stack-card::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 88%;
  margin: 0 auto;
  background: #fde68a;
  border-radius: var(--b-radius-lg);
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-stack-card:hover {
  transform: translateY(-10px);
}

.b-stack-card:hover::before {
  transform: translateY(5px);
}

.b-stack-card:hover::after {
  transform: translateY(8px);
}

.b-stack-card-inner {
  background: var(--b-white);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.b-stack-card-img {
  position: relative;
  overflow: hidden;
}

.b-stack-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-stack-card:hover .b-stack-card-img img {
  transform: scale(1.08);
}

.b-stack-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.b-stack-card h4 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--b-text);
}

.b-stack-card p {
  color: var(--b-text-sec);
  font-size: 1rem;
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.b-stack-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--b-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: gap 0.3s ease;
}

.b-stack-card:hover .b-stack-card-link {
  gap: 14px;
}

/* ============================================
     IMAGE CARD - Cards de imagen con stack
  ============================================ */
.b-image-card {
  position: relative;
  display: block;
  text-decoration: none;
  height: 480px;
  z-index: 1;
  margin-top: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-image-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 95%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--b-radius-xl);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-image-card::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 89%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--b-radius-xl);
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-image-card:hover {
  transform: translateY(-12px);
}

.b-image-card:hover::before {
  transform: translateY(5px);
}

.b-image-card:hover::after {
  transform: translateY(8px);
}

.b-image-card-wrapper {
  position: relative;
  border-radius: var(--b-radius-xl);
  overflow: hidden;
  height: 100%;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.b-image-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-image-card:hover .b-image-card-bg {
  transform: scale(1.1);
}

.b-image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.b-image-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 2;
}

.b-image-card h4 {
  color: var(--b-white);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.b-image-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.b-image-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--b-white);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.b-image-card:hover .b-image-card-link {
  gap: 14px;
}

/* ============================================
     SPLIT BLOCKS
  ============================================ */
.b-split {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.b-split-reverse {
  flex-direction: row-reverse;
}

.b-split-visual {
  flex: 1.1;
  position: relative;
}

.b-split-content {
  flex: 1;
}

.b-split-content h2 {
  margin-bottom: 1.25rem;
}

.b-split-content p {
  margin-bottom: 1.5rem;
}

/* Image grid con movimiento */
.b-image-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 1rem;
  align-items: center;
}

.b-image-grid img {
  width: 100%;
  border-radius: var(--b-radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-split:hover .b-image-grid img:nth-child(1) {
  transform: translateY(-12px) rotate(-1deg);
}

.b-split:hover .b-image-grid img:nth-child(2) {
  transform: scale(1.05);
}

.b-split:hover .b-image-grid img:nth-child(3) {
  transform: translateY(12px) rotate(1deg);
}

/* Split con imagen - STACK EFFECT */
.b-split-image {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.b-split-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 96%;
  margin: 0 auto;
  background: #bfdbfe;
  border-radius: var(--b-radius-xl);
  z-index: -1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.b-split-image::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 90%;
  margin: 0 auto;
  background: #c4b5fd;
  border-radius: var(--b-radius-xl);
  z-index: -2;
}

.b-split-image-inner {
  position: relative;
  border-radius: var(--b-radius-xl);
  overflow: hidden;
  min-height: 450px;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.b-split-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

@media (max-width: 991.98px) {
  .b-split {
    flex-direction: column !important;
    gap: 3rem;
  }

  .b-split-image-inner {
    min-height: 320px;
  }
}

/* ============================================
     CHECK LIST
  ============================================ */
.b-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.b-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  color: var(--b-text);
  border-bottom: 1px solid var(--b-border);
}

.b-checklist li:last-child {
  border-bottom: none;
}

.b-checklist li i {
  color: var(--b-success);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================
     FEATURES GRID
  ============================================ */
.b-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.b-feature-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--b-white);
  border-radius: var(--b-radius-lg);
  border: 1px solid var(--b-border);
  transition: all 0.3s ease;
}

.b-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.b-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--b-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--b-primary);
  transition: all 0.3s ease;
}

.b-feature-box:hover .b-feature-icon {
  background: var(--b-primary);
  color: var(--b-white);
  transform: scale(1.1) rotate(-3deg);
}

.b-feature-box h5 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--b-text);
}

.b-feature-box p {
  color: var(--b-text-sec);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================
     STATS SECTION
  ============================================ */
.b-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.b-stat-card {
  background: var(--b-cream);
  border-radius: var(--b-radius-lg);
  padding: 2rem;
  border: 1px solid var(--b-border);
  transition: all 0.3s ease;
}

.b-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.b-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #059669;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.b-stat-number i {
  font-size: 2rem;
  margin-right: -0.25rem;
}

.b-stat-card p {
  color: var(--b-text-sec);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}

/* Quote */
.b-quote {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--b-border);
}

.b-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--b-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.b-quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.b-quote-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.b-quote-name {
  font-weight: 700;
  color: var(--b-text);
  font-size: 1rem;
}

.b-quote-role {
  font-size: 0.875rem;
  color: var(--b-text-mut);
}

/* ============================================
     PRICING - STACK EFFECT CORREGIDO
  ============================================ */
.b-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 24px; /* Espacio para stack */
}

@media (max-width: 767.98px) {
  .b-pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Skirt separators más sutiles en móvil */
  .b-section {
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
    padding-top: calc(6rem + 24px);
  }

  .b-section:first-of-type {
    border-radius: 0;
    margin-top: 0;
    padding-top: 6rem;
  }

  .b-cta-section {
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
    padding-top: calc(24px + 1.5rem);
  }
}

.b-pricing-card {
  position: relative;
  background: var(--b-white);
  border-radius: var(--b-radius-xl);
  padding: 3rem;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stack para card blanca - coloridos */
.b-pricing-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 95%;
  margin: 0 auto;
  background: #fde68a;
  border-radius: var(--b-radius-xl);
  z-index: -1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-pricing-card::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 89%;
  margin: 0 auto;
  background: #a7f3d0;
  border-radius: var(--b-radius-xl);
  z-index: -2;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.b-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.b-pricing-card:hover::before {
  transform: translateY(4px);
}

.b-pricing-card:hover::after {
  transform: translateY(7px);
}

/* Card negra (featured) - stack oscuro */
.b-pricing-card.b-featured {
  background: var(--b-black);
}

.b-pricing-card.b-featured::before {
  background: #065f46;
}

.b-pricing-card.b-featured::after {
  background: #047857;
}

.b-pricing-card.b-featured * {
  color: var(--b-text-light);
}

.b-pricing-card.b-featured p,
.b-pricing-card.b-featured .b-pricing-feature {
  color: var(--b-text-light-sec);
}

.b-pricing-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--b-primary);
  color: var(--b-white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.b-pricing-card h4 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.b-pricing-card > p {
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.b-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.b-pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.b-pricing-period {
  font-size: 1rem;
  color: var(--b-text-mut);
}

.b-pricing-card.b-featured .b-pricing-period {
  color: var(--b-text-light-mut);
}

.b-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.b-pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--b-text-sec);
}

.b-pricing-feature i {
  font-size: 1.125rem;
}

.b-pricing-feature i.bi-check-circle-fill {
  color: var(--b-success);
}

.b-pricing-feature i.bi-x-circle {
  color: var(--b-text-mut);
}

.b-pricing-card.b-featured .b-pricing-feature i.bi-check-circle-fill {
  color: var(--b-success);
}

.b-pricing-card .b-btn {
  width: 100%;
}

.b-pricing-card.b-featured .b-btn-primary {
  background: var(--b-white);
  color: var(--b-black);
}

.b-pricing-card.b-featured .b-btn-primary:hover {
  background: var(--b-cream);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.b-pricing-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--b-text-mut);
  margin-top: 1rem;
}

.b-pricing-card.b-featured .b-pricing-note {
  color: var(--b-text-light-mut);
}

/* ============================================
     CTA BANNER - STACK EFFECT
  ============================================ */
.b-cta-section {
  background: var(--b-white);
  padding: calc(40px + 2rem) 0 8rem;
}

.b-cta-wrapper {
  padding-top: 24px; /* Espacio para stack */
}

.b-cta-banner {
  position: relative;
  background: linear-gradient(135deg, #e6d000 0%, #b8a000 100%);
  border-radius: var(--b-radius-xl);
  padding: 5rem 4rem;
  text-align: center;
  z-index: 1;
}

.b-cta-banner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 97%;
  margin: 0 auto;
  background: linear-gradient(135deg, #fffc00 0%, #e6d000 100%);
  border-radius: var(--b-radius-xl);
  z-index: -1;
}

.b-cta-banner::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 93%;
  margin: 0 auto;
  background: linear-gradient(135deg, #fffc00 0%, #fffc00 100%);
  border-radius: var(--b-radius-xl);
  z-index: -2;
}

.b-cta-banner > * {
  position: relative;
  z-index: 2;
}

.b-cta-banner h2 {
  color: #1a1a00;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.b-cta-banner p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1875rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.b-cta-banner .b-btn-primary {
  background: #1a1a00;
  color: #fffc00;
}

.b-cta-banner .b-btn-primary:hover {
  background: #000;
  color: #fffc00;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
     ANIMATIONS - SEO FRIENDLY
  ============================================ */
.b-animate {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-enabled .b-animate {
  opacity: 0;
  transform: translateY(40px);
}

.js-enabled .b-animate.b-animated {
  opacity: 1;
  transform: translateY(0);
}

.b-delay-1 {
  transition-delay: 0.1s;
}
.b-delay-2 {
  transition-delay: 0.2s;
}
.b-delay-3 {
  transition-delay: 0.3s;
}
.b-delay-4 {
  transition-delay: 0.4s;
}
.b-delay-5 {
  transition-delay: 0.5s;
}
.b-delay-6 {
  transition-delay: 0.6s;
}

.b-icon-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--b-cream) 100%);
  pointer-events: none;
  z-index: 1;
}
