/* Portal Condor — marketing design system */

:root {
  /* Portal Condor design tokens (brief) */
  --pc-navy: #0B2540;
  --pc-navy-soft: #14314F;
  --pc-cliente: #1BA8C4;
  --pc-cliente-bg: #E8F7FA;
  --pc-vendedor: #22B573;
  --pc-vendedor-bg: #E9F9F0;
  --pc-gerencia: #F5891F;
  --pc-gerencia-bg: #FDF1E4;
  --pc-alerta: #E14B4B;
  --pc-alerta-bg: #FBEAEA;
  --pc-exito: #22B573;
  --pc-gris-50: #F7F8FA;
  --pc-gris-200: #E2E6EA;
  --pc-gris-500: #6B7684;
  --pc-blanco: #FFFFFF;
  --radius-card: 16px;
  --shadow-card: 0 4px 24px rgba(11, 37, 64, 0.06);
  --shadow-card-hover: 0 12px 32px rgba(11, 37, 64, 0.10);

  /* Legacy mk-* mapped to pc-* for gradual migration */
  --mk-blue: var(--pc-cliente);
  --mk-orange: var(--pc-gerencia);
  --mk-green: var(--pc-vendedor);
  --mk-gray: var(--pc-navy);
  --mk-surface: var(--pc-gris-50);
}

/* --- Mesh backgrounds --- */
.mk-mesh-bg {
  position: relative;
  overflow: hidden;
}

.mk-mesh-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(26, 159, 212, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(61, 181, 74, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(232, 81, 26, 0.06), transparent 50%);
  animation: mk-mesh-drift 25s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.mk-mesh-bg--subtle::before {
  opacity: 0.6;
}

.mk-mesh-bg--cta::before {
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255, 255, 255, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(255, 255, 255, 0.1), transparent 45%);
  animation: mk-mesh-drift 20s ease-in-out infinite alternate;
}

@keyframes mk-mesh-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -1%) scale(1.03); }
}

.mk-mesh-bg > .mk-mesh-content {
  position: relative;
  z-index: 1;
}

/* Hero home: en móvil el contenido supera 920px; no recortar el h1 */
.mk-hero-section.mk-mesh-bg {
  overflow-x: hidden;
  overflow-y: visible;
}

@media (min-width: 1024px) {
  .mk-hero-section.mk-mesh-bg {
    overflow: hidden;
  }
}

/* --- Sections --- */
.mk-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .mk-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.mk-section-alt {
  background-color: var(--mk-surface);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* --- Typography --- */
.mk-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mk-blue);
}

.mk-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: rgba(26, 159, 212, 0.1);
  border: 1px solid rgba(26, 159, 212, 0.2);
}

.mk-gradient-text {
  background: linear-gradient(135deg, var(--mk-gray) 0%, var(--mk-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Cards --- */
.mk-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mk-card-interactive:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.mk-card-dolor {
  border-left: 3px solid #f87171;
}

.mk-card-actor-blue {
  border-top: 4px solid var(--mk-blue);
  background: linear-gradient(180deg, rgba(26, 159, 212, 0.04) 0%, #fff 40%);
}

.mk-card-actor-green {
  border-top: 4px solid var(--mk-green);
  background: linear-gradient(180deg, rgba(61, 181, 74, 0.04) 0%, #fff 40%);
}

.mk-card-actor-orange {
  border-top: 4px solid var(--mk-orange);
  background: linear-gradient(180deg, rgba(232, 81, 26, 0.04) 0%, #fff 40%);
}

.mk-card-actor-blue.mk-card-interactive:hover {
  box-shadow: 0 12px 32px rgba(26, 159, 212, 0.12);
}

.mk-card-actor-green.mk-card-interactive:hover {
  box-shadow: 0 12px 32px rgba(61, 181, 74, 0.12);
}

.mk-card-actor-orange.mk-card-interactive:hover {
  box-shadow: 0 12px 32px rgba(232, 81, 26, 0.12);
}

.mk-card-gradient-border {
  position: relative;
  background: #fff;
  border-radius: 1rem;
}

.mk-card-gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, var(--mk-blue), var(--mk-green));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* --- Buttons --- */
.mk-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem 1.625rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, var(--pc-gerencia) 0%, #e06a10 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(245, 137, 31, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.mk-btn-primary:hover {
  opacity: 0.96;
  box-shadow: 0 8px 24px rgba(245, 137, 31, 0.42);
  transform: translateY(-1px);
}

.mk-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  color: var(--mk-blue);
  font-weight: 600;
  transition: gap 0.2s ease;
}

.mk-btn-ghost:hover {
  gap: 0.5rem;
}

.mk-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  border: 2px solid var(--mk-orange);
  color: var(--mk-orange);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.mk-btn-outline:hover {
  background: var(--mk-orange);
  color: #fff;
}

/* --- Stat pills & boxes --- */
.mk-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  color: #64748b;
}

.mk-stat-box {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--mk-surface);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.mk-stat-box strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mk-gray);
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

.mk-stat-box span {
  font-size: 0.75rem;
  color: #64748b;
}

/* --- Nav --- */
#mk-nav.mk-nav-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.mk-nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.mk-nav-link--active {
  color: var(--mk-blue);
  font-weight: 600;
}

.mk-nav-link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--mk-blue);
  border-radius: 1px;
}

/* --- Reveal on scroll --- */
.mk-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mk-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.mk-reveal-delay-1 { transition-delay: 0.1s; }
.mk-reveal-delay-2 { transition-delay: 0.2s; }
.mk-reveal-delay-3 { transition-delay: 0.3s; }

/* --- Hero mockup --- */
.mk-mockup {
  animation: mk-float 6s ease-in-out infinite;
}

@keyframes mk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mk-mockup-window {
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(11, 37, 64, 0.08);
  box-shadow: 0 28px 56px rgba(11, 37, 64, 0.12), 0 0 0 1px rgba(27, 168, 196, 0.08);
  overflow: hidden;
}

.mk-mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mk-mockup-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

/* --- Flow diagram --- */
.mk-flow-arrow {
  stroke-dasharray: 6 4;
  animation: mk-dash 1.5s linear infinite;
}

