.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-base);
}

.btn--primary {
  background: var(--color-accent);
  color: #000;
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--secondary {
  border: 1px solid var(--color-muted);
  color: var(--color-text);
}

.btn--ghost {
  color: var(--color-muted);
}

.tech-word {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    120deg,
    #6CF2C2,
    #8AA9FF,
    #6CF2C2
  );
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

  animation: techGradient 6s ease-in-out infinite;
}

@keyframes techGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (min-width: 900px) {
  .tech-word::after {
    content: "";
    position: absolute;
    inset: 0;
    filter: blur(18px);
    opacity: 0.25;
    background: inherit;
    z-index: -1;
  }
}











.hero__chat {
  margin-top: 0;
  max-width: none;
  animation: chatFloat 4s ease-in-out infinite;
}

/* ── Chat column label ── */
.hero__chat-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.hero__chat-label__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #6CF2C2;
  box-shadow: 0 0 10px rgba(108,242,194,0.75);
  animation: chat-dot-pulse 2.2s ease-in-out infinite;
}
@keyframes chat-dot-pulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 10px rgba(108,242,194,0.75); }
  50%       { opacity: 0.4; box-shadow: 0 0  4px rgba(108,242,194,0.25); }
}
.hero__chat-label__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.hero__chat-label__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero__chat-label__role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.hero__chat-label__status {
  font-size: 0.76rem;
  color: #6CF2C2;
  opacity: 1;
  margin-left: auto;
  letter-spacing: 0.02em;
}

.chat-window {
  background: rgba(21, 21, 24, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 18px;
  padding: 1.5rem;
  max-height: 320px;
  overflow-y: auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.4);
}

.chat-window::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at top left,
    rgba(108, 242, 194, 0.12),
    transparent 60%
  );
}


.chat-message {
  margin-bottom: 1.25rem;
}

.chat-message.bot p {
  color: var(--color-text);
}

