﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
}

/* HEADER */
header {
    background: rgba(0, 0, 0, 0.95);
    padding: 16px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-header {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}

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

    nav a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: 0.3s ease;
    }

        nav a:hover {
            color: #FFD700;
        }

/* SECTION */
section {
    padding: 100px 50px;
    scroll-margin-top: 100px;
}

    section h2 {
        color: #FFD700;
        margin-bottom: 25px;
        text-align: center;
        font-size: 40px;
    }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 100px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)), url("images/image_0_0.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}

.hero h2 {
    color: #fff;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 35px;
}

/* BUTTON */
.btn {
    background: #FFD700;
    color: #000;
    padding: 14px 30px;
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    transition: 0.3s ease;
    font-weight: 600;
}

    .btn:hover {
        background: #e6c200;
        transform: translateY(-2px);
    }

/* GRID UMUM */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* CARD */
.card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 18px;
    transition: 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.18);
    }

/* GAMBAR UMUM */
.img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* GALERI */
#galeri {
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

    #galeri h2 {
        margin-bottom: 35px;
    }

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

.gallery-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: slideGallery 18s linear infinite;
}

.gallery-slide {
    flex: 0 0 420px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

    .gallery-slide img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .gallery-slide:hover img {
        transform: scale(1.05);
    }

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

@keyframes slideGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-444px * 3));
    }
}

/* LIST */
ul {
    padding-left: 20px;
    line-height: 1.8;
}

/* FOOTER */
footer {
    background: #000;
    text-align: center;
    padding: 30px;
    color: #aaa;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    header {
        padding: 14px 28px;
    }

    .logo-header {
        width: 78px;
    }

    nav {
        gap: 18px;
    }

        nav a {
            font-size: 15px;
        }

    section {
        padding: 90px 28px;
    }

        section h2 {
            font-size: 34px;
        }

    .gallery-slide {
        flex: 0 0 340px;
    }

        .gallery-slide img {
            height: 220px;
        }

    @keyframes slideGallery {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-364px * 3));
        }
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    nav {
        gap: 14px;
    }

    .hero {
        padding: 150px 20px 90px;
    }

        .hero h2 {
            font-size: clamp(34px, 7vw, 48px);
        }

        .hero p {
            font-size: 16px;
        }

    section {
        padding: 80px 20px;
    }

        section h2 {
            font-size: 30px;
        }

    .gallery-slide {
        flex: 0 0 280px;
    }

        .gallery-slide img {
            height: 190px;
        }

    @keyframes slideGallery {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-304px * 3));
        }
    }
}

/* VISI & MISI SCROLL ANIMATION */
.visi-misi-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    opacity: 0;
    transition: opacity 1s ease; /* Hanya mengubah opacity */
}

.visi-misi {
    background: #111;
    padding: 20px;
    border-radius: 15px;
    width: 45%;
}

    .visi-misi h3 {
        color: #FFD700;
    }

    .visi-misi p {
        color: #fff;
        line-height: 1.6;
    }

/* Animasi muncul dengan perubahan opacity */
.visi-misi-container.visible {
    opacity: 1;
}

#profil {
    padding: 100px 40px;
    background: #1a1a1a;
    text-align: center;
}

.profil-content {
    margin-bottom: 50px;
}

#profil h2 {
    font-size: 32px;
    color: #FFD700;
}

#profil p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .visi-misi-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .visi-misi {
        width: 80%;
    }
}
#layanan {
    padding: 60px 40px;
    background: #0d0d0d;
    text-align: center;
}

.service-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#layanan h2 {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 40px;
}

#layanan .service-card h3 {
    font-size: 24px;
    color: #FFD700;
}

#layanan p {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}
#alat {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
}

    #alat p {
        font-size: 18px;
        color: #fff;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 30px;
    }

    #alat .btn {
        background: #FFD700;
        color: #000;
        padding: 14px 30px;
        display: inline-block;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
    }
#legalitas {
    padding: 60px 40px;
    background: #1a1a1a;
    text-align: center;
}

.legal-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.legal-item {
    background: #111;
    padding: 20px;
    border-radius: 10px;
}

    .legal-item img {
        width: 100%;
        max-width: 400px;
        object-fit: contain;
    }
#kontak {
    padding: 60px 40px;
    background: #0d0d0d;
    text-align: center;
}

.contact-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-btn {
    background: #FFD700;
    color: #000;
    padding: 15px 30px;
    display: inline-block;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}

    .contact-btn:hover {
        background: #e6c200;
    }

    .contact-btn i {
        margin-right: 10px;
    }