@keyframes mk-dash {
  to { stroke-dashoffset: -20; }
}

/* --- Actor badge --- */
.mk-actor-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
}

.mk-actor-badge--blue { background: rgba(26, 159, 212, 0.12); color: var(--mk-blue); }
.mk-actor-badge--green { background: rgba(61, 181, 74, 0.12); color: var(--mk-green); }
.mk-actor-badge--orange { background: rgba(232, 81, 26, 0.12); color: var(--mk-orange); }

/* --- Icon circle --- */
.mk-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

.mk-icon-circle--blue { background: rgba(27, 168, 196, 0.12); color: var(--pc-cliente); }
.mk-icon-circle--green { background: rgba(34, 181, 115, 0.12); color: var(--pc-vendedor); }
.mk-icon-circle--orange { background: rgba(245, 137, 31, 0.12); color: var(--pc-gerencia); }

/* --- Checklist --- */
.mk-check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.mk-check-circle {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(61, 181, 74, 0.12);
  color: var(--mk-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* --- Tabs (producto) --- */
.mk-tab-pill {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.mk-tab-pill--active-blue {
  background: rgba(26, 159, 212, 0.12);
  color: var(--mk-blue);
  border-color: rgba(26, 159, 212, 0.25);
  font-weight: 600;
}

.mk-tab-pill--active-green {
  background: rgba(61, 181, 74, 0.12);
  color: var(--mk-green);
  border-color: rgba(61, 181, 74, 0.25);
  font-weight: 600;
}

.mk-tab-pill--active-orange {
  background: rgba(232, 81, 26, 0.12);
  color: var(--mk-orange);
  border-color: rgba(232, 81, 26, 0.25);
  font-weight: 600;
}

.mk-tab-pill--inactive {
  color: #64748b;
  background: transparent;
}

.mk-tab-pill--inactive:hover {
  background: #f1f5f9;
  color: var(--mk-gray);
}

/* --- Accordion --- */
.mk-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mk-accordion-item--open .mk-accordion-panel {
  max-height: 500px;
}

.mk-accordion-item--open {
  border-color: var(--mk-orange) !important;
}

.mk-accordion-icon {
  transition: transform 0.25s ease;
}

.mk-accordion-item--open .mk-accordion-icon {
  transform: rotate(45deg);
}

/* --- CTA section --- */
.mk-cta-section {
  position: relative;
  overflow: hidden;
}

.mk-cta-dots {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* --- Demo success --- */
.mk-success-check {
  animation: mk-scale-in 0.5s ease forwards;
}

@keyframes mk-scale-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Blog card gradient --- */
.mk-blog-thumb {
  height: 8rem;
  border-radius: 0.75rem 0.75rem 0 0;
}

.mk-blog-thumb--blue { background: linear-gradient(135deg, rgba(26, 159, 212, 0.3), rgba(26, 159, 212, 0.05)); }
.mk-blog-thumb--green { background: linear-gradient(135deg, rgba(61, 181, 74, 0.3), rgba(61, 181, 74, 0.05)); }
.mk-blog-thumb--orange { background: linear-gradient(135deg, rgba(232, 81, 26, 0.3), rgba(232, 81, 26, 0.05)); }
.mk-blog-thumb--gray { background: linear-gradient(135deg, #94a3b8, #e2e8f0); }

/* --- Form --- */
.mk-input {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  color: var(--mk-gray);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mk-input:focus {
  outline: none;
  border-color: var(--mk-blue);
  box-shadow: 0 0 0 3px rgba(26, 159, 212, 0.15);
}

/* --- Prose --- */
.mk-prose h2 { font-size: 1.25rem; font-weight: 700; color: var(--mk-gray); margin-top: 2rem; margin-bottom: 1rem; }
.mk-prose h3 { font-size: 1.125rem; font-weight: 600; color: var(--mk-gray); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.mk-prose p { color: var(--mk-gray); line-height: 1.625; margin-bottom: 1rem; }
.mk-prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: var(--mk-gray); }
.mk-prose a { color: var(--mk-orange); }
.mk-prose a:hover { text-decoration: underline; }

/* --- Dolor number --- */
.mk-dolor-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

/* --- Trust strip --- */
.mk-trust-strip {
  background: linear-gradient(135deg, var(--pc-gerencia) 0%, #e06a10 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
}

.mk-trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.mk-trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mk-trust-strip-sep {
  display: none;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

@media (min-width: 640px) {
  .mk-trust-strip-sep {
    display: inline;
  }
}

.mk-trust-strip-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.mk-trust-strip-icon--light {
  color: rgba(255, 255, 255, 0.92);
}

/* --- About section --- */
.mk-about {
  position: relative;
}

.mk-about-bar {
  display: flex;
  height: 4px;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.mk-about-bar span {
  flex: 1;
}

.mk-about-bar span:nth-child(1) { background: var(--mk-blue); }
.mk-about-bar span:nth-child(2) { background: var(--mk-green); }
.mk-about-bar span:nth-child(3) { background: var(--mk-orange); }

.mk-about-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--mk-gray);
}

@media (min-width: 640px) {
  .mk-about-lead {
    font-size: 1.25rem;
  }
}

.mk-about-pillar {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mk-about-pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 3px;
  border-radius: 0 2px 2px 0;
}

.mk-about-pillar--blue::before { background: var(--mk-blue); }
.mk-about-pillar--green::before { background: var(--mk-green); }
.mk-about-pillar--orange::before { background: var(--mk-orange); }

.mk-about-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pc-picture-block {
  display: block;
  width: 100%;
}

.pc-picture-block img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Portal Condor design system (pc-*) --- */

.pc-h1 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(1.625rem, 3.25vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--pc-navy);
}

.pc-h1-line {
  display: block;
  white-space: nowrap;
}

.pc-h2 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pc-navy);
}

.pc-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pc-navy);
}

.pc-body {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--pc-gris-500);
}

@media (min-width: 768px) {
  .pc-body {
    font-size: 1.125rem;
  }
}

.pc-h1-accent-vendedor {
  color: var(--pc-vendedor);
}

.pc-h1-accent-cliente {
  color: var(--pc-cliente);
}

.pc-card {
  background: var(--pc-blanco);
  border-radius: var(--radius-card);
  border: 1px solid rgba(11, 37, 64, 0.06);
  box-shadow: var(--shadow-card);
}

.pc-card-hoverable {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pc-card-hoverable:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Hero */
.mk-hero-section {
  background: linear-gradient(180deg, var(--pc-blanco) 0%, var(--pc-gris-50) 100%);
  position: relative;
}

.mk-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230B2540' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.mk-hero-section > .mk-mesh-content,
.mk-hero-section > .mk-trust-strip {
  position: relative;
  z-index: 1;
}

.pc-hero-eyebrow-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pc-hero-tricolor {
  display: block;
  width: 3.5rem;
  height: 4px;
  border-radius: 9999px;
  background: linear-gradient(
    90deg,
    var(--pc-cliente) 0%,
    var(--pc-vendedor) 50%,
    var(--pc-gerencia) 100%
  );
}

.pc-hero-mockup-wrap {
  position: relative;
  width: 100%;
  background: transparent;
  border-radius: 0;
}

.pc-hero-mockup-wrap .mk-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
}

.pc-hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  background: transparent;
}

.pc-hero-logo-crop {
  width: 85%;
  max-width: 85%;
  margin-inline: auto;
  background: transparent;
}

.pc-hero-logo-picture,
.pc-hero-logo-crop picture {
  display: block;
  width: 100%;
}

.pc-hero-logo,
.pc-hero-logo-crop img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 640px) {
  .pc-hero-logo-crop {
    width: 100%;
  }
}

