:root {
      --primary: #7c3aed;
      --primary-dark: #5b21b6;
      --primary-light: #a78bfa;
      --gold: #f59e0b;
      --gold-light: #fbbf24;
      --dark: #0f0a1a;
      --dark-secondary: #1a1225;
      --dark-card: #241830;
      --text-primary: #ffffff;
      --text-secondary: #a0a0b0;
      --success: #10b981;
      --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
      --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(15, 10, 26, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(124, 58, 237, 0.2);
      padding: 16px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-menu {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-menu a {
      color: var(--text-secondary);
      font-weight: 500;
      font-size: 0.95rem;
    }

    .nav-menu a:hover {
      color: var(--gold);
    }

    .nav-buttons {
      display: flex;
      gap: 12px;
    }

    .btn {
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary-light);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }

    .btn-primary {
      background: var(--gradient-gold);
      color: var(--dark);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    }

    .btn-large {
      padding: 18px 42px;
      font-size: 1.1rem;
    }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .mobile-toggle span {
      width: 28px;
      height: 3px;
      background: var(--text-primary);
      border-radius: 3px;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      color: var(--primary-light);
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .hero h1 span {
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-text {
      font-size: 1.15rem;
      color: var(--text-secondary);
      margin-bottom: 36px;
      max-width: 540px;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      margin-bottom: 48px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .stat-box {
      text-align: center;
      padding: 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-value {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .hero-visual {
      position: relative;
    }

    .hero-image {
      width: 100%;
      border-radius: 24px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    }

    .floating-card {
      position: absolute;
      background: var(--dark-card);
      padding: 16px 24px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .floating-card.jackpot {
      top: 10%;
      right: -30px;
    }

    .floating-card.win {
      bottom: 15%;
      left: -40px;
    }

    /* Trust Bar */
    .trust-bar {
      background: var(--dark-secondary);
      padding: 32px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .trust-items {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 24px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    .trust-icon {
      font-size: 1.5rem;
    }

    /* Section Styles */
    .section {
      padding: 100px 0;
    }

    .section-dark {
      background: var(--dark-secondary);
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-tag {
      display: inline-block;
      background: rgba(124, 58, 237, 0.15);
      color: var(--primary-light);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .section-subtitle {
      color: var(--text-secondary);
      font-size: 1.1rem;
    }

    /* How It Works */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .step-card {
      text-align: center;
      padding: 40px 24px;
      background: var(--dark-card);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
    }

    .step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 44px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .step-icon {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .step-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .step-text {
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    /* Feature Cards */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .feature-card {
      padding: 40px;
      background: var(--dark-card);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.4s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary);
      box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: rgba(124, 58, 237, 0.15);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 24px;
    }

    .feature-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .feature-text {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* Games Showcase */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .game-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }

    .game-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .game-card:hover img {
      transform: scale(1.1);
    }

    .game-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .game-card:hover .game-overlay {
      opacity: 1;
    }

    .game-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .game-provider {
      color: var(--gold);
      font-size: 0.85rem;
      margin-bottom: 16px;
    }

    .game-play-btn {
      background: var(--gradient-gold);
      color: var(--dark);
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.85rem;
      display: inline-block;
      text-align: center;
    }

    /* Bonus Section */
    .bonus-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .bonus-card {
      background: var(--dark-card);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }

    .bonus-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
    }

    .bonus-card.featured {
      border: 2px solid var(--gold);
      position: relative;
    }

    .bonus-card.featured::before {
      content: '⭐ Beliebtester Bonus';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      background: var(--gradient-gold);
      color: var(--dark);
      padding: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      text-align: center;
    }

    .bonus-header {
      padding: 32px 24px;
      text-align: center;
      background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
    }

    .bonus-card.featured .bonus-header {
      padding-top: 56px;
    }

    .bonus-icon {
      font-size: 2.5rem;
      margin-bottom: 16px;
    }

    .bonus-name {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .bonus-amount {
      font-size: 2.2rem;
      font-weight: 800;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .bonus-extra {
      color: var(--text-secondary);
      font-size: 0.95rem;
      margin-top: 4px;
    }

    .bonus-body {
      padding: 24px;
    }

    .bonus-features {
      list-style: none;
      margin-bottom: 24px;
    }

    .bonus-features li {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--text-secondary);
    }

    .bonus-features li:last-child {
      border-bottom: none;
    }

    .bonus-features .check {
      color: var(--success);
    }

    .bonus-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 16px;
      background: var(--gradient-primary);
      color: white;
      border-radius: 12px;
      font-weight: 600;
    }

    .bonus-btn:hover {
      opacity: 0.9;
    }

    /* Providers */
    .providers-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      padding: 40px;
      background: var(--dark-card);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .provider-logo {
      height: 40px;
      opacity: 0.6;
      transition: all 0.3s ease;
      filter: grayscale(1);
    }

    .provider-logo:hover {
      opacity: 1;
      filter: grayscale(0);
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testimonial-card {
      padding: 32px;
      background: var(--dark-card);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: 1.2rem;
      margin-bottom: 16px;
    }

    .testimonial-text {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 24px;
      color: var(--text-secondary);
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .author-name {
      font-weight: 600;
      margin-bottom: 2px;
    }

    .author-status {
      font-size: 0.85rem;
      color: var(--gold);
    }

    /* FAQ */
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--dark-card);
      border-radius: 16px;
      margin-bottom: 16px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      overflow: hidden;
    }

    .faq-question {
      padding: 24px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 1.05rem;
    }

    .faq-toggle {
      font-size: 1.5rem;
      color: var(--primary-light);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-toggle {
      transform: rotate(45deg);
    }

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

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

    .faq-answer-inner {
      padding: 0 24px 24px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* Payment Methods */
    .payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 16px;
    }

    .payment-card {
      background: var(--dark-card);
      padding: 20px;
      border-radius: 16px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }

    .payment-card:hover {
      border-color: var(--primary);
    }

    .payment-icon {
      font-size: 2rem;
      margin-bottom: 8px;
    }

    .payment-name {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    /* CTA Section */
    .cta-section {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
      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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
      background-size: 50px 50px;
    }

    .cta-content {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cta-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .cta-text {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 36px;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    /* Footer */
    .footer {
      background: var(--dark-secondary);
      padding: 80px 0 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(4, 1fr);
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand {
      max-width: 280px;
    }

    .footer-logo {
      font-size: 1.5rem;
      font-weight: 800;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
      display: block;
    }

    .footer-desc {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .footer-column h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: var(--text-primary);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 14px;
    }

    .footer-links a {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      color: var(--text-secondary);
      font-size: 0.85rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero-text {
        margin: 0 auto 36px;
      }
      
      .hero-cta {
        justify-content: center;
      }
      
      .hero-visual {
        display: none;
      }
      
      .features-grid,
      .bonus-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      
      .games-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-menu,
      .nav-buttons {
        display: none;
      }
      
      .mobile-toggle {
        display: flex;
      }
      
      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .cta-title {
        font-size: 2rem;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }

    /* Content Article Styles */
    .article-section {
      padding: 80px 0;
    }

    .article-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .article-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 32px;
      text-align: center;
    }

    .article-text {
      color: var(--text-secondary);
      font-size: 1.05rem;
      line-height: 1.9;
      margin-bottom: 28px;
    }

    .article-subtitle {
      font-size: 1.5rem;
      font-weight: 600;
      margin: 48px 0 24px;
      color: var(--text-primary);
    }

    .highlight-box {
      background: rgba(124, 58, 237, 0.1);
      border-left: 4px solid var(--primary);
      padding: 24px 32px;
      border-radius: 0 16px 16px 0;
      margin: 32px 0;
    }

    .highlight-box p {
      color: var(--text-secondary);
      margin: 0;
    }

    .final-cta-box {
      background: var(--dark-card);
      border-radius: 24px;
      padding: 48px;
      text-align: center;
      border: 1px solid var(--gold);
      margin-top: 60px;
    }

    .final-cta-box h3 {
      font-size: 1.8rem;
      margin-bottom: 16px;
    }

    .final-cta-box p {
      color: var(--text-secondary);
      margin-bottom: 28px;
    }

    .small-note {
      display: block;
      margin-top: 16px;
      font-size: 0.85rem;
      color: var(--text-secondary);
    }
    /* ========================================
   SOFTWARE PROVIDERS SECTION
   Die Besten Studios Bei CrownPlay
   ======================================== */

.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

@media (max-width: 576px) {
  .providers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.provider-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.provider-card:hover {
  transform: translateY(-8px);
  border-color: #FFD700;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.provider-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.provider-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.provider-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   MOBILE SECTION
   Dein Casino In Der Hosentasche
   ======================================== */

.mobile-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

@media (max-width: 576px) {
  .mobile-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.mobile-feature {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-feature:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border-color: #6366f1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.15);
}

.mobile-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.mobile-feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 14px 0;
  letter-spacing: 0.3px;
}

.mobile-feature p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   CUSTOMER SUPPORT SECTION
   Hilfe, Wenn Du Sie Brauchst
   ======================================== */

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

@media (max-width: 576px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.support-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #6366f1;
}

.support-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.support-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 14px 0;
  letter-spacing: 0.3px;
}

.support-card p {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   EXTENDED TESTIMONIALS GRID
   ======================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

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

.testimonial-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.author-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ========================================
   DARK SECTION TESTIMONIALS OVERRIDE
   ======================================== */

.section-dark .testimonial-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .testimonial-text {
  color: var(--text-primary);
}

.section-dark .author-name {
  color: var(--text-primary);
}

.section-dark .author-status {
  color: var(--text-secondary);
}

/* ========================================
   FAQ EXTENDED STYLES
   ======================================== */

.faq-container {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   UTILITY ADDITIONS
   ======================================== */

/* Gold accent color variable (if not defined) */
:root {
  --gold: #FFD700;
  --primary: #6366f1;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --success: #10b981;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Section dark background */
.section-dark {
  background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
}

/* Section padding */
.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}