@font-face { 
    font-family: 'inter'; src: url('assets/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; 
}
@font-face { 
    font-family: 'inter'; src: url('assets/Inter-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; 
}
@font-face { 
    font-family: 'inter'; src: url('assets/Inter-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; 
}
@font-face { 
    font-family: 'inter'; src: url('assets/Inter-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; 
}
@font-face { 
    font-family: 'inter'; src: url('assets/Inter-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; 
}
@font-face { 
    font-family: 'mono'; src: url('assets/Geist-Mono.woff2') format('woff2'); font-weight: normal; font-style: normal; 
}
:root {
    /* --- Warna Utama --- */
    --color-text:        #0f1419;
    --color-text-muted:  #555555;
    --color-text-light:  #777777;
    --color-border:      #e0e0e0;
    --color-border-soft: #eeeeee;

    /* --- Warna Aksen --- */
    --color-accent:      #222222;
    --color-accent-2:    #000000;

    /* --- Font --- */
    --font-inter:      'inter', sans-serif;
    --font-mono:      'mono', monospace;

    /* --- Spacing --- */
    --space-xs:    0.5rem;
    --space-sm:    1rem;
    --space-md:    2rem;
    --space-lg:    4rem;
    --space-xl:    2rem;
    --space-2xl:   8rem;

    /* --- Border Radius --- */
    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   22px;
    --radius-full: 999px;

    /* --- Shadows --- */
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:   0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg:   10px 20px 40px rgba(0,0,0,0.07);

    /* --- Transitions --- */
    --transition:  0.25s ease;
    --transition-slow: 0.4s ease;

    /* --- Container --- */
    --container-max: 1100px;
    --container-pad: 1.5rem;
}



/* ================================================================
   2. RESET & BASE
================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-inter);
    background-color: #eeeeee;
    color: var(--color-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

main {
    max-width: var(--main-max-width, 640px);
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

b {
    font-weight: 600;
}

ul {
    list-style: none;
}


/* ================================================================
   3. TYPOGRAPHY
================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-inter);
    font-weight: 400;
    line-height: 1.15;
}

p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

strong {
    font-weight: 500;
    color: var(--color-text);
}


/* ================================================================
   4. LAYOUT UTILITIES
================================================================ */
.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: var(--space-xl) 0;
}

.lazyload {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.lazyload {
  filter: blur(10px);
  transition: filter 0.4s ease;
}

img.lazyloaded {
  filter: blur(0);
}

/* ================================================================
   5. BUTTONS
================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    border: none;
}

.btn-email-porto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
}
.btn-kirim-email {
    font-family: var(--font-inter);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    height: 35px;
    padding: 0 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Tombol hitam (primary) */
.btn--primary {
    background: linear-gradient(180deg, #222222 0%, #000000 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

/* Tombol outline putih */
.btn--outline {
    background-color: #ffffff;
    color: var(--color-text);
    border: 1px solid var(--color-border-soft);
}

/* Tombol terang (untuk section gelap) */
.btn--light {
    background-color: #ffffff;
    color: var(--color-text);
    font-weight: 500;
}


/* ================================================================
   6. NAVBAR
================================================================ */
.back-btn-navbar {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.9rem;
    color: #fff;
}

.back-btn-navbar__icon {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.back-btn-navbar:focus {
  outline: none;
}

.back-btn-navbar__icon:hover {
    fill: #4b4b4b;
}

.navbar {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.navbar__inner {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 0.875rem;
    font-family: var(--font-inter);
    font-weight: 400;
    transition: background-color var(--transition);
}

.nav-link img {
    width: 24px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.nav-icon {
    font-size: 0.6rem;
    line-height: 1;
}


/* ================================================================
   7. HERO SECTION
================================================================ */


.hero {
    padding-bottom: var(--space-xl);
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero__banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 0 0;
}

.hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.hero__grid {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero__avatar {
    margin-top: -30px;
    margin-bottom: 10px;
    position: relative;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 3;
}

.hero__avatar canvas {
    position: absolute;
    inset: 0;
    width: 110px;
    height: 110px;
    pointer-events: none;
}

.hero__avatar .avatar-img-wrap {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: var(--shadow-md);
}

.hero__avatar .avatar-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__name-block {
    margin-top: 0;
}

.hero__top {
    display: flex; justify-content: space-between; align-items: center;
    position: relative;
}

.hero__content {

    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 680px;
}

.hero__identity {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero__avatar img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-sizing: border-box;
}

.hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__name {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.hero__role {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

.hero__bio {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 150%;
    max-width: 560px;
    margin-top: 12px;
}

.hero__ig {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: #1d9bf0;
    line-height: 150%;
    max-width: 560px;
    margin-top: 12px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.hero__loc {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.80rem;
    color: rgb(113, 118, 123);
    margin-top: 15px;
}

.loc__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.loc__item {
    display: flex;
    align-items: center; 
    gap: 2px;
}

/* ================================================================
   8. SECTION HEADING
================================================================ */
.section__heading {
    margin-bottom: var(--space-md);
}

.section__title {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-text);
}


/* ================================================================
   9. PROJECT CARDS
================================================================ */
.card-border-service {
    background-color: #f2f2f2;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem;
}
.projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.project-padding {
    padding-bottom: 18px;
}
.project-card {
    display: block;
    background-color: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.project-card__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin: 0.75rem 0.75rem 0;
}

.project-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-card__thumb img {
    transform: scale(1.04);
}

.project-card__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    padding: 1rem 1.25rem 1.25rem;
}

.project-card__name {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text);
    white-space: nowrap;
}

.project-card__divider {
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--color-text-light);
    flex-shrink: 0;
}

.project-card__category {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 0.67rem;
    color: var(--color-text-light);
}


/* ================================================================
   10. SERVICE CARDS
================================================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.card-border-keahlian {
    background-color: #f2f2f2;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem;
}

.service-card {
    background-color: #f3f3f3;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-teks {
    --card-accent:#fff;
    margin-top: 14px;
    box-shadow: rgba(0, 0, 0, 0.09) 0.0796192px 0.557334px 0.78819px -0.4375px, rgba(0, 0, 0, 0.1) 0.241451px 1.69015px 2.39024px -0.875px, rgba(0, 0, 0, 0.11) 0.638265px 4.46786px 6.3185px -1.3125px, rgba(0, 0, 0, 0.16) 2px 14px 19.799px -1.75px;
}

.hero-card {
    background-color: #f2f2f2;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 1.25rem;
    transition: transform var(--transition);
    position: relative;
    overflow: visible;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card__number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    color: var(--color-text-muted);
    line-height: 1;
    opacity: 0.4;
}

.service-card__body {
    background-color: var(--card-accent, #f5f5f5);
    border: 1px solid var(--card-border, #e0e0e0);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.service-card__title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}

.service-card__desc {
font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}


/* ================================================================
   11. ABOUT SECTION
================================================================ */
.card-border-tentang {
    background-color: #f2f2f2;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem;
}
.about__layout {
    display: grid;
    gap: var(--space-lg);
    align-items: start;
}

.about__left {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.about__bio {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.25rem;
    background-color: #f9f9f9;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    line-height: 1;
}

.stat__label {
    font-size: 0.825rem;
    color: var(--color-text-light);
}
/* ================================================================
   13. EXPERIENCE & TOOLS
================================================================ */
.card-border-pengalaman {
    background-color: #f2f2f2;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem;
}
.experience__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exp-item {
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background-color: #fcfcfc;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition);
    position: relative;
}

.exp-item:hover {
    box-shadow: var(--shadow-md);
}

.exp-item__logo {
    width: 60px;
    height: 60px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3.5px solid #ffffff;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.09) 0.0796192px 0.557334px 0.78819px -0.4375px, rgba(0, 0, 0, 0.1) 0.241451px 1.69015px 2.39024px -0.875px, rgba(0, 0, 0, 0.11) 0.638265px 4.46786px 6.3185px -1.3125px, rgba(0, 0, 0, 0.16) 2px 14px 19.799px -1.75px;
}

.exp-item__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-item__details {
    flex: 1;
    margin-top: 15px;
}

.exp-item__company {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.exp-item__role {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
}

.exp-item__jobdesk {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.79rem;
    color: var(--color-text-muted);
    margin-bottom: 0.15rem;
}

.exp-item__period {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--color-text-light);
    white-space: nowrap;
    position: absolute;
    top: 35px;
    right: 35px;
    bottom: 0;
}

/* Tools */
.card-border-tools {
    background-color: #f2f2f2;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem;
}
.tools__grid {
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tools-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background-color: #fcfcfc;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition);
    margin-top: 12px;
    border-style: dashed;
}

.tools-item__logo {
    width: 60px;
    height: 60px;
    border: 3.5px solid #ffffff;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: rgba(0, 0, 0, 0.09) 0.0796192px 0.557334px 0.78819px -0.4375px, rgba(0, 0, 0, 0.1) 0.241451px 1.69015px 2.39024px -0.875px, rgba(0, 0, 0, 0.11) 0.638265px 4.46786px 6.3185px -1.3125px, rgba(0, 0, 0, 0.16) 2px 14px 19.799px -1.75px;
}

.tools-item__details {
    flex: 1;
}

.tools-item__company {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.tools-item__role {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
}

.tool-chip {
    padding: 0.45rem 1rem;
    background-color: #f2f2f2;
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: background-color var(--transition), color var(--transition);
}

.tool-chip:hover {
    background-color: var(--color-text);
    color: #ffffff;
}


/* ================================================================
   14. CONTACT SECTION
================================================================ */
.contact {
    background-color: #f2f2f2;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem;
}

.contact__inner {
    text-align: center;
    padding: var(--space-xl) var(--container-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.contact__title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 3rem;
    color: var(--color-text);
    line-height: 1.2;
}

.contact__title em {
    font-style: italic;
    color: var(--color-text);
}

.contact__sub {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-text);
}

.contact__socials {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact__socials a {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.77rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.contact__socials a:hover {
    color: var(--color-text-muted);
}


/* ================================================================
   15. FOOTER
================================================================ */
.footer {
    padding: 110px;
    text-align: center;
}

.footer p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-text-light);
}


/* ================================================================
   16. SCROLL ANIMATIONS
   — Elemen yang punya class .fade-in akan muncul saat discroll
================================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================================
   17. RESPONSIVE — TABLET (max 1024px)
================================================================ */
@media (max-width: 1024px) {
    .projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact__title {
        font-size: 2.25rem;
    }
    .faceswap-card__title {
        font-size: 15px;
    }
    .videoedit-card__title {
        font-size: 15px;
    }
    .faceswap-card__btn {
        font-size: 13px;
    }
    .videoedit-card__btn {
        font-size: 13px;
    }
}

@media (min-width: 1024px) {
    .faceswap-card__title {
        font-size: 16px;
    }
    .videoedit-card__title {
        font-size: 16px;
    }
}

/* ================================================================
   19. porto
================================================================ */

.back-btn__icon {
        width: 30px;
        height: 30px;
        fill: var(--color-text-muted);
    }
    .back-btn__icon:hover {
        fill: #000000;
    }
    .project-detail {
            padding-top: calc(var(--space-xl));
            padding-bottom: var(--space-xl);
        }

        /* Back button */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-family: var(--font-inter);
            font-weight: 400;
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin-bottom: var(--space-md);
            transition: color var(--transition), gap var(--transition);
        }

        .back-btn:hover {
            color: var(--color-text);
            gap: 0.75rem;
        }

        .back-btn__arrow {
            font-size: 1rem;
            transition: transform var(--transition);
        }

        .back-btn:hover .back-btn__arrow {
            transform: translateX(-3px);
        }

        /* Project header */
        .project-header {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: start;
            gap: 20px;
            margin-bottom: var(--space-lg);
        }

        .project-header__title {
            font-family: var(--font-inter);
            font-weight: 700;
            font-size: 3.5rem;
            color: var(--color-text);
            line-height: 1.1;
        }

        .project-header__meta {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            align-items: flex-end;
        }

        .meta-item {
            text-align: right;
        }

        .meta-item__label {
            font-family: var(--font-inter);
            font-weight: 400;
            font-size: 10px;
            color: var(--color-text-light);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            display: block;
            margin-bottom: 0.1rem;
        }

        .meta-item__value {
            font-family: var(--font-inter);
            font-weight: 500;
            font-size: 15px;
            color: var(--color-text);
        }

        /* Hero image */
        .project-hero-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-lg);
            box-shadow: var(--shadow-lg);
        }

        /* Description */
        .project-desc {
            max-width: 720px;
            margin-bottom: var(--space-lg);
        }

        .project-desc p {
            font-family: var(--font-inter);
            font-weight: 400;
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--color-text-muted);
        }

        /* Gallery */
        .project-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.25rem;
            margin-bottom: var(--space-lg);
        }

        .project-gallery img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition-slow), box-shadow var(--transition-slow);
        }

        .project-gallery img:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .project-link-section p {
            font-family: var(--font-inter);
            font-weight: 400;
            font-size: 0.95rem;
            flex: 1;
        }

        /* Project navigation (prev / next) */
        .project-nav {
            display: flex;
            justify-content: space-between;
            gap: var(--space-md);
            padding-top: var(--space-md);
            border-top: 1px solid var(--color-border-soft);
        }

        .project-nav__item {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .project-nav__item--next {
            text-align: right;
        }

        .project-nav__label {
            font-family: var(--font-inter);
            font-weight: 400;
            font-size: 10px;
            color: var(--color-text-light);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .project-nav__name {
            font-family: var(--font-inter);
            font-weight: 400;
            font-size: 14px;
            color: var(--color-text);
            transition: color var(--transition);
        }

        .project-nav__item:hover .project-nav__name {
            color: var(--color-text-muted);
        }

.video-animasi {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    border-radius: 15px;
}
.card-ss {
    background-color: #f2f2f2;
    border-radius: 18px;
    padding: 0.85rem;
}
.ss-img-vid {
width: 100%;
object-fit: cover;
border-radius: 12px;
margin-bottom: 14px;
box-shadow: var(--shadow-lg);
}
.ss-img-vid {
    cursor: pointer;
    width: 100%;
    max-width: 640px;
    border-radius: 15px;
}
.popup-gambar {
    border: none;
    outline: none;
    padding: 0;
    background: transparent;
    border-radius: 5px;
    margin: auto;
    overflow: visible;
}

.popup-gambar::backdrop {
    background: rgba(0, 0, 0, 0.8);
}

.popup-gambar img {
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    border-radius: 5px;
}
body:has(dialog[open]) {
    overflow: hidden;
}
.modal-content {
    position: relative; /* Wajib biar tombol bisa nempel sini */
    display: inline-block; /* Ukuran container ngikutin gambar */
}
.modal-content img {
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    border-radius: 15px; /* Border radius dipindah ke gambarnya */
}
.close-hint {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 15px;
    font-family: sans-serif;
    font-size: 14px;
    pointer-events: none; /* Biar klik tetep nembus ke dialog */
}
.btn-liat-full-porto  {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    border: none;
    background: linear-gradient(90deg, #222222dc 0%, #000000a1 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.teks-judul-preview {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 12px;
    color: var(--color-text-muted);
    padding-bottom: 21px;
    padding-top: 15px;
    padding-left: 10px;
}
.video-responsive {
    position: relative;
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
}
.video-responsive iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
}
.video-responsive-vertikal {
    position: relative;
    width: 100%;
    max-width: 435px;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    margin: 0 auto;
}
.video-responsive-vertikal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
}
.video-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.video-animasi {
  display: block;
  width: 100%;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}
.custom-link {
    font-family: var(--font-inter);
    font-weight: 600;
    color: #007bff;
    text-decoration: underline;
}

.faq-section {
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-mono);
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 32px;
  color: #111;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  font-family: var(--font-inter);
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  text-align: left;
}

.faq-icon {
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-answer {
  font-family: var(--font-inter);
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 20px;
  color: #444;
  line-height: 1.6;
}

.faq-answer p {
  font-size: 14px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

.katakata p{
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 12px;
    text-align: right;
}

.project-nav__item--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    color: gray;
}
.videoedit-card {
  background: #f2f2f2;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.videoedit-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.videoedit-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.videoedit-card__label {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 4px;
}

.videoedit-card__title {
  font-family: var(--font-inter);
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

.videoedit-card__btn {
  font-family: var(--font-inter);
  font-weight: 400;
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleDown {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.kelebihan {
    padding: 40px 0;
}

.kelebihan__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

.kelebihan__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kelebihan__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
}

.kelebihan__item:first-child {
    border-top: 1px solid #e5e5e5;
}

.kelebihan__icon {
    font-size: 14px;
    color: #111;
    margin-top: 2px;
    flex-shrink: 0;
}

.kelebihan__name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 2px;
}

.kelebihan__desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.faceswap-notes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.faceswap-notes__warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffebeb;
    border: 1px solid #fd8a8a;
    border-radius: 12px;
    padding: 16px;
}

.faceswap-notes__icon {
    color: #d90606;
    flex-shrink: 0;
    margin-top: 2px;
}

.faceswap-notes__label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #920e0e;
    margin-bottom: 4px;
}

.faceswap-notes__text {
    font-size: 0.875rem;
    color: #780f0f;
    line-height: 1.6;
}

.faceswap-notes__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background: #f2f2f2;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
}

.faceswap-notes__cta-title {
    font-weight: 700;
    font-size: 1rem;
    color: #111;
    margin-bottom: 4px;
}

.faceswap-notes__cta-desc {
    font-size: 0.875rem;
    color: #666;
}

.faceswap-notes__cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-inter);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
    border: none;
}

.faceswap-notes__cta-btn:hover {
    background: #006fa8;
}

.agreement {
    text-align: left;
    margin-top: 16px;
    font-size: 13px;
    color: #444;
}

.agreement__title {
    font-family: var(--font-inter);
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
}

.agreement__subtitle {
    font-family: var(--font-inter);
    font-weight: 400;
    margin-bottom: 8px;
}

.agreement__list {
    font-family: var(--font-inter);
    font-weight: 400;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.agreement__check {
    font-family: var(--font-inter);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #111;
}

.agreement__check input {
    margin-top: 2px;
    cursor: pointer;
}

.agreement__cta {
    font-family: var(--font-inter);
    font-weight: 600;
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.agreement__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, opacity 0.2s ease;
}



@media (max-width: 640px) {
    :root {
        --space-xl: 2rem;
    }

    .navbar__inner {
        gap: 0;
    }

    .nav-link span:not(.nav-icon) {
        display: none;
    }

    .hero__name {
        font-size: 1.2rem;
        margin-top: 0.2rem;
    }

    .projects__grid {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        grid-template-columns: 1fr 1fr;
    }

    .contact {
        margin: 0;
        border-radius: 0;
        border-radius: 18px;
    }

    .contact__title {
        font-size: 1.85rem;
    }

    .project-header {
        grid-template-columns: 1fr;
    }

    .project-header__meta {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 35px;
    }

    .meta-item {
        text-align: left;
    }

    .project-header__title {
        font-size: 2rem;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }
    .faceswap-card__title {
        font-size: 14px;
    }
    .videoedit-card__title {
        font-size: 14px;
    }
    .faceswap-card__btn {
        font-size: 10px;
    }
    .videoedit-card__btn {
        font-size: 10px;
    }
}
@media (max-width: 410px) {
    .hero__actions {
        position: relative;
    }
    .btn-email-porto {
        position: absolute;
        margin-top: 45px;
        right: 0;
    }
    .btn-email-porto img {
        height: 15px;
    }
    .btn--outline {
        margin-right: 0px;
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
        margin-bottom: 45px;
    }
    .btn-liat-full-porto  {
        font-size: 12px;
        padding: 8px 15px;
    }
    .faceswap-card__title {
        font-size: 14px;
    }
    .videoedit-card__title {
        font-size: 14px;
    }
    .faceswap-card__btn {
        font-size: 10px;
    }
    .videoedit-card__btn {
        font-size: 10px;
    }
}
@media (max-width: 380px) {
    .hero__loc {
        font-size: 0.70rem;
        flex-wrap: nowrap;
    }
    .loc__badge {
        font-size: 0.70rem;
    }
    .faceswap-card__title {
        font-size: 14px;
    }
    .videoedit-card__title {
        font-size: 14px;
    }
    .faceswap-card__btn {
        font-size: 10px;
    }
    .videoedit-card__btn {
        font-size: 10px;
    }
}