:root {
    --bg-dark: #0c0c0c;
    --text-light: #e0e0e0;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --card-bg: #1a1a1a;
    --card-border: #292929;
    --border-color: #333333;
    --neon-green: #39ff14;
    --neon-blue: #00f0ff;
    --neon-purple: #b300ff;
  }
  
  /* Global Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  /* Loading Screen */
  .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--card-border);
    border-top: 3px solid var(--neon-green);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
  }

  /* Performance optimizations */
  .mode-card, .testimonial-card, .nav-link, .cta-button {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
  }

  /* Smooth transitions for all interactive elements */
  a, button, .mode-card, .testimonial-card, .faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Enhanced focus states for accessibility */
  a:focus, button:focus, .nav-link:focus {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
  }

  /* Lazy loading styles */
  img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
  }

  img.lazy.loaded {
    opacity: 1;
  }

  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    
    .mode-card:hover, .testimonial-card:hover {
      transform: none;
    }
  }

  /* Navigation Styles */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .navbar.scrolled {
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-green);
    text-decoration: none;
  }

  .nav-logo i {
    color: var(--neon-blue);
    font-size: 1.8rem;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
  }

  .nav-link:hover::before {
    width: 100%;
  }

  .nav-link:hover {
    color: var(--neon-green);
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    color: var(--text-light) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .nav-cta::before {
    display: none;
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
    color: #000 !important;
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }

  .bar {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  
  .hero {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 8rem 1rem 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(179, 0, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero .container {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 3rem;
    color: var(--neon-green);
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #aaa;
  }
  
  .search-modes {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    min-height: 600px;
  }
  
  .search-modes h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--neon-purple);
    margin-bottom: 2rem;
  }
  
  .modes-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .mode-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--neon-blue);
    border-radius: 10px;
    padding: 2rem;
    width: 250px;
    text-align: center;
    transition:
      transform 0.3s ease,
      border-left-color 0.3s;
    text-decoration: none;
    color: var(--text-light);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }

  .mode-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-green), var(--neon-purple));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .mode-card:hover {
    transform: scale(1.05);
    border-left-color: var(--neon-green);
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.4), 0 0 30px rgba(57, 255, 20, 0.2);
  }

  .mode-card:hover::after {
    opacity: 1;
  }
  
  .mode-card i {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
  }

  .mode-card:hover i {
    color: var(--neon-green);
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.6));
    transform: scale(1.1) rotate(5deg);
  }

  .mode-card:hover h3 {
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
  }
  
  /* Pricing Page Styles */
  .pricing-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 40vh;
  }

  .pricing-section {
    padding: 4rem 0;
    background: var(--bg-primary);
  }

  .pricing-overview {
    text-align: center;
    margin-bottom: 4rem;
  }

  .pricing-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
  }

  .overview-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
  }

  /* Table Sections */
  .pricing-table-section,
  .search-costs-table,
  .vip-table-section {
    margin-bottom: 4rem;
  }

  .pricing-table-section h3,
  .search-costs-table h3,
  .vip-table-section h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
  }

  .table-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }

  /* Table Container */
  .table-container {
    overflow-x: auto;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
  }

  /* Pricing Tables */
  .pricing-table,
  .cost-table,
  .vip-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
  }

  .pricing-table th,
  .cost-table th,
  .vip-table th {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: var(--text-light);
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--card-border);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  }

  .pricing-table td,
  .cost-table td,
  .vip-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-primary);
    vertical-align: top;
  }

  .pricing-table tr:hover,
  .cost-table tr:hover,
  .vip-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  /* Special Row Styling */
  .popular-row {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid #ffd700;
  }

  .recommended-row {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid #ffd700;
  }

  /* Cell Specific Styling */
  .package-name,
  .search-type,
  .vip-plan {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .package-name i,
  .search-type i,
  .vip-plan i {
    color: var(--neon-blue);
    font-size: 1.2rem;
  }

  .price-cell,
  .cost-price,
  .vip-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-green);
  }

  .credits-cell,
  .usage-cell,
  .duration-cell,
  .searches-cell {
    color: var(--text-secondary);
    font-weight: 500;
  }

  .features-cell ul,
  .benefits-cell ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .features-cell li,
  .benefits-cell li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .features-cell i,
  .benefits-cell i {
    color: var(--neon-green);
    font-size: 0.9rem;
  }

  /* Badges */
  .popular-badge,
  .recommended-badge {
    background: #ffd700;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
    text-transform: uppercase;
  }

  /* Cost Description */
  .cost-description {
    color: var(--text-secondary);
    font-style: italic;
  }

  /* Responsive Design for Tables */
  @media (max-width: 768px) {
    .table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .pricing-table-section h3,
    .search-costs-table h3,
    .vip-table-section h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .pricing-table,
    .cost-table,
    .vip-table {
      min-width: 600px;
    }

    .pricing-table th,
    .cost-table th,
    .vip-table th {
      padding: 0.8rem 0.6rem;
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .pricing-table td,
    .cost-table td,
    .vip-table td {
      padding: 0.8rem 0.6rem;
      font-size: 0.85rem;
    }

    .price-cell,
    .cost-price,
    .vip-price {
      font-size: 1.1rem;
      font-weight: bold;
    }

    .features-cell ul,
    .benefits-cell ul {
      font-size: 0.8rem;
      line-height: 1.4;
    }

    .popular-badge,
    .recommended-badge {
      font-size: 0.7rem;
      padding: 0.2rem 0.4rem;
    }
  }

  .pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .option-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--card-border);
  }

  .option-card:hover {
    transform: translateY(-5px);
  }

  .option-card i {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
  }

  .option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  .pricing-category {
    margin-bottom: 4rem;
  }

  .category-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .category-header i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 0.5rem;
  }

  .category-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
  }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .plan-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
  }

  .plan-card:hover {
    transform: translateY(-5px);
  }

  .plan-card.popular {
    border: 3px solid var(--neon-blue);
    transform: scale(1.05);
  }

  .plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--neon-blue);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 0 15px 0 15px;
    font-size: 0.9rem;
    font-weight: bold;
  }

  .plan-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .price {
    font-weight: bold;
    color: var(--neon-blue);
    margin-bottom: 1rem;
  }

  .plan-features ul {
    list-style: none;
    padding: 0;
  }

  .plan-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
  }

  .plan-features i {
    color: var(--neon-green);
    margin-right: 0.5rem;
  }

  .search-costs {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
  }

  .search-costs h3 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
  }

  .cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .cost-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid var(--card-border);
  }

  .cost-item i {
    color: var(--neon-blue);
    font-size: 1.5rem;
  }

  .cost-type {
    font-weight: bold;
    color: var(--text-light);
  }

  .cost-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--neon-green);
  }

  .vip-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3rem;
    border-radius: 20px;
    color: white;
  }

  .vip-section .category-header h2,
  .vip-section .category-header i {
    color: white;
  }

  .vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .vip-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
  }

  .vip-card:hover {
    transform: translateY(-5px);
  }

  .vip-card.recommended {
    border: 2px solid #ffd700;
    position: relative;
  }

  .vip-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffd700;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 0 15px 0 15px;
    font-size: 0.9rem;
    font-weight: bold;
  }

  .vip-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .vip-header i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .vip-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .vip-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
  }

  .vip-features ul {
    list-style: none;
    padding: 0;
  }

  .vip-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
  }

  .vip-features i {
    margin-right: 0.5rem;
    color: #ffd700;
  }

  .vip-description {
    text-align: center;
    font-size: 1.1rem;
  }

  .pricing-summary {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 3rem;
    border: 1px solid var(--card-border);
  }

  .pricing-summary h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
  }

  .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .summary-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid var(--card-border);
  }

  .summary-item i {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
  }

  .summary-item h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .important-notice {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 1px solid var(--neon-purple);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3rem;
  }

  .important-notice i {
    font-size: 2rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
  }

  .important-notice h3 {
    color: var(--neon-purple);
    margin-bottom: 1rem;
  }

  .payment-section {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 3rem;
    border: 1px solid var(--card-border);
  }

  .payment-section h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
  }

  .payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
  }

  .payment-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid var(--card-border);
}

  .payment-option i {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-right: 1rem;
  }

  .support-section {
    text-align: center;
    background: var(--card-bg);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--card-border);
  }

  .support-section h2 {
    margin-bottom: 1rem;
  }

  .support-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
  }

  .support-button:hover {
    background: #5a6fd8;
  }

  .support-button i {
     margin-right: 0.5rem;
   }

