/* ============================================
   PAYMENT SOLUTIONS - H.A.R.T.P (PREMIUM v2)
   ============================================ */

/* HERO CON IMAGEN DE FONDO */
.payment-hero {
  position: relative;
  background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.7)), 
              url('/images/hero-construction.jpg') center/cover no-repeat;
  color: white;
  padding: 8rem 1rem;
  text-align: center;
}

.payment-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.payment-hero .subtitle {
  font-size: 1.35rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.payment-hero .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: #1E3A8A;
  padding: 1.1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.payment-hero .cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* FILOSOFÍA & AUTORIDAD */
.philosophy-box, .authority-box {
  background: white;
  padding: 3.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}

.philosophy-box { border-left: 5px solid #EA580C; }
.authority-box { border-top: 5px solid #1E3A8A; }

.philosophy-box h2, .authority-box h2 {
  color: #1E3A8A;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.philosophy-box p {
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.highlight {
  background: linear-gradient(120deg, #FEF3C7 0%, #FDE68A 100%);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  color: #92400E;
}

/* 3 TARJETAS PREMIUM (En lugar de 9) */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.payment-card-premium {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.payment-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #EA580C;
}

.payment-card-premium .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  background: #F8FAFC;
  border-radius: 1rem;
}

.payment-card-premium h3 {
  color: #1E3A8A;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.payment-card-premium .card-tag {
  display: inline-block;
  background: #F1F5F9;
  color: #475569;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-card-premium .card-tag.rare {
  background: #FEF3C7;
  color: #92400E;
}

.payment-card-premium ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.payment-card-premium ul li {
  padding: 0.6rem 0;
  color: #4B5563;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid #F3F4F6;
}

.payment-card-premium ul li:last-child { border-bottom: none; }

.payment-card-premium ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 800;
}

/* CASO REAL */
.real-case-box {
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  color: white;
  padding: 3rem;
  border-radius: 1.5rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.real-case-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 15rem;
  opacity: 0.1;
  font-family: serif;
}

/* PROCESO 5 PASOS */
.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 3rem 0;
}

.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
}

.process-step .step-number {
  width: 3rem;
  height: 3rem;
  background: #EA580C;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.process-step h4 {
  color: #1E3A8A;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* SOLUCIONADOR INTERACTIVO */
.solution-finder {
  background: #F8FAFC;
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid #E2E8F0;
  margin: 4rem 0;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.finder-btn {
  padding: 1rem;
  border: 2px solid #E2E8F0;
  background: white;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s;
  text-align: center;
}

.finder-btn:hover, .finder-btn.active {
  border-color: #EA580C;
  background: #FFF7ED;
  color: #EA580C;
}

.finder-result {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #10B981;
  display: none;
  animation: fadeIn 0.4s ease;
}

.finder-result.show { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* FRASE FINAL DE IMPACTO */
.final-quote-section {
  background: #0F172A;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.final-quote-section blockquote {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  color: #F8FAFC;
}

.final-quote-section .author {
  margin-top: 2rem;
  color: #94A3B8;
  font-size: 1.1rem;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .payment-hero { padding: 5rem 1rem; }
  .payment-hero h1 { font-size: 2.25rem; }
  .philosophy-box, .authority-box, .real-case-box { padding: 2rem; }
  .process-steps { flex-direction: column; }
  .final-quote-section blockquote { font-size: 1.5rem; }
}