
        @import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
        
        * {
            -webkit-font-smoothing: antialiased;
            box-sizing: border-box;
        }
        
        html, body {
            margin: 0px;
            height: 100%;
        }
        
        button:focus-visible {
            outline: 2px solid #4a90e2 !important;
            outline: -webkit-focus-ring-color auto 5px !important;
        }
        
        a {
            text-decoration: none;
        }

        :root {
  --sidebar: rgba(240, 241, 245, 1);
  --bg: rgba(245, 250, 255, 1);
  --card: rgba(255, 255, 255, 1);
  --border: rgba(209, 209, 214, 0.5);
  --text-1: rgba(28, 28, 30, 1);
  --text-2: rgba(75, 88, 101, 1);
  --primary: rgba(0, 122, 255, 1);
  --hoverbiru: rgba(239, 247, 255, 1);
  --aktif: rgba(52, 199, 89, 1);
  --hoveraktif: rgba(236, 253, 243, 1);
  --warning: rgba(224, 62, 92, 1);
  --grafik: 0px -4px 1px 0px rgba(49, 130, 189, 1);
  --h2-font-family: "Poppins", Helvetica;
  --h2-font-weight: 600;
  --h2-font-size: 36px;
  --h2-letter-spacing: 0px;
  --h2-line-height: normal;
  --h2-font-style: normal;
  --h1-font-family: "Poppins", Helvetica;
  --h1-font-weight: 700;
  --h1-font-size: 40px;
  --h1-letter-spacing: 0px;
  --h1-line-height: normal;
  --h1-font-style: normal;
  --h3-font-family: "Poppins", Helvetica;
  --h3-font-weight: 500;
  --h3-font-size: 30px;
  --h3-letter-spacing: 0px;
  --h3-line-height: normal;
  --h3-font-style: normal;
  --h4-font-family: "Poppins", Helvetica;
  --h4-font-weight: 500;
  --h4-font-size: 24px;
  --h4-letter-spacing: 0px;
  --h4-line-height: normal;
  --h4-font-style: normal;
  --body-large-font-family: "Poppins", Helvetica;
  --body-large-font-weight: 400;
  --body-large-font-size: 18px;
  --body-large-letter-spacing: 0px;
  --body-large-line-height: normal;
  --body-large-font-style: normal;
  --body-font-family: "Poppins", Helvetica;
  --body-font-weight: 400;
  --body-font-size: 16px;
  --body-letter-spacing: 0px;
  --body-line-height: normal;
  --body-font-style: normal;
  --caption-font-family: "Poppins", Helvetica;
  --caption-font-weight: 300;
  --caption-font-size: 14px;
  --caption-letter-spacing: 0px;
  --caption-line-height: normal;
  --caption-font-style: normal;
  --h5-font-family: "Poppins", Helvetica;
  --h5-font-weight: 500;
  --h5-font-size: 20px;
  --h5-letter-spacing: 0px;
  --h5-line-height: normal;
  --h5-font-style: normal;
  --h6-font-family: "Poppins", Helvetica;
  --h6-font-weight: 500;
  --h6-font-size: 18px;
  --h6-letter-spacing: 0px;
  --h6-line-height: normal;
  --h6-font-style: normal;
  --1: 1px -1px 4px 0px rgba(0, 0, 0, 0.25);
  --12: -4px 4px 4px 0px rgba(0, 0, 0, 0.25), 4px -4px 4px 0px
    rgba(0, 0, 0, 0.25);
  --hover: 1px -1px 4px 0px rgba(0, 122, 255, 0.25), -1px 1px 4px 0px
    rgba(0, 122, 255, 0.25);
  --variable-collection-border: rgba(232, 232, 232, 1);
  --variable-collection-color: rgba(209, 196, 233, 1);
}

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .navbar-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: #1c1c1e;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }

        /* Hover effect */
        .nav-links a:hover {
            color: var(--primary);
        }

        /* Active state */
        .nav-links a.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* search box */
        .search-box {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 50px;
            width: 300px;
            gap: 8px;
            color: var(--text-2);
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        /* efek border dan glow saat fokus */
        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2); /* glow effect */
        }

        .search-box input {
            border: none;
            outline: none;
            flex: 1;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            color: var(--text-1);
            background: transparent;
        }

        .search-box input::placeholder {
            color: var(--text-2);
        }

        /* icon search */
        .search-box svg {
            color: var(--text-2);
            transition: color 0.3s;
        }

        .search-box:hover svg {
            color: var(--primary);
        }

        /* Button Login - Primary */
        .btn-login {
            padding: 10px 30px;
            border: none;
            border-radius: 25px;
            color: white;
            background: var(--primary);
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-login:hover {
            background: #0056b3; /* warna hover biru */
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        }

        /* Button Sign Up - Secondary */
        .btn-signup {
            padding: 10px 30px;
            border: 2px solid var(--primary);
            border-radius: 25px;
            color: var(--primary);
            background: white;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-signup:hover {
            background: var(--hoverbiru); /* pastikan var(--hoverbiru) sudah didefinisikan */
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
        }

        /* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* awalnya hidden */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Popup Content */
.popup-content {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-in-out;
}

/* Icon */
.popup-content .icon {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Title */
.popup-content h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--text-1);
}

/* Text */
.popup-content p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Close Button */
.close-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.close-btn:hover {
    background: #005bb5;
}

/* Fade Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}


        /* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-1);
}

/* Default navbar-right */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Default: desktop */
.nav-links-desktop { display: flex; }   /* desktop nav-links muncul */
.nav-links-mobile { display: none; }    /* mobile nav-links disembunyikan */
/* Content Demo */
        .content {
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            font-size: 36px;
            color: var(--text-1);
            margin-bottom: 20px;
        }

        .content p {
            font-size: 18px;
            color: var(--text-2);
            line-height: 1.6;
        }
/* Hamburger */
.hamburger { display: none; }

/* Responsive setengah laptop & mobile */
        @media (max-width: 1024px) {
            .nav-links-desktop { display: none; }
            .nav-links-mobile { display: flex; flex-direction: column; gap: 10px; }
            .hamburger { display: block; }

           .navbar-right {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh; /* Gunakan 100vh agar tinggi menu pasti full 100% layar HP dari atas ke bawah */
    width: 250px;
    background-color: #ffffff !important; /* Tambahkan !important untuk memaksa warna putih solid menimpa kode transparan/hitam lainnya */
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px 20px; /* Padding atas dibuat 80px agar menu tidak terlalu mepet dengan atas layar */
    gap: 15px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto; /* Jika isi menu terlalu banyak, layarnya bisa di-scroll ke bawah */
}

.navbar-right.active {
    right: 0;
}
            
            .nav-links-mobile {
                width: 100%;
                border-bottom: 1px solid var(--border);
                padding-bottom: 15px;
                margin-bottom: 10px;
            }

            .nav-links-mobile a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
                border-bottom: none;
            }

            .nav-links-mobile a:hover {
                background: var(--hoverbiru);
            }

            .nav-links-mobile a.active {
                background: var(--hoverbiru);
                border-bottom: none;
            }

            .nav-links-mobile a.active::after {
                display: none;
            }

            .search-box {
        width: 100%;
        text-align: left; /* teks/input rata kiri */
    }

    .btn-login, .btn-signup {
        width: 100%;
        text-align: center; /* teks tombol di tengah */
    }
}

