@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    font-family: 'Space Grotesk', sans-serif;
}
.ds-grey{
    background-color: #F3F3F3;
}
.ds-dark{
    background-color: #191A23;
    color: white;
}
.ds-green{
    background-color: #B9FF66;
    color: black;
}
h1{
    font-size: 60px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
}
h2{
    font-size: 40px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
}
h3{
    font-size: 30px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
}
h4{
    font-size: 20px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
}
p{
    font-size: 18px;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
}
@media (max-width: 991px) {
    h1 {
        font-size: 43px;
        font-weight: 500;
        margin: 0px;
        padding: 0px; /* Ukuran lebih kecil untuk mobile */
    }
    h2 {
        font-size: 36px;
        font-weight: 500;
        margin: 0px;
        padding: 0px;
    }
    h3 {
        font-size: 26px;
        font-weight: 500;
        margin: 0px;
        padding: 0px;
    }
    h4 {
        font-size: 18px;
        font-weight: 500;
        margin: 0px;
        padding: 0px;
    }
    p {
        font-size: 18px;
        font-weight: 400;
        margin: 0px;
        padding: 0px;
    }
}

.heading{
    background-color: #B9FF66;
    color: black;
}
.heading-subheading{
    margin-top: 140px;
    margin-bottom: 80px;
}
.heading-subheading p{
    max-width: 580px;
}
.card {
    width: 100%; /* Default 100% untuk mobile */
    border-radius: 45px;
    border: 1px solid #000; /* Khas Neo-Brutalism */
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px); /* Sedikit interaksi saat di-hover */
}
.card-body{
    padding: 0px;
}
.card-body img{
    max-width: 210px;
}
.shadow-card{
    box-shadow: 0px 5px;
}

/* navbar */
.brand img{
    width: 46px;
    height: 46px;
}
.btn{
    padding: 20px 35px 20px 35px;
    height: fit-content;
    border-radius: 14px;
}


@media (min-width: 992px) {
    .btn {
        padding: 20px 35px; /* Kembali ke ukuran besar di desktop */
    }
    .illustrator img {
    /* Pastikan gambar tidak melebihi kontainer dan tetap proporsional */
    max-width: 600px;
    height: auto;
    }
    .card {
        width: calc(50% - 3rem); /* Membuat 2 kolom di desktop */
        min-width: 500px;
    }
    .card-body img {
        max-width: 210px;
    }
}

/* Menghilangkan border focus pada hamburger agar lebih clean */
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px); /* prefix untuk Safari */
    transition: box-shadow 0.3s ease;
}

/* hero section */
.illustrator img {
    /* Pastikan gambar tidak melebihi kontainer dan tetap proporsional */
    height: auto;
}

/* SERVICE SECTION */


/* CASE STUDIES BLOCK */
.outline-card{
    border: 0px;
}
.action img{
    width:17px;
}
.slice{
    align-self: center;
    width: 5px;           /* Lebar garis pendek saja */
    height: 200px;           /* Ketebalan garis */
    background: white;
    align-self: center; /* Warna gradasi */   /* Membuat ujung garis melengkung */
}
.case-studies-block .card{
    padding: 70px 60px 80px 60px;
}
.case-studies{
    width: 100%;
    padding: 70px 60px;
    border-radius: 45px;
}

/* PROCESS BLOCK */
/* Style Dasar (Mobile) */
.accordion {
    background-color: #F3F3F3;
    transition: all 0.3s ease;
    border: #000 1px solid;
    border-radius: 30px; /* Lebih kecil di mobile agar manis */
    padding: 25px 20px; /* Padding nyaman untuk layar sempit */
    box-shadow: 0px 5px 0px #000;
}

.accordion-header {
    cursor: pointer;
    border: 0px;
    width: 100%;
    background: transparent;
    padding: 0;
}

.accordion-header h1 {
    font-size: 2rem; /* Ukuran angka di mobile */
}