.pc-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .pc-hero-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .pc-hero-mockup-wrap {
    align-self: center;
    background: var(--pc-blanco);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card-hover);
    padding: 0.875rem 0.75rem 1rem;
  }

  .pc-hero-logo-crop {
    width: 85%;
    max-width: 28.9rem;
    margin-inline: auto;
  }
}

.pc-hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: start;
}

@media (min-width: 640px) {
  .pc-hero-trust-row {
    gap: 0.75rem;
  }
}

.pc-hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(11, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.625rem;
  line-height: 1.35;
  color: var(--pc-gris-500);
  min-width: 0;
}

@media (min-width: 640px) {
  .pc-hero-trust-item {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    align-items: center;
  }
}

.pc-hero-trust-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--pc-vendedor);
}

@media (min-width: 640px) {
  .pc-hero-trust-icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
  }
}

.pc-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .pc-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .pc-hero-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.pc-hero-feature {
  position: relative;
  border-radius: var(--radius-card);
  background: var(--pc-blanco);
  border: 1px solid rgba(11, 37, 64, 0.06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pc-hero-feature:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.pc-hero-feature--navy { --hero-accent: var(--pc-navy); --hero-accent-bg: rgba(11, 37, 64, 0.06); }
.pc-hero-feature--cliente { --hero-accent: var(--pc-cliente); --hero-accent-bg: var(--pc-cliente-bg); }
.pc-hero-feature--vendedor { --hero-accent: var(--pc-vendedor); --hero-accent-bg: var(--pc-vendedor-bg); }
.pc-hero-feature--gerencia { --hero-accent: var(--pc-gerencia); --hero-accent-bg: var(--pc-gerencia-bg); }

.pc-hero-feature-bar {
  height: 3px;
  background: var(--hero-accent);
}

.pc-hero-feature-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1rem;
}

.pc-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.pc-hero-icon--cliente { background: var(--pc-cliente-bg); color: var(--pc-cliente); }
.pc-hero-icon--vendedor { background: var(--pc-vendedor-bg); color: var(--pc-vendedor); }
.pc-hero-icon--gerencia { background: var(--pc-gerencia-bg); color: var(--pc-gerencia); }
.pc-hero-icon--navy { background: rgba(11, 37, 64, 0.08); color: var(--pc-navy); }

.pc-hero-feature h3 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.pc-hero-feature p {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--pc-gris-500);
}

/* Role cards */
.pc-role-card {
  --role: var(--pc-cliente);
  --role-bg: var(--pc-cliente-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--pc-blanco);
  border-radius: var(--radius-card);
  border: 1px solid rgba(11, 37, 64, 0.06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pc-role-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.pc-role-card--cliente { --role: var(--pc-cliente); --role-bg: var(--pc-cliente-bg); }
.pc-role-card--vendedor { --role: var(--pc-vendedor); --role-bg: var(--pc-vendedor-bg); }
.pc-role-card--gerencia { --role: var(--pc-gerencia); --role-bg: var(--pc-gerencia-bg); }

.pc-role-bar {
  height: 4px;
  background: var(--role);
  flex-shrink: 0;
}

.pc-role-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-role-label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--role);
  background: var(--role-bg);
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
}

.pc-role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--role-bg);
  color: var(--role);
  margin-bottom: 1rem;
}

.pc-role-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--role);
}

.pc-role-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.pc-role-checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pc-gris-500);
  margin-bottom: 0.75rem;
}

.pc-role-checklist li:last-child {
  margin-bottom: 0;
}

.pc-role-check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--role-bg);
  color: var(--role);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}

/* Role mini-mockups */
.pc-role-mockup {
  border-radius: 0.75rem;
  border: 1px solid rgba(11, 37, 64, 0.08);
  overflow: hidden;
  background: var(--pc-gris-50);
  margin-top: auto;
}

.pc-role-mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.625rem;
  background: #e8ecf0;
  border-bottom: 1px solid rgba(11, 37, 64, 0.06);
}

.pc-role-mockup-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #c5cdd6;
}

.pc-role-mockup-body {
  padding: 0.625rem;
  min-height: 4.5rem;
}

.pc-mockup-line {
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--pc-gris-200);
  margin-bottom: 0.375rem;
}

.pc-mockup-line--accent {
  background: var(--role);
  opacity: 0.35;
}

.pc-mockup-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 2rem;
  margin-top: 0.5rem;
}

