/* =========================================
   1. GLOBAL RESETS & VARIABLES
========================================= */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;

    /* INI OBATNYA BIAR GA BISA SCROLL KE KANAN KIRI */
    overflow-x: clip;
}

#main {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --primary-deep: #0D0D0D;
    --accent-primary: #0babe4;
    --accent-secondary: #969696;
    --natural: #ffffff;
    --bombon-neon: #d7fe03;
    /* Tambahan dari Framer */
}

* {
    box-sizing: border-box;
}

/* =========================================
   2. CUSTOM UI (HASIL RAPIHAN KITA)
========================================= */
/* Masukin semua CSS Navbar, Blob, Hero, dan Button di sini... */

/* --- BUNGKUS KHUSUS BLOB --- */
.blob-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Motong blob yang keluar layar cuma di area ini */
    z-index: 1;
    pointer-events: none;
}

.hero-sticky-container-text {
    position: relative;
    z-index: 2;
    /* Biar tulisan dan gambar nggak ketutup wave-blob */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-sticky-container-text h3 {
    color: var(--natural);
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

/* Container utama hero */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Sesuaikan tinggi hero */
    background-color: var(--color-bg-primary);
    /* Base Hitam */
    overflow: hidden;
    /* Biar efeknya ga keluar jalur web */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gelombang warna (Secondary Color) */
.wave-blob {
    position: absolute;
    width: 50vw;
    height: 50vw;
    /* Ganti var(--color-hero-primary) dengan warna lu */
    background: radial-gradient(circle, var(--color-hero-primary) 0%, rgba(0, 0, 0, 0) 70%);

    /* INI BIKIN BENTUKNYA ABSTRAK (Nggak bulat sempurna) */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

    /* INI START DI KANAN ATAS */
    top: -20%;
    right: -20%;

    filter: blur(80px);
    /* Bikin blur biar nyampur sama background hitam */
    z-index: 1;

    /* Panggil animasi, durasi 15 detik biar smooth pelan-pelan */
    animation: floatAbstract 15s infinite alternate ease-in-out;
}

/* Animasi pergerakan dan perubahan bentuk */
@keyframes floatAbstract {
    0% {
        /* Posisi awal di kanan atas, bentuk awal */
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        /* Jalan ke tengah agak ke kiri, sambil muter dan ganti bentuk */
        transform: translate(-30vw, 15vh) scale(1.2) rotate(90deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        /* Sampai di kiri, bentuknya berubah lagi biar kerasa organik */
        transform: translate(-60vw, 10vh) scale(0.9) rotate(180deg);
        border-radius: 50% 50% 20% 80% / 20% 80% 50% 50%;
    }
}

/* --- NAVBAR CONTAINER --- */
.navbar-glass {
    position: fixed;
    /* Biar nempel di atas pas di-scroll */
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 999;

    /* Efek Liquid Glass */
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html.dark .navbar-glass {
    background: rgba(20, 20, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* --- LOGO --- */
.navbar-logo img {
    height: 30px;
    width: auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* --- MENU LINKS (DESKTOP) --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* --- HAMBURGER MENU ICON --- */
.mobile-toggle {
    display: none;
    /* Sembunyiin di desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Styling khusus buat tombol Contact Sales (Wide/Desktop) */
.btn-contact-wide {
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    /* Ukuran ruang kosong di dalem tombol */

    /* Typografi */
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    /* Warna bawaan Framer (Neon) */
    color: var(--accent-primary);
    background-color: transparent;

    /* Bentuk Garis & Melengkung (Pill) */
    border: 1px solid var(--accent-primary);
    border-radius: 32px;

    /* Biar perubahannya smooth pas disorot mouse */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Efek pas disorot mouse (Hover) */
.btn-contact-wide:hover {
    background-color: var(--accent-primary);
    /* Background jadi neon */
    color: rgb(0, 0, 0);
    /* Tulisan jadi hitam */
    box-shadow: 0px 4px 15px rgba(215, 254, 3, 0.4);
    /* Opsional: ada efek cahaya dikit */
}

/* --- CONTAINER HERO --- */
.hero-container {
    position: relative;
    z-index: 2;
    /* Biar tulisan dan gambar nggak ketutup wave-blob */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 300px;
    /* Ngasih jarak dari Navbar atas */
}

.hero-container-2 {
    position: relative;
    z-index: 2;
    /* Biar tulisan dan gambar nggak ketutup wave-blob */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- LABEL ATAS --- */
.hero-label {
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border-subtle);
    padding: 6px 16px;
    border-radius: 40px;
    color: var(--color-text-primary);
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
}

/* --- TYPOGRAPHY HERO --- */
.hero-title {
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    /* Warna neon yang kita set sebelumnya */
    margin: 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    color: var(--color-text-primary);
    max-width: 600px;
    margin: 20px 0 30px;
    line-height: 1.6;
}

/* --- REVIEWS --- */
.hero-reviews {
    margin-top: 30px;
    color: var(--color-text-primary);
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}

.hero-reviews .stars {
    font-size: 20px;
    margin-bottom: 5px;
}

/* --- EFEK 3D MOCKUP TABLET/DASHBOARD --- */
.hero-mockup {
    margin-top: 50px;
    width: 100%;
    max-width: 1000px;

    /* INI RAHASIA EFEK 3D FRAMER-NYA! */
    transform: perspective(1200px) rotateX(15deg) scale(0.9);
    transition: transform 0.5s ease;
    /* Biar ada efek mulus kalau di-hover */
}

.hero-mockup img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    /* Ngasih bayangan biar 3D-nya nyata */
}

/* Opsional: Kalau disorot mouse, gambarnya maju dikit (Efek keren) */
.hero-mockup:hover {
    transform: perspective(1200px) rotateX(5deg) scale(0.95);
}

/* Teks dan Tombol muncul dari bawah */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    /* Pakai cubic-bezier ini biar efeknya "narik" terus mantul dikit di akhir */
    animation: fadeInUpBouncy 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInUpBouncy {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        /* Awalnya agak kecil di bawah */
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        /* Mantul ke ukuran dan posisi asli */
    }
}

/* --- RESPONSIVE UNTUK HP --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 20px;
        margin-bottom: 200px;
        margin-top: 30px;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-buttons {
        display: none;
    }

    .hero-container {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-section {
        padding: 100px 20px 0 20px !important;
    }
}

/* --- RESPONSIVE MOBILE VIEW (Di bawah 768px) --- */
@media (max-width: 768px) {
    .navbar-glass {
        border-radius: 20px;
        padding: 15px 20px;
        flex-wrap: wrap;
        /* Allows menu to wrap down */
    }

    /* Sembunyiin menu tengah & tombol contact di HP secara default */
    .navbar-menu {
        display: none;
        width: 100%;
        margin-top: 15px;
        order: 3;
        /* Push to the bottom of flex container */
    }

    .navbar-menu.active {
        display: block;
        animation: fadeInDrop 0.3s ease;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        background: rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }

    html.dark .nav-links {
        background: rgba(20, 20, 20, 0.65);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .contact-btn {
        display: none;
    }

    /* Munculin icon hamburger */
    .mobile-toggle {
        display: flex;
    }
}

@keyframes fadeInDrop {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- TRACK SCROLL (Biar scrollnya agak panjang buat nafas animasi) --- */
.hero-scroll-track {
    position: relative;
    height: 200vh;
    /* Pangkas jadi 2 layar aja biar ga kepanjangan scrollnya */
    width: 100%;
    background: linear-gradient(to bottom,
            var(--color-hero-primary) 0%,
            /* Warna atas */
            var(--color-bg-primary) 35%
            /* Warna bawah dinamis */
        );
}

/* --- KONTEN TEKS --- */
.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    margin-bottom: 20px;
    /* Jarak natural antara teks dan gambar rebahan */
}

/* --- STICKY CONTAINER (Tinggi Auto) --- */
.hero-sticky-container {
    position: sticky;
    /* Gambarnya bakal nyangkut di jarak 15% dari pucuk layar */
    top: 15vh;
    height: auto;
    /* Balikin auto kayak yang lu mau! */
    z-index: 10;
}

/* --- GAMBAR 3D --- */
.hero-mockup-wrapper {
    perspective: 1500px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    /* Posisikan di tengah */
    padding: 0 20px;
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);

    /* Posisi Awal: Rebahan (55 derajat) dan agak kecil (0.8) */
    transform: rotateX(55deg) scale(0.8);
    transform-origin: bottom center;
    will-change: transform;
}

/* =========================================
   ABOUT US SECTION & BENTO GRID
========================================= */
.about-section {
    padding: 100px 0 0 0;
    position: relative;
    z-index: 2;
}

/* --- LOGO TICKER ANIMATION --- */
.partner-ticker {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
    /* Efek pudar (fade) di pinggiran kiri dan kanan */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollTicker 20s linear infinite;
    /* Kecepatan scroll */
}

.ticker-track img {
    height: 40px;
    /* Ukuran logo */
    width: auto;
    opacity: 0.6;
    /* Agak dibikin redup biar elegan */
    transition: opacity 0.3s ease;
}

.ticker-track img:hover {
    opacity: 1;
    /* Nyala kalau disorot */
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Geser separuh jalan karena imagenya di-duplicate */
}

/* --- BENTO GRID LAYOUT --- */
.bento-grid {
    display: grid;
    /* Kita bikin 3 kolom di Desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Kotak Bento */
.bento-box {
    background-color: var(--color-glass-surface);
    /* Kaca transparan tipis */
    border: 1px solid var(--color-border-subtle);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bento-box h4 {
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.bento-box p {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.w-fit {
    width: fit-content;
}

.mt-auto {
    margin-top: auto;
}

/* Dorong tombol ke paling bawah kotak */
.neon-text {
    color: var(--accent-primary);
}

/* --- PENGATURAN POSISI KOTAK (GRID MAPPING) --- */
.bento-intro {
    grid-column: span 2;
}

/* Kotak intro ngambil 2 kolom */
.bento-quote {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
}

/* Kotak foto tinggi ke bawah */
.bento-currencies {
    grid-column: span 1;
}

.bento-info {
    grid-column: span 1;
}

.bento-process {
    grid-column: span 3;
}

/* Kotak proses ngambil *full* lebar */


/* --- CUSTOM ISI BOX --- */
/* Box Quote */
.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Teks ngumpul di bawah */
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 80%);
    /* Bayangan hitam biar teks kebaca */
}

.quote-content p {
    color: var(--color-text-primary);
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author h6 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 16px;
    font-family: "Raleway", sans-serif;
}

.quote-author span {
    color: var(--color-text-secondary);
    font-size: 12px;
}

/* Box Currencies */
.bento-currencies h3 {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.currency-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stat-small h4 {
    margin: 0;
    font-size: 32px;
    color: var(--color-text-primary);
}

.stat-small span {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.stat-big {
    font-family: "Raleway", sans-serif;
    font-size: 60px;
    color: var(--color-text-primary);
    line-height: 1;
}

/* Box Process (4 Steps) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 kolom sejajar */
    gap: 20px;
    margin-top: 10px;
}

.process-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border-subtle);
    border-radius: 16px;
    padding: 24px;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.step-lbl {
    font-size: 10px;
    color: var(--accent-primary);
    letter-spacing: 1px;
}

.step-num {
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    color: var(--accent-primary);
    line-height: 1;
}

.process-card h5 {
    color: var(--color-text-primary);
    font-size: 18px;
    margin: 0 0 10px 0;
    font-family: "Raleway", sans-serif;
}

.process-card p {
    font-size: 13px;
    margin: 0;
}

/* --- RESPONSIVE UNTUK TABLET & HP --- */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Jadi 2 kolom */
    .bento-intro,
    .bento-process {
        grid-column: span 2;
    }

    .bento-quote {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 400px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Proses jadi 2 baris */
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    /* Jadi 1 baris numpuk semua */
    .bento-intro,
    .bento-quote,
    .bento-currencies,
    .bento-info,
    .bento-process {
        grid-column: span 1;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    /* Proses numpuk vertikal */
}

/* =========================================
   BENEFIT CARDS COMPONENT
========================================= */
.benefit-card {
    background-color: var(--color-bg-secondary);
    /* Warna abu-abu gelap transparan */
    border: 1px solid var(--color-border-subtle);
    /* Garis tipis banget biar elegan */
    border-radius: 20px;
    /* Lengkungan kotaknya */
    padding: 20px;
    display: flex;
    align-items: center;
    /* Ikon dan teks sejajar di tengah */
    gap: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

/* Efek pas disorot mouse (ngangkat + garis lebih terang) */
.benefit-card:hover {
    background-color: var(--color-bg-secondary);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Kotak pembungkus iconnya */
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Typography di dalam kotak */
.benefit-card h4 {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
}

:root {
    --color-primary: rgb(215, 254, 3);
    --color-dark: rgb(36, 36, 36);
    --color-purple: rgb(167, 159, 241);
    --color-black: rgb(0, 0, 0);
}

/* --- Buttons --- */
.framer-1e7o2g0 {
    border-radius: 32px;
    width: 100%;
}

/* Solid Button (Get Started) */
.framer-v-1bvq8sv {
    background-color: var(--color-primary);
}

.framer-v-1bvq8sv .framer-text {
    color: var(--color-black);
}

/* Outline Button (Learn More) */
.framer-v-gn4z1w {
    background-color: transparent;
}

.framer-v-gn4z1w .framer-text {
    color: var(--color-primary);
}

/* --- Container Animations --- */
.framer-iug4c6-container {
    will-change: transform;
    opacity: 1;
    transform: translateX(-50%) perspective(1200px) translateY(180px);
}

.framer-1hun139-container,
.framer-1ivx4kv-container,
.framer-lidvyb-container,
.framer-4vz7o3-container {
    will-change: transform;
    opacity: 1;
    transform: perspective(1200px) translateY(180px);
}

/* --- Feature Cards --- */
.framer-LKhC6 {
    background-color: var(--color-dark);
    border-radius: 40px;
}

/* --- Icons Backgrounds --- */
.framer-6xdjb7 {
    border-radius: 40px;
}

.framer-v-1e5ecat .framer-6xdjb7 {
    background-color: var(--color-primary);
}

.framer-v-1oa3mrs .framer-6xdjb7 {
    background-color: var(--color-purple);
}

.framer-v-12aulxv .framer-6xdjb7 {
    background-color: var(--color-black);
}

/* =========================================
   SCROLL FADE-IN ANIMATION
========================================= */
/* State awal: ngumpet di bawah dan transparan */
.scroll-anim {
    opacity: 0 !important;
    /* Pakai !important buat nimpa inline style dari Framer */
    transform: translateY(50px) !important;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.scroll-anim.delay-2 {
    transform: translateX(-320%) perspective(1200px) translateY(10px) !important;
}

.scroll-anim.delay-1,
.scroll-anim.delay-3 {
    transform: perspective(1200px) translateY(500px) !important;
}

/* State akhir: kelihatan di posisi aslinya */
.scroll-anim.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.scroll-anim.is-visible.delay-2 {
    transform: translateX(-320%) perspective(1200px) translateY(-100px) !important;

}

.scroll-anim.is-visible.delay-1,
.scroll-anim.is-visible.delay-3 {
    transform: perspective(1200px) translateY(120px) !important;

}


/* Efek munculnya gantian (Staggered) */
.scroll-anim.delay-1 {
    transition-delay: 0.1s !important;
}

.scroll-anim.delay-2 {
    transition-delay: 0.2s !important;
}

.scroll-anim.delay-3 {
    transition-delay: 0.3s !important;
}

.scroll-anim.delay-4 {
    transition-delay: 0.4s !important;
}