/* Information Page Styles */
.info-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  min-height: 50vh;
}

.info-main-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.company-overview {
  margin-bottom: 5rem;
}

.overview-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.overview-stats {
  display: grid;
  gap: 2rem;
}

.overview-stats .stat-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--card-border);
}

.overview-stats .stat-item i {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.overview-stats .stat-item h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.overview-stats .stat-item p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Enterprise Value Proposition Section */
.enterprise-value {
  padding: 6rem 0;
  background: var(--primary-bg);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.value-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
  pointer-events: none;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 126, 234, 0.4);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card .card-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.value-metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.enterprise-testimonial {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.testimonial-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--neon-blue);
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.star {
  color: #ffd700;
  font-size: 1.2rem;
}

/* Enterprise Performance Metrics Section */
.enterprise-performance {
  padding: 6rem 0;
  background: var(--secondary-bg);
}

.performance-dashboard {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.performance-metric {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
}

.performance-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.performance-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.performance-label {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.performance-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Responsive Design for Enterprise Information Page */
@media (max-width: 768px) {
  .enterprise-hero {
    padding: 4rem 0;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .highlight-metrics {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intelligence-insights {
    grid-template-columns: 1fr;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
  
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .health-items {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .support-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .stats-dashboard {
    grid-template-columns: 1fr;
  }
  
  .performance-grid {
    grid-template-columns: 1fr;
  }
  
  .support-stats {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-highlight,
  .intelligence-dashboard,
  .performance-dashboard,
  .support-hero {
    padding: 2rem;
  }
  
  .overview-card,
  .feature-card,
  .insight-card,
  .value-card,
  .resource-category,
  .channel-card {
    padding: 1.5rem;
  }
}

.system-health {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.health-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.health-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

.health-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ff88;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.health-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.health-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.health-item-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.health-item-value {
  color: #00ff88;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Enterprise Resources Hub Section */
.enterprise-resources {
  padding: 6rem 0;
  background: var(--primary-bg);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-category {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.resource-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.resource-category .card-icon {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.resource-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.resource-category p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.resource-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-links li {
  margin-bottom: 0.8rem;
}

.resource-links a {
  color: var(--neon-blue);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.resource-links a:hover {
  color: var(--neon-purple);
  transform: translateX(5px);
}

.resource-links a::before {
  content: '→';
  font-weight: bold;
}

/* Enterprise Support Center Section */
.enterprise-support {
  padding: 6rem 0;
  background: var(--secondary-bg);
}

.support-hero {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  border: 1px solid var(--border-color);
  text-align: center;
}

.support-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.support-stat {
  text-align: center;
}

.support-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 0.3rem;
}

.support-stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-demo {
  background: var(--secondary-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  margin-top: 2rem;
  text-align: left;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.channel-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.channel-card .card-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.channel-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.channel-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.channel-contact {
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.channel-hours {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.features-section {
  margin-bottom: 5rem;
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  border: 1px solid var(--card-border);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
}

.feature-card li {
  padding: 0.5rem 0;
  color: #aaaaaa;
  position: relative;
  padding-left: 1.5rem;
}

.feature-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.statistics-section {
  margin-bottom: 5rem;
}

.statistics-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.stat-card p {
  color: #666;
  line-height: 1.5;
}

.why-choose-section {
  margin-bottom: 5rem;
}

.why-choose-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

.status-section {
  margin-bottom: 5rem;
}

.status-card {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.status-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.status-header i {
  font-size: 2rem;
  margin-right: 1rem;
}

.status-header h2 {
  margin: 0;
}

.status-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.status-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.status-feature {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.status-feature i {
  color: #2ecc71;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.quick-links-section {
  margin-bottom: 5rem;
}

.quick-links-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.link-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.link-card.primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.link-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3498db;
}

.link-card.primary i {
  color: white;
}

.link-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.link-card.primary h3 {
  color: white;
}

.link-card p {
  color: #666;
  line-height: 1.5;
}

.link-card.primary p {
  color: rgba(255,255,255,0.9);
}

.info-main-section .support-section {
  margin-bottom: 0;
}

.info-main-section .support-card {
  background: #2c3e50;
  color: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
}

.info-main-section .support-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3498db;
}

.info-main-section .support-card h2 {
  margin-bottom: 1rem;
}

.info-main-section .support-card p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive Design for Information Page */
@media (max-width: 768px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-text h2,
  .features-section h2,
  .statistics-section h2,
  .why-choose-section h2,
  .quick-links-section h2 {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .status-features {
    grid-template-columns: 1fr;
  }
}
}}

/* ABSOLUTE FINAL SOLUTION - FORCE DARK BACKGROUNDS EVERYWHERE ON LINK PAGE */
/* Target the entire page when link.html is loaded */
body:has(.link-hero),
html:has(.link-hero) {
  background: var(--bg-primary) !important;
  background-color: var(--bg-primary) !important;
}

/* Force dark background on ALL elements in link page */
body:has(.link-hero) *,
html:has(.link-hero) * {
  background-color: var(--bg-primary) !important;
}

/* Specific overrides for containers and sections */
body:has(.link-hero) .container,
body:has(.link-hero) section,
body:has(.link-hero) div,
body:has(.link-hero) .link-main-section {
  background: var(--bg-primary) !important;
  background-color: var(--bg-primary) !important;
}

/* Table and card specific styling */
body:has(.link-hero) .table-container {
  background: var(--card-bg) !important;
  background-color: var(--card-bg) !important;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

body:has(.link-hero) .search-plans-table,
body:has(.link-hero) .discovery-table {
  background: var(--card-bg) !important;
  background-color: var(--card-bg) !important;
  width: 100%;
}

body:has(.link-hero) .search-plans-table th,
body:has(.link-hero) .discovery-table th {
  background: linear-gradient(135deg, #2c3e50, #34495e) !important;
  background-color: #2c3e50 !important;
  color: #fff !important;
}

body:has(.link-hero) .search-plans-table td,
body:has(.link-hero) .discovery-table td {
  background: var(--card-bg) !important;
  background-color: var(--card-bg) !important;
  border-bottom: 1px solid var(--border-color);
}

/* Override any white backgrounds that might appear */
body:has(.link-hero) [style*="background: white"],
body:has(.link-hero) [style*="background-color: white"],
body:has(.link-hero) [style*="background: #fff"],
body:has(.link-hero) [style*="background-color: #fff"] {
  background: var(--bg-primary) !important;
  background-color: var(--bg-primary) !important;
}

/* Link Page Styles */
.link-hero {
  background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.link-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="links" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23links)"/></svg>');
}

.breadcrumb {
  margin-bottom: 2rem;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-icon {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
}

.hero-icon i {
  font-size: 3rem;
  color: white;
}

.link-hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.hero-stats .stat-item {
  text-align: center;
  color: white;
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-main-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.how-it-works-section {
  margin-bottom: 6rem;
}

.how-it-works-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.process-step {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8e44ad, #9b59b6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.step-icon i {
  font-size: 2rem;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.process-step h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

.features-section {
  margin-bottom: 6rem;
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.link-main-section .feature-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease;
}

.link-main-section .feature-card:hover {
  transform: translateY(-10px);
}

.link-main-section .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.link-main-section .feature-icon i {
  font-size: 2rem;
  color: white;
}

.link-main-section .feature-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.link-main-section .feature-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.link-main-section .feature-card ul {
  list-style: none;
  padding: 0;
}

.link-main-section .feature-card li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.link-main-section .feature-card li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #8e44ad;
  font-weight: bold;
}

.link-main-section .pricing-section {
  margin-bottom: 6rem;
}

.link-main-section .pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.link-main-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.link-main-section .pricing-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid var(--card-border);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.link-main-section .pricing-card:hover {
  transform: translateY(-5px);
}

.link-main-section .pricing-card.featured {
  border: 3px solid #8e44ad;
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: #8e44ad;
  color: white;
  padding: 0.5rem 2rem;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-header h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.plan-price .price {
  font-size: 3rem;
  font-weight: bold;
  color: #8e44ad;
}

.plan-price .currency {
  font-size: 1.2rem;
  color: #666;
}

.plan-features {
  margin-bottom: 2rem;
}

.link-main-section .feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.link-main-section .feature-item:last-child {
  border-bottom: none;
}

.link-main-section .feature-item i {
  color: #27ae60;
  margin-right: 1rem;
  font-size: 1.1rem;
}

.plan-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.plan-note {
  color: #666;
  font-style: italic;
  font-size: 0.9rem;
}

.usage-guide-section {
  margin-bottom: 6rem;
}

.usage-guide-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.guide-text h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.guide-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.code-example {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  font-family: 'Courier New', monospace;
  text-align: center;
}

.code-example code {
  font-size: 1.2rem;
  color: #3498db;
}

.search-examples h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.example-grid {
  display: grid;
  gap: 1rem;
}

.example-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border: 1px solid var(--card-border);
}

.example-item.valid i {
  color: #27ae60;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.example-item.invalid i {
  color: #e74c3c;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.example-item code {
  background: #f8f9fa;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  margin-right: 1rem;
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
}

.example-item span {
  color: #666;
  font-size: 0.9rem;
}

.security-notice {
  margin-bottom: 6rem;
}

.notice-content {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.notice-icon {
  flex-shrink: 0;
}

.notice-icon i {
  font-size: 3rem;
  color: rgba(255,255,255,0.9);
}

.notice-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.notice-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.link-main-section .support-section {
  margin-bottom: 0;
}

.link-main-section .support-card {
  background: #2c3e50;
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.link-main-section .support-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #8e44ad;
}

.link-main-section .support-card h2 {
  margin-bottom: 1rem;
}

.link-main-section .support-card p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive Design for Link Page */
@media (max-width: 768px) {
  .link-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .process-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .guide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .notice-content {
    flex-direction: column;
    text-align: center;
  }
  
  .link-main-section .pricing-card.featured {
    transform: none;
  }
}
 
    footer {
      background: #111;
    text-align: center;
    padding: 1.2rem;
    font-size: 0.9rem;
    color: #999;
    margin-top: 4rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .footer-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-blue);
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
    
    .footer-links {
      justify-content: center;
    }
  }
  .back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--neon-blue);
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .back-button:hover {
    background: var(--neon-blue);
    color: #000;
    border-color: var(--neon-green);
  }
  
  
  .content-section {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: auto;
  }
  
  .content-section h2 {
    color: var(--neon-purple);
    margin-top: 2rem;
  }
  
  .plans {
    list-style: none;
    padding-left: 0;
  }
  
  .plans li {
    background: #1e1e1e;
    border-left: 4px solid var(--neon-blue);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
  }
  .subtitle {
    color: #bbb;
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
  
  .content-section {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .info-block {
    margin-bottom: 3rem;
  }
  
  .info-block h2 {
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
  }
  
  .code-box {
    background: #0f0f0f;
    padding: 1rem;
    border-left: 4px solid var(--neon-green);
    font-family: monospace;
    font-size: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
  }
  
  .highlight-card {
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
  }
  
  .neon-green {
    border-left: 5px solid var(--neon-green);
    background: #141c14;
  }
  
  .neon-blue {
    border-left: 5px solid var(--neon-blue);
    background: #11181d;
  }
  
  .neon-purple {
    border-left: 5px solid var(--neon-purple);
    background: #1a111e;
  }
  .info-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
  }
  
  .links-block ul {
    list-style: none;
    padding-left: 0;
  }
  
  .links-block a {
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
  }
  
  .links-block a:hover {
    color: var(--neon-blue);
  }
  .stats-section {
    background-color: #0f0f0f;
    color: #fff;
    padding: 4rem 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .stats-section h2 {
    text-align: center;
    color: var(--neon-purple);
    margin-bottom: 3rem;
  }
  
  .stat-bar {
    margin-bottom: 2.5rem;
  }
  
  .stat-bar .label {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .bar {
    background: #222;
    border-radius: 20px;
    overflow: hidden;
    height: 20px;
    margin-bottom: 0.5rem;
  }
  
  .fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
    border-radius: 20px;
  }
  
  .fill-green {
    background: var(--neon-green);
  }
  
  .fill-blue {
    background: var(--neon-blue);
  }
  
  .fill-purple {
    background: var(--neon-purple);
  }
  
  .description {
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 0.3rem;
  }
  .useful-links {
    list-style: none;
    padding-left: 0;
  }
  
  .useful-links li {
    margin-bottom: 1rem;
  }
  
  .useful-links a {
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .useful-links a:hover {
    color: var(--neon-blue);
  }
  
  .useful-links i {
    margin-right: 8px;
    color: var(--neon-blue);
  }
  .support-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--neon-blue);
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .support-link:hover {
    background: var(--neon-green);
    color: #000;
  }
  
  .support-link i {
    margin-right: 8px;
  }


  /* Stats Overview Section */
  .stats-overview {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 1rem;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }

  .stats-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(45deg, transparent 30%, rgba(57, 255, 20, 0.03) 50%, transparent 70%),
      radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }

  .stats-overview h2 {
    text-align: center;
    color: var(--neon-purple);
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }

  .stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    transition: left 0.5s ease;
  }

  .stat-item:hover::before {
    left: 0;
  }

  .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
  }

  .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  }

  .stat-label {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 500;
  }

  /* How It Works Section */
  .how-it-works {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--card-border);
    min-height: 500px;
  }

  .how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 30% 70%, rgba(179, 0, 255, 0.08) 0%, transparent 50%),
      linear-gradient(135deg, transparent 40%, rgba(0, 240, 255, 0.03) 60%, transparent 80%);
    pointer-events: none;
  }

  .how-it-works h2 {
    text-align: center;
    color: var(--neon-blue);
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .step-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    position: relative;
    transition: all 0.4s ease;
  }

  .step-item:hover {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.2);
  }

  .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 1.2rem;
  }

  .step-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin: 1rem 0;
  }

  .step-item h3 {
    color: var(--neon-green);
    margin: 1rem 0;
    font-size: 1.5rem;
  }

  .step-item p {
    color: #ccc;
    line-height: 1.6;
  }

  /* Enhanced Mode Cards */
  .mode-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 0;
    width: 280px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .mode-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.6s ease;
  }

  .mode-card:hover::before {
    transform: scaleX(1);
  }

  .mode-card:hover::after {
    left: 100%;
  }

  .mode-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.3), 0 0 20px rgba(0, 240, 255, 0.1);
    border-color: var(--neon-blue);
  }

  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
  }

  .card-header i {
    font-size: 2.5rem;
    color: var(--neon-blue);
  }

  .card-badge {
    background: var(--neon-green);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .card-badge.new {
    background: var(--neon-purple);
    color: #fff;
  }

  .mode-card h3 {
    padding: 0 2rem;
    margin: 0.5rem 0;
    color: var(--neon-green);
  }

  .mode-card p {
    padding: 0 2rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--card-border);
  }

  .price {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--neon-blue);
  }

  .card-footer i {
    color: var(--neon-green);
    transition: transform 0.3s ease;
  }

  .mode-card:hover .card-footer i {
    transform: translateX(5px);
  }

  /* Testimonials Section */
  .testimonials {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 6rem 1rem;
    min-height: 500px;
  }

  .testimonials h2 {
    text-align: center;
    color: var(--neon-purple);
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonial-item {
    background: linear-gradient(145deg, var(--card-bg), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  .testimonial-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue), var(--neon-green));
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--neon-blue);
    opacity: 0.3;
  }

  .testimonial-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  .testimonial-item:hover::after {
    transform: translateX(100%);
  }

  .testimonial-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.4), 0 0 25px rgba(57, 255, 20, 0.2);
  }

  .testimonial-item:hover::after {
    opacity: 1;
  }

  .testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ddd;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .author-info h4 {
    margin: 0;
    color: var(--neon-green);
  }

  .author-info span {
    color: #aaa;
    font-size: 0.9rem;
  }

  /* FAQ Section */
  .faq {
    padding: 6rem 1rem;
    background: var(--bg-dark);
    min-height: 600px;
  }

  .faq h2 {
    text-align: center;
    color: var(--neon-green);
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }

  .faq-grid {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    border-color: var(--neon-blue);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .faq-question h3 {
    margin: 0;
    color: var(--neon-blue);
    font-size: 1.1rem;
  }

  .faq-question i {
    color: var(--neon-green);
    transition: transform 0.3s ease;
  }

  .faq-answer {
    padding: 0 2rem 1.5rem;
    color: #ccc;
    line-height: 1.6;
    border-top: 1px solid var(--card-border);
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.1;
  }

  .cta-content {
    position: relative;
    z-index: 2;
  }

  .cta-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }

  .cta-button:hover::before {
    left: 100%;
  }

  .cta-button.primary {
    background: var(--card-bg);
    color: var(--neon-blue);
  }

  .cta-button.primary:hover {
    background: var(--neon-green);
    color: #000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.5), 0 0 20px rgba(57, 255, 20, 0.3);
    filter: brightness(1.1);
  }

  .cta-button.primary:active {
    transform: translateY(-2px) scale(1.02);
  }

  .cta-button.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }

  .cta-button.secondary:hover {
    background: #fff;
    color: var(--neon-purple);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(179, 0, 255, 0.4), 0 0 20px rgba(179, 0, 255, 0.2);
  }

  .cta-button.secondary:active {
    transform: translateY(-2px) scale(1.02);
}
  }

  /* Tablet Responsiveness */
  @media (max-width: 1024px) and (min-width: 769px) {
    .container {
      padding: 0 2rem;
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .search-modes .container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .hero h1 {
      font-size: 2.8rem;
    }

    .hero p {
      font-size: 1.2rem;
    }
  }

  /* Mobile Navigation */
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }

    .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background: rgba(12, 12, 12, 0.98);
      backdrop-filter: blur(10px);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 2rem;
      padding-top: 3rem;
      transition: left 0.3s ease;
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-link {
      font-size: 1.2rem;
      padding: 1rem 0;
    }

    .nav-cta {
      margin-top: 1rem;
    }

    /* Container and Layout */
    .container {
      padding: 0 1rem;
      max-width: 100%;
    }

    /* Hero Section */
    .hero {
      padding: 6rem 1rem 3rem 1rem;
    }

    .hero h1 {
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.1rem;
      line-height: 1.5;
      margin-bottom: 2rem;
    }

    /* Stats Section */
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .stat-item {
      padding: 1.5rem 1rem;
    }

    .stat-number {
      font-size: 2rem;
    }

    /* How It Works */
    .steps-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .step-item {
      text-align: center;
      padding: 2rem 1rem;
    }

    /* Search Modes */
    .modes-grid {
      flex-direction: column;
      align-items: center;
    }

    .mode-card {
      width: 100%;
      max-width: 350px;
      margin-bottom: 1rem;
    }

    .mode-card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .mode-card p {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Testimonials */
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .testimonial-item {
      padding: 1.5rem;
    }

    /* FAQ */
    .faq-question {
      padding: 1rem 1.5rem;
    }

    .faq-answer {
      padding: 0 1.5rem 1rem;
      font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section h2 {
      font-size: 2rem;
    }

    .cta-buttons {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .cta-button {
      width: 100%;
      max-width: 280px;
      justify-content: center;
      padding: 1rem 2rem;
    }

    /* Typography */
    h2 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }

    h3 {
      font-size: 1.3rem;
    }

    /* Reduce animations for performance */
    .mode-card:hover {
      transform: translateY(-5px) scale(1.01);
    }

    .testimonial-item:hover {
      transform: translateY(-5px) scale(1.01);
    }
  }

  @media (max-width: 480px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }

    .stat-item {
      padding: 1.5rem 1rem;
    }

    .step-item {
      padding: 2rem 1rem;
    }

    .testimonial-item {
      padding: 1.5rem;
    }

    .faq-question {
      padding: 1rem 1.5rem;
    }

    .faq-answer {
      padding: 0 1.5rem 1rem;
    }
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  @keyframes glow {
    0%, 100% {
      box-shadow: 0 0 5px var(--neon-green);
    }
    50% {
      box-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green);
    }
  }

  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .stat-item {
    animation: fadeInUp 0.6s ease forwards;
  }

  .stat-item:nth-child(1) { animation-delay: 0.1s; }
  .stat-item:nth-child(2) { animation-delay: 0.2s; }
  .stat-item:nth-child(3) { animation-delay: 0.3s; }
  .stat-item:nth-child(4) { animation-delay: 0.4s; }

  .step-item {
    animation: fadeInUp 0.6s ease forwards;
  }

  .step-item:nth-child(1) { animation-delay: 0.2s; }
  .step-item:nth-child(2) { animation-delay: 0.4s; }
  .step-item:nth-child(3) { animation-delay: 0.6s; }

  .cta-button:hover {
    animation: pulse 0.6s ease infinite;
  }

