@font-face {
  font-family: 'Blender Pro';
  src: url('/fonts/BlenderPro-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.pricing-container {
  min-height: 100vh;
  padding: 4rem 2rem;
  background-color: #000000;
  color: white;
  font-family: 'Blender Pro', 'Courier New', monospace;
  font-weight: 500;
}

.pricing-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.header-content {
  text-align: center;
  margin-bottom: 2rem;
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  font-family: 'Blender Pro', 'Courier New', monospace;
}

.header-content p {
  font-size: 1.1rem;
  color: #606060;
  letter-spacing: 1px;
  font-family: 'Blender Pro', 'Courier New', monospace;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 184, 165, 0.06);
  border: 1px solid rgba(21, 184, 165, 0.15);
  padding: 4px;
  border-radius: 6px;
  width: fit-content;
  margin: 0 auto;
}

.billing-toggle span {
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: #606060;
  letter-spacing: 1px;
  font-family: 'Blender Pro', 'Courier New', monospace;
  border: 1px solid transparent;
  outline: none;
}

.billing-toggle span.active {
  background: rgba(21, 184, 165, 0.12);
  color: #15B8A5;
  border: 1px solid rgba(21, 184, 165, 0.25);
}

.pricing-cards {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0 1rem;
}

.pricing-card {
  background-color: rgba(10, 10, 10, 0.8);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #1a1a1a;
}

.pricing-card:hover {
  border-color: #333;
}

.pricing-card.pro-card {
  background: rgba(10, 10, 10, 0.8);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(21, 184, 165, 0.2);
}

.pricing-card.pro-card:hover {
  border-color: rgba(21, 184, 165, 0.4);
}

.pricing-card.pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(21, 184, 165, 0.08) 0%,
    rgba(21, 184, 165, 0.03) 40%,
    transparent 70%
  );
  z-index: -3;
}

.pricing-card.pro-card .glow {
  position: absolute;
  width: 150%;
  height: 150%;
  bottom: -80%;
  left: -25%;
  background: radial-gradient(
    circle at center,
    rgba(21, 184, 165, 0.15) 0%,
    rgba(21, 184, 165, 0.05) 40%,
    transparent 70%
  );
  filter: blur(60px);
  transform: translateZ(0);
  z-index: -1;
}

.pricing-card.pro-card-active {
  border: 1px solid rgba(21, 184, 165, 0.35);
}

.card-header {
  margin-bottom: 2rem;
}

.card-tagline {
  font-size: 0.8rem;
  color: #4a4a4a;
  letter-spacing: 1px;
  margin-top: 0.35rem;
  font-family: 'Blender Pro', 'Courier New', monospace;
  font-weight: 500;
}

.pricing-card.pro-card .card-tagline {
  color: rgba(21, 184, 165, 0.45);
}

.card-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #606060;
  font-family: 'Blender Pro', 'Courier New', monospace;
}

.pricing-card.pro-card .card-header h3 {
  color: #15B8A5;
}

.price-container {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
  font-family: 'Blender Pro', 'Courier New', monospace;
}

.price-container .text-4xl {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.price-container .text-2xl {
  font-size: 1.5rem;
}

.price-container .line-through {
  text-decoration: line-through;
  color: #444;
}

.price-container .text-gray-400 {
  color: #444;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.feature-list {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: 'Blender Pro', 'Courier New', monospace;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #999;
}

.feature-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #15B8A5;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.select-plan-button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Blender Pro', 'Courier New', monospace;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.select-plan-button.active {
  background-color: #15B8A5;
  color: #000000;
  border: 1px solid transparent;
}

.select-plan-button.active:hover {
  background-color: #12a393;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(21, 184, 165, 0.3);
}

.select-plan-button.disabled {
  background-color: #111;
  color: #444;
  cursor: not-allowed;
  border: 1px solid #1a1a1a;
}

.select-plan-button.manage-plan-button {
  background-color: transparent;
  color: #15B8A5;
  border: 1px solid rgba(21, 184, 165, 0.3);
  cursor: pointer;
}

.select-plan-button.manage-plan-button:hover {
  background-color: rgba(21, 184, 165, 0.08);
  border-color: rgba(21, 184, 165, 0.5);
  transform: translateY(-2px);
}

.pricing-card.pro-card .card-header,
.pricing-card.pro-card .feature-list,
.pricing-card.pro-card .select-plan-button {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .pricing-container {
    padding: 2rem 1rem;
  }

  .pricing-header {
    margin-bottom: 2rem;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* FAQ Section Styles */
.faq-section {
  max-width: 800px;
  margin: 5rem auto 0;
  padding: 0 1rem;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: 2px;
  font-family: 'Blender Pro', 'Courier New', monospace;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.faq-card {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: #333;
}

.faq-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #ccc;
  letter-spacing: 0.5px;
  font-family: 'Blender Pro', 'Courier New', monospace;
}

.faq-card p {
  font-family: 'Blender Pro', 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-section {
    margin-top: 3rem;
  }
}
