/* ====================================================================
   TECNOCOSTEX CHILD — Landing Oscura (contenido)
   CSS scoped bajo .tcx-landing para que SOLO afecte a la página que
   use la plantilla "Tecnocostex - Landing Oscura". El resto de páginas
   (catálogos) permanecen blancas con el estilo normal de Blocksy.
   Réplica fiel del diseño aprobado (ProCoser landing).
   ==================================================================== */

/* ===== RESET LOCAL (solo dentro de .tcx-landing) ===== */
.tcx-landing,
.tcx-landing *,
.tcx-landing *::before,
.tcx-landing *::after {
  box-sizing: border-box;
}

.tcx-landing {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A1628;
  color: #E8F4FD;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}

/* Anular el padding/max-width por defecto que Blocksy aplica al contenedor de contenido,
   para que la landing pueda ocupar el 100% del ancho. */
.page-template-template-landing #main-content,
.page-template-template-landing .content-area,
.page-template-template-landing .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #0A1628;
}
.page-template-template-landing #tcx-landing-main {
  background: #0A1628;
}

/* ===== TYPOGRAPHY =====
   Se fuerza el color en cada selector con alta especificidad para
   vencer reglas de Blocksy como .entry-content h1, .entry-content p,
   que de otro modo sobreescriben el color heredado de .tcx-landing
   y dejan el texto en gris semitransparente. */
.tcx-landing h1,
.tcx-landing h2,
.tcx-landing h3,
.tcx-landing h4,
.page-template-template-landing .entry-content .tcx-landing h1,
.page-template-template-landing .entry-content .tcx-landing h2,
.page-template-template-landing .entry-content .tcx-landing h3,
.page-template-template-landing .entry-content .tcx-landing h4 {
  font-weight: 800; line-height: 1.15; margin: 0;
  color: var(--tcx-white);
}
.tcx-landing h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.tcx-landing h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.tcx-landing h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.tcx-landing p,
.page-template-template-landing .entry-content .tcx-landing p {
  margin: 0;
  color: var(--tcx-text-light);
}

.tcx-landing .highlight { color: var(--tcx-cyan); }
.tcx-landing .highlight-gold { color: var(--tcx-gold); }

/* ===== CIRCUIT LINES (Signature element del Hero) ===== */
.tcx-landing .circuit-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.tcx-landing .circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--tcx-cyan), transparent);
  height: 1px;
  opacity: 0;
  animation: tcx-circuit-flow 4s infinite;
}
.tcx-landing .circuit-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--tcx-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--tcx-cyan);
  opacity: 0;
  animation: tcx-dot-pulse 3s infinite;
}
@keyframes tcx-circuit-flow {
  0% { opacity: 0; transform: scaleX(0); transform-origin: left; }
  30% { opacity: 0.6; transform: scaleX(1); }
  70% { opacity: 0.6; }
  100% { opacity: 0; transform: scaleX(0); transform-origin: right; }
}
@keyframes tcx-dot-pulse {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===== HERO ===== */
.tcx-landing .hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, #050D1A 0%, #0A1628 40%, #0F2040 70%, #0A1628 100%);
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}
.tcx-landing .hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; right: -100px;
  animation: tcx-glow-pulse 5s ease-in-out infinite;
}
.tcx-landing .hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 0; left: -100px;
  animation: tcx-glow-pulse 7s ease-in-out infinite reverse;
}
@keyframes tcx-glow-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}
.tcx-landing .hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.tcx-landing .hero-badge {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.3);
  color: var(--tcx-cyan); padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 20px;
  animation: tcx-badge-in 0.8s ease;
}
@keyframes tcx-badge-in { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.tcx-landing .hero-title,
.page-template-template-landing .entry-content .tcx-landing .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
  color: var(--tcx-white);
  animation: tcx-title-in 1s ease 0.2s both;
}
@keyframes tcx-title-in { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.tcx-landing .hero-sub,
.page-template-template-landing .entry-content .tcx-landing .hero-sub {
  font-size: 1.1rem; color: var(--tcx-text-light); margin-bottom: 36px;
  line-height: 1.7; animation: tcx-title-in 1s ease 0.4s both;
}
.tcx-landing .hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: tcx-title-in 1s ease 0.6s both;
}
.tcx-landing .btn-primary {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 16px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s; box-shadow: 0 8px 30px rgba(37,211,102,0.3);
  border: none; cursor: pointer;
}
.tcx-landing .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37,211,102,0.5); }
.tcx-landing .btn-secondary {
  background: transparent; border: 2px solid var(--tcx-cyan);
  color: var(--tcx-cyan); padding: 16px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s; cursor: pointer;
}
.tcx-landing .btn-secondary:hover { background: var(--tcx-cyan); color: var(--tcx-navy); transform: translateY(-3px); }