/* Android Page Styles */
.android-main-section i,
.android-hero i {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.android-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.android-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
}

.android-hero .container {
  position: relative;
  z-index: 2;
}

.android-hero .breadcrumb {
  text-align: left;
  margin-bottom: 40px;
}

.android-hero .back-button {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.android-hero .back-button:hover {
  color: white;
  transform: translateX(-5px);
}

.android-hero .hero-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #a4d65e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.android-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #a4d65e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.android-hero .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.android-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.android-hero .stat-item {
  text-align: center;
}

.android-hero .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #a4d65e;
  margin-bottom: 5px;
}

.android-hero .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.android-main-section {
  padding: 80px 0;
}

.android-main-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #fff;
  font-weight: 700;
}

/* App Categories Section */
.app-categories-section {
  margin: 80px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  border: 1px solid var(--card-border);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--neon-blue);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--neon-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.category-card p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.category-count {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Search Examples */
.search-examples {
  margin-top: 40px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.example-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 4px solid transparent;
}

.example-item.valid {
  border-left-color: #28a745;
}

.example-item.valid i {
  color: #28a745;
}

.example-item.invalid {
  border-left-color: #dc3545;
}

.example-item.invalid i {
  color: #dc3545;
}

.example-item code {
  background: rgba(255, 255, 255, 0.1);
  color: var(--neon-blue);
  padding: 5px 10px;
  border-radius: 5px;
  font-family: 'Courier New', monospace;
  font-weight: 600;
}

.example-item span {
  color: #ccc;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .android-hero h1 {
    font-size: 2.5rem;
  }
  
  .android-hero .hero-stats {
    gap: 20px;
  }
  
  .android-hero .stat-number {
    font-size: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .example-grid {
    grid-template-columns: 1fr;
  }
}

/* Privacy Policy Page Styles */
.privacy-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shield-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 10 L35 20 L25 30 L15 20 Z" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23shield-pattern)"/></svg>') repeat;
  opacity: 0.3;
}