/* ALAT & INFRASTRUKTUR */
#alat {
    padding: 100px 40px;
    background: #1a1a1a;
    text-align: center;
}

    #alat h2 {
        color: #FFD700;
        margin-bottom: 30px;
    }

    #alat p {
        font-size: 18px;
        color: #fff;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto 40px;
    }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #111;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

    .card h3 {
        color: #FFD700;
        margin-bottom: 15px;
    }

    .card p {
        color: #fff;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .card a {
        background: #FFD700;
        color: #000;
        padding: 12px 20px;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        transition: 0.3s;
    }

        .card a:hover {
            background: #e6c200;
            transform: translateY(-2px);
        }

/* Gambar Alat dalam Bingkai */
.img-container {
    margin: 20px 0;
    padding: 10px;
    border: 3px solid #FFD700; /* Bingkai kuning */
    border-radius: 15px;
    background-color: #111; /* Latar belakang gelap di dalam bingkai */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Bayangan lembut */
}

    .img-container .img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 10px; /* Membuat sudut gambar lebih halus */
        display: block;
    }

/* Tombol Kembali dengan Ikon Panah */
.back-btn {
    background: #FFD700;
    color: #000;
    padding: 8px 15px; /* Ukuran tombol lebih kecil */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 1%;
    transition: 0.3s ease;
    font-weight: 600;
    font-size: 14px; /* Ukuran font lebih kecil */
    margin-top: 20px;
}

    .back-btn i {
        margin-right: 8px; /* Memberi sedikit jarak antara ikon dan teks */
    }

    .back-btn:hover {
        background: #e6c200;
        transform: translateY(-2px);
    }

    .back-btn:focus {
        outline: none; /* Menghilangkan outline saat tombol difokuskan */
    }/* =========================
   LAYANAN KAMI
========================= */
/* =========================
   LAYANAN KAMI - FINAL SESUAI TEMA
========================= */
#layanan.layanan-section {
    padding: 90px 8%;
    background: #000000;
    text-align: center;
}

#layanan.layanan-section .section-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

#layanan.layanan-section .section-tag {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 215, 0, 0.22);
}

#layanan.layanan-section h2 {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 18px;
    text-align: center;
}

#layanan.layanan-section .section-header p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

#layanan.layanan-section .layanan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 50px;
}

#layanan.layanan-section .service-card {
    position: relative;
    background: linear-gradient(180deg, #0d1522 0%, #132238 100%);
    padding: 34px 28px;
    border-radius: 24px;
    border: 1px solid rgba(79, 152, 255, 0.22);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 260px;
    text-align: left;
}

#layanan.layanan-section .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f98ff, #8fc2ff);
}

#layanan.layanan-section .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

#layanan.layanan-section .service-number {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #8fc2ff;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

#layanan.layanan-section .service-card h3 {
    font-size: 1.7rem;
    color: #FFD700;
    margin-bottom: 16px;
    line-height: 1.35;
}

#layanan.layanan-section .service-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    #layanan.layanan-section {
        padding: 70px 6%;
    }

    #layanan.layanan-section h2 {
        font-size: 40px;
    }

    #layanan.layanan-section .layanan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #layanan.layanan-section {
        padding: 60px 20px;
    }

    #layanan.layanan-section h2 {
        font-size: 34px;
    }

    #layanan.layanan-section .section-header p {
        font-size: 16px;
    }

    #layanan.layanan-section .service-card {
        min-height: auto;
        padding: 28px 22px;
    }

    #layanan.layanan-section .service-card h3 {
        font-size: 1.4rem;
    }
}/* =========================
   VISI & MISI - SESUAI TEMA
========================= */
#profil {
    padding: 100px 40px;
    background: #111111;
    text-align: center;
}

#profil .profil-content {
    max-width: 900px;
    margin: 0 auto 55px;
}

#profil h2 {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 20px;
}

#profil .profil-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
    max-width: 860px;
    margin: 0 auto;
}

#profil .visi-misi-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 1s ease;
}

#profil .visi-misi-container.visible {
    opacity: 1;
}

#profil .visi-misi {
    position: relative;
    background: linear-gradient(180deg, #0d1522 0%, #132238 100%);
    padding: 34px 30px;
    border-radius: 24px;
    border: 1px solid rgba(79, 152, 255, 0.22);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    text-align: left;
    width: 100%;
}

#profil .visi-misi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f98ff, #8fc2ff);
}

#profil .visi-misi h3 {
    font-size: 30px;
    color: #FFD700;
    margin-bottom: 16px;
    line-height: 1.3;
}

