/* Root */
:root {
    --bg: #ffffff;
    --text-main: #1a1a1a;
    --text-sub: #444444;
    --accent: #5e5ce6;

    --gradient-left: #5e5ce6;
    --gradient-right: #ff00a1;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.06);

    --radius: 20px;
    --radius-pill: 100px;
    --max-width: 1100px;
}










/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    /* overscroll-behavior: none; */
}

body {
    font-family: 'Geist', 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
}










/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}










/* Background */
.hero-glow-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-gradient-blur {
    width: 70%;
    height: 80%;
    border-radius: 50%;
    background: linear-gradient(to right,
            var(--gradient-left),
            var(--gradient-right));
    opacity: 0.2;
    filter: blur(120px);
}










/* Navigation */
.site-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    
    width: calc(100% - 48px);
    max-width: var(--max-width);
    height: 64px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    z-index: 1000;
}

/* Logo */
.logo {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 768px) {
    .site-nav {
        top: 16px;
        height: 56px;
        padding: 0 16px;
        width: calc(100% - 32px);
    }

    .logo {
        font-size: 14px;
        letter-spacing: 0.4px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .site-nav {
        top: 12px;
        height: 52px;
        padding: 0 14px;
        width: calc(100% - 24px);
    }

    .logo {
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    .btn-nav {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* Mobile small */
@media (max-width: 360px) {
    .site-nav {
        justify-content: center;
        gap: 12px;
    }
}



/* Teks */
/* h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
} */










/* GLOBAL */
/* Btn section end */
/* Button Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;

    line-height: 1;
    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-nav {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
}

/* Black Button */
.btn-black {
    background: #000;
    color: #fff;
}

/* Primary Button */
.btn-primary {
    background: var(--text-main);
    color: #fff;
}

.btn-black,
.btn-primary {
    padding: clamp(12px, 2.5vw, 16px) clamp(20px, 5vw, 32px);
    font-size: clamp(14px, 2.5vw, 15px);
}

.btn-nav {
    padding: clamp(8px, 2vw, 10px) clamp(14px, 4vw, 20px);
    font-size: clamp(12px, 2.5vw, 13px);
}

@media (hover: hover) {
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 480px) {
    .btn {
        min-height: 44px; /* Apple & Google guideline */
    }
}


/* Btn section end */










/* Glass card section */
/* .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.card-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.card-desc {
    font-size: 20px;
    color: var(--text-sub);
}

.card-text-sub {
    margin-top: 12px;
    color: var(--text-sub);
} */
/* Glass card section end */

















/* Animation section */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}
/* Animation section end */











/* Responsive global */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* .hero-image-wrapper {
        max-width: 320px;
    } */

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        text-align: center;
    }

    .footer-right {
        align-items: center;
        gap: 24px;
    }

    .footer-nav {
        justify-content: center;
    }
}
/* Responsive global */
/* GLOBAL END */










/* Hero section */
.hero-fullscreen {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 24px 60px;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

/* TAG */
.hero-section-tag {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    padding: 6px 12px;
    background: rgba(94, 92, 230, 0.05);
    border-radius: 50px;
}

/* TITLE */
.hero-title {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #111 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    position: relative;
    padding-top: 150px;
}

/* IMAGE (DESKTOP & TABLET = TUMPANG TINDIH) */
.hero-image-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.hero-main-img {
    width: 45%;
    max-width: 900px;
    height: auto;
    rotate: 20deg;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.05));
}

/* SUB TEXT */
.hero-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-sub);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* --- HERO BENEFITS --- */
.hero-benefits {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap; /* Penting untuk mobile */
    margin: 40px 0 60px;
}

.hero-benefit-item {
    font-size: clamp(13px, 2vw, 15px);
    color: var(--text-main);
    font-weight: 500;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    white-space: nowrap; /* Teks tidak turun ke bawah */
}

.hero-body {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-sub);
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

/* --- MEDIA QUERIES (BREAKPOINTS) --- */