.pc-mockup-bar-chart span {
  flex: 1;
  border-radius: 2px;
  background: var(--role);
  opacity: 0.5;
}

.pc-mockup-bar-chart span:nth-child(1) { height: 40%; }
.pc-mockup-bar-chart span:nth-child(2) { height: 70%; opacity: 0.7; }
.pc-mockup-bar-chart span:nth-child(3) { height: 55%; opacity: 0.6; }
.pc-mockup-bar-chart span:nth-child(4) { height: 85%; opacity: 0.8; }

/* Problem section */
.pc-problema-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(251, 234, 234, 0.45) 0%, var(--pc-gris-50) 35%, var(--pc-blanco) 100%);
  border-top: 1px solid rgba(225, 75, 75, 0.08);
  overflow: hidden;
}

.pc-problema-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 10%, rgba(225, 75, 75, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(225, 75, 75, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.pc-problema-section > div {
  position: relative;
  z-index: 1;
}

.pc-problema-pipeline {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .pc-problema-pipeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .pc-problema-pipeline::before {
    content: "";
    position: absolute;
    top: 4.25rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      rgba(225, 75, 75, 0.45) 0,
      rgba(225, 75, 75, 0.45) 10px,
      transparent 10px,
      transparent 20px
    );
    z-index: 0;
    pointer-events: none;
  }
}

.pc-problema-card {
  position: relative;
  background: var(--pc-blanco);
  border: 1px solid rgba(225, 75, 75, 0.15);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.5rem 1.375rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.pc-problema-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.pc-problema-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pc-alerta) 0%, #f07070 100%);
}

.pc-problema-step {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(225, 75, 75, 0.1);
  pointer-events: none;
  user-select: none;
}

.pc-problema-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pc-problema-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--pc-alerta-bg);
  color: var(--pc-alerta);
  flex-shrink: 0;
}

.pc-problema-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-alerta);
  background: var(--pc-alerta-bg);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.pc-problema-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 0.5rem;
}

.pc-problema-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--pc-gris-500);
}

.pc-problema-bridge {
  text-align: center;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .pc-problema-bridge {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

/* Legacy alert cards (other pages) */
.pc-card-alerta {
  background: var(--pc-alerta-bg);
  border: 1px solid rgba(225, 75, 75, 0.2);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pc-card-alerta:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.pc-card-alerta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--pc-alerta);
  color: var(--pc-blanco);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1rem;
}

.pc-alert-strip {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-card);
  background: var(--pc-alerta);
  color: var(--pc-blanco);
  text-align: center;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .pc-alert-strip {
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
  }
}

/* Before / After infographic */
.pc-before-after-visual {
  margin-top: 0.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  perspective: 1200px;
}

.pc-before-after-parallax-inner {
  will-change: transform;
  transform-style: preserve-3d;
}

.pc-before-after-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(11, 37, 64, 0.08);
  background: var(--pc-blanco);
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Comparison section */
.pc-comparativa-section {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--pc-blanco) 0%,
    rgba(233, 249, 240, 0.35) 50%,
    var(--pc-gris-50) 100%
  );
  overflow: hidden;
}

.pc-comparativa-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 181, 115, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 85% 60%, rgba(27, 168, 196, 0.05) 0%, transparent 38%);
  pointer-events: none;
}

.pc-comparativa-section > div {
  position: relative;
  z-index: 1;
}

.pc-comparativa-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(11, 37, 64, 0.08);
  box-shadow: var(--shadow-card);
  background: var(--pc-blanco);
  overflow: hidden;
}

.pc-comparativa-header {
  display: none;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--pc-gris-200);
  background: var(--pc-gris-50);
}

@media (min-width: 768px) {
  .pc-comparativa-header {
    display: grid;
  }
}

.pc-comparativa-header-feature {
  padding: 1rem 1.25rem;
}

.pc-comparativa-header-portal {
  padding: 1rem 1rem;
  background: var(--pc-vendedor-bg);
  border-left: 3px solid var(--pc-vendedor);
  border-right: 3px solid var(--pc-vendedor);
  text-align: center;
  position: relative;
}

.pc-comparativa-header-portal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pc-vendedor);
}

.pc-comparativa-header-generic {
  padding: 1rem 1.25rem;
  text-align: center;
}

.pc-comparativa-badge {
  display: inline-block;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
}

.pc-comparativa-badge--portal {
  color: var(--pc-vendedor);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(34, 181, 115, 0.25);
}

.pc-comparativa-badge--generic {
  color: var(--pc-gris-500);
  background: var(--pc-blanco);
  border: 1px solid var(--pc-gris-200);
}

.pc-comparativa-body {
  position: relative;
}

.pc-comparativa-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--pc-gris-200);
  transition: background 0.2s ease;
}

.pc-comparativa-row:last-child {
  border-bottom: none;
}

.pc-comparativa-row:hover {
  background: rgba(247, 248, 250, 0.65);
}

@media (min-width: 768px) {
  .pc-comparativa-row {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.85fr) minmax(0, 1fr);
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .pc-comparativa-row:hover .pc-comparativa-cell--portal {
    background: rgba(233, 249, 240, 0.95);
  }
}

.pc-comparativa-feature {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--pc-navy);
  margin: 0;
}

@media (min-width: 768px) {
  .pc-comparativa-feature {
    padding: 1.125rem 1.25rem;
    font-size: 0.875rem;
  }
}

.pc-comparativa-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pc-comparativa-cell--portal {
  justify-content: center;
}

.pc-comparativa-cell--generic {
  color: var(--pc-gris-500);
}