.tcx-landing .hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  animation: tcx-title-in 1s ease 0.8s both;
}
.tcx-landing .hero-machine-card {
  background: linear-gradient(135deg, var(--tcx-card-bg), var(--tcx-navy-mid));
  border: 1px solid var(--tcx-card-border);
  border-radius: 24px; padding: 40px;
  box-shadow: var(--tcx-shadow-cyan);
  text-align: center; position: relative;
}
.tcx-landing .hero-machine-icon {
  font-size: 6rem; display: block; margin-bottom: 16px;
  animation: tcx-float 4s ease-in-out infinite;
}
@keyframes tcx-float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-15px); } }
.tcx-landing .hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px;
}
.tcx-landing .hero-stat {
  background: rgba(0,200,255,0.08); border: 1px solid rgba(0,200,255,0.15);
  border-radius: 12px; padding: 12px;
}
.tcx-landing .hero-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--tcx-cyan); }
.tcx-landing .hero-stat-label { font-size: 0.7rem; color: var(--tcx-text-muted); margin-top: 2px; }

/* ===== TRUST BAR ===== */
.tcx-landing .trust-bar {
  background: linear-gradient(90deg, #0D1E35, #0F2040);
  border-top: 1px solid var(--tcx-card-border);
  border-bottom: 1px solid var(--tcx-card-border);
  padding: 20px 24px;
  overflow: hidden;
}
.tcx-landing .trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.tcx-landing .trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--tcx-text-light); white-space: nowrap;
}
.tcx-landing .trust-icon { font-size: 1.2rem; }

/* ===== SECTION BASE ===== */
.tcx-landing .section { padding: 90px 24px; position: relative; }
.tcx-landing .section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  color: var(--tcx-cyan); text-transform: uppercase; margin-bottom: 12px;
  display: block;
}
.tcx-landing .section-title,
.page-template-template-landing .entry-content .tcx-landing .section-title { margin-bottom: 16px; color: var(--tcx-white); }
.tcx-landing .section-sub,
.page-template-template-landing .entry-content .tcx-landing .section-sub { color: var(--tcx-text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto 48px; line-height: 1.7; }
.tcx-landing .section-center { text-align: center; }
.tcx-landing .container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* ===== BENEFITS ===== */
.tcx-landing .benefits-section { background: var(--tcx-navy-mid); }
.tcx-landing .benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.tcx-landing .benefit-card {
  background: var(--tcx-card-bg); border: 1px solid var(--tcx-card-border);
  border-radius: var(--tcx-radius); padding: 28px 24px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.tcx-landing .benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--tcx-cyan), var(--tcx-gold));
  opacity: 0; transition: opacity 0.3s;
}
.tcx-landing .benefit-card:hover { transform: translateY(-6px); border-color: var(--tcx-cyan); box-shadow: var(--tcx-shadow-cyan); }
.tcx-landing .benefit-card:hover::before { opacity: 1; }
.tcx-landing .benefit-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.tcx-landing .benefit-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--tcx-white); }
.tcx-landing .benefit-desc { font-size: 0.85rem; color: var(--tcx-text-light); line-height: 1.6; }

