  * {
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  :root {
  --client-scroll-speed: 90s;
}

  body {
    background: #fafafa;
    overflow-x: hidden;
  }

  /* Hero Section */
  .hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(76,175,80,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
  }

  .badge-new {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(76,175,80,0.3);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .text-gradient {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Phone Mockup */
  .phone-mockup {
    width: 280px;
    border: 12px solid #1a1a1a;
    border-radius: 35px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,.2);
    position: relative;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 10px;
    z-index: 10;
  }

  .phone-mockup img {
    width: 100%;
    display: block;
  }

  /* Problem Section */
  .problem-section {
    background: white;
    padding: 60px 0;
  }

  .problem-card {
    background: #fff5f5;
    border-left: 4px solid #ef5350;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s;
  }

  .problem-card:hover {
    transform: translateX(5px);
  }

  /* Feature Cards */
  .feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(76,175,80,0.15);
    border-color: #4caf50;
  }

  .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
  }

  /* Pricing */
  .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid #4caf50;
    position: relative;
    overflow: hidden;
  }

  .pricing-card::before {
    content: '⭐ PALING LARIS';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
  }

  .price-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2e7d32;
    line-height: 1;
  }

  /* CTA Buttons */
  .btn-cta {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  }

  .btn-primary-cta {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
  }

  .btn-whatsapp {
    background: #25d366;
    color: white;
  }

  .btn-whatsapp:hover {
    background: #20ba5a;
    color: white;
  }

  /* Testimonial */
  .testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
  }

  .testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
  }

  /* FAQ */
  .faq-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
  }

  .faq-item:hover {
    border-color: #4caf50;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-answer.active {
    max-height: 500px;
    margin-top: 15px;
  }

  /* WhatsApp Float */
  .wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .wa-float .btn {
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  }

  /* Stats */
  .stats-section {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    padding: 50px 0;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
  }

  /* Trust Badges */
  .trust-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }


  /* CLIENT SLIDER */
  .client-sliders {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .client-track {
    display: flex;
    width: max-content;
    animation: clientScroll var(--client-scroll-speed) linear infinite;
  }

  .client-item {
    width: 144px;
    height: 144px;
    margin: 0 20px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .client-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .8;
    transition: all .3s ease;
  }

  .client-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .client-item:hover img {
    filter: grayscale(0);
    opacity: 1;
  }

  /* ANIMATION */
  @keyframes clientScroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  /* MOBILE SPEED */
  @media (max-width: 768px) {
    .client-track {
      animation-duration: 120s;
    }
  }
