.hero-container {
    width: 100%;
    max-width: 1400px;
    padding: clamp(1rem, 3vw, 3rem);
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    position: relative;
  }

  .hero-container .hero-text {
    margin-top: 20px;
    flex: 1;
    padding: clamp(1rem, 3vw, 3rem);
    position: relative;
    z-index: 2;
  }

  .hero-container .hero-visual {
    flex: 1;
    position: relative;
    min-height: clamp(300px, 50vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-container .hero-text h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s 0.2s forwards;
  }

  .hero-container .hero-text h1 span {
    color: var(--primary-color);
  }

  .hero-container .hero-text .description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: #64748b;
    margin-bottom: clamp(2rem, 3vw, 3rem);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s 0.4s forwards;
  }

  .hero-container .hero-text .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s 0.6s forwards;
  }

  .hero-container .hero-text .features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-container .hero-text .features .feature-icon {
    width: clamp(35px, 4vw, 40px);
    height: clamp(35px, 4vw, 40px);
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
  }

  .hero-container .hero-text .cta-buttons {
    display: flex;
    gap: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s 0.8s forwards;
  }

  .hero-container .hero-text .cta-buttons .btn {
    padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 2.5vw, 2.5rem);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-container .hero-text .cta-buttons .btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
  }

  .hero-container .hero-text .cta-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }

  .floating-shape {
    position: absolute;
    border-radius: 20px;
    background: var(--gradient);
  }

  .shape-1 {
    width: clamp(200px, 30vw, 300px);
    height: clamp(200px, 30vw, 300px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
  }

  .shape-2 {
    width: clamp(150px, 20vw, 200px);
    height: clamp(150px, 20vw, 200px);
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
  }

  .shape-3 {
    width: clamp(100px, 15vw, 150px);
    height: clamp(100px, 15vw, 150px);
    bottom: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.5;
  }

  @keyframes slideUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  @keyframes rotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @media (max-width: 992px) {
    .hero-container {
      flex-direction: column;
    }

    .hero-container .hero-text {
      margin-top: 100px;
      text-align: center;
    }

    .hero-container .hero-text .features .feature-item {
      justify-content: center;
    }

    .hero-container .hero-text .cta-buttons {
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .hero-container .hero-text .cta-buttons {
      flex-direction: column;
    }

    .hero-container .hero-text .cta-buttons .btn {
      width: 100%;
      justify-content: center;
    }
  }