/* Tablet & Mobile */
@media (max-width: 768px) {
    .hero-fullscreen {
        padding-top: 120px; /* Beri ruang untuk nav mobile */
    }
    
    .hero-title {
        /* padding-top: 200px !important; */
    }
    
    .hero-main-img {
        width: min(110vw, 700px);
        /* padding-right: 40px !important; */
        /* padding-bottom: 200px !important; */
    }

    .hero-benefits {
        gap: 10px;
    }
    
    .hero-benefit-item {
        flex: 1 1 45%; /* Menjadi 2 kolom di HP */
        text-align: center;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    /* AKTIFKAN FLEX */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* PINDAHKAN GAMBAR KE PALING ATAS */
    .hero-image-wrapper {
        position: relative;
        inset: auto;
        z-index: 0;
        opacity: 1;
        pointer-events: auto;

        order: -1;              /* ⬅️ INI KUNCINYA */
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 32px;
    }

    /* BENAR-BENAR CENTER */
    .hero-main-img {
        width: min(90%, 360px);
        max-width: 100%;
        height: auto;

        margin: 0 auto;
        padding: 0;
        /* rotate: 0deg; */
        transform: none;
    }

    /* BERSIHKAN TRIK PADDING */
    .hero-title {
        padding-top: 0;
        margin-top: 0;
        line-height: 1.2;
    }
}

/* Hero section end */










/* Problem section*/
.problem-section {
    padding: 80px 20px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Left content */
.problem-intro {
    text-align: center;
}

.problem-section-tag {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.problem-section-title {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.25;
}

.problem-section-desc {
    font-size: 16px;
    color: var(--text-sub);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.4;
    max-width: 480px;
    margin: 0 auto;
}

/* Challenge cards */
.challenge-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.challenge-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    position: relative;
    top: 0;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}



.challenge-card img {
    width: 90px;
    height: auto;
    object-fit: contain;
}

.challenge-card p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.45;
}

.challenge-card strong {
    color: var(--text-main);
}

/* Zig-zag layout (DESKTOP ONLY) */
@media (min-width: 768px) {
    .challenge-card:nth-child(odd) {
        top: 40px;
    }
}

/* Hover animation */
@media (hover: hover) {
    .challenge-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .problem-section {
        padding: 100px 40px;
    }

    .problem-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 64px;
    }

    .problem-intro {
        text-align: left;
    }

    .problem-section-title {
        font-size: 34px;
    }

    .problem-section-desc {
        margin: 0;
        font-size: 17px;
    }

    .challenge-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* =========================
   Desktop (>= 1024px)
   ========================= */
@media (min-width: 1024px) {
    .problem-section {
        padding: 120px 0;
    }

    .problem-section-title {
        font-size: 40px;
    }

    .challenge-card img {
        width: 100px;
    }
}

/* =========================
   Small Mobile Safety (< 360px)
   ========================= */
@media (max-width: 360px) {
    .problem-section-title {
        font-size: 24px;
    }

    .challenge-card {
        padding: 20px 16px;
    }

    .challenge-card p {
        font-size: 13px;
    }
}

/* Problem section end */










/* Solution section */
.solution-section {
    padding: 80px 20px 40px;
    text-align: center;
}

/* Card */
.solution-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 48px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);

    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tag */
