.landing-hero {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  min-height: 600px;
  display: flex;
  position: relative;

  .hero-container {
    gap: 3rem;
    display: grid;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    .left-column {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .earnings-section {
      margin-bottom: 2.5rem;

      .earnings-label {
        color: #666;
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .earnings-amount {
        color: var(--kuida-main-color, #e04e53);
        font-weight: 700;
        font-size: 4rem;
        margin-bottom: 1rem;
        line-height: 1.1;
      }

      .earnings-details {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;

        span { 
          font-weight: 600; 
          color: #333;
        }
      }
    }

    .slider-container {
      margin-bottom: 2.5rem;

      .slider-labels {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: #666;
        font-weight: 500;
      }

      .slider {
        height: 8px;
        width: 100%;
        outline: none;
        appearance: none;
        background: #e0e0e0;
        border-radius: 4px;
        transition: background 0.3s ease;

        &:hover {
          background: #d0d0d0;
        }

        &::-webkit-slider-thumb {
          width: 28px;
          height: 28px;
          cursor: pointer;
          appearance: none;
          background: white;
          border-radius: 50%;
          border: 3px solid var(--kuida-main-color, #e04e53);
          box-shadow: 0 4px 8px rgba(224, 78, 83, 0.3);
          transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        &::-webkit-slider-thumb:hover {
          transform: scale(1.1);
          box-shadow: 0 6px 12px rgba(224, 78, 83, 0.4);
        }

        &::-moz-range-thumb {
          width: 28px;
          height: 28px;
          cursor: pointer;
          background: white;
          border-radius: 50%;
          border: 3px solid var(--kuida-main-color, #e04e53);
          box-shadow: 0 4px 8px rgba(224, 78, 83, 0.3);
          transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        &::-moz-range-thumb:hover {
          transform: scale(1.1);
          box-shadow: 0 6px 12px rgba(224, 78, 83, 0.4);
        }
      }
    }

    .cta-section {
      margin-top: 2rem;

      .cta-button {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--kuida-main-color, #e04e53);
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 8px 16px rgba(224, 78, 83, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        margin-bottom: 1rem;

        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 12px 24px rgba(224, 78, 83, 0.4);
        }
      }

      .cta-subtitle {
        color: #666;
        font-size: 0.95rem;
        margin: 0;
      }
    }

    .learn-more {
      color: #666;
      cursor: pointer;
      font-size: 0.9rem;
      margin-bottom: 2rem;
      text-decoration: underline;
    }

    .search-box {
      background: white;
      position: relative;
      border-radius: 1rem;
      border: 1px solid #ddd;
      padding: 1rem 1rem 1rem 3rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

      .search-icon {
        top: 50%;
        left: 1rem;
        color: #666;
        font-size: 1.2rem;
        position: absolute;
        transform: translateY(-50%);
      }

      .search-location {
        color: #222;
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0.25rem;
      }

      .search-details { color: #666; font-size: 0.9rem; }
    }

    .right-column {
      display: flex;
      align-items: center;
      justify-content: center;

      .hero-image {
        width: 100%;
        height: 500px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;

        &:hover {
          transform: scale(1.02);
        }

        img {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: cover;
        }
      }
    }
  }

  @media (max-width: 768px) {
    padding: 2rem 1rem;
    min-height: auto;

    .hero-container {
      gap: 2rem;
      grid-template-columns: 1fr;

      .left-column { 
        align-items: center; 
        text-align: center;
      }

      .earnings-section {
        margin-bottom: 2rem;

        .earnings-label { font-size: 0.95rem; }

        .earnings-amount { font-size: 2.5rem; }

        .earnings-details { font-size: 1rem; }
      }

      .slider-container {
        margin-bottom: 2rem;
        width: 100%;

        .slider {
          height: 6px;

          &::-webkit-slider-thumb { width: 24px; height: 24px; }

          &::-moz-range-thumb { width: 24px; height: 24px; }
        }
      }

      .cta-section {
        .cta-button {
          padding: 0.9rem 2rem;
          font-size: 1rem;
        }
      }

      .right-column { 
        .hero-image { 
          height: 300px; 
          border-radius: 16px;
        } 
      }
    }
  }
}