body {
  background-color: #000000;
  color: white;
}

.pricing-hero {
  height: 60vh;
  min-height: 400px;
  background-color: #000000;
}

.pricing-section {
  padding: 100px 0;
  color: white;
  background-color: transparent;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.pricing-card {
  background-color: #12121a;
  border-radius: 12px;
  padding: 3rem 2rem;
  position: relative;

  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  background-color: #161621;
  background: linear-gradient(145deg, #161621 0%, #1a1a2e 100%);
  border: 1px solid var(--primary-color);
  box-shadow: 0 25px 50px -12px rgba(146, 71, 215, 0.5);
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
  transform: scale(1.05);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.pricing-desc {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap; 
}

.price-prefix {
  font-size: 1rem;
  font-weight: 600;
  color: #9ca3af;
  margin-right: 0.5rem;
}

.addon-price-prefix {
  font-size: 0.85rem;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.price-period {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d946ef;
  margin-left: 8px;
  text-transform: uppercase;
}

.pricing-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.pricing-includes {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.pricing-list li {
  color: #9ca3af;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.pricing-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  color: #9247d7;
  color: var(--primary-color);
  margin-right: 12px;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 1.1rem;
}

#pricing-list-and-more::before {
  content: "" !important;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: white;
  text-decoration: none;
  padding: 14px 0;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
  filter: brightness(1.1);
}

.pricing-note {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

.custom-solutions-wrapper {
  margin-top: 8rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  background-color: #0f0f16;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  cursor: pointer;
}

.bento-card.large {
  grid-column: span 3;
}

.bento-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(146, 71, 215, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(146, 71, 215, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.bento-card:hover .bento-bg-glow {
  opacity: 1;
}

.bento-content {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.bento-card:hover .bento-content {
  transform: translateY(-10px);
}

.bento-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  background: rgba(146, 71, 215, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.bento-card:hover .bento-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(146, 71, 215, 0.3);
}

.bento-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bento-desc {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
}

.bento-action {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: white;
  opacity: 0.6;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.bento-card:hover .bento-link {
  opacity: 1;
  transform: translateY(0);
  color: var(--primary-color);
}

.bento-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.pricing-comparison-wrapper {
  margin-top: 5rem;
  padding-top: 3rem;
  position: relative;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
  border-radius: 12px;
  background: #0a0a0e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  scrollbar-width: none;
}

.table-responsive::-webkit-scrollbar {
  display: none;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
}

.pricing-table th,
.pricing-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  color: #b0b0b0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-table thead {
  position: sticky;
  top: 0;
  z-index: 20;
}

.pricing-table th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: white;
  padding: 2rem 1rem;
  background-color: #0f0f16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.pricing-table .feature-col {
  text-align: left;
  color: white;
  font-weight: 600;
  width: 30%;
  padding-left: 2rem;
  background-color: #0f0f16;
}

.pricing-table thead .highlight-col {
  background: linear-gradient(
    to bottom,
    rgba(146, 71, 215, 0.15),
    rgba(146, 71, 215, 0.05)
  );
  color: var(--primary-color);
  position: relative;
  border-bottom: 1px solid rgba(146, 71, 215, 0.2);
}

.pricing-table tbody tr:hover td {
  background-color: rgba(255, 255, 255, 0.03);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:hover .highlight-col {
  background-color: rgba(146, 71, 215, 0.08);
}

/* Moved from page-pricing.php inline styles */
.pricing-table .check-icon,
.pricing-table .check-icon i {
  color: #9247d7;
  font-weight: bold;
}

.pricing-table td,
.pricing-table th,
.pricing-card {
  border: none !important;
}

.pricing-table .highlight-col {
  background-color: rgba(146, 71, 215, 0.02);
}

.pricing-table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.pricing-table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.faq-section {
  padding: 80px 0;
  background-color: #000000;
  position: relative;
  z-index: 10;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #9ca3af;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.faq-tab:hover,
.faq-tab.active {
  background: rgba(146, 71, 215, 0.1);
  border-color: var(--primary-color);
  color: white;
}

.faq-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-content.active {
  display: block;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  padding: 1rem 0;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}


.pricing-addons-wrapper {
    margin-top: 4rem;
    padding-bottom: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.addon-item {
    background-color: #12121a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.addon-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(146, 71, 215, 0.15);
}

.addon-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.addon-title {
    font-size: 1.25rem;
    margin: 0;
    color: white;
    font-weight: 500;
}

.addon-subtitle {
    font-size: 0.85rem;
    color: #c4b5fd; 
    font-weight: 400;
    opacity: 0.8;
}

.addon-cost {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-left: 2rem;
}

.faq-answer p {
  color: #9ca3af;
  padding-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.pricing-cta-section {
  padding: 80px 0;
  background: #000000;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(146, 71, 215, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(146, 71, 215, 0.5);
  background: #a855f7;
}