@media (max-width: 767px) {
  .pc-comparativa-cell::before {
    content: attr(data-col-label);
    display: block;
    width: 100%;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }

  .pc-comparativa-cell--portal::before {
    color: var(--pc-vendedor);
  }

  .pc-comparativa-cell--generic::before {
    color: var(--pc-gris-500);
  }

  .pc-comparativa-cell {
    flex-wrap: wrap;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: var(--pc-gris-50);
  }

  .pc-comparativa-cell--portal {
    background: var(--pc-vendedor-bg);
    border: 1px solid rgba(34, 181, 115, 0.15);
  }

  .pc-comparativa-row {
    padding: 1rem 1.25rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .pc-comparativa-cell--portal {
    padding: 1.125rem 1rem;
    background: var(--pc-vendedor-bg);
    border-left: 3px solid var(--pc-vendedor);
    border-right: 3px solid var(--pc-vendedor);
    min-height: 100%;
  }

  .pc-comparativa-cell--generic {
    padding: 1.125rem 1.25rem;
    justify-content: flex-start;
  }
}

.pc-comparativa-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pc-comparativa-mark--yes {
  background: var(--pc-vendedor);
  color: var(--pc-blanco);
  box-shadow: 0 4px 12px rgba(34, 181, 115, 0.25);
}

.pc-comparativa-mark--no {
  background: var(--pc-alerta-bg);
  color: var(--pc-alerta);
  border: 1px solid rgba(225, 75, 75, 0.2);
}

.pc-comparativa-note {
  font-size: 0.8125rem;
  line-height: 1.35;
  font-weight: 500;
}

.pc-comparativa-foot {
  padding: 1rem 1.25rem;
  text-align: center;
  background: linear-gradient(135deg, var(--pc-navy) 0%, var(--pc-navy-soft) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .pc-comparativa-foot {
    font-size: 0.9375rem;
    padding: 1.125rem 1.5rem;
  }
}

/* Timeline — alineado a problema pipeline y role cards */
.pc-timeline-section {
  position: relative;
  background: linear-gradient(180deg, var(--pc-gris-50) 0%, var(--pc-blanco) 48%, var(--pc-gris-50) 100%);
  border-top: 1px solid rgba(11, 37, 64, 0.06);
  overflow: hidden;
}

.pc-timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(27, 168, 196, 0.09) 0%, transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(34, 181, 115, 0.07) 0%, transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(245, 137, 31, 0.05) 0%, transparent 35%);
  pointer-events: none;
}

.pc-timeline-section > .max-w-6xl {
  position: relative;
  z-index: 1;
}

.pc-timeline {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

@media (min-width: 768px) {
  .pc-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .pc-timeline::before {
    content: "";
    position: absolute;
    top: 4.25rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      rgba(27, 168, 196, 0.45) 0,
      rgba(27, 168, 196, 0.45) 10px,
      transparent 10px,
      transparent 20px
    );
    z-index: 0;
    pointer-events: none;
  }
}

.pc-timeline-card {
  --tl-accent: var(--pc-cliente);
  --tl-accent-bg: var(--pc-cliente-bg);
  position: relative;
  background: var(--pc-blanco);
  border: 1px solid rgba(11, 37, 64, 0.08);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.375rem 1.375rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.pc-timeline-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.pc-timeline-card--cliente { --tl-accent: var(--pc-cliente); --tl-accent-bg: var(--pc-cliente-bg); }
.pc-timeline-card--vendedor { --tl-accent: var(--pc-vendedor); --tl-accent-bg: var(--pc-vendedor-bg); }
.pc-timeline-card--gerencia { --tl-accent: var(--pc-gerencia); --tl-accent-bg: var(--pc-gerencia-bg); }
.pc-timeline-card--navy { --tl-accent: var(--pc-navy); --tl-accent-bg: rgba(11, 37, 64, 0.06); }

.pc-timeline-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tl-accent);
}

.pc-timeline-num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: color-mix(in srgb, var(--tl-accent) 12%, transparent);
  pointer-events: none;
  user-select: none;
}

.pc-timeline-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pc-timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--tl-accent-bg);
  color: var(--tl-accent);
  flex-shrink: 0;
}

.pc-timeline-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pc-timeline-tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tl-accent);
  background: var(--tl-accent-bg);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.pc-timeline-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--pc-navy);
  margin-bottom: 0.5rem;
}

.pc-timeline-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--pc-gris-500);
  margin: 0;
}

@media (max-width: 767px) {
  .pc-timeline-card {
    padding: 1.25rem 1.125rem 1.125rem;
  }

  .pc-timeline-num {
    font-size: 2rem;
    top: 0.625rem;
    right: 0.875rem;
  }
}

/* Browser frame */
.pc-browser-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(11, 37, 64, 0.08);
  box-shadow: var(--shadow-card);
  background: var(--pc-blanco);
}

.pc-browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: #e8ecf0;
  border-bottom: 1px solid rgba(11, 37, 64, 0.06);
}

.pc-browser-frame-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.pc-browser-frame-dot--red { background: #f87171; }
.pc-browser-frame-dot--yellow { background: #fbbf24; }
.pc-browser-frame-dot--green { background: #4ade80; }

.pc-browser-frame-url {
  margin-left: 0.5rem;
  font-size: 0.6875rem;
  color: var(--pc-gris-500);
  font-family: ui-monospace, monospace;
}

/* Case study — Super Clin */
.pc-caso-section {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--pc-cliente-bg) 0%,
    rgba(232, 247, 250, 0.55) 40%,
    var(--pc-blanco) 100%
  );
  overflow: hidden;
}

.pc-caso-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 168, 196, 0.08) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.pc-caso-section > div {
  position: relative;
  z-index: 1;
}

.pc-caso-card {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  background: var(--pc-blanco);
  border-radius: var(--radius-card);
  border: 1px solid rgba(11, 37, 64, 0.08);
  box-shadow: var(--shadow-card-hover);
  overflow: hidden;
}

.pc-caso-tricolor {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--pc-cliente) 0%,
    var(--pc-vendedor) 50%,
    var(--pc-gerencia) 100%
  );
}

.pc-caso-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 1024px) {
  .pc-caso-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
    min-height: 26rem;
  }
}

.pc-caso-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(180deg, var(--pc-gris-50) 0%, var(--pc-blanco) 100%);
}

@media (min-width: 1024px) {
  .pc-caso-visual {
    padding: 1.25rem;
    border-right: 1px solid var(--pc-gris-200);
    min-height: 0;
  }
}

