/* Secure Payment Section */
.payment-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.payment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(249,115,22,.03), transparent),
              radial-gradient(800px 600px at 80% 90%, rgba(245,158,11,.04), transparent);
  pointer-events: none;
}

.payment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.payment-content {
  text-align: center;
}

.payment-header {
  max-width: 800px;
  margin: 0 auto 64px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  animation: securityPulse 3s infinite;
}

.security-badge i {
  font-size: 16px;
}

.payment-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #374151 0%, #1f2937 50%, #111827 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.payment-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Security Features Grid */
.payment-features {
  margin-bottom: 64px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.security-feature {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.security-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #fb923c, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.security-feature:hover::before {
  transform: scaleX(1);
}

.security-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #f97316;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fef3e7, #fed7aa);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.security-feature:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #f97316, #fb923c);
  transform: scale(1.1);
}

.feature-icon-wrapper i {
  font-size: 28px;
  color: #ea580c;
  transition: color 0.3s ease;
}

.security-feature:hover .feature-icon-wrapper i {
  color: #fff;
}

.security-feature h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px;
}

.security-feature p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Payment Methods */
.payment-methods {
  margin-bottom: 64px;
}

.methods-header {
  margin-bottom: 32px;
}

.methods-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  margin: 0;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.payment-method {
  background: #fff;
  padding: 20px 16px;
  border-radius: 12px;
  border: 2px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-method:hover {
  border-color: #f97316;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

.payment-method i {
  font-size: 2rem;
  color: #64748b;
  transition: color 0.3s ease;
}

.payment-method:hover i {
  color: #f97316;
}

.payment-method span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

/* Stripe Trust Section */
.stripe-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.stripe-logo {
  text-align: center;
}

.stripe-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stripe-text {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.stripe-brand {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #635bff;
  letter-spacing: -0.02em;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.trust-badge i {
  font-size: 1.5rem;
  color: #10b981;
  width: 24px;
  text-align: center;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
}

.badge-text small {
  font-size: 0.8rem;
  color: #64748b;
}

/* Money-Back Guarantee */
.payment-guarantee {
  background: linear-gradient(135deg, #fef3e7, #fed7aa);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid #f97316;
  position: relative;
  overflow: hidden;
}

.payment-guarantee::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(249, 115, 22, 0.1), transparent);
  animation: guaranteeShine 3s infinite;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.guarantee-icon i {
  font-size: 2rem;
  color: #fff;
}

.guarantee-text {
  text-align: left;
  flex: 1;
}

.guarantee-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7c2d12;
  margin: 0 0 8px;
}

.guarantee-text p {
  font-size: 1rem;
  color: #92400e;
  line-height: 1.5;
  margin: 0;
}

/* Animations */
@keyframes securityPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5); }
}

@keyframes guaranteeShine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stripe-trust {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .trust-badges {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .payment-section {
    padding: 64px 0;
  }
  
  .payment-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }
  
  .payment-method {
    padding: 16px 12px;
  }
  
  .payment-method i {
    font-size: 1.5rem;
  }
  
  .stripe-trust {
    padding: 24px;
    gap: 24px;
  }
  
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .guarantee-text {
    text-align: center;
  }
  
  .guarantee-icon {
    width: 60px;
    height: 60px;
  }
  
  .guarantee-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .payment-container {
    padding: 0 20px;
  }
  
  .security-feature {
    padding: 24px 20px;
  }
  
  .feature-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .feature-icon-wrapper i {
    font-size: 24px;
  }
  
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stripe-brand {
    font-size: 2rem;
  }
  
  .payment-guarantee {
    padding: 24px 20px;
  }
}