.privacy-hero .container {
  position: relative;
  z-index: 2;
}

.privacy-hero .breadcrumb {
  text-align: left;
  margin-bottom: 40px;
}

.privacy-hero .back-button {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.privacy-hero .back-button:hover {
  color: white;
  transform: translateX(-5px);
}

.privacy-hero .hero-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #3498db;
}

.privacy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-hero .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-hero .last-updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.privacy-main-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.privacy-section {
  margin-bottom: 60px;
  padding: 40px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
}

.privacy-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--neon-blue);
  font-weight: 700;
  border-bottom: 3px solid var(--neon-blue);
  padding-bottom: 15px;
}

.privacy-intro {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(0, 240, 255, 0.05) 100%);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--neon-blue);
  margin-top: 30px;
}

.highlight-box i {
  font-size: 1.5rem;
  color: var(--neon-blue);
}

.highlight-box p {
  color: var(--text-light);
  margin: 0;
}

.info-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.info-category {
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.category-header i {
  font-size: 1.8rem;
  color: var(--neon-green);
}

.category-header h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin: 0;
}

.category-header h4 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 0;
}

.info-category ul {
  list-style: none;
  padding: 0;
}

.info-category li {
  padding: 8px 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-secondary);
}

.info-category li:last-child {
  border-bottom: none;
}