@media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }

            .nav-links-desktop { display: none; }
            .nav-links-mobile { display: flex; flex-direction: column; gap: 10px; }
            .hamburger { display: block; }

            .navbar-right {
                position: fixed;
                top: 0;
                right: -300px;
                height: 100%;
                width: 250px;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                gap: 15px;
                box-shadow: -4px 0 15px rgba(0,0,0,0.1);
                transition: right 0.3s ease;
                z-index: 999;
            }

            .navbar-right.active { right: 0; }

            .nav-links-mobile {
                width: 100%;
                border-bottom: 1px solid var(--border);
                padding-bottom: 15px;
                margin-bottom: 10px;
            }

            .nav-links-mobile a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
                border-bottom: none;
            }

            .nav-links-mobile a:hover {
                background: var(--hoverbiru);
            }

            .nav-links-mobile a.active {
                background: var(--hoverbiru);
                border-bottom: none;
            }

            .nav-links-mobile a.active::after {
                display: none;
            }

            .search-box {
        width: 100%;
        text-align: left; /* teks/input rata kiri */
    }

    .btn-login, .btn-signup {
        width: 100%;
        text-align: center; /* teks tombol di tengah */
    }
}

        .frame {
            background-color: var(--bg);
            width: 100%;
            min-height: 100vh;
            position: relative;
            padding: 80px 20px 40px;
            overflow: hidden;
        }

        .ellipse {
            top: 0;
            left: 632px;
            width: 678px;
            height: 657px;
            position: absolute;
            background: radial-gradient(circle, rgba(187, 222, 251, 0.3) 0%, transparent 70%);
        }

        .div {
            top: 160px;
            left: 372px;
            width: 478px;
            height: 478px;
            background-color: #bbdefb80;
            border-radius: 239px;
            filter: blur(50px);
            position: absolute;
        }

        .div2 {
            top: 140px;
            right: 400px;
            width: 478px;
            height: 478px;
            background-color: #bbdefb80;
            border-radius: 239px;
            filter: blur(50px);
            position: absolute;
        }

        .decorative-shape {
            position: absolute;
            opacity: 0.6;
        }

        .shape-1 {
            top: -13px;
            left: 0;
            width: 284px;
            height: 283px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 50% 50% 0 50%;
            transform: rotate(-45deg);
        }

        .shape-2 {
            top: 624px;
            left: 0;
            width: 320px;
            height: 256px;
            background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
            border-radius: 50% 0 50% 50%;
            opacity: 0.4;
        }

        .shape-3 {
            top: 363px;
            right: 72px;
            width: 360px;
            height: 324px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 50% 50% 50% 0;
            transform: rotate(180deg);
        }

        .shape-4 {
            top: 538px;
            right: 0;
            width: 403px;
            height: 342px;
            background: linear-gradient(135deg, #90caf9 0%, #64b5f6 100%);
            border-radius: 0 50% 50% 50%;
            opacity: 0.4;
        }

        /* --- Testimonial Section (Modern Slider UI) --- */
.testimonial-section {
    background-color: var(--bg);
    padding: 80px 40px;
    overflow: hidden; /* Mencegah horizontal scrollbar */
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Tombol Navigasi */
.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Menengahkan konten secara horizontal */
    margin-bottom: 40px;
    text-align: center; /* Memastikan teks multiline juga rata tengah */
}

.testimonial-title {
    font-family: var(--h2-font-family);
    font-weight: var(--h2-font-weight);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--text-1);
    margin-bottom: 8px;
}

