
    body {
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
    }

    .navbar-custom {
      background: #ffffff;
      height: 80px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .logo {
      display: flex;
      align-items: center;
    }



    .nav-link {
      color: #6B7280 !important;
      font-weight: 500;
      margin: 0 10px;
      position: relative;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      background: linear-gradient(90deg, #009688 0%, #26A69A 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .btn-login {
      background: linear-gradient(to top,
          #009688 0%,
          #00897B 20%,
          #26A69A 60%,
          #4DB8AA 100%);

      background-size: 100% 200%;
      background-position: bottom;

      color: white;
      border-radius: 8px;
      padding: 6px 12px;
      font-weight: 500;
      font-size: 14px;
      font-family: 'Inter', sans-serif;

      transition: background-position 0.8s ease;
    }

    .btn-login:hover {
      background-position: top;
      color: white;
    }

    .btn-konsultasi {
      border: 1px solid #E5E7EB;
      border-radius: 8px;
      padding: 3px 13px;
      display: flex;
      background: white;
      font-weight: 500;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
    }

    .btn-konsultasi:hover {
      background: #F9FAFB;
    }

    .language-switch {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      color: #111827;
      font-size: 14px;
      font-weight: 500;
    }

    .navbar-nav {
     margin: 0 auto;
      font-weight: 500;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #858585 !important;
      text-align: center;
      align-items: center;
      display: flex;
      justify-content: center;
    }

    .lang-icon {
      width: 16px;
      height: 16px;
    }

    .arrow-icon {
      width: 10px;
      height: 10px;
    }



    .hero-container {
      display: grid;
      grid-template-columns: repeat(2, minmax(360px, 1fr));
      gap: 30px;
      align-items: center;
    }

    .hero-content {
      padding: 60px 0 30px 0;
      min-width: 360px;
    }

    .hero-chat {
      padding: 45px 50px;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
      margin-bottom: 30px;
    }


    .badge-text img {
      -webkit-text-fill-color: initial;
      width: 18px;
      height: 18px;
    }

    .hero-badge img {
      width: 18px;
    }

    .hero-title {
      font-family: "Fraunces", serif;
      font-size: 48px;
      line-height: 1.1;
      font-weight: 400;
    }

    .hero-title span {
      background: linear-gradient(to right,
          #009688 0%,
          #26A69A 50%,
          #4DB8AA 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      padding: 5px 0;
    }

    .hero-desc {
      margin-top: 30px;
      color: #858585;
      font-size: 14px;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
      max-width: 500px;
    }

    .hero-buttons {
      display: flex;
      gap: 35px;
      margin-top: 40px;
    }

    .btn-primary {
      background: linear-gradient(to top,
          #009688 0%,
          #00897B 20%,
          #26A69A 60%,
          #4DB8AA 100%);

      background-size: 100% 200%;
      background-position: bottom;
      gap: 1px;
      color: white;
      border-radius: 8px;
      padding: 10px 23px;
      font-weight: 500;
      font-size: 16px;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      align-items: center;

      display: flex;
      max-width: 230px;

      transition: background-position 0.8s ease;
    }

    .btn-primary:hover {
      background-position: top;
      color: white;
    }



    .btn-secondary {
      border: 1px solid #E5E5E5;
      color: #000;
      font-weight: 500;
      font-size: 16px;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      max-width: 140px;
      padding: 11px 26px;
      border-radius: 12px;
    }

    .hero-chat {
      background-image: url('background-chatbot.jpg');
      background-size: cover;
      background-position: center;
      padding: 45px 50px;
    }

    @media (max-width: 992px) {
      .hero-container {
        grid-template-columns: 1fr;
      }

      .hero-content {
        padding: 20px 0;
        text-align: left;
        width: 100%;
      }

      .hero-chat {
        padding: 30px 20px;
      }

      .hero-title {
        font-size: 38px;
      }

      .hero-desc {
        max-width: 100%;
      }

      .hero-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px;
      }

      .btn-primary,
      .btn-secondary {
        max-width: 100%;
        width: 100%;
      }

      .hero{
        padding: 35px 60px;
      }

      .container{
        padding: 0 40px;
      }

      .marquee-blur-container {
        width: 100%;
        padding-top: 40px;
      }

      .partner-top .swiper-slide img,
      .partner-bottom .swiper-slide img {
        width: 100px;
      }

      .chat-card {
        height: auto;
        min-height: 420px;
      }

      .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 10px;
      }

      .nav-link {
        margin: 6px 0;
      }

      .navbar-custom {
        height: auto;
        padding: 10px 0;
      }

      

      .chat-input input,
      .chat-input button {
        width: 100%;
      }

      .chat-input button {
        border-radius: 12px;
      }

        .chat-tabs{
       display:grid;
      }
    }


    @media (min-width: 993px) and (max-width: 1024px) {

      .hero-container {
        grid-template-columns: repeat(2, minmax(360px, 1fr));
        gap: 24px;
      }

      .hero-chat,
      .hero-content {
        min-width: 360px;
      }

      .hero-title {
        font-size: 42px;
      }

      .chat-tabs{
       display:grid;
      }

      .hero-chat {
        padding: 38px 34px;
      }

      .hero-desc {
        max-width: 480px;
      }

      .hero-buttons {
        gap: 22px;
      }
    }

    @media (max-width: 768px) {
      .hero-container {
        grid-template-columns: 1fr;
      }

      .hero-content {
        text-align: left;
        width: 100%;
      }

      .hero-chat {
        padding: 24px 18px;
      }

      .hero-title {
        font-size: 34px;
      }

      .hero-badge {
        justify-content: flex-start;
      }

      .hero-desc {
        max-width: 100%;
        margin: 0;
        text-align: left;
      }

      .hero-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 14px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        max-width: 100%;
        text-align: left;
      }

      .chat-card {
        min-height: 420px;
      }
    }

    @media (max-width: 425px) {
      .hero-title {
        font-size: 28px;
      }

      .hero-chat {
        padding: 18px 14px;
      }

      .hero-badge {
        gap: 6px;
      }

      .hero-buttons {
        gap: 10px;
      }

      .btn-primary,
      .btn-secondary {
        padding: 12px 14px;
      }

      .chat-tabs {
        flex-wrap: wrap;
        gap: 8px;
      }

      .tab {
        font-size: 11px;
        padding: 10px 12px;
      }

      .chat-input {
        gap: 8px;
      }

      .chat-input input {
        padding: 12px 14px;
      }

      .marquee-blur-container {
        padding-top: 30px;
      }

      .partner-top .swiper-slide img,
      .partner-bottom .swiper-slide img {
        width: 90px;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 30px;
      }

      .hero-badge {
        flex-wrap: wrap;
        gap: 8px;
      }

      .hero-buttons {
        gap: 12px;
      }

      .btn-primary,
      .btn-secondary {
        padding: 12px 16px;
      }

      .chat-card {
        padding: 16px;
      }

      .chat-body {
        min-height: 180px;
      }
    }

    .chat-card {
      background: linear-gradient(135deg,
          #FFFFFF 0%,
          #FFFFFF 55%,
          #E0F7F4 80%,
          #C8EFE8 100%);
      height: 620px;

      border-radius: 20px;
      padding: 20px;

      box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

      display: flex;
      flex-direction: column;
    }

    .chat-tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }

    .tab {

      border: none;
      background: none;
      display: flex;
      align-items: center;

      gap: 5px;
      font-weight: 500;
      font-size: 12px;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      color: #858585;
    }

    .tab img {
      width: 16px;
    }

    .active {
      color: #000;
      align-items: center;
      background: white;
      border: 1px solid #E5E5E5;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      border-radius: 10px;
      padding: 5px 12px;
    }

    .chat-body {
      display: flex;
      flex-direction: column;
      /* Wajib column normal agar chat tidak hilang */
      justify-content: flex-start;
      /* Elemen mulai menempel dari atas */
      gap: 15px;
      overflow-y: auto;
      overscroll-behavior: contain;
      /* Scrollbar lokal aktif saat penuh */
      flex: 1;
      min-height: 200px;

    }

    .chat-body::-webkit-scrollbar {
      width: 5px;
    }

    .chat-body::-webkit-scrollbar-track {
      background: transparent;
    }

    .chat-body::-webkit-scrollbar-thumb {
      background: #d1d5db;
      border-radius: 999px;
    }

    .chat-message {
      opacity: 0;
    }

    .chat-message.show {
      opacity: 1;
      animation: fadeUp .8s ease forwards;
    }

    .chat-message.ai {
      max-width: 320px;
      background: #FAFAFA;
      border: 1px solid #E5E5E5;
      padding: 12px 16px;
      border-radius: 15px 15px 15px 2px;
      font-weight: 400;
      font-size: 12px;
      font-family: 'Inter', sans-serif;
    }

    .chat-message.user {
      align-self: flex-end;
      background: #FAFAFA;
      border: 1px solid #E5E5E5;
      padding: 12px 16px;
      border-radius: 15px 15px 2px 15px;
      font-weight: 400;
      font-size: 12px;
      font-family: 'Inter', sans-serif;
    }

    .chat-input {
      display: flex;
      gap: 10px;

      margin-top: auto;

      padding: 15px 12px;
      background: transparent;
      font-size: 14px;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      color: #858585;
    }

    .chat-input input {
      flex: 1;
      border: 1px solid #ddd;
      border-radius: 50px;
      padding: 14px 20px;
    }

    .chat-input button {
      width: 48px;
      height: 48px;
      border: none;
      border-radius: 50%;
      background: linear-gradient(135deg,
          #26A69A 0%,
          #009688 100%);
    }


    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: .8s;
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    .refresh-btn {
      color: #858585;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .refresh-btn:hover {
      color: #000;
    }

    .partners {
      overflow: hidden;
    }

    .partners .container {
      padding: 40px 24px;
    }

    .fitur-swiper,
    .produk-swiper {
      width: 100%;
    }

    .fitur-swiper .swiper-slide,
    .produk-swiper .swiper-slide {
      height: auto;
      user-select: none;
    }

    .fitur-swiper .layanan,
    .produk-swiper .layanan {
      height: 100%;
    }

    .layanan-link {
      display: block;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }

    .layanan-link:hover {
      color: inherit;
      text-decoration: none;
    }

    .fitur-swiper img,
    .produk-swiper img {
      pointer-events: none;
      user-select: none;
      -webkit-user-drag: none;
    }

    .partner-title {
      flex: 0 0 300px;
      font-size: 14px;
      font-weight: 500;
      color: #858585;
      line-height: auto;
    }

    .partner-lists {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
      min-width: 0;
    }

    /* --- LOGIC ANIMASI CSS MARQUEE --- */
    /* --- CONTAINER UNTUK EFEK BLUR KANAN KIRI --- */
    .marquee-blur-container {
      position: relative;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
       padding-top: 90px;
    }

  @media (min-width: 768px) { 
    .marquee-blur-container {
      position: relative;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-top: 0px;
    }
  }


    /* Membuat efek gradasi transparan di sisi kiri dan kanan */
    .marquee-blur-container::before,
    .marquee-blur-container::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      /* Lebar area blur, silakan sesuaikan */
      z-index: 10;
      pointer-events: none;
      /* Klik tembus ke logo di bawahnya */
    }

    /* Sisi Kiri (Blur dari Putih/Background ke Transparan) */
    .marquee-blur-container::before {
      left: 0;
      background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    }

    /* Sisi Kanan (Blur dari Transparan ke Putih/Background) */
    .marquee-blur-container::after {
      right: 0;
      background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    }

    /* --- STYLING SWIPER & LOGO --- */
    .partner-top,
    .partner-bottom {
      width: 100%;
      overflow: hidden;
      cursor: grab !important;
      /* Mengubah kursor jadi telapak tangan terbuka */
    }

    .partner-top:active,
    .partner-bottom:active {
      cursor: grabbing !important;
      /* Mengubah kursor jadi mengepal saat ditarik/diklik */
    }

    /* KUNCI UTAMA: Memaksa transisi Swiper berjalan linear tanpa hambatan */
    .partner-top .swiper-wrapper,
    .partner-bottom .swiper-wrapper {
      display: flex !important;
      gap: 30px;
      transition-timing-function: linear !important;
      will-change: transform;
    }

    .partner-top .swiper-slide,
    .partner-bottom .swiper-slide {
      flex: 0 0 auto;
      width: auto !important;
      user-select: none;
    }

    /* Ukuran Gambar Sesuai Request */
    .partner-top .swiper-slide img,
    .partner-bottom .swiper-slide img {
      display: block;
      width: 160px;
      height: 64px;
      padding: 8px;
      object-fit: contain;
      pointer-events: none;

      /* --- KUNCI UTAMA SUPAYA BISA DI-DRAG DENGAN SMARTPHONE/MOUSE ELEGAN --- */
      -webkit-user-drag: none;
      /* Mematikan drag image bawaan browser (Chrome/Safari) */
      user-select: none;
      /* Mencegah gambar ter-blok biru saat di-klik lama */
      -webkit-user-select: none;
      pointer-events: auto;
      /* Mengembalikan izin mouse agar Swiper mendeteksi seretan */
      /* Mencegah gambar bawaan browser ter-drag keluar */
    }

    /* --- TIMING & AKSI ANIMASI --- */
    .partner-top .swiper-wrapper {
      /* Jalan ke Kiri: Durasi 20 detik, kecepatan konstan/linear, berputar selamanya */
      animation: marqueeKiri 20s linear infinite;
    }

    .partner-bottom .swiper-wrapper {
      /* Jalan ke Kanan: Durasi 20 detik, kecepatan konstan/linear, berputar selamanya */
      animation: marqueeKanan 20s linear infinite;
    }

    .partner-title{
    display: flex;
    justify-content: space-between;
    gap: 95px;
    }

    .layanan{
    display:flex;
    align-items:center;
    gap:12px;
    height:100%;
}

.layanan-icon{
    width:60px;
    height:60px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#EDF8F6;
    border:1px solid #E5E5E5;
    border-radius:50%;
}

.layanan-icon img{
    width:28px;
    height:28px;
}

.layanan-text{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.layanan-text span{
    font-size:16px;
    font-weight:600;
    color:#079076;
}

.decribe-teks{
    margin:0;
    font-size:13px;
    line-height:1.5;
    color:#555;
}

    /* Stats Strip */
    .stats-strip {
      background: #FFFFFF;
      border-top: 1px solid #E8F0FE;
      border-bottom: 1px solid #E8F0FE;
      padding: 40px 0;
    }

    .stat-item {
      padding: 24px 16px;
      border-right: 1px solid #E8F0FE;
    }

    .col-md-3:last-child .stat-item {
      border-right: none;
    }

    .stat-number {
      font-size: 2.4rem;
      font-weight: 800;
      color: #0451AA;
      line-height: 1;
      margin-bottom: 8px;
      font-family: 'Fraunces', serif;
    }

    .stat-number span {
      font-size: 1.4rem;
      color: #3B82F6;
    }

    .stat-label {
      font-size: 13px;
      color: #6B7280;
      margin: 0;
      font-weight: 500;
    }

    /* Cara Kerja */
    .cara-kerja-section {
      background: #F4F8FF;
    }

    .ck-steps-row {
      display: flex;
      align-items: flex-start;
      justify-content: center;
    }

    .ck-step {
      flex: 1;
      max-width: 280px;
      text-align: center;
      padding: 0 24px;
    }

    .ck-step-num {
      font-size: 56px;
      font-weight: 900;
      color: #DBEAFE;
      line-height: 1;
      margin-bottom: 16px;
      font-family: 'Fraunces', serif;
    }

    .ck-step-icon-wrap {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, #0451AA 0%, #3B82F6 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .ck-step-icon-wrap img {
      width: 28px;
      height: 28px;
      filter: brightness(0) invert(1);
    }

    .ck-step-title {
      font-size: 18px;
      font-weight: 700;
      color: #02275A;
      margin-bottom: 12px;
    }

    .ck-step-desc {
      font-size: 14px;
      color: #6B7280;
      line-height: 1.7;
      margin: 0;
    }

    .ck-connector {
      flex: 0 0 80px;
      height: 2px;
      background: linear-gradient(90deg, #0451AA, #3B82F6);
      margin-top: 108px;
      position: relative;
    }

    .ck-connector::after {
      content: '';
      position: absolute;
      right: -5px;
      top: -4px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #3B82F6;
    }

    @media (max-width: 768px) {
      .ck-steps-row {
        flex-direction: column;
        align-items: center;
      }

      .ck-connector {
        width: 2px;
        height: 40px;
        flex: 0 0 40px;
        margin-top: 0;
      }

      .ck-connector::after {
        right: -4px;
        bottom: -5px;
        top: auto;
      }

      .col-6 .stat-item {
        border-right: none;
        border-bottom: 1px solid #E8F0FE;
      }
    }

    /* Produk Section */
    .produk-section {
      padding: 32px 0;
      background: #FFFFFF;
      border-top: 1px solid #F0F0F0;
      border-bottom: 1px solid #F0F0F0;
      overflow: hidden;
    }

    /* Styling Section Kenapa AioChat */
    .why-aiochat {
      background-color: #ffffff;
      font-family: 'Inter', sans-serif;
    }

    .why-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
       font-family: 'Inter', sans-serif;
    }

    .why-badge span {
      background: #000;
       color: #fff;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .why-badge img {
      -webkit-text-fill-color: initial;
      width: 18px;
      height: 18px;
      
    }

    .section-title {
      font-family: "Fraunces", serif;
      font-size: 36px;
      font-weight: 500;
      background: linear-gradient(to right, #009688 0%, #26A69A 50%, #4DB8AA 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Kartu Perbandingan Utama */
    .card-comparison {
      border-radius: 24px;
      padding: 40px 45px;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Latar Gradasi Sesuai Gambar */
    .card-biasa {
      background: linear-gradient(180deg, #ffff 0%, #CDECF6 100%);
    }

    .card-aio {
      background: linear-gradient(180deg, #ffff 0%, #BEFAD7 100%);
    }

    .card-comparison-header h3 {
      font-weight: 400;
      font-size: 20px;
      font-family: 'Fraunces', serif;
      color: #000;
      margin-bottom: 12px;
    }

    .card-comparison-header p {

      width: 340px;
      margin: 0 auto;
      margin-top: 20px;
      margin-bottom: 45px;
      line-height: auto;
      font-weight: 500;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #858585;
    }

    .alert-statis{
      background: #FFF1F2;
      border: 1px solid #FEE2E2;
      padding: 10px;
      border-radius: 12px;
      color: #EF4444;
      font-size: 12px;
      font-weight: 500;
      margin-top: auto;
    }


    /* Box Wadah Simulasi Chat */
    .chat-mockup-box {
      background: #ffffff;
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 480px;
         max-height: 400px; /* Batasi tinggi kotak chat mockup */
    overflow-y: auto;   /* Aktifkan scroll vertikal internal */
    overflow-x: hidden;
    overscroll-behavior: contain; /* Kunci scroll agar tidak meluber ke halaman utama */
    scroll-behavior: smooth;
    margin: 0 auto;
    }


/* Sembunyikan elemen animasi di awal agar tidak bentrok dengan GSAP */
.animate-trigger-1, 
.animate-trigger-2, 
.animate-trigger-3,
.animate-trigger-4,
.animate-trigger-5 {
    opacity: 0;
    transform: translateY(20px);
}

    /* Gelembung Chat */
    .chat-bubble-row {
      display: flex;
      flex-direction: column;
      max-width: 80%;
    }

    .user-row {
      align-self: flex-end;
      align-items: flex-end;
    }

    .ai-row {
      align-self: flex-start;
      align-items: flex-start;
    }

    .bubble {

      max-width: 320px;
      background: #FAFAFA;
      border: 1px solid #E5E5E5;
      padding: 12px 16px;
      border-radius: 15px 15px 15px 2px;
      font-weight: 400;
      font-size: 12px;
      font-family: 'Inter', sans-serif;
    }



    .bubble-user {
      background: #F3F4F6;
      color: #111827;
      border-radius: 16px 16px 4px 16px;
      border: 1px solid #E5E7EB;
    }

    .bubble-ai-biasa {
      background: #FAFAFA;
      color: #000;
      border-radius: 16px 16px 16px 4px;
      border: 1px solid #E5E5E5;
    }

    .bubble-ai-aio {
      background: #FAFAFA;
      color: #000;
      border-radius: 16px 16px 16px 4px;
      border: 1px solid #E5E5E5;
    }

    /* Penanda teks peran (Pelanggan / AioChat) */
    .chat-role {
      font-size: 12px;
      color: #000;
      margin-top: 5px;
      font-family: 'Inter', sans-serif;
      margin-right: 13px;
         font-weight: 400;
    }

   .chat-role-ai {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: 5px;
    margin-left: 13px;
}

.chat-role-ai .aio {
    color: #009688;
}

.chat-role-ai .chat {
    color: #00897B;
}

    /* Alert Pembatalan untuk Chatbot Biasa */
    .alert-cancel {
      background: #FEF2F2;
      border: 1px solid #E5E5E5;
      padding: 10px;
      border-radius: 12px;
      color: #FB3741;
      font-size: 12px;
      font-weight: 500;
       font-family: 'Inter', sans-serif;
    }

 
/* Container Utama Mockup Chat */
.card-aio .chat-mockup-box {
    height: 400px;                
    overflow-y: auto;             
    overflow-x: hidden;           
    overscroll-behavior: contain; 
    padding: 25px;
}

/* Base style untuk transisi seluruh chat baris */
.card-aio .chat-mockup-box .chat-bubble-row {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* PERBAIKAN: Gunakan :nth-of-type untuk menghitung murni jumlah baris chat */
/* Menyembunyikan baris chat ke-3 dan seterusnya di awal */
.card-aio .chat-mockup-box .chat-bubble-row:nth-of-type(n+3) {
    opacity: 0;
    transform: translateY(20px);
}

/* Munculkan kembali saat JavaScript menempelkan kelas .show */
.card-aio .chat-mockup-box .chat-bubble-row:nth-of-type(n+3).show {
    opacity: 1;
    transform: translateY(0);
}



    /* --- KEYFRAMES JALUR --- */
    @keyframes marqueeKiri {
      0% {
        transform: translateX(0);
      }

      100% {
        /* Bergeser sejauh setengah total panjang wrapper (karena isinya kita duplikat 2x) */
        transform: translateX(-50%);
      }
    }

    @keyframes marqueeKanan {
      0% {
        transform: translateX(-50%);
      }

      100% {
        transform: translateX(0);
      }
    }


    @keyframes fadeUp {

      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }

    }


    /* ==========================================
   WHY AIOCHAT SECTION & CARDS
   ========================================== */

/* Base Styling untuk Container Utama Feature Card */

.Feature-card-header{
    margin:25px 25px 0 25px;
}

.feature-card {
   
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    background: #ffffff;
    
    /* Efek Bayangan Lembut Awal */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    
    /* Efek Animasi Transisi Halus (Kunci untuk kenyamanan visual) */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* EFEK HOVER: Card Terangkat & Bayangan Menebal */
.feature-card:hover {
  border: 1px solid rgba(0, 0, 0, 0.05); 
    transform: translateY(-2px); /* Card terangkat ke atas sejauh 10px */
    box-shadow: 0 20px 40px rgba(26, 59, 92, 0.08); /* Bayangan lebih tegas saat melayang */
}


/* Card Hijau */
.card-green {
    border-radius: 16px 4px 16px 16px;
    background: #EFFAF6;
}

.card-green:hover {
    border: 1px solid #00B366;
}

/* Card Ungu */
.card-purple {
    border-radius: 4px 16px 16px 16px;
    background: #F1F0FD;
}

.card-purple:hover {
    border: 1px solid #7C5AC2;
}

/* Card Biru */
.card-blue {
    border-radius: 16px 4px 16px 16px;
    background: #EDF4FE ;
}

.card-blue:hover {
    border: 1px solid #1976D2;
}

/* Card Cyan */
.card-cyan {
    border-radius: 4px 16px 16px 16px;
    background: #EAF8FB;
}

.card-cyan:hover {
    border: 1px solid #0097A7;
}

/* ==========================================
   STYLING ELEMEN DI DALAM CARD
   ========================================== */

/* Wrapper Ikon Atas */
.card-icon-wrapper {
    color: #1e466e; /* Warna biru gelap pekat untuk ikon bawaan */
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.card-icon-wrapper svg {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

/* Judul Fitur */
.card-feature-title {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 400;
    text-align: left;
    font-family: 'Fraunces', serif;
}

.card-feature-title {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 400;
    text-align: left;
    font-family: 'Fraunces', serif;
}


/* Deskripsi Fitur */
.card-feature-desc {
  font-size: 14px;
    font-weight: 500;
    color: #1a3b5c; /* Warna biru gelap sesuai mockup */
    margin-bottom: 3px;
    text-align: left;
    font-family: 'Inter', serif;
}

/* Wrapper Gambar Ilustrasi (Kunci agar menempel rapi di bawah) */
.card-img-wrapper {
    margin-top: auto; /* Memaksa elemen ini selalu turun ke dasar card */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.card-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0 0 16px 16px; /* Sisi bawah gambar mengikuti kelengkungan card */
    display: block;
}

.agen-aiochat {
      background-image: url('background-agen.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      font-family: 'Inter', sans-serif;
    }


    /* --- CUSTOM LANDING PAGE STYLE CONFIG --- */

/* Mengaktifkan Custom Font sesuai Google Link */
.font-fraunces {
  font-family: 'Fraunces', serif;
}
.font-geist {
  font-family: 'Inter', 'Geist', sans-serif;
}

/* Badge Header Atas */
.features-badge-icon {
  width: 16px;
  height: 16px;
}
.badge-text {
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  color: #000000; /* emerald-600 */
  display: flex;
}

/* Judul Utama */
.main-hero-title {
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}
@media (min-width: 768px) { .main-hero-title { font-size: 36px; } }
@media (min-width: 1200px) { .main-hero-title { font-size: 44px; } }

.main-hero-subtitle {
  font-size: 16px;
  max-width: 580px;
}

/* Layout Kartu Utama */
.custom-feature-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.left-info {
  width: 100%;
}
@media (min-width: 768px) {
  .left-info {
    width: 45%;
    flex-shrink: 0;
  }
}
@media (min-width: 1200px) {
  .left-info {
    width: 30%;
  }
}


@media (min-width: 768px) { .card-feature-title { font-size: 32px; } }

.card-feature-desc {
  font-size: 15px;
  line-height: 1.4;
}

/* Jendela Mac OS Simulator */
.mac-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.mac-dot.red { background-color: #FE5F57; }
.mac-dot.yellow { background-color: #DABFDC; }
.mac-dot.green { background-color: #29C740; }

/* --- Pengaturan CSS Jalur Gelombang Suara --- */
.wave-bar {
  width: 3px;
  background-color: #00D492;
  border-radius: 2px;
  display: inline-block;
  height: 10px; /* Tinggi default saat berhenti */
  transition: height 0.3s ease;
}

/* Animasi hanya berjalan jika container memiliki class .playing */
#waveform.playing .anim-wave-1 { animation: bounceWave 0.6s ease-in-out infinite alternate; }
#waveform.playing .anim-wave-2 { animation: bounceWave 0.4s ease-in-out infinite alternate 0.2s; }
#waveform.playing .anim-wave-3 { animation: bounceWave 0.5s ease-in-out infinite alternate 0.1s; }
#waveform.playing .anim-wave-4 { animation: bounceWave 0.7s ease-in-out infinite alternate 0.3s; }

@keyframes bounceWave {
  0% { height: 10px; transform: scaleY(0.8); }
  100% { height: 30px; transform: scaleY(1.2); }
}

/* Style tambahan tombol bahasa */
.lang-btn {
  color: #6B7280;
  background: transparent;
  transition: all 0.2s ease;
}
.lang-btn.active {
  background-color: #262626 !important;
  color: #ffffff !important;
}
.anim-wave-1 { height: 14px; animation: bounceWave 0.6s ease-in-out infinite alternate; }
.anim-wave-2 { height: 26px; animation: bounceWave 0.4s ease-in-out infinite alternate 0.2s; }
.anim-wave-3 { height: 18px; animation: bounceWave 0.5s ease-in-out infinite alternate 0.1s; }
.anim-wave-4 { height: 32px; animation: bounceWave 0.7s ease-in-out infinite alternate 0.3s; }

@keyframes bounceWave {
  0% { transform: scaleY(0.6); }
  100% { transform: scaleY(1.2); }
}

/* --- DRIVER ANIMASI MASUK (DIKONTROL OLEH JS VIA CLASS .active) --- */
.fade-in-element {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ketika elemen menyentuh layar, JS menambahkan class .active, memicu transisi ini */
.fade-in-element.active,
.fade-in-up-element.active {
  opacity: 1;
  transform: translateY(0);
}

/* Pengatur Jeda Masuk Bertahap Berdasarkan Urutan Urutan Teks & Card */
.btn-delay-1 { transition-delay: 0.1s; }
.btn-delay-2 { transition-delay: 0.2s; }
.btn-delay-3 { transition-delay: 0.3s; }
.btn-delay-4 { transition-delay: 0.4s; }
.btn-delay-5 { transition-delay: 0.5s; }

@keyframes smoothFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes smoothFadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.right-mockup {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
    min-height: 360px;

    background-image: url('background-ai.jpg');
    background-size: cover;

    border: 1px solid #C7F070;
  
}

.left-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.card-feature-title {
  margin-bottom: 25px;
     
    margin: 0;
    color: #3D6300;
}

.card-feature-desc {
    font-weight: 500;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #858585;
}

.custom-feature-card {
    display: flex;
   
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    padding: 35px 25px;
    overflow: hidden;
    border-radius: 24px;
    background: #FAFAFA;
}

.left-info {
    align-self: flex-start;
}


/* utility warna teks judul fitur (opsional) */
.text-voice { color: #00598A; }
.text-crm { color: #6366F1; }

/* Styling Area Mockup Voice & CRM */
.mockup-voice {
   background-image: url('background-ai2.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
    border: 1px solid #B8E6FE;
    min-height: 360px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    padding: 1rem;
}

.mockup-crm {
   background-image: url('background-ai3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #C7D2FE;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    padding: 1rem;
}

.texture-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* ==========================================================================
   Audio Player Card Utility
   ========================================================================== */

.audio-player-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    font-family: 'Geist', sans-serif;
    position: relative;
    width: 280px;
    border: 1px solid rgba(0,0,0,0.05);
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

/* Lang Selector & Buttons */
.lang-selector {
    background-color: #f8f9fa;
    padding: 2px;
    border-radius: 50rem;
    display: flex;
    gap: 4px;
    border: 1px solid #E5E7EB;
}

.lang-btn {
    font-size: 9px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50rem;
    transition: all 0.2s ease-in-out; /* Transisi halus saat ganti bahasa */
}

/* State Aktif Tombol Bahasa sesuai manipulasi DOM di JavaScript */
.lang-btn.active {
    background-color: #212529; /* Warna bg-dark */
    color: #ffffff !important;  /* Warna text-white */
}

.btn-play {
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

.btn-play:active {
    transform: scale(0.95); /* Efek membal saat ditekan */
}

/* Agent Profiles */
.avatar-agent {
    border-radius: 8px;
    margin-bottom: 0.5rem;
    object-fit: cover;
    width: 50px;
    height: 50px;
}

.agent-name {
    color: #009966;
    font-size: 16px;
    margin: 0;
}

.agent-title {
    font-size: 11px;
    margin-bottom: 1rem;
}

/* Waveform Container & Base Bars */
.waveform-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.wave-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 24px; /* Menjaga kontainer tetap stabil saat bar meninggi */
}

/* Styling untuk tiap batang gelombang */
.wave-bar {
    width: 3px;
    height: 14px;
    border-radius: 2px;
    background-color: #198754; /* Warna hijau bg-success Bootstrap */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-play-state: paused; /* Default diam sebelum audio di-play */
}

/* Memicu animasi jalan saat container ditambahkan class .playing lewat JS */
.wave-animation.playing .wave-bar {
    animation-play-state: running;
}

/* Variasi nama animasi dan durasi agar gelombang acak alami */
.anim-wave-1 { animation-name: bounce-low; animation-duration: 0.5s; }
.anim-wave-2 { animation-name: bounce-high; animation-duration: 0.4s; }
.anim-wave-3 { animation-name: bounce-mid; animation-duration: 0.6s; }
.anim-wave-4 { animation-name: bounce-low; animation-duration: 0.35s; }

.wave-static {
    margin-left: 0.5rem;
    width: 32px;
    height: 20px;
}

.audio-timer {
    font-size: 9px;
}

.mockup-image {
    margin: 0 auto;
}

/* ==========================================================================
   Keyframes Key-Animations Gelombang Suara
   ========================================================================== */
@keyframes bounce-low {
    0%, 100% { height: 6px; }
    50% { height: 16px; }
}

@keyframes bounce-mid {
    0%, 100% { height: 10px; }
    50% { height: 22px; }
}

@keyframes bounce-high {
    0%, 100% { height: 14px; }
    50% { height: 8px; } /* Bergerak berlawanan arah */
}


.card-feature-subline{
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #858585;
  margin-top: 15px;
  font-family: 'Inter', sans-serif;
}

/* ==========================================================================
   STYLE NAVIGASI TAB (SAMA PERSIS DENGAN GAMBAR DESAIN)
   ========================================================================== */

    .lp-use-cases-section{
      padding: 60px 40px;
      background-color: #ffffff;
    }



  /* Kontainer Utama Tab (Garis Luar Abu-abu Tipis) */
  .lp-uc-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0; /* Warna border abu-abu halus */
    background-color: #ffffff;
    border-radius: 8px; /* Sudut sedikit membulat sesuai gambar */
    padding: 0; /* Mengikuti desain gambar di mana border button menempel ke pembatas */
    margin-bottom: 40px;
    overflow: hidden; /* Memastikan sudut button tidak keluar dari border kontainer */
    width: 100%;
  }

  /* Pengaturan Tombol Tab */
  .lp-uc-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Jarak antara Icon SVG/Gambar dengan Teks */
    padding: 16px 20px; /* Padding atas bawah agar proporsional */
    background: none;
    border: none;
    border-right: 1px solid #e2e8f0; /* Garis pembatas vertikal antar tab */
    font-size: 15px;
    font-weight: 500;
    color: #64748b; /* Warna teks default (abu-abu) */
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  /* Menghilangkan garis pembatas vertikal di tab paling terakhir */
  .lp-uc-tab-btn:last-child {
    border-right: none;
  }

  /* Ukuran Ikon di Dalam Tombol */
  .lp-uc-tab-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
  }

  /* Efek Hover (Saat Kursor Mengarah ke Tab) */
  .lp-uc-tab-btn:hover {
    background-color: #f8fafc;
    color: #0f172a;
  }

  /* STYLE SAAT TAB AKTIF (SAMA PERSIS DENGAN "CLOSE SALES" DI GAMBAR) */
  .lp-uc-tab-btn.active {
    background-color: #f0fdf4; /* Warna background hijau mint super soft */
    color: #0f172a; /* Teks tetap gelap tegas sesuai gambar */
    font-weight: 600; /* Teks sedikit lebih tebal saat aktif */
    position: relative;
  }

  /* Tambahan filter warna jika ikon gambar kamu butuh penyesuaian warna hijau saat aktif (Opsional) */
  .lp-uc-tab-btn.active img {
    /* Jika menggunakan SVG inline/warna asli bawaan file sudah hijau, baris ini bisa diabaikan */
    opacity: 1; 
  }

  /* ==========================================================================
    RESPONSIVE (Biar tidak hancur di layar HP kecil)
    ========================================================================== */
  @media (max-width: 768px) {

    .card-img-wrapper img{
      width: 50%;
      
    }

    .lp-uc-tabs {
      overflow-x: auto; /* Izinkan scroll horizontal jika layar kekecilan */
      justify-content: flex-start;
    }
    .lp-uc-tab-btn {
      flex: none;
      padding: 12px 18px;
    }
  }

  /* ==========================================================================
    LAYOUT GRID UTAMA (KOLOM KIRI & KANAN)
    ========================================================================== */

  .lp-uc-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* --- SISI KIRI: KONTEN TEKS --- */
.lp-uc-left {
  display: flex;
  flex-direction: column;
  /* Pastikan tinggi kolom kiri mengikuti tinggi penuh col-md-6 (sejajar box kanan) */
  height: 100%; 
  min-height: 380px; /* Sesuaikan dengan tinggi .chat-mockup-box Anda */
}

  /* Label Kecil di Atas Judul Utama */
  .lp-uc-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000; /* Warna hijau brand */
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
     font-family: 'Inter', sans-serif;
     margin-bottom: 25px;
  }

  .lp-uc-label img {
    width: 16px;
    height: 16px;
    object-fit: contain;
  }

  /* Judul Utama */
  .lp-uc-headline {
    font-size: 26px;
    font-weight: 400;
    color: #000;
   font-family: 'Fraunces', serif;
   width: 100%;
   max-width: 443px;
  }

  /* List Fitur */
 .lp-uc-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
  /* TRICK UTAMA: Mendorong list fitur agar selalu berada di posisi paling bawah */
  margin-top: auto; 
  padding-top: 24px; /* Memberikan sedikit jarak aman dari teks headline di atasnya */
}

  .lp-uc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start; /* Menjaga icon tetap rapi di atas teks jika paragrafnya panjang */
}

  /* Wadah Ikon Mini di Sebelah Kiri Fitur (Ganti latar jika butuh gambar/SVG) */
 .lp-uc-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .lp-uc-text h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
  }

  .lp-uc-text p {
    font-size: 14px;
    color: #858585;
      font-family: 'Inter', sans-serif;
    font-weight: 400;
  width: 100%;
  max-width: 450px;
  }


  /* Jika menggunakan aset gambar langsung */
  .lp-uc-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
  }

  /* Container Kanan Kontainer Chat */
  .lp-uc-right {
      flex: 1;
      background: linear-gradient(135deg,
          #F4E6CC 0%,
          #FFFB8C 100%);
      padding: 24px;
      border-radius: 0 12px 12px 0; 
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    
  }

  .chat-mockup-box {
      width: 100%;
      max-width: 440px; /* Sedikit diperkecil agar lebih aman di layar sedang */
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      box-sizing: border-box;
  }

  .chat-bubble-row {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 85%;
      box-sizing: border-box;
      
      /* State awal sebelum di-render oleh JS (efek samar di bawah) */
      opacity: 1;
      transform: translateY(15px);
      transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* State akhir setelah dipicu oleh class .show lewat JS */
  .chat-bubble-row.show {
      opacity: 1;
      transform: translateY(0);
  }

  /* Sisi Pelanggan (Kanan) */
  .user-row {
      align-self: flex-end;
      align-items: flex-end;
  }

  .bubble-user {
      background-color: #FFFFFF;
      color: #1A1A1A;
      border-radius: 16px 16px 4px 16px;
      padding: 12px 16px;
      font-size: 13px;
      line-height: 1.5;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);
      word-break: break-word; /* Memaksa teks panjang turun ke bawah, anti-overflow */
  }

  .chat-role {
      font-size: 11px;
      color: #666666;
      margin-top: 4px;
      margin-right: 4px;
  }

  /* Sisi AioChat (Kiri) */
  .ai-row {
      align-self: flex-start;
      align-items: flex-start;
  }

  .bubble-ai {
      background-color: #FFFFFF;
      color: #1A1A1A;
      border-radius: 16px 16px 16px 4px;
      padding: 12px 16px;
      font-size: 13px;
      line-height: 1.5;
      box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);
      word-break: break-word; /* Memaksa teks panjang turun ke bawah, anti-overflow */
  }

  .chat-role-ai {
      font-size: 11px;
      color: #2E7D32; 
      font-weight: 600;
      margin-top: 4px;
      margin-left: 4px;
  }

  /* Balon Rekomendasi Dokumen / File PDF */
  .bubble-file {
      padding: 14px;
      border-radius: 16px 16px 16px 4px;
      width: 100%; /* Memastikan lebar flat mengikuti induk */
      box-sizing: border-box;
  }

  .file-info {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid #E0E0E0;
      border-radius: 12px;
      padding: 8px 12px;
      margin-bottom: 10px;
      background-color: #FAFAFA;
      box-sizing: border-box;
      max-width: 100%;
      overflow: hidden; /* Mencegah info file merusak komponen */
  }

  .file-icon {
      width: 24px;
      height: 24px;
      color: #2E7D32;
      flex-shrink: 0; /* Mencegah icon gepeng saat ruang menyempit */
  }

  .file-title {
      font-weight: 600;
      font-size: 12px;
      color: #1A1A1A;
      word-break: break-word;
  }

  .file-sub {
      font-size: 11px;
      color: #888888;
  }

  .bubble-file p {
      margin: 0;
      font-size: 13px;
      color: #333333;
      word-break: break-word;
  }

  /* Media Query Tambahan untuk Layar Kecil/Tablet */
  @media (max-width: 768px) {
      .lp-uc-right {
          border-radius: 0 0 12px 12px; /* Menyesuaikan jika layout grid bertumpuk vertikal di mobile */
          padding: 16px;
      }
      .chat-mockup-box {
          max-width: 100%;
      }
      .bubble-user, .bubble-ai, .bubble-file p {
          font-size: 12px; /* Perkecil teks sedikit di mobile agar hemat ruang */
      }
  }

  .container-lp-uc-content{
      background-color: #fff; /* Warna latar belakang cream kekuningan */
       border: 1px solid #E5E5E5;
       padding: 25px;
   
  }

  /* ==========================================================================
   SECTION TESTIMONI (SWIPER + 3D FLIP CARD EFFECT)
   ========================================================================== */

   /* --- Container Section --- */
.testimonial-section {  

  background-image: url('background-testimonial.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    text-align: center;
    width: 100%;
    padding: 235px 60px;
    position: relative;
    margin: 0 auto;
}

.testimonial-section .section-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

/* --- Swiper Base & Overflow Fixes --- */
.testimonial-swiper {
    max-width: 1200px;
    padding: 40px 20px 100px 20px !important; 
    overflow: hidden !important;
}

/* Base style untuk semua slide */
.testimonial-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* KUNCI: Transisi perubahan perspective 3D saat bergeser */
    transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1), opacity 700ms ease;
    z-index: 1;
}

/* --- Penyesuaian Wrapper agar posisi simetris di tengah --- */
.testimonial-swiper .swiper-wrapper {
    align-items: center;
    display: flex;
}

/* --- Core Struktur Flip Card & Ukuran Sesuai Gambar --- */
.flip-card {
    background-color: transparent;
    width: 100%;
    max-width: 324px;   /* Sesuai spesifikasi gambar pendukung Anda */
    height: 468px;      /* Sesuai spesifikasi gambar pendukung Anda */
    perspective: 1000px; 
}

/* KUNCI ANIMASI SMOOTH: Wadah rotasi diatur di sini murni */
.flip-card-inner {
    position: relative;
    width: 300px;
    height: 390px;
    text-align: center;
    transform-style: preserve-3d;
    /* Durasi 700ms cubic-bezier disinkronkan dengan JS updateCards */
    transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Sisi Depan & Belakang Kartu (Visual Sesuai Gambar) --- */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Menyembunyikan elemen balik */
    backface-visibility: hidden;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
   box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
}

/* Sisi Depan (Tampilan Logo) */
.flip-card-front {
    background: linear-gradient(180deg, #F8FDF9 0%, #FFFFFF 100%);
    color: #1a1a1a;
}

/* Sisi Belakang (Tampilan Testimoni) - Base Default */
.flip-card-back {
    background: linear-gradient(158.03deg, #FFFFFF 78.34%, #F8FDF9 95.25%);
    transform: rotateY(180deg); /* Mencegah text menjadi tercermin terbalik */
}

/* ==========================================================================
   VARIASI WARNA BACKGROUND DAN TESTIMONI BERDASARKAN INDUSTRI
   ========================================================================== */

/* --- 1. RETAIL (Tema Hijau Mint) --- */
.swiper-slide:has(.retail) .flip-card-back {
    background: linear-gradient(158.03deg, #FFFFFF 70%, #CFFBF2 100%);
}
.swiper-slide:has(.retail) .testimonial-text span {
    color: #16A34A; /* Hijau Emerald */
    background-image: linear-gradient(to top, rgba(182, 252, 206, 0.5) /* 50% */ 25%, transparent 25%);
}

/* --- 2. EDUTECH (Tema Oranye Koral) --- */
.swiper-slide:has(.edutech) .flip-card-back {
    background: linear-gradient(158.03deg, #FFFFFF 78.34%, #FFF6F3 95.25%);
}
.swiper-slide:has(.edutech) .testimonial-text span {
    color: #E76F51; /* Oranye Koral */
    background-image: linear-gradient(to top, rgba(231, 111, 81, 0.1) 25%, transparent 25%);
}

/* --- 3. HEALTHCARE (Tema Merah Lembut) --- */
.swiper-slide:has(.healthcare) .flip-card-back {
    background: linear-gradient(158.03deg, #FFFFFF 78.34%, #FFF3F4 95.25%);
}
.swiper-slide:has(.healthcare) .testimonial-text span {
    color: #E63946; /* Merah */
    background-image: linear-gradient(to top, rgba(230, 57, 70, 0.1) 25%, transparent 25%);
}

/* --- 4. MANUFACTURE (Tema Biru Soft) --- */
.swiper-slide:has(.manufacture) .flip-card-back {
    background: linear-gradient(158.03deg, #FFFFFF 78.34%, #F2F6FC 95.25%);
}
.swiper-slide:has(.manufacture) .testimonial-text span {
    color: #2563EB; /* Biru Royal */
    background-image: linear-gradient(to top, rgba(37, 99, 235, 0.1) 25%, transparent 25%);
}

/* ========================================================================== */

/* --- Efek Anggun Perspektif 3D Slide Kanan-Kiri Saat Bergeser --- */
/* Card Samping Kiri — HANYA testimonial */
.testimonial-swiper .swiper-slide-prev {
    transform: perspective(1200px) rotateY(20deg) scale(0.9) !important;
    opacity: 1;
}

/* Card Samping Kanan — HANYA testimonial */
.testimonial-swiper .swiper-slide-next {
    transform: perspective(1200px) rotateY(-20deg) scale(0.9) !important;
    opacity: 1;
}

/* Card Aktif — HANYA testimonial */
.testimonial-swiper .swiper-slide-active {
    transform: perspective(1200px) rotateY(0deg) scale(1) !important;
    opacity: 1;
    z-index: 20;
}

/* Card jauh — HANYA testimonial */
.testimonial-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 0.15;
    transform: scale(0.8);
}

/* Partner + produk + fitur slides: reset semua transform/opacity */
.partner-top .swiper-slide,
.partner-bottom .swiper-slide,
.produk-swiper .swiper-slide,
.fitur-swiper .swiper-slide {
    opacity: 1 !important;
    transform: none !important;
}

/* --- Komponen di dalam Kartu --- */
.industry-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Tema Warna Tag Industri Sisi Depan */
.retail { color: #2ec4b6; }
.edutech { color: #e76f51; }
.healthcare { color: #e63946; }
.manufacture { color: #2563EB; }

.brand-logo {
    margin: auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-img {     
    width: auto;           
    height: auto;          
    object-fit: contain;   
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Fraunces', serif;
    margin: 35px 0;
    color: #000;
    text-align: left;
    line-height: 1.4;
}

.testimonial-text p{
    color: #000;
    margin: 0;
} 

.testimonial-text span {
    margin: 0;
    font-weight: 500;
}

.client-name {
    font-size: 10px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #858585;
    text-align: left;
}

/* --- Navigasi Tombol Panah --- */
.testimonial-nav-wrapper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 45px;
    height: 45px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #718096;
    cursor: pointer;
    background-color: #ffffff;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: #f8fafc;
    border-color: #cbd5e0;
    color: #1a202c;
}

.content-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-company img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.company-text {
    display: flex;
    align-items: center;     /* tengah vertikal */
    gap: 10px;
    text-align: center;
    margin-bottom: 0;
}

.company-text p,
.company-text span {
    margin: 0; /* hilangkan margin bawaan */
}

.company-text p {
    font-size: 10px;
    color: #858585;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.company-text span {
    font-size: 10px;
    color: #000;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}


.company-text-front {
    display: flex;
    align-items: center;     /* tengah vertikal */
    gap: 10px;
    justify-content: center; 
    text-align: center;
    margin-bottom: 0;
}

.company-text-front p,
.company-text-front span {
    margin: 0; /* hilangkan margin bawaan */
}

.company-text-front p {
    font-size: 10px;
    color: #858585;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.company-text-front span {
    font-size: 10px;
    color: #000;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* ==========================================
   FAQ SECTION STYLING
   ========================================== */

.faq-section {
  background: #ffffff;
  padding: 80px 0;
}

.accordion-custom {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.accordion-custom .accordion-item {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.accordion-custom .accordion-item:hover {
  box-shadow: 0 4px 16px rgba(0, 137, 136, 0.1);
  border-color: #4DB8AA;
}

.accordion-custom .accordion-button {
  background: #ffffff;
  color: #111827;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 24px;
  border: none;
  font-family: 'Inter', sans-serif;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #f0f9f8 0%, #f5fffe 100%);
  color: #009688;
  box-shadow: none;
}

.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border-color: #4DB8AA;
}

.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009688'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-body {
  padding: 24px;
  color: #858585;
  font-size: 15px;
  line-height: 1.6;
  border-top: 1px solid #E5E7EB;
}

/* ==========================================
   FOOTER SECTION STYLING
   ========================================== */

.footer {
  background: linear-gradient(180deg, #F8F9FA 0%, #F0F9F8 100%);
  border-top: 1px solid #E5E7EB;
  margin-top: 80px;
}

.footer-title {
  font-weight: 600;
  color: #111827;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #858585;
  font-size: 14px;
  line-height: 1.6;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #858585;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-menu a:hover {
  color: #009688;
  font-weight: 600;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009688;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(90deg, #009688 0%, #26A69A 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 150, 136, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #E5E7EB;
  padding-top: 30px;
  margin-top: 40px;
}

.footer-copyright {
  color: #858585;
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-legal li {
  margin: 0;
}

.footer-legal a {
  color: #858585;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #009688;
}

@media (max-width: 768px) {

  .custom-feature-card{

    display: grid;
         padding: 48px;
  }

     .accordion-custom .accordion-button {
        font-size: 14px;
        line-height: 1.5;
        padding: 16px 18px;
    }

    .accordion-custom .accordion-body {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 18px 18px;
    }

    .accordion-custom .accordion-button::after {
        width: 14px;
        height: 14px;
        background-size: 14px;
    }

  .faq-section {
    padding: 50px 0;
  }

  .footer-legal {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .footer-bottom .row {
    flex-direction: column;
    gap: 20px;
  }

  .col-md-6.text-md-end {
    text-align: left !important;
  }
}

/* ==========================================================================
   RESPONSIVE — GLOBAL BREAKPOINTS
   ========================================================================== */

/* ---- TABLET & BELOW (max 991px) ---- */
@media (max-width: 991px) {

  

    .accordion-custom .accordion-button {
        font-size: 15px;
        padding: 18px 20px;
    }

    .accordion-custom .accordion-body {
        font-size: 14px;
        padding: 0 20px 20px;
    }

 
  /* Navbar */
  .navbar-custom {
    height: auto;
    padding: 12px 16px;
  }

  .navbar-nav {
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid #E5E7EB;
    margin-top: 10px;
  }

  .navbar-collapse .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 10px 0 5px;
    border-top: 1px solid #E5E7EB;
    margin-top: 5px;
    width: 100%;
  }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  .hero-content {

    text-align: left;
    width: 100%;
  }

  .hero-chat {
    order: 1;
    padding: 20px;
    width: 100%;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-badge {
    justify-content: flex-start;
  }

  .hero-desc {
    max-width: 100%;
    text-align: left;
  }

  .hero-buttons {
    justify-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-left: 0;
  }

  /* Partners */
  .partners .container {
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 16px;
  }



  .partner-title {
    flex: none;
    width: 100%;
    gap: 15px
  }

  .layanan{
    margin: 15px 0;
  }

  /* Why AioChat comparison cards */
  .card-comparison {
    padding: 28px 20px;
  }

  .card-comparison-header p {
    width: 100%;
  }

  /* Agent skill cards */
  .agen-aiochat {
    padding: 40px 0;
  }

  /* Features section */
  #features .custom-feature-card {
    flex-direction: column;
    padding: 28px 20px;
  }

  #features .left-info {
    width: 100%;
  }

  #features .right-mockup {
    width: 100%;
    min-height: 260px;
  }

  /* Use Cases */
  .lp-use-cases-section {
    padding: 40px 20px;
  }

  .lp-uc-headline {
    width: 100%;
    font-size: 22px;
  }

  .section-title {
    width: 100% !important;
    font-size: 28px;
  }

  /* Testimonials */
  .testimonial-section {
    padding: 80px 20px;
  }

  /* FAQ */
  .faq-section {
    padding: 40px 0;
  }


}

/* ---- MOBILE (max 767px) ---- */
@media (max-width: 767px) {

  /* Hero */
  .hero {
    padding: 20px 0 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-chat {
    padding: 10px 0;
  }

  .chat-card {
  }

  .chat-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .tab {
    font-size: 11px;
  }

  /* Partner section */
  .marquee-blur-container::before,
  .marquee-blur-container::after {
    width: 40px;
  }

  /* Why AioChat */
  .card-comparison {
    padding: 24px 16px;
  }

  .card-comparison-header p {
    width: 100%;
    margin-bottom: 24px;
  }

  .chat-mockup-box {
    min-height: 320px;
    max-height: 340px;
  }

  /* Agent cards */
  .feature-card {
    border-radius: 16px !important;
  }

  /* Features section fixed widths */
  .card-feature-title {
    font-size: 22px;
  }

  .right-mockup {
    min-height: 220px;
  }

  .audio-player-card {
    width: 100%;
    max-width: 280px;
  }

  /* Use Cases tabs — horizontal scroll on mobile */
  .lp-uc-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .lp-uc-tab-btn {
    flex: none;
    min-width: 130px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .lp-uc-left {
    min-height: auto;
  }

  .lp-uc-headline {
    width: 100%;
    font-size: 20px;
  }

  .lp-uc-right {
    border-radius: 12px;
    padding: 16px;
  }

  .container-lp-uc-content {
    padding: 16px;
  }

  /* Testimonials */
  .testimonial-section {
    padding: 60px 12px;
  }

  .testimonial-swiper {
    padding: 20px 10px 80px !important;
  }



  .flip-card-inner {
    width: 100%;
    max-width: 300px;
  }

  /* Footer */
  .footer {
    margin-top: 40px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .footer-legal {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {

  .partner-lists{
    width: 100%;
  }

  .hero-container{
    padding: 20px 40px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 14px;
    padding: 10px 16px;
  }

  .section-title {
    font-size: 22px !important;
  }

  .card-comparison-header h3 {
    font-size: 18px;
  }

  .lp-uc-tab-btn {
    min-width: 110px;
    font-size: 12px;
    padding: 10px 10px;
  }

  .lp-uc-tab-btn img {
    width: 14px;
    height: 14px;
  }

  .audio-player-card {
    width: 90%;
    max-width: 240px;
  }

  .flip-card-inner {
    width: 85vw;
    max-width: 300px;
  }

  .testimonial-section .section-title {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1402px) and (min-width: 994px) {
    .chat-tabs {
        display: grid;
    }
}
/* ==========================================================================
   AIOCHAT BRAND IDENTITY — Palet Biru #0451AA
   ========================================================================== */

/* ========================
   HERO: Dark Navy — full kedua kolom
   ======================== */
.hero {
  background: #02275A;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

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

/* KUNCI: hero-chat transparan — bg hero biru tembus */
.hero-chat {
  background: transparent !important;
  background-image: none !important;
  padding: 50px 40px !important;
}

.chat-card {
  box-shadow: 0 24px 64px rgba(0,0,0,0.40) !important;
}

.marquee-blur-container::before {
  background: linear-gradient(to right, #02275A 0%, rgba(2,39,90,0) 100%) !important;
}
.marquee-blur-container::after {
  background: linear-gradient(to left, #02275A 0%, rgba(2,39,90,0) 100%) !important;
}

.partner-top .swiper-slide img,
.partner-bottom .swiper-slide img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.85;
  width: 160px !important;
  height: 64px !important;
  padding: 8px !important;
  object-fit: contain !important;
}

.hero-title {
  color: #FFFFFF !important;
}

.hero-title span {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 60%, #BFDBFE 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-desc {
  color: rgba(255,255,255,0.58) !important;
}

.hero-badge {
  background: rgba(96,165,250,0.10) !important;
  border: 1px solid rgba(96,165,250,0.28) !important;
  border-radius: 100px;
  padding: 5px 14px;
  display: inline-flex;
  width: fit-content;
  color: #93C5FD !important;
  font-size: 13px;
  margin-bottom: 24px;
}

.hero-badge img,
.hero-badge .badge-text img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(30%) saturate(500%) hue-rotate(190deg) brightness(110%) !important;
}

.hero-badge span,
.hero-badge .badge-text {
  -webkit-text-fill-color: #93C5FD !important;
  color: #93C5FD !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.hero-buttons .btn-primary {
  background: #0451AA !important;
  background-image: none !important;
  transition: background 0.3s ease !important;
}
.hero-buttons .btn-primary:hover {
  background: #0563C8 !important;
}

.hero-buttons .btn-secondary {
  border-color: rgba(255,255,255,0.25) !important;
  color: #FFFFFF !important;
  background: rgba(255,255,255,0.06) !important;
}
.hero-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.12) !important;
}

/* ========================
   NAVBAR — accent biru tipis
   ======================== */
.navbar-custom {
  border-bottom: 1px solid #EBF2FF !important;
  box-shadow: 0 1px 0 0 #EBF2FF !important;
}

.btn-login {
  background: #0451AA !important;
  background-image: none !important;
}
.btn-login:hover {
  background: #0563C8 !important;
}

/* ========================
   PARTNERS (AI Adaptif...) — Putih bersih
   ======================== */
.partners {
  background: #FFFFFF !important;
}

.layanan-icon {
  background: #EFF6FF !important;
  border-color: #BFDBFE !important;
}

.layanan-text span {
  color: #0451AA !important;
}

/* ========================
   PRODUK SECTION
   ======================== */
.produk-section {
  background: #02275A !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 72px 0 !important;
  overflow: hidden;
}

.produk-badge {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.produk-badge .badge-text {
  color: #93C5FD !important;
}

.produk-title {
  color: #FFFFFF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.produk-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 520px;
  margin: 12px auto 0;
}

.produk-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.produk-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #3B82F6;
  transform: translateY(-4px);
  text-decoration: none;
}

.produk-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(4, 81, 170, 0.5));
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.produk-card-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.produk-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.produk-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.produk-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #60A5FA;
}

.produk-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.produk-card:hover .produk-arrow {
  transform: translateX(4px);
}

.produk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.produk-cta-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
  text-decoration: none;
}

.produk-cta-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.produk-swiper .swiper-slide {
  height: auto !important;
}

/* ========================
   SECTION BADGE — pill biru
   ======================== */
.why-badge {
  background: #EFF6FF !important;
  border: 1px solid #93C5FD !important;
  border-radius: 100px;
  padding: 5px 16px;
  width: fit-content;
}

.why-badge span,
.badge-text {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #0451AA !important;
  background-clip: unset !important;
  color: #0451AA !important;
}

.why-badge img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(90%) saturate(600%) hue-rotate(200deg) brightness(90%) !important;
  -webkit-text-fill-color: unset !important;
}

/* ========================
   SECTION TITLE — gradient biru
   ======================== */
.section-title {
  background: linear-gradient(135deg, #0451AA 0%, #0563C8 50%, #3B82F6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ========================
   WHY AIOCHAT
   ======================== */
.why-aiochat {
  background: #FFFFFF !important;
}

.card-biasa {
  background: linear-gradient(180deg, #FAFAFA 0%, #EBF4FF 100%) !important;
  border: 1px solid #DBEAFE !important;
}

.card-aio {
  background: linear-gradient(180deg, #FAFAFA 0%, #DBEAFE 100%) !important;
  border: 1px solid #93C5FD !important;
}

/* ========================
   AGEN SECTION — biru muda, no bg-image
   ======================== */
.agen-aiochat {
  background: #EFF6FF !important;
  background-image: none !important;
}

/* ========================
   FITUR SECTION
   ======================== */
.custom-feature-card {
  background: #FAFAFA !important;
  border: 1px solid #E8E8E8 !important;
  border-radius: 20px;
}

.right-mockup {
  border: 1px solid #BFDBFE !important;
  border-radius: 16px;
}

.mockup-voice {
  border: 1px solid #BAE6FD !important;
  border-radius: 16px;
}

.mockup-crm {
  border: 1px solid #C4B5FD !important;
  border-radius: 16px;
}

/* ========================
   USE CASES
   ======================== */
.lp-use-cases-section {
  background-color: #F0F6FF !important;
}

.container-lp-uc-content {
  background-color: #FFFFFF !important;
  border: 1px solid #DBEAFE !important;
  border-radius: 16px;
}

.lp-uc-right {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%) !important;
}

.lp-uc-tabs {
  background-color: #FFFFFF !important;
  border-color: #DBEAFE !important;
}

.lp-uc-tab-btn.active {
  background-color: #EFF6FF !important;
  color: #0451AA !important;
}

.chat-header-mockup {
  background: linear-gradient(90deg, #0451AA 0%, #0563C8 100%);
  border-radius: 12px 12px 0 0;
  padding: 10px 16px;
  margin: -24px -24px 16px -24px;
}

.chat-status-dot {
  width: 8px; height: 8px;
  background: #93C5FD;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(147,197,253,0.35);
}

/* ========================
   ACCORDION (FAQ) — biru
   ======================== */
.faq-section {
  background: #FFFFFF !important;
}

.accordion-custom .accordion-item {
  background: #FFFFFF !important;
  border-color: #E5E7EB !important;
}

.accordion-custom .accordion-item:hover {
  border-color: #60A5FA !important;
  box-shadow: 0 4px 16px rgba(96,165,250,0.12) !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #EFF6FF 0%, #F0F7FF 100%) !important;
  color: #0451AA !important;
}

.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230451AA'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* ========================
   TESTIMONIAL — dark navy
   ======================== */
.testimonial-section {
  background: #010D2A !important;
  background-image: none !important;
  padding: 100px 60px !important;
}

.testimonial-section .section-title {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.testimonial-section .why-badge {
  background: rgba(96,165,250,0.10) !important;
  border-color: rgba(96,165,250,0.30) !important;
}

.testimonial-section .why-badge span {
  -webkit-text-fill-color: #93C5FD !important;
  color: #93C5FD !important;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  background-color: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background-color: #60A5FA !important;
  border-color: #60A5FA !important;
  color: #010D2A !important;
}

/* ========================
   FOOTER — dark navy
   ======================== */
.footer {
  background: #010D2A !important;
  background-image: none !important;
  border-top: none !important;
  margin-top: 0 !important;
}

.footer-title {
  color: #93C5FD !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.footer-desc {
  color: rgba(255,255,255,0.48) !important;
  font-size: 13px !important;
}

.footer-menu a {
  color: rgba(255,255,255,0.48) !important;
}

.footer-menu a:hover {
  color: #60A5FA !important;
}

.social-icon {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.5) !important;
}

.social-icon:hover {
  background: #60A5FA !important;
  color: #010D2A !important;
  border-color: #60A5FA !important;
  box-shadow: 0 4px 12px rgba(96,165,250,0.3) !important;
}

.footer-bottom {
  border-top-color: rgba(255,255,255,0.08) !important;
}

.footer-copyright {
  color: rgba(255,255,255,0.28) !important;
}

.footer-legal a {
  color: rgba(255,255,255,0.28) !important;
}

.footer-legal a:hover {
  color: #60A5FA !important;
}

/* ========================
   MISC — accent biru lain
   ======================== */
.chat-role-ai .aio,
.chat-role-ai .chat,
.agent-name {
  color: #0451AA !important;
}

.btn-primary {
  background: linear-gradient(to top, #0451AA 0%, #0357B5 20%, #0563C8 60%, #3B82F6 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
}

.btn-primary:hover {
  background-position: top !important;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 991px) {
  .hero-chat {
    padding: 30px 20px !important;
  }
  .testimonial-section {
    padding: 70px 20px !important;
  }
  .lp-uc-right {
    border-radius: 0 0 12px 12px;
  }
  .hero-badge {
    font-size: 12px;
  }
}
