/* New Pricing Page Styles */
:root {
    --primary: #7000ff;
    --primary-light: #9a4eff;
    --primary-dark: #5a00cc;
    --secondary: #00d9ff;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --diamond: #b9f2ff;
    --dark-bg: #0c0c14;
    --darker-bg: #090911;
    --card-bg: #12121f;
    --card-hover: #16162a;
    --text-light: #ffffff;
    --text-muted: #9e9eb3;
    --border-radius: 12px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Hero Section */
  .pricing-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(12,12,20,1) 0%, rgba(15,15,30,1) 100%);
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 30px 10px rgba(112, 0, 255, 0.3);
    opacity: 0.3;
  }
  
  .particle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    background: var(--primary);
    filter: blur(80px);
  }
  
  .particle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 10%;
    background: var(--secondary);
    filter: blur(60px);
  }
  
  .particle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 20%;
    background: var(--gold);
    filter: blur(50px);
    opacity: 0.2;
  }
  
  .particle:nth-child(4) {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 20%;
    background: var(--primary-light);
    filter: blur(70px);
    opacity: 0.2;
  }
  
  .particle:nth-child(5) {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    background: var(--secondary);
    filter: blur(40px);
    opacity: 0.1;
  }
  
  .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
  }
  
  .hero-title span {
    display: block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
  }
  
  /* Services Tabs */
  .services-tabs {
    padding: 80px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
  }
  
  .tab-container {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
  }
  
  .tab-header {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .tab {
    padding: 20px 15px;
    text-align: center;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
  }
  
  .tab i {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .tab span {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .tab.active {
    color: var(--text-light);
  }
  
  .tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }
  
  .tab-body {
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  
  .tab-content {
    display: none;
    animation: fadeIn 0.6s ease forwards;
  }
  
  .tab-content.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .service-intro {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .service-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--text-light), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .service-intro span {
    color: var(--primary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
  
  .service-intro p {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* Pricing Cards */
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
  }
  
  .price-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: translateZ(0);
  }
  
  .price-card:hover {
    transform: translateY(-10px) translateZ(0) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
  
  .price-card.featured {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px) scale(1.03);
    z-index: 3;
  }
  
  .price-card.featured:hover {
    transform: translateY(-20px) translateZ(0) rotateX(5deg) rotateY(5deg) scale(1.03);
  }
  
  .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 50% 0%, rgba(112, 0, 255, 0.4), rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
  }
  
  .price-card:hover .glow {
    opacity: 0.7;
  }
  
  .price-card[data-tier="silver"] .glow {
    background-image: radial-gradient(circle at 50% 0%, rgba(192, 192, 192, 0.4), rgba(0, 0, 0, 0) 70%);
  }
  
  .price-card[data-tier="gold"] .glow {
    background-image: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.4), rgba(0, 0, 0, 0) 70%);
  }
  
  .price-card[data-tier="diamond"] .glow {
    background-image: radial-gradient(circle at 50% 0%, rgba(185, 242, 255, 0.4), rgba(0, 0, 0, 0) 70%);
  }
  
  .card-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 7px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
  }
  
  .price-card[data-tier="silver"] .card-badge {
    background: linear-gradient(45deg, #a5a5a5, #e0e0e0);
    color: #333;
  }
  
  .price-card[data-tier="gold"] .card-badge {
    background: linear-gradient(45deg, #d5a503, #ffd700);
    color: #333;
  }
  
  .price-card[data-tier="diamond"] .card-badge {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-light));
    color: white;
  }
  
  .price-card:hover .card-badge {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  .card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
  }
  
  .card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
    display: inline-block;
  }
  
  .price::before {
    content: '$';
    font-size: 1.5rem;
    position: absolute;
    top: 5px;
    left: -15px;
    color: var(--text-muted);
  }
  
  .card-features {
    margin-bottom: 30px;
    flex-grow: 1;
  }
  
  .card-features ul {
    list-style: none;
  }
  
  .card-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
  }
  
  .card-features li:last-child {
    border-bottom: none;
  }
  
  .card-features i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
  }
  
  .price-card[data-tier="silver"] .card-features i {
    color: var(--silver);
  }
  
  .price-card[data-tier="gold"] .card-features i {
    color: var(--gold);
  }
  
  .price-card[data-tier="diamond"] .card-features i {
    color: var(--primary-light);
  }
  
  .card-footer {
    text-align: center;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
  }
  
  .btn-primary {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(112, 0, 255, 0.3);
    z-index: 1;
  }
  
  .btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    transition: width 0.5s ease;
    z-index: -1;
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.4);
  }
  
  .btn-primary:hover:before {
    width: 100%;
  }
  
  .btn i {
    transition: transform 0.3s ease;
  }
  
  .btn:hover i {
    transform: translateX(5px);
  }
  
  /* Features Comparison */
  .features-comparison {
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .features-comparison h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-light);
  }
  
  .features-table-wrapper {
    overflow-x: auto;
  }
  
  .features-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
  }
  
  .features-table th, 
  .features-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .features-table th {
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .features-table td {
    color: var(--text-muted);
  }
  
  .features-table th:first-child,
  .features-table td:first-child {
    padding-left: 0;
  }
  
  .features-table tr:last-child td {
    border-bottom: none;
  }
  
  .features-table th:nth-child(2),
  .features-table td:nth-child(2) {
    color: var(--silver);
  }
  
  .features-table th:nth-child(3),
  .features-table td:nth-child(3) {
    color: var(--gold);
  }
  
  .features-table th:nth-child(4),
  .features-table td:nth-child(4) {
    color: var(--primary-light);
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
  }
  
  .section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
  }
  
  .section-title span {
    color: var(--primary);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-light);
  }
  
  .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--primary);
  }
  
  .faq-icon i {
    transition: all 0.3s ease;
  }
  
  .faq-icon .fa-minus {
    display: none;
  }
  
  .faq-item.active .faq-icon .fa-plus {
    display: none;
  }
  
  .faq-item.active .faq-icon .fa-minus {
    display: block;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    max-height: 300px;
  }
  
  .faq-item.active {
    background: var(--card-hover);
    border-color: rgba(112, 0, 255, 0.1);
  }
  
  /* CTA Section */
  .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(12,12,20,0.9) 0%, rgba(15,15,30,0.9) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
  }
  
  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
  }
  
  .cta-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn-glow {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.5);
    animation: glow 2s infinite alternate;
  }
  
  @keyframes glow {
    from {
      box-shadow: 0 0 10px rgba(112, 0, 255, 0.5);
    }
    to {
      box-shadow: 0 0 30px rgba(112, 0, 255, 0.8);
    }
  }
  
  .btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.1);
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 3.5rem;
    }
    
    .service-intro h2 {
      font-size: 2.3rem;
    }
    
    .tab-body {
      padding: 30px 20px;
    }
    
    .tab span {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.8rem;
    }
    
    .pricing-cards {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .price-card.featured {
      transform: translateY(0) scale(1);
    }
    
    .price-card.featured:hover {
      transform: translateY(-10px) scale(1);
    }
    
    .tab {
      padding: 15px 10px;
    }
    
    .tab i {
      font-size: 1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .section-title {
      font-size: 2.3rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 2.3rem;
    }
    
    .tab-header {
      flex-wrap: wrap;
    }
    
    .tab {
      flex: 1 0 33.333%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .tab:nth-child(3n) {
      border-right: none;
    }
    
    .service-intro h2 {
      font-size: 1.8rem;
    }
    
    .features-table th, 
    .features-table td {
      padding: 10px 5px;
      font-size: 0.9rem;
    }
  }