/* Pastikan margin auto agar max-width tetap di tengah layar */
.testimonial-subtitle {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    color: var(--text-2);
    margin: 0 auto; 
    max-width: 500px;
}

/* Tombol Navigasi Dibuat Ke Tengah */
.review-nav {
    display: flex;
    justify-content: center; /* Tombol rata tengah */
    gap: 16px; /* Jarak antar tombol sedikit dilebarkan */
    margin-top: 10px; /* Memberi jarak antara kartu dengan tombol */
}

.review-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--text-1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-btn:hover:not(:disabled) {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.review-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f3f4f6;
}

/* Track & Kartu Slider */
.review-slider {
    width: 100%;
    padding: 10px 0 30px 0;
}

.review-track {
    display: flex;
    gap: 24px; /* Jarak antar kartu */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Efek slide sangat mulus */
    will-change: transform;
}

.review-box {
    /* Auto layout: 3 kolom di desktop dikurangi jarak gap */
    flex: 0 0 calc(33.333% - 16px); 
    min-width: 320px;
    background: var(--card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.15);
    border-color: var(--primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--hoverbiru);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.avatar-initial {
    font-family: var(--h5-font-family);
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.review-info h3 {
    font-family: var(--h6-font-family);
    font-weight: var(--h6-font-weight);
    font-size: var(--h6-font-size);
    color: var(--text-1);
    margin: 0 0 4px 0;
}

.review-info p {
    font-family: var(--caption-font-family);
    font-size: 13px;
    color: var(--aktif); /* Pakai variabel hijau dari desainmu */
    font-weight: 500;
    margin: 0;
}

.quote-mark {
    position: absolute;
    right: 0;
    top: -10px;
    font-size: 48px;
    color: var(--hoverbiru);
    font-family: serif;
    line-height: 1;
}

.review-text {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #e2e8f0; /* Bintang abu-abu kosong */
}

.star.filled {
    color: #ffb703; /* Warna emas amber modern */
}

.rating-text {
    font-family: var(--body-font-family);
    font-weight: 600;
    color: var(--text-1);
    font-size: 14px;
}

/* Responsif Layar untuk Slider */
@media (max-width: 1024px) {
    .review-box {
        flex: 0 0 calc(50% - 12px); /* 2 kolom di tablet */
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        /* Hilangkan override align-items agar tetap center di HP */
        gap: 10px; 
    }
    
    .review-box {
        flex: 0 0 100%; /* 1 kolom penuh di hp */
    }
    
    .testimonial-section {
        padding: 60px 20px;
    }
     .review-nav {
        align-self: flex-end; /* Tombol pindah ke kanan bawah header di mobile */
    }
}
    
   

      .pin-icon {
        position: absolute;
        top: -20px; /* naikkan sedikit */
        right: 5px;
        width: 40px;
        height: 40px;
        transform: rotate(45deg); /* miring 45 derajat */
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .pin-icon svg {
            width: 100%;
            height: 100%;
        }

        .testimonial-card-top-right {
            position: absolute;
            top: 120px;
            right: 80px;
            width: 390px;
            background: white;
            border-radius: 15px;
            padding: 10px;
            border: 1px solid var(--border);
            display: flex;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .testimonial-card-top-right .image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: url('/HireMesh2/Images/gt.png') no-repeat center center;
            background-size: cover;
            flex-shrink: 0;
        }

        .testimonial-bubble-left {
            position: absolute;
            bottom: 50px;
            left: 80px;
            width: 450px;
            transform: rotate(180deg);
        }

        .bubble-content-left {
            background: #0d519b;
            border-radius: 50px 5px 40px 50px;
            padding: 15px;
            display: flex;
            gap: 10px;
            box-shadow: 0px 4px 4px rgba(8, 93, 197, 0.25);
            transform: rotate(180deg);
        }

        .bubble-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50px;
            background: url('/HireMesh2/Images/jose.png') no-repeat center center;
            background-size: cover;
            flex-shrink: 0;
        }

        .bubble-text-wrapper {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .bubble-text {
            font-family: var(--body-font-family);
            font-weight: var(--body-font-weight);
            font-size: var(--body-font-size);
            color: white;
            line-height: 1.4;
        }

        .bubble-name {
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            font-size: 16px;
            color: white;
        }

        .cursor-icon-left {
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            transform: rotate(-90deg);
        }

        .testimonial-bubble-right {
            position: absolute;
            bottom: 50px;
            right: 80px;
            width: 462px;
        }

        .bubble-content-right {
            background: #085dc5;
            border-radius: 5px 50px 50px 40px;
            padding: 15px;
            display: flex;
            gap: 10px;
            box-shadow: 0px 4px 4px rgba(8, 93, 197, 0.25);
        }

        .bubble-avatar2 {
           width: 50px;
            height: 50px;
            border-radius: 50px;
            background: url('/HireMesh2/Images/puji.png') no-repeat center center;
            background-size: cover;
            flex-shrink: 0;
        }

        .cursor-icon-right {
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            transform: rotate(-90deg);
        }

        .hero-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            position: absolute;
            top: 250px;
            left: 50%;
            transform: translateX(-50%);
            width: 823px;
            text-align: center;
            z-index: 10;
        }

        .hero-title {
            font-family: "Poppins", sans-serif;
            font-weight: 700;
            font-size: 60px;
            color: #0e315d;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-family: var(--h4-font-family);
            font-weight: var(--h4-font-weight);
            font-size: var(--h4-font-size);
            color: var(--text-2);
            line-height: 1.5;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .btn-primary {
    display: flex;               /* aktifkan flexbox */
    justify-content: center;     /* horizontal tengah */
    align-items: center;         /* vertical tengah */
    padding: 10px 20px;          /* lebih enak ada space kiri kanan */
    background: var(--primary);
    border: none;
    border-radius: 25px;
    color: white;
    font-family: var(--h5-font-family);
    font-weight: var(--h5-font-weight);
    font-size: var(--h5-font-size);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;          /* jaga-jaga tambahan */
}

        .btn-primary:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
        }

        .btn-secondary {
            padding: 10px 25px;
            background: white;
            border: 1px solid var(--primary);
            border-radius: 25px;
            color: var(--primary);
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--hoverbiru);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
        }
        
        /* =========================================
           PERBAIKAN TAMPILAN HP & TABLET 
           (KARTU TETAP MUNCUL, DISUSUN RAPI ATAS-BAWAH)
           ========================================= */

        @media (max-width: 1024px) {
            /* 1. Ubah pembungkus utama jadi Flexbox Vertikal */
            .frame {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 120px 20px 60px;
                height: auto;
                min-height: 100vh;
            }

            /* 2. MUNCULKAN SEMUA KARTU (Hapus display: none) & Buat Relative */
            .testimonial-card-top-left,
            .testimonial-card-top-right,
            .testimonial-bubble-left,
            .testimonial-bubble-right {
                display: flex;
                position: relative;
                top: auto; left: auto; right: auto; bottom: auto;
                transform: none !important; /* Matikan rotasi melayang */
                width: 100%;
                max-width: 450px; /* Ukuran maksimal kartu di tablet */
                margin-bottom: 15px;
                z-index: 5;
            }

            /* 3. Urutkan posisi elemen dari atas ke bawah */
            .testimonial-card-top-left { order: 1; }
            .testimonial-card-top-right { order: 2; }
            
            .hero-section {
                position: relative;
                top: auto; left: auto;
                transform: none;
                order: 3; /* Teks utama ada di TENGAH */
                width: 100%;
                margin: 40px 0; /* Jarak napas antara kartu atas dan teks */
                padding: 0;
            }
            
            .testimonial-bubble-left { order: 4; }
            .testimonial-bubble-right { order: 5; }

            /* 4. Perbaiki bubble biru kiri yang tadinya sengaja di-rotate 180 derajat di desktop */
            .bubble-content-left {
                transform: none !important;
                border-radius: 5px 50px 50px 40px; /* Samakan bentuknya dengan yang kanan */
                flex-direction: row;
            }

            .div, .div2 {
                width: 300px;
                height: 300px;
            }
        }

        /* KHUSUS LAYAR HP */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 16px;
                line-height: 1.6;
                padding: 0 10px;
            }

            /* Bikin kartu responsif ngikutin layar HP */
            .testimonial-card-top-left,
            .testimonial-card-top-right,
            .testimonial-bubble-left,
            .testimonial-bubble-right {
                max-width: 100%; 
            }

            /* Sesuaikan ukuran font di dalam kartu agar tidak kebesaran di HP */
            .bubble-text, .testimonial-text {
                font-size: 13px; 
            }
            .bubble-name, .testimonial-name {
                font-size: 14px;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                margin: 30px auto 0;
            }

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

            /* Posisi background blur */
            .div {
                width: 250px;
                height: 250px;
                top: 20%;
            }
            .div2 {
                width: 250px;
                height: 250px;
                top: 60%;
                right: -50px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 32px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
        }
        /* Latest Jobs Section */
        .latest-jobs-section {
            background-color: var(--bg);
            padding: 20px 60px;
        }

        .jobs-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .jobs-header-left {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .jobs-icon {
            width: 40px;
            height: 40px;
            color: var(--text-1);
        }

        .jobs-title-wrapper h2 {
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: var(--h2-font-size);
            color: var(--text-1);
            margin: 0 0 8px 0;
        }

        .jobs-title-wrapper p {
            font-family: var(--body-font-family);
            font-weight: var(--body-font-weight);
            font-size: var(--body-font-size);
            color: var(--text-2);
            margin: 0;
        }

        .browse-jobs-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .browse-jobs-btn:hover {
            transform: translateX(5px);
        }

        .job-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .job-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
            cursor: pointer;
        }

        .job-card:hover {
            border-color: var(--primary); /* border jadi primary */
            box-shadow: 0 0 12px rgba(52, 152, 219, 0.5); /* glow effect warna primary */
            transform: translateY(-2px); /* sedikit naik */
        }

        .job-card-left {
            display: flex;
            gap: 20px;
            align-items: center;
            flex: 1;
        }

        .job-time {
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: var(--text-2);
            min-width: 80px;
        }

        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: white;
        }

        .job-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .company-name-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .company-name {
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            color: var(--text-1);
        }

        .hiring-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: var(--caption-font-family);
            font-weight: 500;
            font-size: 13px;
            color: var(--aktif);
        }

        .hiring-dot {
            width: 6px;
            height: 6px;
            background: var(--aktif);
            border-radius: 50%;
        }

        .job-title {
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            color: var(--text-1);
        }

        .job-title2 {
    font-family: var(--h4-font-family);
    font-weight: var(--h4-font-weight);
    font-size: var(--h4-font-size);
    color: var(--text-1);
    line-height: 1.5;
}

        .job-tags {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .job-tag {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: var(--text-2);
        }

        .job-tag svg {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

        .job-card-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .job-salary {
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            color: var(--text-1);
            white-space: nowrap;
        }
        .bookmark-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        }

        .bookmark-btn:hover,
        .bookmark-btn.active {
        background: var(--hoverbiru);
        border-color: var(--primary);
        }

        .bookmark-btn svg {
        width: 20px;
        height: 20px;
        color: var(--text-2);
        transition: color 0.3s;
        }

        .bookmark-btn:hover svg,
        .bookmark-btn.active svg {
        color: var(--primary);
        }

        /* Platform Section */
        .platform-section {
            background-color: var(--bg);
            padding: 120px 60px;
            text-align: center;
        }

        .platform-header {
            max-width: 1100px;
            margin: 0 auto 80px;
        }

        .platform-header h2 {
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: var(--h2-font-size);
            color: var(--text-1);
            margin: 0 0 20px 0;
        }

        .platform-header p {
            font-family: var(--h4-font-family);
            font-weight: var(--h4-font-weight);
            font-size: var(--h4-font-size);
            color: var(--text-2);
            line-height: 1.6;
            margin: 0;
        }

        .platform-content {
            display: grid;
    grid-template-columns: 1fr; /* cuma 1 kolom */
    gap: 60px;
    max-width: 1900px;
    margin: 0 auto;
        }

        .platform-card {
            background: var(--card);
            border-radius: 20px;
            padding: 60px 50px;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 30px;
            transition: all 0.3s;
        }

        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .card-content-wrapper {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .card-text-content {
            flex: 1;
        }

        .card-illustration {
            width: 280px;
            height: 280px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-illustration img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .platform-card h3 {
            font-family: var(--h3-font-family);
            font-weight: var(--h3-font-weight);
            font-size: var(--h3-font-size);
            color: var(--text-1);
            margin: 0 0 15px 0;
        }

        .recruitment-text {
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            color: var(--text-2);
            line-height: 1;
            }

        .platform-card > p {
            font-family: var(--body-large-font-family);
            font-weight: var(--body-large-font-weight);
            font-size: var(--body-large-font-size);
            color: var(--text-2);
            line-height: 1.6;
            margin: 0 0 25px 0;
        }

        .platform-features {
            list-style: none;
            padding: 10px;
            margin: 0 0 10px 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .platform-features li {
            font-family: var(--body-large-font-family);
            font-weight: var(--body-large-font-weight);
            font-size: var(--body-large-font-size);
            color: var(--text-2);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .platform-features li::before {
            content: "•";
            color: var(--primary);
            font-size: 24px;
            font-weight: bold;
        }

        .platform-cta {
            padding: 14px 40px;
            background: var(--primary);
            border: none;
            border-radius: 30px;
            color: white;
            font-family: var(--h4-font-family);
            font-weight: var(--h4-font-weight);
            font-size: var(--h4-font-size);
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }

        .platform-cta:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
        }

        /* Job Seeker Illustration */
        .job-seeker-illustration {
            position: relative;
        }

        .chart-window {
            width: 240px;
            height: 180px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
            transform: rotate(-5deg);
        }

        .window-header {
            height: 30px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            padding: 0 10px;
            gap: 5px;
        }

        .window-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: white;
            opacity: 0.7;
        }

        .chart-content {
            padding: 20px;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            height: 120px;
        }

        .chart-bar {
            width: 30px;
            border-radius: 5px;
            position: relative;
        }

        .bar-blue {
            height: 70px;
            background: linear-gradient(180deg, #667eea, #764ba2);
        }

        .bar-purple {
            height: 85px;
            background: linear-gradient(180deg, #764ba2, #667eea);
        }

        .bar-green {
            height: 60px;
            background: linear-gradient(180deg, #52c41a, #73d13d);
        }

        .floating-button {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b9d, #c44569);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
            animation: float 3s ease-in-out infinite;
        }

        .floating-button::before {
            content: "+";
            color: white;
            font-size: 28px;
            font-weight: 300;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .color-accent-1 {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #a8edea, #fed6e3);
            border-radius: 50%;
            filter: blur(30px);
            opacity: 0.6;
            top: -20px;
            right: -20px;
        }

        .color-accent-2 {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffeaa7, #fab1a0);
            border-radius: 50%;
            filter: blur(25px);
            opacity: 0.5;
            bottom: 10px;
            left: -10px;
        }

        /* HR Illustration */
        .hr-illustration {
            position: relative;
        }

        .phone-mockup {
            width: 180px;
            height: 260px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
            transform: rotate(5deg);
            padding: 15px;
        }

        .profile-cards {
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
        }

        .profile-card {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .profile-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .profile-info {
            flex: 1;
        }

        .profile-name {
            height: 8px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 4px;
            width: 70%;
            margin-bottom: 5px;
        }

        .profile-skill {
            height: 6px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 3px;
            width: 50%;
        }

        .magnifier {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            border: 4px solid #209cee;
            border-radius: 50%;
            background: rgba(32, 156, 238, 0.1);
            box-shadow: 0 4px 16px rgba(32, 156, 238, 0.3);
        }

        .magnifier::after {
            content: "";
            position: absolute;
            width: 6px;
            height: 50px;
            background: #209cee;
            bottom: -45px;
            right: -15px;
            transform: rotate(-45deg);
            border-radius: 3px;
        }

        .folder-icon {
            position: absolute;
            bottom: 30px;
            right: -20px;
            width: 80px;
            height: 65px;
            background: linear-gradient(135deg, #ff9a56, #ff6b9d);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
            animation: float 3s ease-in-out infinite 0.5s;
        }

        .folder-icon::before {
            content: "";
            position: absolute;
            top: -8px;
            left: 0;
            width: 35px;
            height: 12px;
            background: linear-gradient(135deg, #ff9a56, #ff6b9d);
            border-radius: 4px 4px 0 0;
        }

        .checkmark-badge {
            position: absolute;
            top: 30px;
            right: -25px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ffd93d, #ffa500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
            animation: float 3s ease-in-out infinite 1s;
        }

        .checkmark-badge::before {
            content: "✓";
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        /* Company Section */
        .company-section {
            background-color: var(--bg);
            text-align: center;
            padding: 60px 20px;
        }

        .company-title {
            background-color: var(--bg);
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: clamp(24px, 4vw, 36px);
            color: var(--text-1);
            margin-bottom: 50px;
        }

        .logo-slider {
            overflow: hidden;
            position: relative;
            width: 100%;
            background: var(--bg);
        }

        .logo-track {
            display: flex;
            width: fit-content;
        }

        .logo-group {
            display: flex;
            align-items: center;
            gap: 80px;
            padding: 0 40px;
        }

        .logo-item {
            flex-shrink: 0;
            height: 50px;
            display: flex;
            align-items: center;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .logo-item:hover {
            opacity: 1;
        }

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

        /* Testimonial Section */
        .testimonial-section {
            background-color: var(--bg);
            text-align: center;
            padding: 30px 20px;
        }

        .testimonial-title {
            font-family: var(--h2-font-family);
            font-weight: var(--h2-font-weight);
            font-size: clamp(24px, 4vw, 36px);
            color: var(--text-1);
            margin-bottom: 60px;
        }

        .review-slider {
            overflow: hidden;
            position: relative;
            width: 100%;
            padding: 30px 0px;
        }

        .review-track {
            display: flex;
            width: fit-content;
            gap: 30px;
        }

        .review-group {
            display: flex;
            gap: 30px;
        }

        .review-box {
            flex-shrink: 0;
            width: 450px;
            background: var(--card);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: left;
            transition: transform 0.3s;
        }

        .review-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            flex-shrink: 0;
        }

        .review-avatar.avatar-1 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .review-avatar.avatar-2 {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .review-avatar.avatar-3 {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .review-avatar.avatar-4 {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .review-info h3 {
            font-family: var(--h6-font-family);
            font-weight: var(--h6-font-weight);
            font-size: var(--h6-font-size);
            color: var(--text-1);
            margin-bottom: 4px;
        }

        .review-info p {
            font-family: var(--body-font-family);
            font-size: 14px;
            color: var(--text-2);
        }

        .review-text {
            font-family: var(--body-font-family);
            font-size: var(--body-font-size);
            color: var(--text-2);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .star {
            color: #ffc107;
            font-size: 20px;
        }

        .rating-text {
            margin-left: 8px;
            font-family: var(--body-font-family);
            font-weight: 600;
            color: var(--text-1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo-group {
                gap: 50px;
            }

            .logo-item {
                height: 35px;
            }

            .review-box {
                width: 350px;
                padding: 20px;
            }

            .review-avatar {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .logo-group {
                gap: 40px;
                padding: 0 20px;
            }

            .review-box {
                width: 300px;
                padding: 18px;
            }

            .review-text {
                font-size: 14px;
            }
        }
        
        .footer {
            background-color: var(--card);
            padding: 60px 80px 40px;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1440px;
            margin: 0 auto;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 50px;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .brand-name {
            font-family: var(--h3-font-family);
            font-weight: var(--h3-font-weight);
            font-size: 28px;
            color: var(--text-1);
        }

        .footer-column h3 {
            font-family: var(--h5-font-family);
            font-weight: var(--h5-font-weight);
            font-size: var(--h5-font-size);
            color: var(--text-1);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links li a {
            font-family: var(--body-font-family);
            font-weight: var(--body-font-weight);
            font-size: var(--body-font-size);
            color: var(--text-2);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links li a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-2);
            font-family: var(--body-font-family);
            font-size: var(--body-font-size);
            transition: all 0.3s;
        }

        .social-link:hover {
            color: var(--primary);
            transform: translateX(4px);
        }

        .social-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .linkedin-icon { color: #0077b5; }
        .instagram-icon { 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .facebook-icon { color: #1877f2; }
        .youtube-icon { color: #ff0000; }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-family: var(--body-font-family);
            font-size: var(--body-font-size);
            color: var(--text-2);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-bottom {
            max-width: 1440px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .copyright {
            font-family: var(--caption-font-family);
            font-weight: var(--caption-font-weight);
            font-size: var(--caption-font-size);
            color: var(--text-2);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .footer {
                padding: 50px 40px 30px;
            }

            .footer-columns {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }

            .footer-contact {
                grid-column: 1 / -1;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 20px 30px;
            }

            .footer-brand {
                margin-bottom: 40px;
            }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-contact {
                grid-column: 1;
                grid-template-columns: 1fr;
            }

            .brand-name {
                font-size: 24px;
            }

            .footer-column h3 {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 30px 15px 20px;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
            }

            .logo-icon svg {
                width: 24px;
                height: 24px;
            }

            .brand-name {
                font-size: 20px;
            }

            .footer-links li a,
            .contact-item,
            .social-link {
                font-size: 14px;
            }
        }


        