/* ===== COUNTERS ===== */
.tcx-landing .counters-section {
  background: linear-gradient(135deg, #050D1A, #0A1628);
  position: relative;
}
.tcx-landing .counters-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.tcx-landing .counter-card {
  text-align: center; padding: 40px 24px;
  background: var(--tcx-card-bg); border: 1px solid var(--tcx-card-border);
  border-radius: var(--tcx-radius); position: relative; overflow: hidden;
}
.tcx-landing .counter-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--tcx-cyan), var(--tcx-gold));
}
.tcx-landing .counter-num {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  background: linear-gradient(135deg, var(--tcx-cyan), var(--tcx-gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.tcx-landing .counter-label { color: var(--tcx-text-light); font-size: 0.9rem; margin-top: 8px; }

/* ===== CATALOG ===== */
.tcx-landing .catalog-section { background: #070F1C; }
.tcx-landing .catalog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.tcx-landing .product-card {
  background: var(--tcx-card-bg); border: 1px solid var(--tcx-card-border);
  border-radius: var(--tcx-radius); overflow: hidden;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.tcx-landing .product-card:hover { transform: translateY(-8px); border-color: var(--tcx-cyan); box-shadow: var(--tcx-shadow-cyan); }
.tcx-landing .product-visual {
  background: linear-gradient(135deg, var(--tcx-navy-mid), #0A1F3F);
  padding: 40px 20px; text-align: center; font-size: 4.5rem;
  position: relative; overflow: hidden; border-bottom: 1px solid var(--tcx-card-border);
}
.tcx-landing .product-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--tcx-gold); color: var(--tcx-navy);
  font-size: 0.65rem; font-weight: 800; padding: 4px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.tcx-landing .product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tcx-landing .product-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; color: var(--tcx-white); }
.tcx-landing .product-benefit {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--tcx-cyan); font-size: 0.8rem; font-weight: 600;
  margin-bottom: 12px;
}
.tcx-landing .product-desc { font-size: 0.85rem; color: var(--tcx-text-light); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.tcx-landing .btn-wa-small {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none; padding: 12px 20px;
  border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  cursor: pointer; text-decoration: none; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.3s; width: 100%;
}
.tcx-landing .btn-wa-small:hover { box-shadow: 0 8px 25px rgba(37,211,102,0.4); transform: translateY(-2px); }

/* ===== CALCULATOR ===== */
.tcx-landing .calculator-section {
  background: linear-gradient(135deg, #0A1628, #0F2040, #0A1628);
  position: relative;
}
.tcx-landing .calc-wrapper {
  max-width: 800px; margin: 0 auto;
  background: var(--tcx-card-bg); border: 1px solid var(--tcx-card-border);
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 0 60px rgba(0,200,255,0.15);
}
.tcx-landing .calc-header {
  background: linear-gradient(135deg, #0D2040, #0F2A50);
  padding: 36px; text-align: center;
  border-bottom: 1px solid var(--tcx-card-border);
}
.tcx-landing .calc-icon { font-size: 3rem; margin-bottom: 12px; display: block; }
.tcx-landing .calc-body { padding: 40px; }
.tcx-landing .calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.tcx-landing .field-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--tcx-text-light); margin-bottom: 10px; letter-spacing: 0.5px;
}
.tcx-landing .field-group input {
  width: 100%; background: var(--tcx-navy-mid); border: 2px solid var(--tcx-card-border);
  color: var(--tcx-white); padding: 16px 20px; border-radius: var(--tcx-radius-sm);
  font-size: 1.1rem; font-weight: 700; transition: border-color 0.3s;
  outline: none; font-family: 'Inter', sans-serif;
}
.tcx-landing .field-group input:focus { border-color: var(--tcx-cyan); box-shadow: 0 0 0 4px rgba(0,200,255,0.1); }
.tcx-landing .calc-btn {
  width: 100%; background: linear-gradient(135deg, var(--tcx-cyan), var(--tcx-cyan-dark));
  color: var(--tcx-navy); border: none; padding: 18px;
  border-radius: var(--tcx-radius-sm); font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px;
}
.tcx-landing .calc-btn:hover { box-shadow: 0 10px 30px rgba(0,200,255,0.4); transform: translateY(-2px); }
.tcx-landing .calc-results {
  display: none; margin-top: 32px;
  background: linear-gradient(135deg, #050D1A, #0A1628);
  border: 1px solid rgba(0,200,255,0.3); border-radius: var(--tcx-radius);
  overflow: hidden;
}
.tcx-landing .calc-results.show { display: block; animation: tcx-results-in 0.5s ease; }
@keyframes tcx-results-in { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.tcx-landing .results-header {
  background: linear-gradient(90deg, rgba(0,200,255,0.15), rgba(255,184,0,0.1));
  padding: 20px 28px; border-bottom: 1px solid rgba(0,200,255,0.2);
  font-weight: 700; color: var(--tcx-cyan); font-size: 0.9rem; text-align: center;
}
.tcx-landing .results-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.tcx-landing .result-item {
  padding: 24px; border-right: 1px solid rgba(0,200,255,0.1);
  border-bottom: 1px solid rgba(0,200,255,0.1);
}
.tcx-landing .result-item:nth-child(2n) { border-right: none; }
.tcx-landing .result-item:nth-child(n+3) { border-bottom: none; }
.tcx-landing .result-label { font-size: 0.75rem; color: var(--tcx-text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.tcx-landing .result-value { font-size: 1.8rem; font-weight: 900; color: var(--tcx-white); }
.tcx-landing .result-value.big { color: var(--tcx-gold); font-size: 2.2rem; }
.tcx-landing .calc-highlight {
  background: linear-gradient(135deg, rgba(255,184,0,0.1), rgba(0,200,255,0.1));
  border-top: 1px solid rgba(255,184,0,0.2);
  padding: 24px 28px; text-align: center;
}
.tcx-landing .calc-highlight p { color: var(--tcx-gold-light); font-weight: 700; font-size: 1.05rem; margin-bottom: 16px; }
.tcx-landing .btn-calc-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none; padding: 16px 36px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s; text-decoration: none;
}
.tcx-landing .btn-calc-wa:hover { box-shadow: 0 10px 30px rgba(37,211,102,0.5); transform: translateY(-2px); }

/* ===== PROCESS ===== */
.tcx-landing .process-section { background: var(--tcx-navy-mid); }
.tcx-landing .steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  position: relative;
}
.tcx-landing .steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--tcx-cyan), var(--tcx-gold));
  z-index: 0;
}
.tcx-landing .step-item {
  text-align: center; position: relative; z-index: 1;
}
.tcx-landing .step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tcx-cyan), var(--tcx-cyan-dark));
  color: var(--tcx-navy); font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 0 20px rgba(0,200,255,0.4);
}
.tcx-landing .step-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.tcx-landing .step-desc { font-size: 0.78rem; color: var(--tcx-text-light); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.tcx-landing .testimonials-section { background: #070F1C; }
.tcx-landing .testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.tcx-landing .testimonial-card {
  background: var(--tcx-card-bg); border: 1px solid var(--tcx-card-border);
  border-radius: var(--tcx-radius); padding: 32px;
  position: relative; transition: all 0.3s;
}
.tcx-landing .testimonial-card:hover { border-color: var(--tcx-cyan); transform: translateY(-4px); }
.tcx-landing .stars { color: var(--tcx-gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.tcx-landing .testimonial-text {
  font-size: 0.95rem; color: var(--tcx-text-light); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.tcx-landing .testimonial-text::before { content: '"'; color: var(--tcx-cyan); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.tcx-landing .testimonial-author { display: flex; align-items: center; gap: 14px; }
.tcx-landing .author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--tcx-navy);
  flex-shrink: 0;
}
.tcx-landing .author-name { font-weight: 700; font-size: 0.9rem; }
.tcx-landing .author-location { font-size: 0.78rem; color: var(--tcx-text-muted); }

/* ===== TRUST ICONS (cards section) ===== */
.tcx-landing .trust-section { background: var(--tcx-navy-mid); }
.tcx-landing .trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tcx-landing .trust-card {
  background: var(--tcx-card-bg); border: 1px solid var(--tcx-card-border);
  border-radius: var(--tcx-radius); padding: 32px 24px; text-align: center;
  transition: all 0.3s;
}
.tcx-landing .trust-card:hover { border-color: var(--tcx-cyan); box-shadow: var(--tcx-shadow-cyan); transform: translateY(-4px); }
.tcx-landing .trust-card-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.tcx-landing .trust-card-title { font-weight: 700; margin-bottom: 8px; color: var(--tcx-white); }
.tcx-landing .trust-card-desc { font-size: 0.85rem; color: var(--tcx-text-light); line-height: 1.6; }

/* ===== FAQ ===== */
.tcx-landing .faq-section { background: #070F1C; }
.tcx-landing .faq-list { max-width: 800px; margin: 0 auto; }
.tcx-landing .faq-item {
  background: var(--tcx-card-bg); border: 1px solid var(--tcx-card-border);
  border-radius: var(--tcx-radius-sm); margin-bottom: 12px; overflow: hidden;
}
.tcx-landing .faq-q {
  padding: 22px 24px; font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s; color: var(--tcx-white); user-select: none;
}
.tcx-landing .faq-q:hover { color: var(--tcx-cyan); }
.tcx-landing .faq-icon { font-size: 1.2rem; transition: transform 0.3s; color: var(--tcx-cyan); flex-shrink: 0; }
.tcx-landing .faq-item.open .faq-icon { transform: rotate(45deg); }
.tcx-landing .faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px; color: var(--tcx-text-light); font-size: 0.9rem; line-height: 1.7;
}
.tcx-landing .faq-item.open .faq-a { max-height: 200px; padding: 0 24px 22px; }

/* ===== CTA FINAL ===== */
.tcx-landing .cta-final {
  background: linear-gradient(135deg, #050D1A 0%, #0A1628 50%, #0F2040 100%);
  position: relative; overflow: hidden;
}
.tcx-landing .cta-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,255,0.1) 0%, transparent 70%);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: tcx-glow-pulse 6s ease-in-out infinite;
}
.tcx-landing .cta-inner {
  position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto;
}
.tcx-landing .cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,184,0,0.1); border: 1px solid rgba(255,184,0,0.3);
  color: var(--tcx-gold); padding: 8px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 2px;
}
.tcx-landing .cta-title { font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 20px; }
.tcx-landing .cta-sub { font-size: 1.05rem; color: var(--tcx-text-light); margin-bottom: 40px; line-height: 1.7; }
.tcx-landing .btn-cta-big {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none; padding: 20px 48px;
  border-radius: 60px; font-size: 1.15rem; font-weight: 800;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s; box-shadow: 0 15px 40px rgba(37,211,102,0.4);
  animation: tcx-btn-pulse 3s ease-in-out infinite;
}
@keyframes tcx-btn-pulse {
  0%,100% { box-shadow: 0 15px 40px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 15px 60px rgba(37,211,102,0.7); }
}
.tcx-landing .btn-cta-big:hover { transform: translateY(-4px) scale(1.03); }
.tcx-landing .cta-note { margin-top: 20px; font-size: 0.8rem; color: var(--tcx-text-muted); }