#profil .visi-misi p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* Efek hover halus */
#profil .visi-misi:hover {
    transform: translateY(-6px);
    transition: all 0.3s ease;
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    #profil .visi-misi-container {
        grid-template-columns: 1fr;
    }

    #profil h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    #profil {
        padding: 80px 20px;
    }

    #profil h2 {
        font-size: 30px;
    }

    #profil .profil-content p {
        font-size: 16px;
    }

    #profil .visi-misi {
        padding: 28px 22px;
    }

    #profil .visi-misi h3 {
        font-size: 26px;
    }

    #profil .visi-misi p {
        font-size: 15px;
    }
}/* =========================
   SYSTEM DIGITAL PREVIEW
========================= */
#system-digital-preview {
    padding: 80px 40px;
    background: #0d0d0d;
    text-align: center;
}

#system-digital-preview h2 {
    color: #FFD700;
    font-size: 40px;
    margin-bottom: 30px;
}

.digital-preview-link {
    position: relative;
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(79, 152, 255, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-preview-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.digital-preview-link img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.digital-preview-link:hover img {
    transform: scale(1.03);
    filter: brightness(0.82);
}

.digital-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
}

.digital-preview-overlay span {
    background: rgba(255, 215, 0, 0.95);
    color: #000;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #system-digital-preview {
        padding: 60px 20px;
    }

    #system-digital-preview h2 {
        font-size: 30px;
    }

    .digital-preview-link img {
        height: 300px;
    }

    .digital-preview-overlay span {
        font-size: 14px;
        padding: 12px 18px;
    }
}/* =========================
   SYSTEM DIGITAL WORKFLOW
   MIRIP LAYOUT GAMBAR
========================= */
.workflow-page {
    position: relative;
    min-height: 100vh;
    padding: 140px 48px 70px;
    background:
        linear-gradient(90deg, rgba(255, 170, 0, 0.18) 0%, rgba(255, 120, 0, 0.06) 26%, rgba(0, 0, 0, 0) 42%),
        linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    overflow: hidden;
}

/* background dekoratif */
.workflow-bg-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.18;
}

.workflow-page .shape-1 {
    width: 900px;
    height: 900px;
    border: 90px solid rgba(255, 140, 0, 0.16);
    border-radius: 50%;
    top: 80px;
    left: 250px;
    filter: blur(1px);
}

.workflow-page .shape-2 {
    width: 300px;
    height: 540px;
    background: linear-gradient(180deg, rgba(255, 98, 0, 0.16), rgba(255, 98, 0, 0.04));
    top: 170px;
    left: 530px;
}

.workflow-page .shape-3 {
    width: 420px;
    height: 420px;
    border: 55px solid rgba(79, 152, 255, 0.14);
    border-radius: 40px;
    right: 90px;
    top: 100px;
    transform: skewX(-12deg);
}

.workflow-head {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: start;
    gap: 30px;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
}

.workflow-title-wrap h1 {
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.05;
    color: #f2b320;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -1px;
}

.workflow-title-line {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.72);
}

/* top stage */
.workflow-stage {
    position: relative;
    z-index: 2;
}

.stage-top {
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1.15fr;
    gap: 22px;
    align-items: center;
    margin-bottom: 42px;
    padding-left: 360px;
}

.flow-card h3,
.print-area h3 {
    color: #f2b320;
    font-size: clamp(26px, 2vw, 36px);
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 700;
    text-align: center;
}

.flow-card.registrasi-card h3 {
    white-space: nowrap;
}

.flow-image-frame {
    background: rgba(255, 255, 255, 0.03);
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.flow-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.checker-card .flow-image-frame,
.antrian-card .flow-image-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 230px;
    margin: 0 auto;
}

.registrasi-card .laptop-frame {
    width: 100%;
    max-width: 310px;
    aspect-ratio: 1.35 / 1;
    margin: 0 auto;
    border-radius: 10px;
    border-width: 3px;
    position: relative;
}

.registrasi-card .laptop-frame::after {
    content: "";
    position: absolute;
    width: 116%;
    height: 10px;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    background: #d8d8d8;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
}

.flow-arrow span {
    display: inline-block;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
}

/* curve arrow */
.curve-arrow-wrap {
    position: absolute;
    left: 375px;
    top: 385px;
    width: 260px;
    height: 210px;
    z-index: 2;
}

.curve-arrow-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.curve-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.96);
    stroke-width: 4;
    stroke-linecap: round;
}

.curve-tip {
    fill: none;
    stroke: rgba(255, 255, 255, 0.96);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.curve-dot {
    fill: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.85));
}

/* bottom */
.stage-bottom {
    display: grid;
    grid-template-columns: 280px 150px 180px 1fr;
    gap: 22px;
    align-items: center;
    padding-left: 150px;
    position: relative;
    z-index: 2;
}