.info-category li::before {
  content: '•';
  color: var(--neon-blue);
  font-weight: bold;
  margin-right: 10px;
}

.info-category p {
  color: var(--text-secondary);
  margin: 10px 0;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.usage-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
}

.usage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.usage-icon {
  font-size: 2.5rem;
  color: var(--neon-green);
  margin-bottom: 15px;
}

.usage-item h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.usage-item h4 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.usage-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.security-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.security-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.security-measures {
  margin-top: 20px;
}

.measure-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--card-border);
}

.measure-item:last-child {
  border-bottom: none;
}

.measure-item i {
  font-size: 1.3rem;
  color: var(--neon-green);
  min-width: 20px;
}

.measure-item span {
  color: var(--text-secondary);
}

.security-warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--neon-purple);
}

.security-warning i {
  font-size: 1.5rem;
  color: var(--neon-purple);
  margin-bottom: 10px;
}

.security-warning h3 {
  color: var(--neon-purple);
  margin-bottom: 10px;
}

.security-warning p {
  color: var(--text-light);
}

.retention-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.retention-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--neon-blue);
}

.retention-item h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.retention-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.rights-section {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.05) 0%, rgba(57, 255, 20, 0.02) 100%);
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.right-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
}

.right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(57, 255, 20, 0.2);
  border-color: var(--neon-green);
}