.accordion-header h3 {
    font-size: 1.1rem; /* Ukuran judul di mobile */
}
.accordion-item{
    background-color: transparent;
    border: none;
}
.icon-rounded {
    height: 40px; /* Icon lebih kecil di mobile */
    width: 40px;
    min-width: 40px; /* Mencegah icon gepeng */
    border: #000 1px solid;
    border-radius: 100%;
    background-color: #F3F3F3;
}

/* Responsif untuk Layar Besar (Desktop) */
@media (min-width: 992px) {
    .accordion {
        border-radius: 45px;
        padding: 41px 60px;
    }

    .accordion-header h1 {
        font-size: 3.5rem; /* Kembali ke ukuran besar */
    }

    .accordion-header h3 {
        font-size: 1.75rem;
    }

    .icon-rounded {
        height: 58px;
        width: 58px;
    }
}

/* State Aktif */
.accordion.active {
    background-color: #B9FF66;
}

.accordion-item {
    display: none; /* Dikontrol oleh jQuery slideToggle */
}

/* CONTACT BLOCK */
.contact-block .card {
    border-radius: 40px;
    min-height: 600px;
    width: 100%;
}

/* Sisi Form: Pastikan punya lebar yang cukup di Desktop */
.contact-form-side {
    flex: 1; /* Mengambil sisa ruang yang ada */
    width: 100%;
    z-index: 2; /* Agar di atas gambar kalau sedikit tabrakan */
}

/* Container input di dalam form agar tidak terlalu lebar di monitor besar */
.form-inputs {
    max-width: 550px; 
    width: 100%;
}

