      /* Hero Section */
      .hero {
        min-height: 100vh;
        padding: 8rem 0 6rem 0;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
      }

      .hero-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background-image: url('../image/hero_model.png');
        background-size: cover;
        background-position: center left;
        z-index: -2;
      }

      @media (max-width: 768px) {
        .hero-bg {
          width: 100%;
        }
      }

      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-dark);
        z-index: -1;
      }

      .hero-content {
        max-width: 800px;
        padding-top: 5rem;
      }

      .hero-subtitle {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--accent-primary);
        margin-bottom: 1rem;
        display: block;
      }

      .hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        margin-bottom: 1.5rem;
      }

      .hero p {
        font-size: clamp(1.1rem, 1.5vw, 1.25rem);
        margin-bottom: 2.5rem;
        max-width: 600px;
      }

      .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .trust-badges {
        margin-top: 2rem;
        display: flex;
        gap: 2.5rem;
        flex-wrap: wrap;
      }

      .trust-badge {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.9rem;
        color: var(--text-primary);
      }

      .trust-badge-icon {
        width: 36px;
        height: 36px;
        border: 1px solid var(--accent-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .trust-badge-icon i {
        color: var(--accent-primary);
        font-size: 1.2rem;
      }

      .hero-stats {
        margin-top: 4rem;
        display: flex;
        align-items: center;
        gap: 2.5rem;
        flex-wrap: wrap;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
      }

      .stat-divider {
        width: 1px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
      }

      .stat-item h4 {
        font-size: 2.5rem;
        color: var(--accent-primary);
        margin-bottom: 0.2rem;
      }

      .stat-item span {
        font-size: 0.85rem;
        color: var(--text-primary);
      }