/* Pricing Page - Premium styling */

/* ---- Header / Navigation ---- */
.pricing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 18, 35, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
}

.pricing-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.pricing-header-brand {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.pricing-header-brand:hover {
  color: #e9d5ff;
}

.pricing-header-phone {
  color: #25D366;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-header-phone:hover {
  color: #2ee66d;
}

.pricing-header-whatsapp {
  color: #25D366;
  font-size: 1.3rem;
  text-decoration: none;
}

.pricing-header-whatsapp:hover {
  color: #2ee66d;
}

.pricing-header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.pricing-header-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
}

.pricing-header-nav a:hover {
  color: #fff;
}

.pricing-header-nav a[href*="pricing"] {
  color: #c471f5;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pricing-header-nav {
    display: none;
  }
  .pricing-header-phone {
    font-size: 1rem;
  }
}

/* ---- Hero ---- */
.page-pricing .hero {
  background: linear-gradient(135deg, #c471f5 0%, #fa709a 40%, #fee140 100%);
  position: relative;
  min-height: 100vh;
  padding-top: 88px;
}

.page-pricing .hero::before {
  background: 
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.2) 0%, transparent 45%),
    url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 1;
}

.page-pricing .hero h1 {
  font-size: 3.8rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.page-pricing .hero .subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-pricing .hero-badges {
  gap: 16px;
  margin-top: 36px;
}

.page-pricing .badge {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-pricing .badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.35);
}

.page-pricing .badge i {
  margin-left: 8px;
  opacity: 0.95;
}

/* ---- Main content area ---- */
.page-pricing .main-content {
  background: linear-gradient(180deg, #fafbff 0%, #f0f2ff 50%, #fff 100%);
  padding: 70px 0 48px;
}

.page-pricing .content-section {
  margin-bottom: 72px;
}

.page-pricing .content-section:last-of-type {
  margin-bottom: 0;
}

.page-pricing .content-section > h2 {
  font-size: 2.4rem;
  color: #1a1a2e;
  margin-bottom: 28px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.page-pricing .content-section > h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c471f5, #fa709a);
  border-radius: 2px;
}

.page-pricing .content-section > p {
  font-size: 1.12rem;
  color: #444;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

/* ---- Pricing cards ---- */
.page-pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}

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

.page-pricing .pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid rgba(196, 113, 245, 0.15);
  position: relative;
  overflow: hidden;
}

.page-pricing .pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c471f5, #fa709a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-pricing .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(196, 113, 245, 0.2);
  border-color: rgba(196, 113, 245, 0.4);
}

.page-pricing .pricing-card:hover::before {
  opacity: 1;
}

.page-pricing .pricing-card.featured {
  border-color: rgba(196, 113, 245, 0.5);
  box-shadow: 0 20px 56px rgba(196, 113, 245, 0.22);
  transform: scale(1.03);
}

.page-pricing .pricing-card.featured::before {
  opacity: 1;
  height: 5px;
}

.page-pricing .pricing-card.featured::after {
  content: 'הכי פופולרי';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c471f5, #fa709a);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(196, 113, 245, 0.4);
}

.page-pricing .pricing-card h3 {
  color: #1a1a2e;
  margin-bottom: 16px;
  font-size: 1.45rem;
  font-weight: 700;
}

.page-pricing .pricing-card .price {
  font-size: 2.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, #c471f5, #fa709a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 24px;
}

.page-pricing .pricing-card .price-unit {
  -webkit-text-fill-color: initial;
  color: #888;
  font-size: 1.1rem;
}

.page-pricing .pricing-card ul {
  text-align: right;
  margin: 24px 0;
}

.page-pricing .pricing-card ul li {
  padding: 10px 28px 10px 0;
  color: #444;
  font-size: 1rem;
}

.page-pricing .pricing-card ul li::before {
  content: '✓';
  color: #c471f5;
  font-weight: bold;
  font-size: 1rem;
}