.print-area h3 {
    text-align: left;
    margin-bottom: 10px;
}

.print-frame {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1.1 / 1;
}

.sync-line-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-line {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    overflow: visible;
}

.sync-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0) 100%);
    animation: syncGlow 2.2s linear infinite;
}

.sync-text {
    position: absolute;
    left: 8px;
    top: -26px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 0.4px;
}

.sync-arrow {
    position: absolute;
    right: -6px;
    top: -19px;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
}

.sync-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    transform: translateY(-50%);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    animation: moveDot 2.2s linear infinite;
}

.mobile-area {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 145px;
    height: 300px;
    border-radius: 28px;
    background: #f4f4f4;
    padding: 10px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
    position: relative;
}

.phone-mockup::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 6px;
    border-radius: 999px;
    background: #bcbcbc;
    z-index: 2;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
    display: block;
}

.desc-area {
    max-width: 560px;
}

.desc-area p {
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.94);
    margin: 0;
}

/* page mark */
.page-mark {
    position: absolute;
    left: 92px;
    bottom: 58px;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 1px;
    z-index: 2;
}

/* corner button */
.corner-next {
    position: absolute;
    right: 42px;
    bottom: 42px;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 52px;
    line-height: 1;
    z-index: 2;
    transition: transform 0.25s ease;
}

.corner-next:hover {
    transform: translateX(6px);
}

/* animations */
.fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

.animate-arrow span {
    animation: arrowPulse 1.8s ease-in-out infinite;
}

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

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.65;
    }
    50% {
        transform: translateX(-8px);
        opacity: 1;
    }
}

@keyframes syncGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes moveDot {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    85% { opacity: 1; }
    100% { left: calc(100% - 12px); opacity: 0; }
}

/* responsive */
@media (max-width: 1280px) {
    .workflow-page {
        padding: 130px 30px 60px;
    }

    .stage-top {
        padding-left: 260px;
        grid-template-columns: 1fr 50px 1fr 50px 1.05fr;
    }

    .stage-bottom {
        padding-left: 80px;
        grid-template-columns: 250px 120px 170px 1fr;
    }

    .curve-arrow-wrap {
        left: 270px;
        top: 390px;
    }
}

@media (max-width: 1100px) {
    .workflow-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .workflow-logo-wrap img {
        width: 210px;
    }

    .stage-top {
        padding-left: 0;
        grid-template-columns: 1fr;
    }

    .flow-arrow {
        transform: rotate(-90deg);
        font-size: 44px;
    }

    .curve-arrow-wrap {
        display: none;
    }

    .stage-bottom {
        padding-left: 0;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .print-area h3 {
        text-align: center;
    }

    .print-frame {
        margin: 0 auto;
    }

    .desc-area {
        max-width: 100%;
        text-align: center;
    }

    .sync-line-wrap {
        padding: 0 50px;
    }

    .page-mark {
        left: 30px;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .workflow-page {
        padding: 120px 20px 50px;
    }

    .workflow-title-wrap h1 {
        font-size: 44px;
    }

    .flow-card h3,
    .print-area h3 {
        font-size: 24px;
    }

    .desc-area p {
        font-size: 17px;
    }

    .sync-line-wrap {
        padding: 0 20px;
    }

    .corner-next {
        right: 20px;
        bottom: 20px;
        width: 56px;
        height: 56px;
        font-size: 40px;
    }

    .page-mark {
        font-size: 14px;
    }
}/* =========================
   ALAT PREVIEW SECTION
========================= */
#alat.alat-preview-section {
    padding: 90px 40px;
    background: #111111;
    text-align: center;
}

#alat.alat-preview-section .section-header {
    max-width: 860px;
    margin: 0 auto 36px;
}

#alat.alat-preview-section .section-tag {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.22);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#alat.alat-preview-section h2 {
    color: #FFD700;
    font-size: 42px;
    margin-bottom: 16px;
}

#alat.alat-preview-section .section-header p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
}

.alat-preview-link {
    position: relative;
    display: block;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(79, 152, 255, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alat-preview-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.alat-preview-link img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.alat-preview-link:hover img {
    transform: scale(1.03);
    filter: brightness(0.82);
}

.alat-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
}

.alat-preview-overlay span {
    background: rgba(255, 215, 0, 0.96);
    color: #000;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #alat.alat-preview-section {
        padding: 70px 20px;
    }

    #alat.alat-preview-section h2 {
        font-size: 32px;
    }

    #alat.alat-preview-section .section-header p {
        font-size: 16px;
    }

    .alat-preview-link img {
        height: 300px;
    }

    .alat-preview-overlay span {
        font-size: 14px;
        padding: 12px 18px;
    }
}