.right-item i {
  font-size: 2rem;
  color: var(--neon-green);
  margin-bottom: 15px;
}

.right-item h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.right-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-list {
  margin-top: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--card-border);
}

.service-item i {
  font-size: 2rem;
  color: var(--neon-blue);
  min-width: 40px;
}

.service-item h4 {
  color: var(--text-light);
  margin-bottom: 5px;
}

.service-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.contact-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.contact-section h2 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-method i {
  font-size: 2rem;
  color: #ffd700;
  min-width: 40px;
}

.contact-method h4 {
  color: white;
  margin-bottom: 5px;
}

.contact-method a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.contact-method span {
  color: rgba(255, 255, 255, 0.9);
}

.updates-section {
  background: linear-gradient(135deg, rgba(255, 234, 167, 0.1) 0%, rgba(250, 177, 160, 0.1) 100%);
}

.updates-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.updates-content li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.updates-content p {
  color: var(--text-light);
}

.update-notice {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-top: 25px;
  border: 1px solid var(--card-border);
}

.update-notice i {
  font-size: 1.5rem;
  color: var(--neon-purple);
}

.update-notice p {
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2.5rem;
  }
  
  .info-categories {
    grid-template-columns: 1fr;
  }
  
  .usage-grid {
    grid-template-columns: 1fr;
  }
  
  .security-content {
    grid-template-columns: 1fr;
  }
  
  .rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