/* ===== SCROLL REVEAL ===== */
.tcx-landing .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.tcx-landing .reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== BLINDAJE FINAL CONTRA ESTILOS DE BLOCKSY =====
   Blocksy aplica reglas de color a la tipografía dentro de
   .entry-content (donde vive el bloque HTML pegado). Estas reglas
   tienen alta especificidad y pueden sobreescribir el color heredado,
   dejando el texto en gris apagado. Esta sección fuerza el color
   correcto en todos los textos de la landing, sin importar el
   anidamiento real en el HTML. */
.page-template-template-landing .entry-content .tcx-landing,
.page-template-template-landing .entry-content .tcx-landing p,
.page-template-template-landing .entry-content .tcx-landing span,
.page-template-template-landing .entry-content .tcx-landing div,
.page-template-template-landing .entry-content .tcx-landing li,
.page-template-template-landing .entry-content .tcx-landing a {
  color: inherit;
}
.page-template-template-landing .entry-content .tcx-landing { color: #E8F4FD; }
.page-template-template-landing .entry-content .tcx-landing h1,
.page-template-template-landing .entry-content .tcx-landing h2,
.page-template-template-landing .entry-content .tcx-landing h3,
.page-template-template-landing .entry-content .tcx-landing h4,
.page-template-template-landing .entry-content .tcx-landing .hero-title,
.page-template-template-landing .entry-content .tcx-landing .section-title,
.page-template-template-landing .entry-content .tcx-landing .benefit-title,
.page-template-template-landing .entry-content .tcx-landing .product-name,
.page-template-template-landing .entry-content .tcx-landing .trust-card-title,
.page-template-template-landing .entry-content .tcx-landing .cta-title,
.page-template-template-landing .entry-content .tcx-landing .author-name,
.page-template-template-landing .entry-content .tcx-landing .faq-q {
  color: var(--tcx-white) !important;
}
.page-template-template-landing .entry-content .tcx-landing .highlight { color: var(--tcx-cyan) !important; }
.page-template-template-landing .entry-content .tcx-landing .highlight-gold { color: var(--tcx-gold) !important; }
.page-template-template-landing .entry-content .tcx-landing .hero-sub,
.page-template-template-landing .entry-content .tcx-landing .section-sub,
.page-template-template-landing .entry-content .tcx-landing .benefit-desc,
.page-template-template-landing .entry-content .tcx-landing .product-desc,
.page-template-template-landing .entry-content .tcx-landing .testimonial-text,
.page-template-template-landing .entry-content .tcx-landing .trust-card-desc,
.page-template-template-landing .entry-content .tcx-landing .step-desc,
.page-template-template-landing .entry-content .tcx-landing .faq-a,
.page-template-template-landing .entry-content .tcx-landing .cta-sub {
  color: var(--tcx-text-light) !important;
}

@media (max-width: 1024px) {
  .tcx-landing .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .tcx-landing .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .tcx-landing .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .tcx-landing .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .tcx-landing .steps-grid::before { display: none; }
  .tcx-landing .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .tcx-landing .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .tcx-landing .hero-content { grid-template-columns: 1fr; }
  .tcx-landing .hero-visual { display: none; }
  .tcx-landing .benefits-grid { grid-template-columns: 1fr; }
  .tcx-landing .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .tcx-landing .catalog-grid { grid-template-columns: 1fr; }
  .tcx-landing .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .tcx-landing .testimonials-grid { grid-template-columns: 1fr; }
  .tcx-landing .trust-grid { grid-template-columns: 1fr 1fr; }
  .tcx-landing .calc-fields { grid-template-columns: 1fr; }
  .tcx-landing .results-grid { grid-template-columns: 1fr; }
  .tcx-landing .result-item { border-right: none; }
  .tcx-landing .hero-btns { flex-direction: column; }
  .tcx-landing .btn-primary,
  .tcx-landing .btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .tcx-landing .counters-grid { grid-template-columns: 1fr 1fr; }
  .tcx-landing .trust-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .tcx-landing *,
  .tcx-landing *::before,
  .tcx-landing *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