.chat-author {
  display: block;
  font-size: 0.75rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.chat-message.user p {
  color: var(--color-muted);
}

.chat-input {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.chat-input input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  color: var(--color-text);
  outline: none;

  font-size: 16px; /* 👈 clave para evitar zoom iOS */
}

@supports (-webkit-touch-callout: none) {
  .chat-input input {
    font-size: 16px;
  }
}


.chat-input button {
  background: var(--color-accent);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.chat-message__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.chat-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}


.typing-dots {
  display: flex;
  gap: 4px;
  padding: 6px 0;
}

.typing-dots span {
  width: 3px;
  height: 3px;
  background: var(--color-muted);
  border-radius: 50%;
  animation: blinkDots 1.4s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blinkDots {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}



/* Hero chat subtle attention pulse */

.chat-input button {
  animation: sendPulse 2.4s ease-in-out infinite;
}


@keyframes chatFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes sendPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 242, 194, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(108, 242, 194, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(108, 242, 194, 0);
  }
}



/* =========================================
   HERO META · Interactive Tech Chips
========================================= */

.meta-item {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.35rem 0.8rem;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

/* Hover state elegante */
.meta-item:hover {
  border-color: var(--color-accent);
  background: rgba(108,242,194,0.06);
  box-shadow: 0 0 18px rgba(108,242,194,0.15);
  transform: translateY(-2px);
}





/* ===============================
   Responsive Safety
================================ */

@media (max-width: 640px) {

  .meta-item::after {
    width: 220px;
    font-size: 0.8rem;
  }

}




.vale-popup {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 320px;
  background: rgba(15,15,18,0.95);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(108,242,194,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}


@media (max-width: 768px) {

  .vale-popup {
    width: 88%;
    max-width: 380px;
    left: 50% !important;
    bottom: 300px !important;
    transform: translateX(-50%) !important;
  }

}


.vale-popup.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vale-popup__header {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.vale-popup__content {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
  min-height: 40px;
  white-space: pre-wrap;
}

.problem-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.problem-card__status {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.status-danger {
  background: rgba(255, 80, 80, 0.12);
  color: #ff5050;
}

.status-warning {
  background: rgba(255, 180, 0, 0.12);
  color: #ffb400;
}

/* ===============================
   METRIC GLASS · Glass sobre Glass
================================ */

.metric-glass {
  position: relative;
  margin-top: 1.6rem;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;

  background: rgba(255,255,255,0.03);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.35),
    inset 0 -1px 1px rgba(255,255,255,0.04);

  transition: border-color 0.3s ease;
}

.metric-glass__fill {
  position: absolute;
  inset: 0;
  width: 0%;

  background: linear-gradient(
    90deg,
    rgba(108,242,194,0.85),
    rgba(138,169,255,0.9)
  );

  opacity: 0.9;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.metric-glass__content {
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 1.2rem;
}

.metric-glass__label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.metric-glass__value {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

/* Hover interaction */
.problem-card:hover .metric-glass {
  border-color: rgba(108,242,194,0.25);
}

.problem-card:hover .metric-glass__fill {
  width: var(--metric-width);
}

/* Animar fill al entrar al viewport (desktop y mobile) */
.problem-tech.is-visible .metric-glass__fill {
  width: var(--metric-width);
}

/* Mobile: sin hover, siempre visible al hacer scroll */
@media (max-width: 768px) {
  .metric-glass__fill {
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
}




.problem-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.problem-card__badge {
  position: relative;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(15, 20, 32, 0.6);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Halo energ��tico */
.problem-card__badge::before {
  content: "";
  position: absolute;
  inset: -1px;

  background: radial-gradient(circle at center, rgba(108,242,194,0.25), transparent 65%);
  opacity: 0.4;

  transition: opacity 0.4s ease;
}

/* Micro grid t��cnico interno */
.problem-card__badge::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size: 6px 6px;

  opacity: 0.15;
  pointer-events: none;
}

/* Icono */
.problem-card__badge i {
  position: relative;
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  color: rgba(108,242,194,0.9);

  filter: drop-shadow(0 0 6px rgba(108,242,194,0.4));

  transition: transform 0.4s ease;
}

/* Hover ultra refinado */
.problem-card:hover .problem-card__badge {
  transform: translateY(-3px);
  border-color: rgba(108,242,194,0.25);
  box-shadow:
    0 0 25px rgba(108,242,194,0.15);
}

.problem-card:hover .problem-card__badge::before {
  opacity: 0.7;
}

.problem-card:hover .problem-card__badge i {
  transform: scale(1.08);
}

/* =============================================
   TESTIMONIALS SECTION
============================================= */

.testimonials {
  padding: 6rem 0;
  position: relative;
}

.testimonials__title {
  max-width: 800px;
  margin-bottom: 3.5rem;
  line-height: 1.15;
}

/* =============================================
   MOBILE SCROLL DOTS
============================================= */

.testimonial-dots {
  display: none;
}

@media (max-width: 768px) {

  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.2rem;
  }

  .testimonial-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
  }

  .testimonial-dots span.active {
    background: #6CF2C2;
    transform: scale(1.3);
  }

}


/* =============================================
   WRAPPER (para fade real en mobile)
============================================= */

.testimonial-wrapper {
  position: relative;
}

/* =============================================
   GRID DESKTOP
============================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

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

/* =============================================
   MOBILE CAROUSEL
============================================= */

@media (max-width: 768px) {

  /* Sacar el wrapper del padding del container */
  .testimonial-wrapper {
    position: relative;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .testimonial-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* padding-right: 12% ensures that card-4's snap point (3 × stride ≈ 2.64V + 72)
       never exceeds maxScrollLeft (≈ 2.64V + 96 with padding), keeping it reachable.
       Without this, at 375px viewport: snapPoint 1062 > maxScrollLeft 1041 → snap back. */
    padding: 1rem 12% 2rem 1.5rem;
    scrollbar-width: none;
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%
    );
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-width: 88%;
    scroll-snap-align: start;
  }

}


/* =============================================
   HANDLE + MOBILE LABEL
============================================= */

.testimonial-handle {
  width: 52px;
  height: 5px;
  border-radius: 6px;
  margin: 0 auto 1.4rem auto;
  position: relative;

  background: linear-gradient(90deg,#6CF2C2,#8AA9FF);
  opacity: 0.85;

  transition: all 0.3s ease;
}

/* Texto mobile */
.testimonial-handle::after {
  content: "";
}

@media (max-width: 768px) {

  .testimonial-handle {
    width: 100px;
    height: 4px;
  }

}


/* =============================================
   CARD GLASS
============================================= */

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  overflow: hidden;

  background: rgba(15,20,32,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.06);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,242,194,0.3);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    0 0 50px rgba(108,242,194,0.12);
}

/* =============================================
   INTERNAL BADGE
============================================= */

.testimonial-card--internal {
  padding-top: 3.8rem;
}

.testimonial-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;

  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;

  background: linear-gradient(90deg,#6CF2C2,#8AA9FF);
  color: #000;
}

/* =============================================
   IN-HOUSE TECH TAG
============================================= */

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  padding: 0.3rem 0.6rem;
  border-radius: 999px;

  background: rgba(108,242,194,0.08);
  border: 1px solid rgba(108,242,194,0.25);
  color: #6CF2C2;

  backdrop-filter: blur(8px);
}

.testimonial-tag i {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}


/* =============================================
   HEADER + LOGO CAPSULE
============================================= */

.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.8rem;
}

.testimonial-logo-wrap {
  position: relative;

  padding: 0.8rem 1.2rem;
  border-radius: 16px;

  background: rgba(255,255,255,0.04);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.4),
    0 10px 30px rgba(0,0,0,0.25);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* L�nea energ�tica */
.testimonial-logo-wrap::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -6px;
  height: 2px;

  background: linear-gradient(90deg,#6CF2C2,#8AA9FF);
  opacity: 0.4;
  border-radius: 2px;

  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-logo {
  height: 34px;
  display: block;
  filter: brightness(1.4);
  transition: transform 0.4s ease;
}

.testimonial-logo-wrap a {
  display: inline-flex;
}

.testimonial-logo-wrap a:hover {
  transform: scale(1.04);
}


.testimonial-card:hover .testimonial-logo-wrap {
  transform: translateY(-4px);
  border-color: rgba(108,242,194,0.35);
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.4),
    0 20px 50px rgba(0,0,0,0.4),
    0 0 40px rgba(108,242,194,0.15);
}

.testimonial-card:hover .testimonial-logo-wrap::after {
  opacity: 1;
  transform: scaleX(1.1);
}

.testimonial-card:hover .testimonial-logo {
  transform: scale(1.08);
}

.testimonial-sector {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Wrapper derecho del header: sector + hint apilados */
.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

/* =============================================
   TESTIMONIAL MOCKUP IMAGE
============================================= */

.testimonial-mockup {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.testimonial-mockup img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-mockup img {
  transform: scale(1.03);
}


/* =============================================
   TEXT
============================================= */

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: rgba(255,255,255,0.85);
}

/* =============================================
   AUTHOR
============================================= */

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}



/* =============================================
   VIDEO LOADER � Ultra Tech
============================================= */

.testimonial-video {
  position: relative;
}

.video-loader {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  background: radial-gradient(
    circle at center,
    rgba(10,10,14,0.9),
    rgba(10,10,14,0.95)
  );

  z-index: 5;
  transition: opacity 0.3s ease;
}

.video-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Ring animado */

.video-loader__ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  border: 2px solid rgba(108,242,194,0.15);
  border-top: 2px solid #6CF2C2;

  animation: techSpin 1s linear infinite;

  box-shadow:
    0 0 20px rgba(108,242,194,0.4),
    0 0 40px rgba(108,242,194,0.15);
}