/* Link Page Styles */
.link-overview {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.link-overview h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.overview-description {
  color: #b0b0b0;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Search Plans Table */
.search-plans-section {
  margin-bottom: 3rem;
}

.search-plans-section h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.table-description {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.search-plans-table {
  width: 100%;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.search-plans-table th {
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  color: #fff;
  font-weight: 600;
  padding: 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
}

.search-plans-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.plan-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: 600;
}

.plan-name i {
  color: #4CAF50;
  font-size: 1.2rem;
}

.cost-cell {
  color: #4CAF50;
  font-weight: 600;
  font-size: 1.1rem;
}

.limit-cell,
.accuracy-cell,
.usage-cell {
  color: #e0e0e0;
}

.features-cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-cell li {
  color: #b0b0b0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-cell i {
  color: #4CAF50;
  font-size: 0.9rem;
}

.popular-row {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  border: 2px solid #4CAF50;
}

.popular-badge {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Discovery Table */
.discovery-section {
  margin-bottom: 3rem;
}

.discovery-section h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.discovery-table {
  width: 100%;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.discovery-table th {
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  color: #fff;
  font-weight: 600;
  padding: 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--border-color);
}

.discovery-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.category-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: 600;
  min-width: 200px;
}

.category-name i {
  font-size: 1.2rem;
}

.description-cell {
  color: #e0e0e0;
  line-height: 1.5;
}

.examples-cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.examples-cell li {
  color: #b0b0b0;
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
}

.examples-cell li:before {
  content: "•";
  color: #4CAF50;
  position: absolute;
  left: 0;
}

.risk-cell {
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.high-risk {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}

.medium-risk {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid #ffc107;
}

/* Process Timeline */
.process-section {
  margin-bottom: 3rem;
}

.process-section h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  justify-content: center;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: #4CAF50;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
}

.step-number {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.step-content h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-content h4 i {
  color: #4CAF50;
}

.step-content p {
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Link Page */
@media (max-width: 768px) {
  .search-plans-table th,
  .search-plans-table td,
  .discovery-table th,
  .discovery-table td {
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
  }
  
  .link-overview h2 {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .process-timeline {
    gap: 1.5rem;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .step-number {
    align-self: center;
  }
}

/* Enterprise Information Page Styles */
.enterprise-hero {
  background: linear-gradient(135deg, var(--primary-bg) 0%, #1a1a2e 50%, var(--secondary-bg) 100%);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.enterprise-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23667eea" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.hero-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  backdrop-filter: blur(10px);
}

.hero-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-btn.primary {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: white;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.hero-btn.secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-color);
}

.hero-btn.secondary:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

/* Enterprise Overview Section */
.enterprise-overview {
  padding: 6rem 0;
  background: var(--secondary-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.1);
  color: var(--neon-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Enterprise Features Section */
.enterprise-features {
  padding: 6rem 0;
  background: var(--primary-bg);
}

.feature-highlight {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.highlight-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.highlight-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-metric {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.metric-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 0.3rem;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-demo {
  background: var(--secondary-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-blue);
}

.demo-content {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.feature-card .card-icon {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

/* Industry Intelligence Section */
.industry-intelligence {
  padding: 6rem 0;
  background: var(--secondary-bg);
}

.intelligence-dashboard {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.dashboard-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

.dashboard-badge {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.stats-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.dashboard-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.dashboard-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.dashboard-stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.dashboard-stat-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.8;
}

.intelligence-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.insight-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.insight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.insight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}

.insight-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

.insight-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.insight-metric {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.overview-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 126, 234, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.overview-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.overview-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(102, 126, 234, 0.1);
  color: var(--neon-blue);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h4 {
  font-size: 1.1rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--neon-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Information Page Specific Styles */
.info-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, #16213e 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.info-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.info-hero .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.info-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-green);
  display: block;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-btn.primary {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  color: var(--bg-dark);
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(57, 255, 20, 0.3);
}

.hero-btn.secondary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border-color);
}

.hero-btn.secondary:hover {
  background: var(--card-bg);
  border-color: var(--neon-blue);
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(57, 255, 20, 0.3);
}

.about-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.about-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 240, 255, 0.3);
}

.feature-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(179, 0, 255, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-purple);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(57, 255, 20, 0.3);
}

.contact-card i {
  font-size: 2rem;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--neon-green);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.contact-card a:focus {
  outline: 2px solid var(--neon-green);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Responsive Design for Information Page */
@media (max-width: 768px) {
  .info-hero h1 {
    font-size: 2.5rem;
  }
  
  .info-hero p {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .about-grid,
  .features-grid,
  .stats-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-card,
  .feature-card,
  .stat-card,
  .contact-card {
    padding: 2rem;
  }
}

/* Elegant Back Button Styles */
.elegant-back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.elegant-back-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.elegant-back-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.elegant-back-button:hover::before {
  left: 100%;
}

.elegant-back-button:hover::after {
  width: 300px;
  height: 300px;
}

.elegant-back-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.elegant-back-button:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.elegant-back-button i {
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  position: relative;
}

.elegant-back-button:hover i {
  transform: translateX(-5px) rotate(-10deg);
  color: #fff;
}

.elegant-back-button span {
  z-index: 2;
  position: relative;
}

/* Responsive adjustments for back button */
@media (max-width: 768px) {
  .elegant-back-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
  .info-hero h1 {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 2.5rem;
  }
  
  .about-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
  .info-hero {
    padding: 4rem 0;
  }
  
  .info-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .info-hero p {
    font-size: 0.9rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-stat-number {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-card,
  .feature-card,
  .stat-card,
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-card i {
    font-size: 1.5rem;
  }
}
  