/* Sisi Ilustrasi */
.contact-illustrator-side {
    flex: 1; /* Memberikan ruang seimbang dengan form */
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.contact-illustrator-side img {
    /* Gunakan max-width agar gambar tetap proporsional (tidak stretch) */
    max-width: 120%; 
    height: auto;
    /* Jika ingin posisi gambar agak 'keluar' card seperti sebelumnya */
    position: absolute;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
}

/* Input Styling */
.form-control {
    padding: 18px 30px;
    border-radius: 14px;
    border: 1px solid #000;
}

textarea.form-control {
    height: 180px;
}
.custom-radio-group {
  display: flex;
  gap: 20px;
   /* Ganti sesuai font proyekmu */
}

/* Label sebagai pembungkus klik */
.radio-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

/* Sembunyikan radio button asli browser */
.radio-container input {
  display: none;
}

/* Buat lingkaran luar (Border Hitam) */
.checkmark {
  height: 22px;
  width: 22px;
  border: 1.5px solid #000;
  border-radius: 50%;
  margin-right: 12px;
  display: inline-block;
  position: relative;
  background-color: #fff;
  transition: all 0.2s ease;
}
/* Buat titik hijau di tengah (Indikator) */
.checkmark::after {
  content: "";
  position: absolute;
  display: none; /* Sembunyikan saat belum dipilih */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #B9FF66; /* Warna hijau terang sesuai gambar */
}

/* Tampilkan titik hijau saat input di-check */
.radio-container input:checked ~ .checkmark::after {
  display: block;
}

/* Efek hover opsional */
.radio-container:hover .checkmark {
  border-color: #555;
}
/* Responsive Tablet/Mobile */
@media (max-width: 991px) {
    .contact-form-side {
        padding: 2rem !important;
    }
    
    .form-inputs {
        max-width: 100%; /* Full width di mobile */
    }
}

/* FOOTER BLOCK */
footer {
    margin-top: 140px;
}

.footer-block {
    border-radius: 45px 45px 0px 0px;
}

.logo img {
    height: 40px;
}

/* Subscribe Section Fix */
.subscribe {
    padding: 50px 40px;
    background-color: #292A32;
    border-radius: 14px;
    width: 100%; /* Agar full width di mobile */
    max-width: 650px; /* Batas lebar di desktop */
}

.subscribe input {
    height: 60px;
    width: 100%; /* Biarkan flex yang mengatur lebar */
    min-width: 280px;
    padding: 18px 30px;
    border-radius: 14px;
    border: 1px solid #fff;
    background: transparent;
    color: white;
}

/* Tombol Subscribe custom */
.card-green {
    background-color: #B9FF66; /* Hijau khas Devsphere */
    color: #000;
    font-weight: 600;
    border-radius: 14px;
    height: 60px;
    white-space: nowrap;
}

/* Responsivitas untuk teks p */
.contact-footer p {
    color: #fff;
    font-size: 16px;
}

@media (max-width: 991px) {
    footer {
        margin-top: 80px; /* Jarak lebih kecil di HP */
    }
    
    .footer-block {
        border-radius: 0px; /* Opsional: Full screen di HP biasanya lebih rapi */
        padding: 40px 20px !important;
    }

    .subscribe {
        padding: 30px 20px;
    }
}

/* =========================
    HALAMAN WEB DEVELOPMENT
============================*/

/* =============================================
       HERO SECTION
       min-height: 88vh → hampir penuh satu layar.
       display flex + align-items center → konten
       selalu secara vertikal di tengah.
    ============================================= */
    .hero {
      min-height: 88vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;   /* agar dekorasi tidak keluar viewport */
      padding: 5rem 0 4rem;
    }

    /* Dekorasi titik-titik (dot grid) sebagai tekstur latar.
       radial-gradient menghasilkan pola grid titik. */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,.12) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;  /* tidak menghalangi klik */
      opacity: .4;
    }

    /* Lingkaran blur hijau di belakang teks — depth/atmosphere */
    .hero-glow {
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(138,255,69,.35) 0%, transparent 70%);
      top: -80px; left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
      filter: blur(40px);
    }

    /* Badge kecil di atas judul — micro-copy untuk membangun trust */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: var(--clr-white);
      border: 1px solid rgba(0,0,0,.1);
      border-radius: var(--radius-pill);
      padding: .3rem .9rem;
      margin-bottom: 1.4rem;
      box-shadow: 0 2px 8px rgba(0,0,0,.06);
    }
    .hero-badge .badge-dot {
      width: 7px; height: 7px;
      background: var(--clr-accent);
      border-radius: 50%;
      animation: pulse 2s infinite; /* animasi denyut agar terasa "live" */
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .5; transform: scale(1.4); }
    }

    /* Judul utama hero — clamp() agar responsif otomatis:
       min 2.4rem, target 5vw, max 4.2rem */
    .hero-title {
      margin-bottom: 1.25rem;
    }

    /* Kata kunci yang digarisbawahi — highlight visual */
    .hero-title .underline-accent {
      position: relative;
      display: inline-block;
    }
    .hero-title .underline-accent::after {
      content: '';
      position: absolute;
      left: 0; bottom: 2px;
      width: 100%; height: 6px;
      background: #B9FF66;
      border-radius: 3px;
      z-index: -1;  /* di belakang teks */
    }

    .hero-desc {
      max-width: 520px;
      margin: 0 auto 2rem;
    }
    /* Animasi masuk dari bawah — dipakai di beberapa elemen hero.
       Kelas .animated-in ditambahkan oleh jQuery setelah load. */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.animated-in {
      opacity: 1;
      transform: translateY(0);
    }

    /* Delay stagger: setiap elemen muncul sedikit lebih lambat */
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .25s; }
    .delay-3 { transition-delay: .4s; }



    /* =============================================
       SECTION WRAPPER
       padding vertikal besar agar section "bernapas"
       dan tidak berdempetan dengan section lain.
    ============================================= */
    .section-services {
      padding: 6rem 0;
      overflow: hidden;
    }

    /* =============================================
       SECTION LABEL — tag kecil di atas judul section.
       Pola umum untuk memberi konteks sebelum heading besar.
    ============================================= */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #555;
      margin-bottom: 1rem;
    }
    .section-label::before {
      content: '';
      width: 24px; height: 2px;
      background: #B9FF66;
      border-radius: 2px;
    }

    /* Heading section */
    .section-title {
      line-height: 1.1;
      letter-spacing: -.03em;
      margin-bottom: .75rem;
    }

    .section-desc {
      color: #555;
      font-size: .975rem;
      max-width: 380px;
      line-height: 1.65;
    }

    /* =============================================
       TAB BUTTONS (Service Tabs)
       Kita buat custom tab tanpa style Bootstrap default.
       .active ditambahkan jQuery saat diklik.
    ============================================= */
    .service-tabs {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .tab-btn {
      background: transparent;
      border: none;
      text-align: left;
      font-size: .95rem;
      font-weight: 500;
      color: #777;
      padding: .7rem 1.1rem;
      border-radius: 10px;
      cursor: pointer;
      transition: background .2s, color .2s, transform .2s;
      position: relative;
    }
    /* Garis kiri — indikator tab aktif */
    .tab-btn::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 3px;
      background: #B9FF66;
      border-radius: 3px;
      opacity: 0;
      transition: opacity .2s;
    }
    .tab-btn.active {
      background: #191A23;
      color: #ffffff;
      transform: translateX(4px); /* pergeseran halus ke kanan saat aktif */
    }
    .tab-btn.active::before { opacity: 1; }
    .tab-btn:hover:not(.active) {
      background: rgba(0,0,0,.05);
      color: #191A23;
    }

    /* =============================================
       TAB CONTENT — panel yang tampil/sembunyi.
       display:none → ditampilkan jQuery saat tab aktif.
    ============================================= */
    .tab-panel {
      display: none;  /* semua tersembunyi secara default */
    }
    .tab-panel.active {
      display: block;
      animation: panelIn .4s ease;  /* animasi masuk saat panel aktif */
    }
    @keyframes panelIn {
      from { opacity: 0; transform: translateX(12px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* Judul di panel konten */
    .panel-title {
      margin-bottom: .6rem;
    }
    .panel-desc {
      color: #555;
      font-size: .95rem;
      line-height: 1.65;
      margin-bottom: 1.2rem;
    }

    /* Link "Learn more" dengan ikon panah */
    .panel-link {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-weight: 700;
      font-size: .9rem;
      color: var(--clr-dark);
      text-decoration: none;
      border-bottom: 2px solid var(--clr-accent);
      padding-bottom: 1px;
      transition: gap .2s;
    }
    .panel-link:hover { gap: .7rem; }

    /* =============================================
       IMAGE FRAME — placeholder untuk gambar/screenshot.
       Aspect-ratio menjaga proporsi saat konten kosong.
    ============================================= */
    .img-frame {
      width: 100%;
      aspect-ratio: 16 / 10;  /* menjaga proporsi landscape */
      border-radius: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #aaa;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .05em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }

    /* =============================================
       SCROLL REVEAL — elemen fade-up saat masuk viewport.
       IntersectionObserver (JS) menambahkan .visible.
    ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .25s; }

    /* =============================================
       SECTION 3: FEATURES (4 kartu)
       Setiap kartu menampilkan satu keunggulan layanan.
    ============================================= */
    .section-features {
      padding: 5rem 0;
    }

    /* FEATURE CARD
       Hover: kartu "terangkat" dengan translateY dan shadow lebih dalam.
       cursor:default agar tidak membingungkan user (ini bukan link).
    */
    .feature-card {
      background: #fff;
      border: 1.5px solid rgba(0,0,0,.07);
      border-radius: 45px;
      padding: 2rem 1.75rem;
      height: 100%;   /* agar semua kartu setinggi satu sama lain (Bootstrap stretch) */
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

    /* Ikon / nomor di atas kartu */
    .feature-icon {
      width: 48px; height: 48px;
      background: #191A23;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .feature-title {
      margin-bottom: .6rem;
    }
    .feature-desc {
      color: #555;
      font-size: .92rem;
      line-height: 1.6;
      margin-bottom: 1.2rem;
    }

    /* Bullet list di dalam kartu */
    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }
    .feature-list li {
      font-size: .9rem;
      display: flex;
      align-items: center;
      gap: .5rem;
      color: #444;
    }
    /* Checkmark kecil dari CSS — tidak perlu ikon library */
    .feature-list li::before {
      content: '';
      width: 16px; height: 16px;
      min-width: 16px;
      background: #B9FF66;
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
      background-size: 70%;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* IMAGE FRAME dalam kartu fitur */
    .card-img-frame {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1.2rem;
    }

    /* Code snippet visual — hanya dekorasi, bukan kode nyata */
    .code-snippet {
      background: #1a1a18;
      border-radius: 10px;
      padding: 1rem 1.2rem;
      margin-top: 1.2rem;
      font-family: 'Courier New', monospace;
      font-size: .82rem;
      line-height: 1.8;
    }
    .code-line { display: flex; align-items: center; gap: .6rem; }
    .code-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .cd-blue   { background: #61afef; }
    .cd-green  { background: #B9FF66; }
    .cd-orange { background: #e5c07b; }
    .code-text { color: #abb2bf; }



    /* ==========================
            ABOUT US PAGE
    =============================*/

/* ─── SCROLL REVEAL ──────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s cubic-bezier(.22,1,.36,1),
                  transform .7s cubic-bezier(.22,1,.36,1);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
    .reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
    .reveal-left.in, .reveal-right.in { opacity: 1; transform: translateX(0); }
    .reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
    .reveal-scale.in { opacity: 1; transform: scale(1); }
    .d1 { transition-delay: .08s; } .d2 { transition-delay: .17s; }
    .d3 { transition-delay: .26s; } .d4 { transition-delay: .35s; }

    /* ═══════════════════════════════════════════════════
       S1 · HERO
    ═══════════════════════════════════════════════════ */
    .hero-about {
      min-height: 88vh; display: flex; align-items: center;
      position: relative; overflow: hidden; padding: 5rem 0;
    }
    /* Dot-grid texture */
    .hero-about::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,.13) 1px, transparent 1px);
      background-size: 28px 28px; opacity: .35; pointer-events: none;
    }
    /* Large accent circle */
    .hero-glow {
      position: absolute; width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(138,255,69,.28) 0%, transparent 68%);
      top: -120px; right: -120px; pointer-events: none; filter: blur(50px);
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .75rem; font-weight: 700; letter-spacing: .07em;
      text-transform: uppercase; background: #fff;
      border: 1px solid rgba(0,0,0,.09); border-radius: 999px;
      padding: .28rem .9rem; margin-bottom: 1.5rem;
      box-shadow: 0 2px 10px rgba(0,0,0,.05);
    }
    .hero-badge .ping {
      width: 7px; height: 7px; border-radius: 50%; background: #B9FF66;
      animation: ping 2s infinite;
    }
    @keyframes ping {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.45; transform:scale(1.5); }
    }
    .hero-h1 {
      line-height: 1.04; letter-spacing: -.035em;
      margin-bottom: 1.4rem;
    }
    .hero-h1 em {
      font-style: normal; position: relative; display: inline-block;
    }
    /* Underline accent on keyword */
    .hero-h1 em::after {
      content: ''; position: absolute; left: 0; bottom: 4px;
      width: 100%; height: 8px; background: #B9FF66;
      border-radius: 4px; z-index: -1;
    }
    .hero-desc-au {
      color: #6b6b66; max-width: 440px; line-height: 1.7;
      margin-bottom: 2rem;
    }
    .btn-primary-pill {
      display: inline-flex; align-items: center; gap: .5rem;
      background: #191A23; color: #B9FF66;
      padding: .8rem 1.9rem; border-radius: 999px;
      border: 2px solid #191A23;
      box-shadow: 4px 4px 0 #B9FF66;
      transition: background .25s, color .25s, transform .2s, box-shadow .2s;
    }
    .btn-primary-pill:hover {
      background: #B9FF66; color: #191A23;
      transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #191A23;
    }
    .btn-ghost-pill {
      display: inline-flex; align-items: center; gap: .5rem;
      color: #191A23;
      padding: .8rem 1.6rem; border-radius: 999px;
      border: 1.5px solid #191A23;
      transition: border-color .2s, background .2s;
    }
    .btn-ghost-pill:hover { border-color: #191A23; background: rgba(0,0,0,.04); color: #191A23; }

    /* Hero image mosaic */
    .hero-mosaic { position: relative; height: 420px; }
    .mosaic-card {
      position: absolute; border-radius: 16px; overflow: hidden;
      background: #ddd; border: 3px solid #fff;
      box-shadow: 0 12px 40px rgba(0,0,0,.12);
    }
    .mosaic-card.main { width: 260px; height: 320px; top: 0; left: 40px; }
    .mosaic-card.sub1 { width: 170px; height: 200px; top: 0; right: 10px; }
    .mosaic-card.sub2 { width: 200px; height: 150px; bottom: 0; right: 30px; }

    /* floating tag on mosaic */
    .mosaic-tag {
      position: absolute; background: #191A23; color: #B9FF66;
      font-family: var(--head); font-weight: 700; font-size: .8rem;
      padding: .5rem 1rem; border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0,0,0,.2);
      display: flex; align-items: center; gap: .4rem;
    }
    .mosaic-tag.t1 { bottom: 50px; left: 10px; }
    .mosaic-tag.t2 { top: 200px; right: 0; }

    /* Image placeholders */
    .img-ph {
      width: 100%; height: 100%; display: flex; align-items: center;
      justify-content: center;
    }

    /* ═══════════════════════════════════════════════════
       S2 · STATS
    ═══════════════════════════════════════════════════ */
    .stats-section {
      background: #191A23; padding: 4.5rem 0; overflow: hidden;
    }
    .stat-item { text-align: center; padding: 1rem; position: relative; }
    .stat-item + .stat-item::before {
      content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
      width: 1px; background: rgba(255,255,255,.1);
    }
    .stat-num {
      font-weight: 800;
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      color: #B9FF66; letter-spacing: -.04em; line-height: 1;
      margin-bottom: .35rem;
    }
    .stat-label { font-size: .875rem; color: rgba(255,255,255,.55); font-weight: 400; }


    /* ═══════════════════════════════════════════════════
       S3 · STORY
    ═══════════════════════════════════════════════════ */
    .story-img {
      border-radius: 45px; overflow: hidden;
      aspect-ratio: 4/5; background: #e2e2db;
      border: 3px solid #fff;
      box-shadow: 0 20px 60px rgb(186, 255, 102);
      position: relative;
    }
    .story-year-tag {
      position: absolute; bottom: 20px; left: 20px;
      background: #B9FF66; color: #191A23;
      font-weight: 800; font-size: 1.1rem;
      padding: .6rem 1.2rem; border-radius: 10px;
    }
    .story-body p { color: #6b6b66; font-size: .975rem; line-height: 1.8; margin-bottom: 1rem; }
    .story-body p:last-child { margin-bottom: 0; }
    .quote-block {
      border-left: 3px solid #B9FF66; padding-left: 1.2rem;
      margin: 1.5rem 0;
      font-weight: 600; font-size: 1.15rem;
      color: #191A23; line-height: 1.45;
    }


    /* ═══════════════════════════════════════════════════
       S4 · VALUES
    ═══════════════════════════════════════════════════ */
    .values-section { background: #fff; }
    .value-card {
      background: #f5f5f0; border: 1.5px solid #555;
      border-radius: 45px; padding: 2rem 1.75rem; height: 100%;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,.07);
      border-color: rgba(138,255,69,.5);
    }
    .value-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: #191A23; display: flex; align-items: center;
      justify-content: center; margin-bottom: 1.3rem;
    }
    .value-title {
      font-weight: 700; font-size: 1.2rem;
      margin-bottom: .6rem;
    }
    .value-desc { font-size: .92rem; color: #6b6b66; line-height: 1.65; }


    /* ═══════════════════════════════════════════════════
       S5 · TEAM
    ═══════════════════════════════════════════════════ */
    .team-card {
      border-radius: 45px; overflow: hidden;
      background: #fff; border: 1.5px solid rgba(0,0,0,.09);
      transition: transform .3s, box-shadow .3s;
    }
    .team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.1); }
    .team-photo {
      aspect-ratio: 3/3.5; background: #ddd; position: relative; overflow: hidden;
    }
    .team-overlay {
      position: absolute; inset: 0; background: rgba(17,17,16,.75);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .3s;
    }
    .team-card:hover .team-overlay { opacity: 1; }
    .li-btn {
      width: 44px; height: 44px; border-radius: 50%;
      background: #B9FF66; border: none; display: flex;
      align-items: center; justify-content: center; cursor: pointer;
      transform: scale(.8); transition: transform .3s .05s;
    }
    .team-card:hover .li-btn { transform: scale(1); }
    .team-info { padding: 1.25rem 1.4rem; }
    .team-name { font-weight: 700; font-size: 1.05rem; margin-bottom: .2rem; }
    .team-role { font-size: .82rem; color: #6b6b66; margin-bottom: .6rem; }
    .team-tag {
      display: inline-block; font-size: .72rem; font-weight: 600;
      background: rgba(138,255,69,.18); color: #3a7000;
      border-radius: 6px; padding: .2rem .6rem;
    }


    /* ═══════════════════════════════════════════════════
       S7 · CTA PENUTUP
    ═══════════════════════════════════════════════════ */
    .cta-section { background: #fff; padding: 6rem 0; }
    .cta-box {
      background: #191A23; border-radius: 28px;
      padding: 4.5rem 3rem; position: relative; overflow: hidden;
      text-align: center;
    }
    .cta-box::before {
      content: ''; position: absolute;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(138,255,69,.2) 0%, transparent 65%);
      top: -120px; left: 50%; transform: translateX(-50%);
      pointer-events: none; filter: blur(40px);
    }
    .cta-title {
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3rem); color: #fff;
      letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1rem;
      position: relative;
    }
    .cta-title span { color: #B9FF66; }
    .cta-desc { color: rgba(255,255,255,.55); font-size: 1rem; max-width: 420px; margin: 0 auto 2rem; }
    .btn-cta-light {
      display: inline-flex; align-items: center; gap: .5rem;
      background: #B9FF66; color: #191A23;
      font-weight: 700; font-size: .95rem;
      padding: .8rem 2rem; border-radius: 999px;
      border: 2px solid #B9FF66;
      box-shadow: 4px 4px 0 rgba(255,255,255,.2);
      transition: transform .2s, box-shadow .2s, background .2s;
    }
    .btn-cta-light:hover {
      background: #fff; color: #191A23;
      transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(255,255,255,.25);
    }
    .btn-cta-outline {
      display: inline-flex; align-items: center; gap: .5rem;
      background: transparent; color: rgba(255,255,255,.8);
      font-weight: 600; font-size: .95rem;
      padding: .8rem 1.8rem; border-radius: 999px;
      border: 1.5px solid rgba(255,255,255,.2);
      transition: border-color .2s, color .2s;
    }
    .btn-cta-outline:hover { border-color: rgba(255,255,255,.6); color: #fff; }



    /* ── TOAST NOTIFICATION ─────────────────────── */
.toast-notif {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 18px 20px;
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    /* State awal: tersembunyi di bawah layar */
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(.22,1,.36,1),
                transform 0.35s cubic-bezier(.22,1,.36,1);
}

/* State aktif: muncul */
.toast-notif.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Warna border kiri berdasarkan tipe */
.toast-notif.toast-success { border-left: 4px solid #8aff45; }
.toast-notif.toast-error   { border-left: 4px solid #ff5c5c; }

/* Lingkaran ikon */
.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.toast-success .toast-icon { background: rgba(138,255,69,.15); color: #3a7000; }
.toast-error   .toast-icon { background: rgba(255,92,92,.12);  color: #cc0000; }

/* Teks */
.toast-content { flex: 1; }
.toast-title {
    font-weight: 700;
    font-size: .95rem;
    color: #111110;
    margin-bottom: .2rem;
}
.toast-msg {
    font-size: .85rem;
    color: #6b6b66;
    line-height: 1.5;
    margin: 0;
}

/* Tombol tutup */
.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 0;
    flex-shrink: 0;
    transition: color .2s;
    margin-top: 1px;
}
.toast-close:hover { color: #111; }

/* Progress bar auto-dismiss */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 16px 16px;
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}
.toast-success .toast-progress { background: #8aff45; }
.toast-error   .toast-progress { background: #ff5c5c; }

@media (max-width: 480px) {
    .toast-notif {
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: unset;
    }
}