
  .hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 80px 40px;
    margin-bottom: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 64, 193, 0.15); margin-top: 40px; 
  }

  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="600" viewBox="0 0 600 600" opacity="0.1"><path fill="white" d="M306.9,156.8c-104.1,0-188.5,84.4-188.5,188.5c0,35.8,9.9,69.2,27.3,97.8h322.3c17.3-28.5,27.3-62,27.3-97.8C495.3,241.3,411,156.8,306.9,156.8z M306.9,310.7c-33.9,0-61.4-27.5-61.4-61.4s27.5-61.4,61.4-61.4s61.4,27.5,61.4,61.4S340.8,310.7,306.9,310.7z"/></svg>');
    background-size: cover;
    opacity: 0.1;
  }

  .hero-content {
    max-width: 55%;
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-button {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
  }

  .hero-button.primary {
    background-color: white;
    color: var(--primary);
    border: none;
  }

  .hero-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .hero-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .hero-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .features-section {
    margin-bottom: 60px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }

  .section-title p {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .feature-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
  }

  .feature-description {
    color: var(--text-light);
    line-height: 1.6;
  }

  .customers-section {
    padding: 80px 0;
    background-color: var(--primary-light);
    margin: 60px -24px;
    position: relative;
  }

  .customers-section .container {
    position: relative;
    z-index: 1;
  }

  .customers-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
  }

  .customer-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
    height: 40px;
    width: auto;
  }

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

  .testimonials-section {
    margin: 60px 0;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonial-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
  }

  .testimonial-content {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
  }

  .testimonial-content::before {
    content: """;
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    top: -30px;
    left: -10px;
    color: var(--primary-light);
    opacity: 0.6;
  }

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

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
  }

  .testimonial-info {
    display: flex;
    flex-direction: column;
  }

  .testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
  }

  .testimonial-position {
    color: var(--text-light);
    font-size: 0.875rem;
  }

  .cta-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 64, 193, 0.1) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px 0;
    text-align: center;
  }

  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.03em;
  }

  .cta-description {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .plans-section {
    margin: 60px 0;
  }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }

  .plan-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }

  .plan-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 64, 193, 0.1);
    position: relative;
    z-index: 1;
  }

  .plan-popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 100px;
  }

  .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
  }

  .plan-description {
    color: var(--text-light);
    margin-bottom: 20px;
  }

  .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
  }

  .plan-billing {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 30px;
  }

  .plan-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .plan-features .check {
    color: var(--success);
    font-size: 18px;
  }

  .plan-button {
    margin-top: auto;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    text-align: center;
    display: block;
  }

  .plan-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
  }

  .plan-button.secondary {
    background-color: var(--card-bg);
    color: var(--primary);
    border: 2px solid var(--primary-light);
  }

  .faq-section {
    margin: 60px 0;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary);
  }

  .faq-answer {
    color: var(--text-light);
    line-height: 1.6;
  }

  @media (max-width: 992px) {
    .features-grid, .plans-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
      max-width: 75%;
    }
  }

  @media (max-width: 768px) {
    .testimonials-grid, .faq-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-section {
      padding: 60px 30px;
    }
    
    .hero-content {
      max-width: 100%;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 576px) {
    .features-grid, .plans-grid {
      grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
      transform: scale(1);
    }
    
    .customers-logos {
      gap: 20px;
    }
    
    .customer-logo {
      height: 30px;
    }
  }