.page-pricing .pricing-card p[style*="font-size: 0.9rem"] {
  font-size: 0.9rem !important;
  color: #6b7280 !important;
  margin-top: 20px !important;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

/* ---- Feature cards (מה כלול) ---- */
.page-pricing .features-included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.page-pricing .feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  margin: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  border-right: 4px solid #c471f5;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: right;
}

.page-pricing .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(196, 113, 245, 0.15);
}

.page-pricing .feature-card .feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196, 113, 245, 0.2), rgba(250, 112, 154, 0.2));
  color: #c471f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.page-pricing .feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #1a1a2e;
}

.page-pricing .feature-card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* ---- Factors list (גורמים שמשפיעים) ---- */
.page-pricing .factors-section {
  background: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.page-pricing .factors-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-pricing .factors-section ul li {
  padding: 18px 24px 18px 0;
  position: relative;
  font-size: 1.08rem;
  color: #444;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
  padding-right: 56px;
}

.page-pricing .factors-section ul li:last-child {
  border-bottom: none;
}

.page-pricing .factors-section ul li::before {
  content: attr(data-num);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c471f5, #fa709a);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.page-pricing .factors-section ul li::after {
  display: none;
}

/* ---- Payment section (תשלומים נוחים) ---- */
.page-pricing .payment-section {
  background: linear-gradient(135deg, rgba(196, 113, 245, 0.08) 0%, rgba(250, 112, 154, 0.08) 100%);
  border-radius: 24px;
  padding: 44px 48px;
  border: 1px solid rgba(196, 113, 245, 0.2);
}

.page-pricing .payment-section ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.page-pricing .payment-section ul li {
  padding: 16px 20px 16px 24px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 14px;
  font-size: 1.08rem;
  color: #444;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  border-right: 4px solid #c471f5;
  position: relative;
}

.page-pricing .payment-section ul li::before {
  display: none;
}

/* ---- Contact section ---- */
.page-pricing .contact-section {
  background: linear-gradient(135deg, #c471f5 0%, #fa709a 50%, #fee140 100%);
  margin-top: 0;
  padding: 56px 20px 72px;
  position: relative;
  overflow: hidden;
}

.page-pricing .contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-pricing .contact-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
}

.page-pricing .contact-section p {
  font-size: 1.2rem;
  opacity: 0.98;
  position: relative;
}

.page-pricing .contact-info {
  gap: 32px;
  margin: 36px 0 44px;
  position: relative;
}

.page-pricing .contact-item {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 18px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.page-pricing .contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.3);
}

.page-pricing .contact-item a,
.page-pricing .contact-item span {
  color: #fff !important;
  font-weight: 600;
}

.page-pricing .contact-item i {
  font-size: 1.4rem;
  margin-left: 10px;
  opacity: 0.95;
}

.page-pricing .contact-buttons {
  gap: 20px;
  margin-top: 36px;
  position: relative;
}

.page-pricing .contact-btn {
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-pricing .contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.page-pricing .whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.page-pricing .whatsapp-btn:hover {
  background: #20bd5c;
  color: #fff;
}

/* ---- Footer ---- */
.page-pricing footer {
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 48px 20px 28px;
}

.page-pricing footer a {
  color: #a78bfa;
  transition: color 0.2s ease;
}

.page-pricing footer a:hover {
  color: #c471f5;
}

.page-pricing footer h3 {
  color: #e2e8f0;
  font-size: 1.15rem;
  font-weight: 700;
}

.page-pricing footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.page-pricing footer .footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-pricing footer .footer-grid li {
  margin-bottom: 12px;
}

.page-pricing footer .footer-bottom {
  border-top: 1px solid #2d2d44;
  padding-top: 24px;
  color: #888;
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .page-pricing .hero h1 {
    font-size: 2.6rem;
  }
  .page-pricing .hero .subtitle {
    font-size: 1.25rem;
  }
  .page-pricing .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  .page-pricing .content-section > h2 {
    font-size: 1.9rem;
  }
  .page-pricing .pricing-card.featured {
    transform: none;
  }
  .page-pricing .factors-section,
  .page-pricing .payment-section {
    padding: 28px 24px;
  }
  .page-pricing .contact-section h2 {
    font-size: 1.9rem;
  }
}
