/* Pricing Page Custom Styles - matches Innocody color scheme */

body.page-template-price-template {
  background: linear-gradient(135deg, #0b0b2c 0%, #2714A6 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif !important;
}

.pricing-hero {
  text-align: center;
  padding: 60px 20px 40px 20px;
  background: radial-gradient(ellipse at top left, #2a003e 0%, #0b0b2c 100%);
}
.pricing-hero h1 {
  color: #fff;
  font-size: var(--font-size-hero);
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-hero p {
  font-size: var(--font-size-small-title);
  color: #bdbaff;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 40px auto 0 auto;
  max-width: 1200px;
}
.pricing-card {
  background: #1A1A3F;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  padding: 36px 28px 32px 28px;
  min-width: 280px;
  max-width: 320px;
  flex: 1 1 320px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2714A6;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(177,76,255,0.2);
  transition: all 0.5s ease;
}
.pricing-card h2 {
  font-size: var(--font-size-plan-name);
  margin-bottom: 15px;
  margin-top: 5px;
  color: #B14CFF;
  font-weight: 500;
}
.pricing-card .price {
  font-size: var(--font-size-price);
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.pricing-card .price span {
  font-size: var(--font-size-body);
  color: #bdbaff;
  font-weight: 400;
}
.pricing-card ul {
  list-style: disc inside;
  margin: 0 0 22px 0;
  padding: 0;
  width: 100%;
  color: #eaeaea;
}
.pricing-card li {
  margin-bottom: 8px;
  font-size: 18px;
}
.pricing-card .btn {
  background: linear-gradient(90deg, #B14CFF 0%, #2714A6 100%);
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 18px;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(177,76,255,0.08);
}
.pricing-card .btn:hover {
  background: linear-gradient(90deg, #B14CFF 0%, #2714A6 100%);
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(177, 76, 255, 0.4);
  transform: translateY(-1px);
}

.pricing-comparison {
  margin: 60px auto 0 auto;
  max-width: 1100px;
  background: #17173a;
  border-radius: 16px;
  padding: 36px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.pricing-comparison h2 {
  text-align: center;
  color: #B14CFF;
  margin-bottom: 24px;
  font-weight: 500;
}
.pricing-comparison table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}
.pricing-comparison th,
.pricing-comparison td {
  padding: 14px 10px;
  text-align: center;
  border-bottom: 1px solid #2714A6;
  font-size: 18px;
}
.pricing-comparison th {
  color: #B14CFF;
}
.pricing-comparison tr:last-child td {
  border-bottom: none;
}
.comaprison-feature {
  color: #fff;
} 

/* Style checkmarks (✔) and X marks (✖) */
.pricing-comparison .checkmark {
  color: #4CAF50; /* Bright green for checkmarks */
  font-weight: 700;
  font-size: 1.2em;
}

.pricing-comparison .xmark {
  color: #F44336; /* Bright red for X marks */
  font-weight: 700;
  font-size: 1.2em;
}

.pricing-faq {
  margin: 60px auto 0 auto;
  max-width: 900px;
  background: #13132b;
  border-radius: 16px;
  padding: 36px 20px;
}
.pricing-faq h2 {
  text-align: center;
  color: #B14CFF;
  margin-bottom: 24px;
  font-weight: 500;
}
.faq-item {
  margin-bottom: 18px;
}
.faq-item h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
  cursor: pointer;
}
.faq-answer {
  font-size: 18px;
  color: #bdbaff;
  margin-bottom: 8px;
}

.pricing-cta {
  background: radial-gradient(ellipse at top left, #2a003e 0%, #0b0b2c 100%);
  text-align: center;
  padding: 48px 20px 60px 20px;
  margin-top: 60px;
}
.pricing-cta h2 {
  color: #fff;
  margin-bottom: 24px;
  margin-top: 5px;
}
.pricing-cta .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(90deg, #B14CFF 0%, #2714A6 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(177, 76, 255, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  z-index: 0;
}
.pricing-cta .btn:hover {
  box-shadow: 0 6px 15px rgba(177, 76, 255, 0.4);
  transform: translateY(-1px);
  color: #fff;
}

/* Make sure the border is above the before-glow */
.pricing-cta .btn::before {
  z-index: 1;
}

.pricing-cta .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(177, 76, 255, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.7;
  z-index: -1;
  transition: opacity 0.3s, transform 0.3s;
}

/* Offset animated border effect */
.cta-border-wrap {
  transition: --border-angle 0.15s ease-out;  
  display: inline-block;
  position: relative;
  border-radius: 12px;
  padding: 0;
}

.cta-border-wrap::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
  border: 2px solid transparent;
  mask-image: conic-gradient(
    from var(--border-angle, 0deg),
    white 0turn,
    white var(--border-progress, 0.15turn),
    transparent var(--border-progress, 0.15turn),
    transparent 1turn
  );
  -webkit-mask-image: conic-gradient(
    from var(--border-angle, 0deg),
    white 0turn,
    white var(--border-progress, 0.15turn),
    transparent var(--border-progress, 0.15turn),
    transparent 1turn
  );
  border-color: #B14CFF;
  box-shadow:
    0 0 6px #b14cff,
    0 0 12px #b14cff,
    0 0 20px rgba(177, 76, 255, 0.5),
    0 0 30px rgba(177, 76, 255, 0.3);
  opacity: calc(0.5 + 0.5 * var(--border-visible, 0));
  transition:
    opacity 0.25s,
    mask-image 0.25s,
    -webkit-mask-image 0.25s,
    border-color 0.25s;
}

.cta-border-wrap:hover::after {
  --border-progress: 1turn;
  --border-visible: 1;
  transition:
    opacity 0.2s,
    mask-image 0.2s,
    -webkit-mask-image 0.2s,
    border-color 0.2s;
}

.pricing-cta .btn:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    max-width: 95vw;
    min-width: 220px;
    width: 100%;
  }
  .pricing-comparison {
    padding: 20px 5px;
  }
}
@media (max-width: 600px) {
  .pricing-hero h1 {
    font-size: 4rem;
  }
  .pricing-card h2 {
    font-size: 4rem;
  }
  .pricing-card .price {
    font-size: 2rem;
  }
  .pricing-comparison th, .pricing-comparison td {
    padding: 8px 4px;
    font-size: 1.2rem;
  }
  .pricing-faq, .pricing-comparison {
    padding: 10px 2px;
  }
}