.solution-section-tag {
    display: block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Title */
.solution-title {
    max-width: 820px;
    font-size: clamp(28px, 6vw, 46px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 auto;
}

/* Description */
.solution-card-desc {
    margin-top: 24px;
    max-width: 600px;
    font-size: clamp(16px, 3.5vw, 22px);
    color: var(--text-sub);
    line-height: 1.6;
}

/* =========================
   Solution Benefits
   ========================= */

.solution-benefits {
    margin-top: 40px;
    padding: 0 20px;

    max-width: var(--max-width);
    margin-inline: auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Item */
.solution-benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: clamp(14px, 2.5vw, 15px);
    color: var(--text-main);
    font-weight: 500;

    background: #fff;
    padding: 14px 16px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);

    width: 100%; /* PENTING: samakan lebar */
}

/* =========================
   Mobile landscape / small tablet
   ========================= */
@media (min-width: 480px) {
    .solution-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   Tablet
   ========================= */
@media (min-width: 768px) {
    .solution-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* =========================
   Desktop / Laptop
   ========================= */
@media (min-width: 1024px) {
    .solution-benefits {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}


/* Solution section end */










/* ==============================
   SLIDER SECTION (BOXED STYLE)
============================== */

.slider-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 40px 100px 56px;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
}

/* ==============================
   TITLE
============================== */

.slider-title {
  max-width: 820px;               /* Batasi lebar teks */
  margin: 0 auto 48px;
  padding: 0 16px;

  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #222;
}

/* Highlight kalimat penting */
.slider-title strong {
  display: block;                /* Pindah ke baris sendiri */
  margin-top: 16px;

  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #000;
}

/* ==============================
   SLIDER OUTER
============================== */

.slider-outer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-wrapper {
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  margin: 0 auto 32px;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 calc(33.333% - 16px);
  height: 270px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.slide img {
    border-radius: 5px;
  max-width: 190px;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* ==============================
   ARROWS
============================== */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #999;
  transition: 0.3s;
  z-index: 2;
}

.slider-arrow:hover {
  color: #000;
}

.slider-arrow.prev {
  left: -48px;
}

.slider-arrow.next {
  right: -48px;
}

/* ==============================
   DOTS
============================== */

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots .dot.active {
  background: #000;
  transform: scale(1.4);
}

/* ==============================
   CTA
============================== */

.slider-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ==============================
   RESPONSIVE FIX
============================== */

/* TABLET */
/* ==============================
   RESPONSIVE FIX (REVISED)
============================== */

/* TABLET (Layar sedang) */
@media (max-width: 1024px) {
  .slider-section {
    padding: 40px 60px; /* Kurangi padding samping */
  }

  .slide {
    flex: 0 0 calc(50% - 12px); /* Tampil 2 slide */
  }

  .slider-wrapper {
    max-width: 600px;
  }

  .slider-arrow.prev { left: -40px; }
  .slider-arrow.next { right: -40px; }
}

/* MOBILE (Layar HP) */
@media (max-width: 640px) {
  /* 1. Judul Responsif */
  .slider-title {
    font-size: clamp(16px, 4.5vw, 18px); /* Ukuran teks fleksibel */
    margin-bottom: 32px;
    padding: 0 10px;
    line-height: 1.4;
  }

  /* 2. Section Padding */
  .slider-section {
    padding: 40px 10px 48px; /* Kecilkan padding agar muat di layar HP */
    margin: 60px 15px; /* Beri jarak luar agar box tidak nempel pinggir layar */
  }

  /* 3. Wrapper (Kunci agar slide tidak mepet panah) */
  .slider-wrapper {
    max-width: 280px; /* Batasi lebar wrapper agar ada sisa ruang di kiri-kanan */
    overflow: hidden;
  }

  .slide {
    flex: 0 0 100%; /* Satu slide penuhi wrapper */
    height: 200px; /* Sesuaikan tinggi untuk mobile */
  }
  
  .slide img {
    max-width: 140px; /* Perkecil gambar di mobile */
  }

  /* 4. Panah (Tampilkan kembali) */
  .slider-arrow {
    display: block !important; /* Paksa tampil */
    font-size: 28px;
    color: #000; /* Beri warna lebih gelap agar jelas */
  }

  .slider-arrow.prev {
    left: 0px; /* Pindahkan posisi ke dalam */
  }

  .slider-arrow.next {
    right: 0px; /* Pindahkan posisi ke dalam */
  }

  .slider-cta {
    padding: 12px 20px;
    font-size: 14px;
  }
}















/* Trust section */
/* ==============================
   TRUST SECTION
============================== */

.trust-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
}

/* ==============================
   TAG
============================== */

.trust-section-tag {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==============================
   TITLE
============================== */

.trust-section-title-alt {
  font-size: 40px;
  margin-bottom: 48px;
  max-width: 600px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ==============================
   GRID
============================== */

.trust-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ==============================
   CARD
============================== */

.trust-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.trust-glass-card-heading,
.trust-glass-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.trust-card-text-sub {
  margin-top: 12px;
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.6;
}

/* ==============================
   RESPONSIVE
============================== */

/* TABLET */
@media (max-width: 1024px) {
  .trust-section {
    margin: 100px auto;
  }

  .trust-section-title-alt {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .trust-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-glass-card {
    padding: 32px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .trust-section {
    margin: 80px auto;
    padding: 0 16px;
  }

  .trust-section-tag {
    font-size: 11px;
  }

  .trust-section-title-alt {
    font-size: clamp(22px, 6vw, 26px);
    line-height: 1.25;
    margin-bottom: 32px;
  }

  .trust-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-glass-card {
    padding: 24px;
  }

  .trust-glass-card-heading,
  .trust-glass-card h3 {
    font-size: 16px;
  }

  .trust-card-text-sub {
    font-size: 14px;
  }
}

/* Trust section end */










/* Process section */
/* ==============================
   PROCESS SECTION
============================== */

.process-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
}

/* ==============================
   TAG
============================== */

.process-section-tag {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==============================
   TITLE
============================== */

.process-section-title-sm {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* ==============================
   STEPS GRID
============================== */

.process-steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ==============================
   STEP CARD
============================== */

.step-card {
  position: relative;
  padding-top: 56px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
}

.step-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.process-card-text-sub {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.6;
}

/* ==============================
   RESPONSIVE
============================== */

/* TABLET */
@media (max-width: 1024px) {
  .process-section {
    margin: 100px auto;
  }

  .process-section-title-sm {
    font-size: 30px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .step-number {
    font-size: 44px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .process-section {
    margin: 80px auto;
    padding: 0 16px;
  }

  .process-section-tag {
    font-size: 11px;
  }

  .process-section-title-sm {
    font-size: clamp(22px, 6vw, 26px);
    margin-top: 4px;
  }

  .process-steps {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-card {
    padding-top: 44px;
  }

  .step-number {
    font-size: 36px;
  }

  .step-title {
    font-size: 16px;
  }

  .process-card-text-sub {
    font-size: 14px;
  }
}

/* Process section end */









 
/* Portfolio section */
/* ==============================
   PORTFOLIO SECTION
============================== */

.portfolio-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
}

/* ==============================
   TAG
============================== */

.portfolio-section-tag {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==============================
   TITLE
============================== */

.portfolio-section-title-alt {
  font-size: 40px;
  margin-bottom: 48px;
  max-width: 600px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ==============================
   GRID
============================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ==============================
   ITEM
============================== */

.portfolio-item {
    position: relative;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;

    display: flex;
    align-items: flex-end;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-6px);
}


/* Gradient overlay */
.portfolio-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.85),
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0)
    );
    z-index: -1;
}



/* ==============================
   OVERLAY CONTENT
============================== */

.portfolio-overlay {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.portfolio-heading {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.portfolio-sub-heading {
  font-size: 14px;
  opacity: 0.85;
}

.portfolio-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}


/* ==============================
   RESPONSIVE
============================== */

/* TABLET */
@media (max-width: 1024px) {
  .portfolio-section {
    margin: 100px auto;
  }

  .portfolio-section-title-alt {
    font-size: 34px;
  }

  .portfolio-item {
    height: 360px;
  }

  .portfolio-heading {
    font-size: 20px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .portfolio-section {
    margin: 80px auto;
    padding: 0 16px;
  }

  .portfolio-section-title-alt {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 32px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-item {
    height: 260px;
  }

  .portfolio-overlay {
    padding: 20px;
  }

  .portfolio-heading {
    font-size: 18px;
  }

  .portfolio-sub-heading {
    font-size: 13px;
  }
}


/* Portfolio section end */










/* Faq section */
/* ==============================
   FAQ SECTION
============================== */

.faq-section {
    padding: 120px 20px;
}

.faq-header {
    font-size: clamp(24px, 5vw, 32px);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.faq-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Item */
.faq-item details {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

/* Summary */
.faq-item summary {
    list-style: none;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

/* Hilangkan marker default */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Icon + / - */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    content: "–";
}

/* Content */
.faq-content {
    padding: 0 24px 20px;
    color: var(--text-sub);
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 640px) {
    .faq-section {
        padding: 80px 16px;
    }

    .faq-item summary {
        padding: 20px 56px 20px 24px;
        font-size: 15px;
    }

    .faq-content {
        padding: 0 20px 18px;
        font-size: 14px;
    }
}

/* Faq section end */










/* Final cta section */
/* ==============================
   FINAL CTA SECTION
============================== */

.final-cta {
    padding: 120px 20px 160px;
    text-align: center;
}

/* Card */
.glass-card-cta {
    max-width: 820px;
    margin: 0 auto;
        background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(94, 92, 230, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 72px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* Title */
.cta-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Desc */
.cta-desc {
    font-size: 18px;
    color: var(--text-sub);
    margin-bottom: 40px;
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.6;
}

/* Button fix (kalau perlu) */
.final-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* TABLET */
@media (max-width: 1024px) {
    .glass-card-cta {
        padding: 56px 36px;
    }
}

/* MOBILE */
@media (max-width: 640px) {
    .final-cta {
        padding: 80px 16px 120px;
    }

    .glass-card-cta {
        padding: 40px 24px;
    }

    .cta-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

/* Final cta section end */










/* Whatsaap float section */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);

    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #fff;
}

.wa-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}
/* Whatsaap float section end */














/* ==============================
   FLEXIBLE PRICING / INVESTMENT
============================== */

.pricing-flex-section {
    padding: 120px 20px 140px;
}

.pricing-flex-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;

            background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(94, 92, 230, 0.05) 100%);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 72px 56px;
}

/* TAG */
.pricing-flex-tag {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

/* TITLE */
.pricing-flex-title {
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
}

/* DESC */
.pricing-flex-desc {
    max-width: 620px;
    margin: 0 auto 48px;
    font-size: 17px;
    color: var(--text-sub);
    line-height: 1.7;
}

/* POINTS */
.pricing-flex-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto 48px;
}

.pricing-point {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 14px 20px;

    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.pricing-point span {
    font-size: 20px;
    color: var(--accent);
}

/* HIGHLIGHT */
.pricing-flex-highlight {
    max-width: 560px;
    margin: 0 auto 40px;

    font-size: 16px;
    color: var(--text-sub);
    line-height: 1.6;
}

.pricing-flex-highlight strong {
    color: var(--text-main);
}

/* CTA */
/* .pricing-flex-cta {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: var(--text-main);

    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding-bottom: 4px;

    transition: opacity 0.2s ease;
}

.pricing-flex-cta:hover {
    opacity: 0.7;
} */

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px) {
    .pricing-flex-inner {
        padding: 56px 32px;
    }

    .pricing-flex-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-flex-section {
        padding: 80px 16px 120px;
    }

    .pricing-flex-desc {
        font-size: 16px;
    }

    .pricing-point {
        font-size: 14px;
        padding: 12px 18px;
    }
}
















/* Footer section */
/* ==============================
   FOOTER
============================== */

.site-footer {
  margin-top: 160px;
  padding: 64px 24px 96px;
  background: #fff;
}

/* ==============================
   INNER
============================== */

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  /* padding: 48px; */
  border-radius: 28px;

  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;

  background: #fff;
}

/* ==============================
   LEFT
============================== */

.footer-left {
  max-width: 460px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sub);
  margin-bottom: 24px;
}

/* ==============================
   SOCIAL ICON
============================== */

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--glass-border);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text-main);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.material-symbols-rounded {
  font-size: 20px;
}

/* ==============================
   RIGHT
============================== */

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--text-main);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-sub);
  opacity: 0.75;
}

/* ==============================
   TABLET & MOBILE (CENTER MODE)
============================== */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-left {
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-right {
    align-items: center;
    gap: 24px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .footer-copy {
    margin-top: 24px;
  }
}