.video-loader__text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@keyframes techSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}







/* ─── FAQ BLOCK ─────────────────────────────────────────────────────────── */

.faq-block {
  padding: 6rem 0;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 12px;
  background: var(--color-bg-soft);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(108,242,194,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.faq-question i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ─── PROCESS BLOCK ──────────────────────────────────────────────────────── */

.process-block {
  padding: 6rem 0;
}

.process-intro {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(245,245,245,0.06);
  background: var(--color-bg-soft);
  transition: background 0.2s;
}

.process-step:last-child { border-bottom: none; }
.process-step:hover { background: rgba(108,242,194,0.04); }

.process-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(108,242,194,0.12);
  border: 1px solid rgba(108,242,194,0.3);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.process-step__body strong {
  color: var(--color-text);
  font-size: 0.95rem;
}

.process-step__body span {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.timeline-item {
  background: var(--color-bg-soft);
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.timeline-day {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.timeline-item p {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}


/* ─── PRICING BLOCK ──────────────────────────────────────────────────────── */

.pricing-block {
  padding: 6rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: start;
}

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

.pricing-card {
  position: relative;
  background: var(--color-bg-soft);
  border: 1px solid rgba(245,245,245,0.08);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(108,242,194,0.2);
}

.pricing-card--featured {
  border-color: rgba(108,242,194,0.55);
  background: rgba(108,242,194,0.06);
  transform: scale(1.025);
  box-shadow:
    0 0 0 1px rgba(108,242,194,0.2),
    0 20px 60px rgba(108,242,194,0.15),
    0 4px 20px rgba(0,0,0,0.4);
  z-index: 1;
}

@media (max-width: 900px) {
  .pricing-card--featured {
    transform: none;
  }
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6CF2C2, #4ee8aa);
  color: #0E0E10;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(108,242,194,0.4);
}

.pricing-tier {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-main);
}

.pricing-desc {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0.5rem 0 0;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
}

.pricing-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-main);
  line-height: 1;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.pricing-plazo {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  background: rgba(245,245,245,0.05);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.pricing-features li i {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(108,242,194,0.1);
  border: 1px solid rgba(108,242,194,0.3);
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.pricing-cta:hover {
  background: rgba(108,242,194,0.18);
  border-color: rgba(108,242,194,0.6);
}

.pricing-card--featured .pricing-cta {
  background: var(--color-accent);
  color: #0E0E10;
  border-color: var(--color-accent);
}

.pricing-card--featured .pricing-cta:hover {
  background: #4ee8aa;
}

.pricing-footer-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  background: rgba(108,242,194,0.04);
  border: 1px solid rgba(108,242,194,0.15);
  border-radius: 10px;
}

/* Caso de estudio link in testimonial cards */
.testimonial-caso-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-accent, #6CF2C2);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.testimonial-caso-link:hover {
  opacity: 1;
}