.pc-caso-visual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pc-caso-capture-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pc-caso-visual .mk-superclin-capture {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pc-caso-visual .mk-superclin-capture--compact .pc-browser-frame {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pc-caso-visual .mk-superclin-capture--compact .pc-browser-frame > a {
  flex: 1;
  display: flex;
  min-height: 0;
}

.pc-caso-visual .mk-superclin-capture--compact .pc-browser-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.pc-caso-visual .mk-superclin-capture--compact figcaption {
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.pc-caso-visual img {
  will-change: transform;
}

.pc-caso-content {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  min-height: 0;
}

@media (min-width: 1024px) {
  .pc-caso-content {
    padding: 1.25rem 1.5rem;
  }
}

.pc-caso-content-head {
  margin-bottom: 0.875rem;
}

.pc-caso-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pc-caso-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
}

.pc-caso-badge--live {
  color: var(--pc-vendedor);
  background: var(--pc-vendedor-bg);
  border: 1px solid rgba(34, 181, 115, 0.2);
}

.pc-caso-live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--pc-vendedor);
  animation: pc-pulse-live 2s ease-in-out infinite;
}

@keyframes pc-pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.9); }
}

.pc-caso-badge--location {
  color: var(--pc-cliente);
  background: var(--pc-cliente-bg);
  border: 1px solid rgba(27, 168, 196, 0.2);
}

.pc-caso-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--pc-navy);
  margin-bottom: 0.25rem;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .pc-caso-title {
    font-size: 1.5rem;
  }
}

.pc-caso-lead {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--pc-gris-500);
  margin-bottom: 0;
}

.pc-caso-stats {
  display: flex;
  border: 1px solid var(--pc-gris-200);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.pc-caso-stat {
  flex: 1;
  text-align: center;
  padding: 0.625rem 0.375rem;
  background: var(--pc-gris-50);
  position: relative;
  border-right: 1px solid var(--pc-gris-200);
}

.pc-caso-stat:last-child {
  border-right: none;
}

.pc-caso-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pc-navy);
}

.pc-caso-stat--cliente::before { background: var(--pc-cliente); }
.pc-caso-stat--vendedor::before { background: var(--pc-vendedor); }
.pc-caso-stat--gerencia::before { background: var(--pc-gerencia); }

.pc-caso-stat strong {
  display: block;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--pc-navy);
  margin-bottom: 0.2rem;
}

@media (min-width: 1024px) {
  .pc-caso-stat strong {
    font-size: 1.625rem;
  }
}

.pc-caso-stat span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc-gris-500);
}

.pc-caso-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.pc-caso-checklist li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--pc-gris-500);
  margin-bottom: 0.625rem;
}

.pc-caso-checklist li:last-child {
  margin-bottom: 0;
}

.pc-caso-check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--pc-vendedor-bg);
  color: var(--pc-vendedor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  margin-top: 0.125rem;
}

.pc-caso-clients {
  margin-bottom: 0;
  min-width: 0;
}

.pc-caso-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid var(--pc-gris-200);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .pc-caso-footer {
    align-items: center;
  }
}

.pc-caso-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pc-navy);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.2s ease, color 0.2s ease;
}

.pc-caso-cta:hover {
  gap: 0.625rem;
  color: var(--pc-gerencia);
}

.pc-caso-clients-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-gris-500);
  margin-bottom: 0.5rem;
}

.pc-caso-clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pc-caso-clients-list span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pc-navy);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--pc-gris-50);
  border: 1px solid var(--pc-gris-200);
}

/* Qualification — Para distribuidores */
.pc-fit-section {
  background: var(--pc-blanco);
}

.pc-fit-card {
  background: var(--pc-blanco);
  border: 1px solid rgba(11, 37, 64, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pc-fit-tricolor {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--pc-cliente) 0%,
    var(--pc-vendedor) 50%,
    var(--pc-gerencia) 100%
  );
}

.pc-fit-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 640px) {
  .pc-fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pc-fit-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--pc-gris-200);
  background: var(--pc-blanco);
  transition: background 0.2s ease;
}

@media (min-width: 640px) {
  .pc-fit-item {
    padding: 1.25rem 1.5rem;
  }

  .pc-fit-item:nth-child(odd) {
    border-right: 1px solid var(--pc-gris-200);
  }

  .pc-fit-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 639px) {
  .pc-fit-item:last-child {
    border-bottom: none;
  }
}

.pc-fit-item:hover {
  background: var(--pc-gris-50);
}

.pc-fit-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-fit-item--cliente .pc-fit-icon {
  background: var(--pc-cliente-bg);
  color: var(--pc-cliente);
}

.pc-fit-item--vendedor .pc-fit-icon {
  background: var(--pc-vendedor-bg);
  color: var(--pc-vendedor);
}

.pc-fit-item--gerencia .pc-fit-icon {
  background: var(--pc-gerencia-bg);
  color: var(--pc-gerencia);
}

.pc-fit-item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pc-gris-500);
  padding-top: 0.375rem;
}

.pc-fit-cta {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(180deg, var(--pc-gris-50) 0%, var(--pc-blanco) 100%);
  border-top: 1px solid var(--pc-gris-200);
}

.pc-fit-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  width: 100%;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .pc-fit-cta {
    padding: 1.5rem;
  }
}

.pc-fit-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pc-blanco);
  background: linear-gradient(135deg, var(--pc-vendedor) 0%, var(--pc-cliente) 100%);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(34, 181, 115, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-fit-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34, 181, 115, 0.35);
  color: var(--pc-blanco);
}

.pc-fit-cta-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pc-navy);
  background: var(--pc-blanco);
  border: 1.5px solid var(--pc-gris-200);
  padding: 0.6875rem 1.25rem;
  border-radius: 9999px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pc-fit-cta-download:hover {
  border-color: var(--pc-cliente);
  color: var(--pc-cliente);
  background: var(--pc-cliente-bg);
}

/* About — Qué es Portal Condor */
.pc-about-section {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--pc-blanco) 0%,
    var(--pc-gris-50) 50%,
    var(--pc-blanco) 100%
  );
}

.pc-about-card {
  background: var(--pc-blanco);
  border: 1px solid rgba(11, 37, 64, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
  overflow: hidden;
}

.pc-about-tricolor {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--pc-cliente) 0%,
    var(--pc-vendedor) 50%,
    var(--pc-gerencia) 100%
  );
}

