 .features-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 3rem 0;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .hero-content .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 0.95;
  }

  .hero-content .hero-slogan {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }

  .hero-content .hero-company {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
  }

  .intro-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .intro-title {
    color: var(--primary-text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  .features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
  }
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
  }

  .feature-category {
    margin-bottom: 4rem;
  }

  .feature-category h2 {
    color: var(--primary-text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-text-color);
    padding-bottom: 1rem;
  }

  .feature-category-desc {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .features-list {
    margin-bottom: 10px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }

  .feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-left: 5px solid var(--primary-text-color);
  }

  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
  }

  .feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
  }

  .feature-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: start;
  }

  .feature-benefits {
    list-style: none;
    padding: 0;
  }

  .feature-benefits li {
    color: #555;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .feature-benefits li:before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  .pricing-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 3rem;
  }

  .pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
  }

  .pricing-container > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
  }

  .pricing-card.featured {
    border: 3px solid var(--success-color);
    transform: scale(1.05);
  }

  .pricing-card.featured:before {
    content: 'EN POPÜLER';
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pricing-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .pricing-card .price {
    font-size: 2.5rem;
    color: var(--primary-text-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .pricing-card .period {
    color: #666;
    margin-bottom: 1.5rem;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }

  .pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
  }

  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 10px 10px;
  }

  .btn-primary {
    background: var(--primary-text-color);
    color: white;
  }

  .btn-primary:hover {
    background: #764ba2;
  }

  .btn-secondary {
    background: transparent;
    color: var(--primary-text-color);
    border: 2px solid var(--primary-text-color);
  }

  .btn-secondary:hover {
    background: var(--primary-text-color);
    color: white;
  }

  .cta-section {
    background: var(--primary-gradient);
    color: white;
    padding: 4rem 0;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .features-list {
      grid-template-columns: 1fr;
    }

    .pricing-grid {
      grid-template-columns: 1fr;
    }

    .pricing-card.featured {
      transform: none;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .feature-category h2 {
      font-size: 1.5rem;
    }

    .cta-content h2 {
      font-size: 1.5rem;
    }
  }