.pc-about-lead {
  margin: 0;
  padding: 1.5rem 1.25rem 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--pc-gris-500);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .pc-about-lead {
    padding: 2rem 2rem 0;
    font-size: 1.125rem;
  }
}

.pc-about-lead strong {
  font-weight: 700;
  color: var(--pc-navy);
}

.pc-about-pillars {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .pc-about-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
  }
}

.pc-about-pillar {
  --role: var(--pc-cliente);
  --role-bg: var(--pc-cliente-bg);
  background: var(--pc-blanco);
  border: 1px solid rgba(11, 37, 64, 0.06);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pc-about-pillar:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.pc-about-pillar--cliente { --role: var(--pc-cliente); --role-bg: var(--pc-cliente-bg); }
.pc-about-pillar--vendedor { --role: var(--pc-vendedor); --role-bg: var(--pc-vendedor-bg); }
.pc-about-pillar--gerencia { --role: var(--pc-gerencia); --role-bg: var(--pc-gerencia-bg); }

.pc-about-pillar-bar {
  height: 3px;
  background: var(--role);
}

.pc-about-pillar-body {
  padding: 1rem 1.125rem 1.125rem;
}

.pc-about-pillar-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}

.pc-about-pillar-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: var(--role-bg);
  color: var(--role);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-about-pillar-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pc-about-pillar-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--role);
}

.pc-about-pillar p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--pc-gris-500);
}

.pc-about-erp {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0 1.25rem 1.25rem;
  padding: 1.125rem 1.25rem;
  border-radius: 0.875rem;
  background: var(--pc-gris-50);
  border: 1px solid var(--pc-gris-200);
  border-left: 4px solid var(--pc-cliente);
}

@media (min-width: 640px) {
  .pc-about-erp {
    margin: 0 1.5rem 1.5rem;
    padding: 1.25rem 1.5rem;
  }
}

.pc-about-erp-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--pc-cliente-bg);
  color: var(--pc-cliente);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-about-erp-text p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--pc-gris-500);
}

.pc-about-erp-text p + p {
  margin-top: 0.75rem;
}

.pc-about-erp-text strong {
  font-weight: 600;
  color: var(--pc-navy);
}

.pc-about-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.5rem;
  border-top: 1px solid var(--pc-gris-200);
  background: linear-gradient(180deg, var(--pc-gris-50) 0%, var(--pc-blanco) 100%);
}

@media (min-width: 640px) {
  .pc-about-foot {
    padding: 1.25rem 1.5rem 1.5rem;
  }
}

.pc-about-foot p {
  margin: 0;
  flex: 1;
  min-width: 12rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pc-gris-500);
}

.pc-about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pc-blanco);
  background: linear-gradient(135deg, var(--pc-vendedor) 0%, var(--pc-cliente) 100%);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(34, 181, 115, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-about-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34, 181, 115, 0.35);
  color: var(--pc-blanco);
}

/* Legacy stat row */
.pc-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--pc-gris-200);
  border-bottom: 1px solid var(--pc-gris-200);
  margin-bottom: 2rem;
}

.pc-stat-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
  position: relative;
}

.pc-stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--pc-gris-200);
}

.pc-stat-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--pc-navy);
  margin-bottom: 0.25rem;
}

.pc-stat-card span {
  font-size: 0.75rem;
  color: var(--pc-gris-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ERP integration section */
.pc-erp-section {
  position: relative;
  background: linear-gradient(135deg, var(--pc-gerencia) 0%, #e06a10 55%, #d45f0a 100%);
  overflow: hidden;
}

.pc-erp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.pc-erp-section > div {
  position: relative;
  z-index: 1;
}

.pc-erp-section .pc-eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.pc-erp-section .pc-h2 {
  color: var(--pc-blanco);
}

.pc-erp-section .pc-body {
  color: rgba(255, 255, 255, 0.92);
}

.pc-erp-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 40px rgba(11, 37, 64, 0.12);
  padding: 1.5rem 1.25rem;
}

@media (min-width: 640px) {
  .pc-erp-card {
    padding: 2rem 1.75rem;
  }
}

.pc-erp-lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--pc-gris-500);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.pc-erp-diagram {
  margin-bottom: 1.5rem;
}

.pc-erp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pc-erp-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 700;
  text-align: center;
}

.pc-erp-chip--native {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: var(--pc-cliente);
  background: var(--pc-blanco);
  border: 2px solid var(--pc-cliente);
  box-shadow: 0 2px 8px rgba(27, 168, 196, 0.12);
}

.pc-erp-chip--otros {
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.5rem 1rem;
  min-width: 8.5rem;
  color: var(--pc-gerencia);
  background: var(--pc-gerencia-bg);
  border: 2px dashed var(--pc-gerencia);
}

.pc-erp-chip-title {
  font-size: 0.875rem;
  line-height: 1.2;
}

.pc-erp-chip-note {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pc-gris-500);
}

.pc-erp-foot {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--pc-gris-500);
  max-width: 36rem;
  margin-inline: auto;
}

.pc-erp-link {
  font-weight: 700;
  color: var(--pc-gerencia);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pc-erp-link:hover {
  color: #d45f0a;
}

/* CTA */
.mk-cta-section {
  background: var(--pc-navy);
}

.pc-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--pc-vendedor) 0%, var(--pc-cliente) 100%);
  color: var(--pc-blanco);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 25px rgba(34, 181, 115, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.pc-cta-btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(34, 181, 115, 0.35);
}

/* Footer navy */
.pc-footer {
  background: var(--pc-navy);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .mk-mesh-bg::before,
  .mk-mockup,
  .mk-flow-arrow {
    animation: none !important;
  }

  .mk-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mk-card-interactive:hover {
    transform: none;
  }

  .pc-card-hoverable:hover,
  .pc-role-card:hover,
  .pc-card-alerta:hover,
  .pc-hero-feature:hover,
  .pc-problema-card:hover,
  .pc-timeline-card:hover {
    transform: none;
  }

  .pc-fit-item:hover {
    background: var(--pc-blanco);
  }

  .pc-fit-cta-btn:hover {
    transform: none;
  }

  .pc-about-pillar:hover,
  .pc-about-cta:hover {
    transform: none;
  }

  .pc-caso-live-dot {
    animation: none !important;
  }

  .pc-cta-btn-primary:hover {
    transform: none;
  }

  .mk-btn-primary:hover {
    transform: none;
  }
}

/* --- Mobile landing (≤767px) --- */
@media (max-width: 767px) {
  .mk-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-h1 {
    font-size: clamp(1.375rem, 6.25vw, 1.75rem);
    letter-spacing: -0.02em;
  }

  .pc-h1-line {
    white-space: normal;
  }

  .pc-h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.625rem);
  }

  .pc-body {
    font-size: 0.9375rem;
  }

  .pc-section-header {
    margin-bottom: 1.75rem;
  }

  .mk-hero-section .mk-mesh-content {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .mk-hero-section .font-display.text-lg {
    font-size: 1.0625rem;
  }

  .pc-hero-mockup-wrap {
    margin-bottom: 0.5rem;
  }

  .pc-hero-actions .mk-btn-primary,
  .pc-hero-actions .mk-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .pc-hero-trust-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .pc-hero-trust-item {
    font-size: 0.8125rem;
    padding: 0.625rem 0.75rem;
    align-items: center;
  }

  .pc-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
  }

  .pc-hero-feature-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0.625rem;
  }

  .pc-hero-icon {
    width: 2rem;
    height: 2rem;
  }

  .pc-hero-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .pc-hero-feature h3 {
    font-size: 0.8125rem;
  }

  .pc-hero-feature p {
    font-size: 0.6875rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mk-trust-strip {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .mk-trust-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.35;
    text-align: center;
  }

  .mk-trust-strip-item {
    justify-content: center;
  }

  .pc-problema-card {
    padding: 1.25rem;
  }

  .pc-problema-step {
    font-size: 2rem;
  }

  .pc-problema-bridge {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
  }

  .pc-before-after-visual {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .pc-role-mockup {
    display: none;
  }

  .pc-role-card-body {
    padding: 1.25rem;
  }

  .pc-role-card-body h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .pc-comparativa-mobile-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--pc-gris-50);
    border-bottom: 1px solid var(--pc-gris-200);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
  }

  .pc-comparativa-mobile-legend-portal {
    color: var(--pc-vendedor);
  }

  .pc-comparativa-mobile-legend-generic {
    color: var(--pc-gris-500);
  }

  .pc-comparativa-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
  }

  .pc-comparativa-feature {
    grid-column: 1 / -1;
    font-size: 0.875rem;
    padding-bottom: 0.125rem;
  }

  .pc-comparativa-cell::before {
    display: none;
  }

  .pc-comparativa-cell {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.625rem 0.5rem;
    min-height: 3.25rem;
  }

  .pc-comparativa-cell--generic {
    flex-direction: column;
    gap: 0.25rem;
  }

  .pc-comparativa-note {
    font-size: 0.6875rem;
    text-align: center;
  }

  .pc-caso-visual {
    padding: 1rem 1rem 0.5rem;
  }

  .pc-caso-content {
    padding: 1rem;
  }

  .pc-caso-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .pc-caso-cta {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .pc-caso-clients-list {
    justify-content: flex-start;
  }

  .pc-fit-cta {
    padding: 1.25rem 1rem;
  }

  .pc-fit-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pc-fit-cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
    padding: 0.875rem 1rem;
  }

  .pc-fit-cta-download {
    width: 100%;
  }

  .pc-about-lead {
    padding: 1.25rem 1.25rem 0;
    font-size: 0.9375rem;
  }

  .pc-about-pillars {
    padding: 1rem;
  }

  .pc-about-erp {
    margin: 0 1rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .pc-about-foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pc-about-cta {
    width: 100%;
  }

  .mk-cta-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-cta-btn-primary {
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .pc-comparativa-mobile-legend {
    display: none;
  }
}

/* Botón flotante WhatsApp — sobre barra CTA móvil (z-40) */
.pc-wa-float {
  position: fixed;
  right: 1rem;
  bottom: 5.75rem;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.pc-wa-float:hover {
  background-color: #20bd5a;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.pc-wa-float:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .pc-wa-float {
    bottom: 1.5rem;
  }
}

/* --- Cóndor scroll (home desktop, capa de fondo) --- */
#pc-condor-scroll-root {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.58;
}

#pc-condor-scroll-root[hidden] {
  display: none !important;
}

#pc-condor-scroll-root.is-active {
  display: block;
}

@media (min-width: 768px) {
  body.pc-home-condor main {
    position: relative;
  }

  body.pc-home-condor .pc-main-content {
    position: relative;
    z-index: 1;
  }

  body.pc-home-condor .pc-footer {
    position: relative;
    z-index: 2;
  }
}

#pc-condor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 280px;
  height: auto;
  will-change: transform;
  transform-origin: 50% 45%;
}

.pc-condor-inner {
  animation: pc-condor-glide 2.8s ease-in-out infinite;
  transform-origin: 50% 55%;
}

.pc-condor--landed .pc-condor-inner {
  animation: pc-condor-settle 1.2s ease-out forwards;
}

@keyframes pc-condor-glide {
  0%, 100% {
    transform: translateY(0) rotate(-3deg) scaleY(1);
  }
  35% {
    transform: translateY(-5px) rotate(2deg) scaleY(1.02);
  }
  70% {
    transform: translateY(2px) rotate(-1deg) scaleY(0.98);
  }
}

@keyframes pc-condor-settle {
  to {
    transform: translateY(0) rotate(0deg) scaleY(1);
  }
}

.pc-condor-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(11, 37, 64, 0.14));
  image-rendering: auto;
  -webkit-user-drag: none;
  user-select: none;
}

@media (max-width: 767px) {
  #pc-condor-scroll-root {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #pc-condor-scroll-root {
    display: none !important;
  }

  .pc-condor-inner {
    animation: none !important;
  }
}
