/* ============================================================
   KlinKlin — Landing Page
   Sesuai desain Figma + animasi smooth
   ============================================================ */

:root {
    --navy:      #1F324E;
    --blue:      #4873B4;
    --blue-cta:  #669CF2;
    --ink:       #0E1726;
    --light:     #F3F3F3;
    --ease:      cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; 
background: #B9E0E7;}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    background: linear-gradient(73deg, #EDF2F8 11.18%, #C1D4F2 55.18%, #B9E0E7 99.17%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== BUBBLE DEKORATIF (menempel & mengikuti posisi ember) ===== */
.blob {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(52,85,132,0) 0%, #86B1DB 100%);
    filter: blur(.5px);
    animation: breathe 7s ease-in-out infinite;
    will-change: transform, opacity;
    pointer-events: none;
}
.blob-1 { width: 250px; height: 250px; top: 4%;    right: 4%;   animation-delay: 0s; }
.blob-2 { width: 290px; height: 290px; top: 40%;   right: -8%;  animation-delay: -2.5s; }
.blob-3 { width: 160px; height: 160px; bottom: 20%; left: 2%;   animation-delay: -5s; }

/* Mengembang lalu menipis (scale + opacity) */
@keyframes breathe {
    0%, 100% { transform: scale(.85); opacity: 1; }
    50%      { transform: scale(1.25); opacity: .65; }
}

/* Versi mobile: lebih pekat agar bubble tetap jelas terlihat */
@keyframes breathe-mobile {
    0%, 100% { transform: scale(1);    opacity: .95; }
    50%      { transform: scale(1.12); opacity: 1; }
}
/* Breathe untuk bubble yang ter-center (pertahankan translate -50%,-50%) */
@keyframes breathe-center {
    0%, 100% { transform: translate(-50%, -50%) scale(.9);  opacity: .8; }
    50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1380px;
    margin: 0 auto;
    padding: 28px 60px;
    transition: background .3s var(--ease), box-shadow .3s var(--ease),
                backdrop-filter .3s var(--ease), padding .3s var(--ease);
}
/* Saat di-scroll: header dapat background frosted agar konten tidak tembus */
.navbar.scrolled { padding-top: 16px; padding-bottom: 16px; }
.navbar.scrolled::before {
  
    content: "";
    position: absolute; top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 100vw; z-index: -1;
    background: rgba(247, 250, 254, .72);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px rgba(31, 50, 78, .10);
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand .brand-icon { width: 52px; height: 52px; object-fit: contain; }
.brand .brand-word { height: 34px; width: auto; object-fit: contain; }
.brand .brand-text { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -.5px; }

.nav-links { display: flex; gap: 48px; }
.nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    padding: 4px 0;
    transition: -webkit-text-stroke .25s var(--ease);
}
.nav-links a.active { font-weight: 800; }
/* Hover: tegaskan via boldness (text-stroke, tanpa menggeser layout) */
.nav-links a:hover { -webkit-text-stroke: .7px currentColor; }
.nav-links a.active:hover { -webkit-text-stroke: 0; }

.lang-switch {
    display: flex; align-items: center; gap: 12px;
    background: none; border: none; cursor: pointer;
    font-family: inherit; color: var(--navy);
}
.lang-switch .globe {
    display: grid; place-items: center;
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: 50%;
}
.lang-switch .globe svg { width: 30px; height: 30px; }
.lang-label { font-size: 22px; font-weight: 600; }

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 5;
    max-width: 1380px;
    margin: 0 auto;
    padding: 20px 60px 60px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 20px;
    min-height: calc(100vh - 120px);
}

.hero-copy { max-width: 600px; }

h1 {
    /* Spec Figma: 60px/600 (tepat di layar >=1430px), mengecil di layar sempit */
    font-size: clamp(34px, 4.2vw, 60px);
    font-weight: 600;
    line-height: 1.5;            /* = 90px saat 60px */
    letter-spacing: 1.2px;
    color: var(--navy);
    white-space: nowrap;         /* tiap frasa tetap satu baris */
    text-indent: 34px;           /* indent ringan hanya baris atas */
}
h1 strong { font-size: clamp(36px, 4.48vw, 64px); font-weight: 800; letter-spacing: 1.28px; }

.hero-desc {
    margin: 26px 0 36px;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(14,23,38,.62);
    max-width: 540px;
}

/* CTA */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 8px 8px 8px 32px;
    background: var(--blue-cta);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(102,156,242,.4);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), gap .3s var(--ease);
}
.cta span:first-child { color: #fff; font-size: 18px; font-weight: 700; }
.cta-arrow {
    display: grid; place-items: center;
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: 50%;
    transition: transform .35s var(--ease);
}
/* Transition CTA (specificity a.cta agar tidak ditimpa .reveal yang generic) */
a.cta { transition: opacity .6s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease), gap .3s var(--ease); }
/* Hover: pill melebar ke kanan (gap membesar -> arrow bergeser, lebar tumbuh) */
.cta:hover { transform: translateY(-3px); gap: 36px; box-shadow: 0 18px 40px rgba(102,156,242,.55); }
.cta:active { transform: translateY(-1px) scale(.99); }

/* Social proof — ikon vektor user */
.social-proof { display: flex; align-items: center; gap: 14px; margin: 34px 0 30px; }
.avatars { display: flex; }
.avatar, .avatar-more {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    display: grid; place-items: center;
    background: #E6EDF8;
}
.avatar:first-child { margin-left: 0; }
.avatar svg { width: 22px; height: 22px; display: block; }
.avatar-more {
    font-size: 12px; font-weight: 700;
    color: var(--navy);
    background: #D8E4F6;
}
.proof-label { font-size: 16px; font-weight: 600; color: var(--navy); }

/* Badges — sejajar horizontal & vertikal (grid 2 kolom, ukuran sama) */
.badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 500px;
    align-items: stretch;
}
.badge {
    display: flex;
    flex-direction: column;
    background: #4873B4;
    color: #fff;
    border-radius: 40px;
    padding: 20px 26px;
    box-shadow: 0 14px 34px rgba(72,115,180,.32);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.badge small { display: block; font-size: 13px; font-weight: 500; opacity: .8; }
.badge strong { display: block; font-size: 30px; font-weight: 800; letter-spacing: .5px; margin: 2px 0 6px; text-transform: uppercase; }
.badge span { font-size: 12.5px; line-height: 1.4; opacity: .78; margin-top: auto; }
.badge:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(72,115,180,.45); }
.badge-text { display: flex; flex-direction: column; flex: 1; }

/* Elemen khusus mobile — disembunyikan di desktop */
.badge-ic { display: none; }
.hamburger { display: none; }
.cta-deco { display: none; }

/* ===== VISUAL / EMBER ===== */
.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 700px;
    overflow: visible;
    /* Geser seluruh blok (ember + alas) sampai mentok tepi kanan viewport.
       Berbasis 50vw supaya tetap menempel di layar lebar (kontainer max 1380px
       yang di-tengah-kan menyisakan gutter kanan yang harus dilewati). */
    transform: translateX(max(0px, calc(50vw - 650px))) translateY(40px);
}
/* Alas trapesium rounded (platform perspektif) */
.visual-shadow {
    position: absolute;
    z-index: 1;
    bottom: 7%;
    right: -22%; left: auto;   /* dipanjangkan ke kanan: sudut rounded kanan keluar layar */
    width: 123%; height: 150px; /* tepi kiri tetap, tepi kanan menjorok lewat tepi */
    background: linear-gradient(180deg, #6E97CE 0%, var(--blue) 100%);
    border-radius: 26px;        /* rectangle dengan sudut membulat */
    opacity: .95;
    box-shadow: 0 26px 40px rgba(72,115,180,.32);
}
.bucket {
    position: relative;
    z-index: 2;
    width: 122%;
    max-width: 844px;
    aspect-ratio: 97 / 87;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(0,0,0,.22));
}

/* ============================================================
   REVEAL (animasi masuk halus)
   ============================================================ */
.reveal {
    opacity: 0;
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}
.reveal[data-reveal="up"]    { transform: translateY(40px); }
.reveal[data-reveal="down"]  { transform: translateY(-24px); }
.reveal[data-reveal="right"] { transform: translateX(60px) scale(.96); }
.reveal[data-reveal="fade"]  { transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .navbar { padding: 22px 36px; }
    .hero { padding: 10px 36px 60px; }
    .hero-visual { transform: none; min-height: 480px; }
    .hero-copy { max-width: 100%; }
    .bucket { width: 100%; max-width: 520px; }
}

@media (max-width: 760px) {
    .navbar { flex-wrap: wrap; gap: 16px; justify-content: center; padding: 18px 22px; }
    .nav-links { gap: 26px; order: 3; width: 100%; justify-content: center; }
    .nav-links a { font-size: 17px; }
    .lang-switch .globe { width: 46px; height: 46px; }
    .hero { padding: 6px 22px 50px; }
    .hero-visual { min-height: 340px; }
    .bucket { max-width: 440px; }
    h1 { white-space: normal; line-height: 1.25; letter-spacing: .4px; }
    .hero-desc { font-size: 17px; }
    .badges { gap: 14px; }
    .badge { min-width: 160px; flex: 1; padding: 16px 20px; }
    .badge strong { font-size: 24px; }
    .blob { display: none; }
}

/* ============================================================
   MOBILE (ponsel ~390px) — layout sesuai desain Figma mobile
   ============================================================ */
@media (max-width: 768px) {
    body {
        background: linear-gradient(193deg, #FFF 0%, #BED5F4 21.32%, #B9E0E7 77.15%);
    }

    /* Navbar: hamburger kiri, brand (logo + KlinKlin) kanan — padding lega */
    .navbar { justify-content: space-between; align-items: center;
        flex-wrap: nowrap; gap: 0; padding: 16px 40px 0; }
    .nav-links, .lang-switch { display: none; }
    .brand { display: flex; align-items: center; gap: 6px; }
    .brand .brand-icon { width: 36px; height: 36px; }
    .brand .brand-word { height: 21px; }
    .brand .brand-text { font-size: 20px; }
    .hamburger {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 5px; width: 52px; height: 52px;
        background: var(--navy); border: none; border-radius: 50%; cursor: pointer;
    }
    .hamburger span {
        width: 21px; height: 2px; border-radius: 2px;
        background: linear-gradient(89deg, #FFF 0.59%, #4873B4 20.59%);
    }

    /* Hero: kolom tunggal, bucket didorong ke bawah */
    .hero {
        display: flex; flex-direction: column; align-items: stretch;
        min-height: calc(100vh - 92px);
        padding: 28px 24px 36px; gap: 0;
        overflow-x: clip;   /* bucket boleh bleed ke kanan, dipotong di tepi */
        /* Gradient hero berakhir di #B9E0E7 di bawah → menyatu dgn atas section about */
        background: linear-gradient(193deg, #FFF 0%, #BED5F4 21.32%, #B9E0E7 77.15%);
    }
    .hero-copy { order: 0; max-width: 100%; display: flex; flex-direction: column; }
    .hero-desc, .social-proof { display: none; }

    /* Heading — baris atas ditarik kiri, baris bawah ber-indent + spasi baris lebih lega */
    h1 {
        font-size: 28px; line-height: 60px; letter-spacing: .56px;
        white-space: normal; text-align: center; max-width: 100%;
        padding-left: 0; text-indent: 0;   /* tagline ditengahkan */
    }
    h1 strong { font-size: 30px; letter-spacing: .6px; }

    /* Badges: lingkaran crescent + teks berlapis (sesuai artboard 390px) */
    .badges { display: flex; flex-direction: column; gap: 28px; max-width: 100%; margin-top: 26px; }
    .badge {
        position: relative; display: block; flex: none; height: 50px;
        min-width: 0; background: none; box-shadow: none; border-radius: 0; padding: 0;
    }
    .badge:hover { transform: none; box-shadow: none; }
    .badge:first-child  { margin-left: 153px; }   /* P2MW: lingkaran di x≈177 */
    .badge:nth-child(2) { margin-left: 59px; }    /* Bali: lingkaran di x≈83  */
    .badge-ic {
        display: block; position: absolute; left: 0; top: 0;
        width: 50px; height: 50px; border-radius: 50%; background: #fff;
    }
    .badge-ic::before {
        content: ""; position: absolute; left: 20px; top: 14px;
        width: 39px; height: 39px; border-radius: 50%;
        background: linear-gradient(180deg, #669CF2 0%, #1F324E 100%);
    }
    .badge-text { position: static; }
    .badge small {
        position: absolute; left: 60px; top: 1px; white-space: nowrap;
        font-size: 13px; font-weight: 600; letter-spacing: .26px;
        color: #1F324E; opacity: 1;
    }
    .badge strong {
        position: absolute; left: 45px; top: 17px; white-space: nowrap;
        font-size: 20px; font-weight: 700; letter-spacing: .4px; text-transform: none;
        opacity: 1; text-shadow: 0 4px 4px rgba(0,0,0,.25);
        background: linear-gradient(90deg, #FFF 27.88%, #1F324E 47.12%);
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent; color: transparent;
    }
    .badge-text > span { display: none; }  /* sembunyikan deskripsi panjang */

    /* Bubble dekoratif di belakang tombol Pesan Sekarang */
    .cta-deco {
        display: block; order: 1; align-self: flex-start;
        width: 92px; height: 92px; border-radius: 50%;
        margin: 30px 0 -62px 18px;
        background: linear-gradient(180deg, rgba(52,85,132,0) 0%, #AED6FF 100%);
        position: relative; z-index: 0;
    }
    /* CTA: lingkaran putih di kiri + teks; order:1 agar tampil setelah badges */
    .cta {
        order: 1; position: relative; z-index: 1; align-self: flex-start;
        flex-direction: row-reverse; justify-content: flex-end;
        min-width: 179px; width: max-content; height: 59px;
        gap: 14px; padding: 0 26px 0 10px;
        margin-top: 0; margin-left: 39px;
        background: linear-gradient(263deg, #669CF2 0%, #3B5A8C 100%);
        box-shadow: 0 12px 26px rgba(102,156,242,.4);
    }
    /* Hover: pill terangkat & sedikit melebar; klik: menekan */
    .cta:hover { transform: translateY(-2px); gap: 18px; box-shadow: 0 18px 34px rgba(102,156,242,.55); }
    .cta:active { transform: translateY(0) scale(.97); box-shadow: 0 8px 18px rgba(102,156,242,.4); }
    .cta span:first-child { font-size: 16px; }
    .cta-arrow { width: 38px; height: 38px; background: #fff; transition: transform .25s var(--ease); }
    .cta:hover .cta-arrow { transform: translateX(-3px); }
    .cta:active .cta-arrow { transform: scale(.9); }
    /* Simbol panah di dalam ellipse putih (stroke gelap agar terlihat) */
    .cta-arrow svg { display: block; width: 20px; height: 20px; stroke: #1F324E; }

    /* Visual: bucket digeser ke kanan + alas rectangle di belakangnya */
    .hero-visual {
        order: 0; margin-top: 18px; transform: none;
        position: relative; display: block;
        width: 100%; min-height: 290px; overflow: visible;
    }
    .visual-shadow {
        display: block; position: absolute;
        left: auto; right: -38px; width: 220px;   /* lebih pendek; sisi kanan keluar tepi */
        top: auto; bottom: 6px; height: 73px;
        background: linear-gradient(180deg, #6E97CE 0%, var(--blue) 100%);
        border-radius: 26px 0 0 26px;   /* kiri rounded (terlihat), kanan square */
        opacity: 1; box-shadow: none;
        z-index: 1;
    }
    .bucket {
        position: absolute; right: -68px; left: auto; bottom: 0;
        width: 313px; max-width: none; height: auto; margin: 0;
        filter: drop-shadow(0 4px 4px rgba(0,0,0,.25));
        z-index: 2;
    }

    /* Bubble dekoratif (gradient #AED6FF) — lebih pekat & sesuai referensi */
    .blob {
        display: block; filter: none; opacity: 1;
        background: linear-gradient(180deg, rgba(52,85,132,0) 0%, #AED6FF 100%);
        animation: breathe-mobile 7s ease-in-out infinite;
    }
    .blob-1 { display: none; }   /* bubble kiri bucket dihilangkan di mobile */
    .blob-2 { width: 104px; height: 104px; top: -10px; right: 30px; left: auto; bottom: auto; z-index: 3; }
    .blob-3 { width: 80px;  height: 80px;  top: 42%;   right: -14px; left: auto; bottom: auto; z-index: 3; }

    
  }

  @media (max-width: 768px) {
    .hamburger { transition: border-radius .4s cubic-bezier(.22,1,.36,1); }
.hamburger.open { border-radius: 12px; }
.hamburger span { transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }

.nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(31, 50, 78, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px) scale(.97);
    transition: opacity .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1);
}
.nav-links.open.active-overlay {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}
.nav-links a {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease, color .2s;
}

.nav-links.open.active-overlay a {
    opacity: 1;
    transform: translateY(0);
}

.nav-links.open.active-overlay a:nth-child(1) { transition-delay: .1s; }
.nav-links.open.active-overlay a:nth-child(2) { transition-delay: .18s; }
.nav-links.open.active-overlay a:nth-child(3) { transition-delay: .26s; }
.nav-links.open.active-overlay a:nth-child(4) { transition-delay: .34s; }
.nav-links.open.active-overlay a:nth-child(5) { transition-delay: .42s; }
.nav-links.open.active-overlay a:nth-child(6) { transition-delay: .5s; }
.nav-links.open a { color: #fff; font-size: 22px; font-weight: 700; }
.hamburger { position: relative; z-index: 301; }
}

/* ===== Aksesibilitas: hormati pengurangan gerak ===== */
@media (prefers-reduced-motion: reduce) {
    *, .reveal { animation: none !important; transition: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   TENTANG KAMI / ABOUT (section di bawah hero)
   ============================================================ */
.about {
    position: relative; z-index: 5;
    max-width: 1380px; margin: 0 auto;
    padding: 40px 60px 90px;
    overflow-x: clip;
}

/* --- Kartu fitur (glassmorphic) --- */
.feature-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; margin-bottom: 84px;
}
.feature-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 12px; padding: 30px 38px;
    background: rgba(255,255,255,.42);
    border-radius: 30px;
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.6);
    box-shadow: 0 18px 40px rgba(72,115,180,.22);
}
.fc-icon { width: 48px; height: 48px; display: grid; place-items: center; }
.fc-icon svg { width: 40px; height: 40px; }
.feature-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); opacity: .85; }
.feature-card p { font-size: 13px; font-weight: 600; line-height: 1.5; color: rgba(14,23,38,.6); max-width: 240px; }

/* --- Main: kolase foto + teks --- */
.about-main {
    display: grid; grid-template-columns: 460px 1fr;
    gap: 40px; align-items: center;
}

/* Kolase foto */
.about-collage { position: relative; width: 460px; height: 400px; flex: none; }
/* Bubble dekoratif di tengah kolase */
.collage-bubble {
    display: none;   /* hanya tampil di mobile */
    position: absolute; z-index: 0;
    left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 153px; height: 153px; border-radius: 50%;
    background: linear-gradient(180deg, rgba(52,85,132,0) 0%, #AED6FF 100%);
    animation: breathe-center 6s ease-in-out infinite;
}
/* Foto polos + drop shadow */
.about-collage .collage {
    position: absolute; z-index: 2; object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.collage-1 { left: 0;     top: 0;    width: 232px; height: 217px; border-radius: 20px; }
.collage-2 { left: 256px; top: 4px;  width: 160px; height: 160px; border-radius: 50%; }
.collage-3 { left: 216px; top: 187px; width: 210px; height: 211px; border-radius: 25px; }
/* z-index (spesifisitas disamakan dgn .about-collage .collage) */
.about-collage .collage-1 { z-index: 1; }
.about-collage .collage-3 { z-index: 3; }
/* Rectangle sedikit lebih besar; z-index 2 = menutupi sudut foto kiri-atas
   tapi tetap di belakang foto kanan-bawah */
.collage-3-bg {
    position: absolute; z-index: 2;
    left: 204px; top: 175px; width: 234px; height: 235px;
    border-radius: 32px;
    background: linear-gradient(270deg, #D0DEF4 0%, #D8E4F5 100%);
}
.stat-badge {
    position: absolute; left: 36px; top: 242px; z-index: 3;
    width: 143px; height: 121px; border-radius: 20px;
    background: #669CF2; box-shadow: 0 8px 18px rgba(59,90,140,.5);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.sb-num { display: flex; align-items: baseline; color: #fff; font-weight: 800; text-shadow: 0 4px 4px rgba(0,0,0,.25); }
.sb-num span:first-child { font-size: 46px; line-height: 1; }
.sb-plus { font-size: 36px; }
.sb-label { max-width: 116px; text-align: center; color: #fff; opacity: .85; font-size: 12px; font-weight: 600; line-height: 1.25; }

/* Teks */
.about-text h2 {
    font-size: 45px; font-weight: 800; line-height: 1.3; letter-spacing: .9px;
    color: var(--navy); max-width: 690px;
}
.about-text > p {
    margin: 22px 0 38px;
    font-size: 20px; font-weight: 400; line-height: 1.5;
    color: rgba(14,23,38,.6); max-width: 603px;
}
.about-stats { display: flex; align-items: center; gap: 44px; }
.stat-num { font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-num span { font-size: 36px; }
.stat-label { margin-top: 10px; font-size: 16px; font-weight: 500; color: rgba(0,0,0,.7); }
.stat-label strong { font-weight: 700; }
.stat-divider { width: 1px; height: 56px; background: #3B5A8C; opacity: .7; }

/* --- Responsif About --- */
@media (max-width: 1100px) {
    .about { padding: 30px 36px 70px; }
    .about-main { grid-template-columns: 1fr; gap: 50px; justify-items: center; }
    .about-text { max-width: 660px; }
    .about-text h2 { font-size: 36px; }
}
@media (max-width: 768px) {
    .about {
        padding: 30px 20px 60px;
        background: linear-gradient(7deg, #FFF 0.62%, #BED5F4 23.96%, #B9E0E7 85.07%);
    }

    /* Kartu fitur: tumpuk vertikal, ikon lingkaran gradient menonjol di kiri */
    .feature-cards { display: flex; flex-direction: column; align-items: center; gap: 34px; margin-bottom: 56px; }
    .feature-card {
        display: block; position: relative;
        width: 250px; min-height: 80px;
        padding: 15px 20px 15px 52px; text-align: left;
        background: rgba(255,255,255,.4);
        box-shadow: 0 4px 4px rgba(0,0,0,.12);
        border-radius: 30px;
    }
    .feature-card:hover { transform: none; background: rgba(255,255,255,.4); box-shadow: 0 4px 4px rgba(0,0,0,.12); }
    .fc-icon {
        position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
        width: 51px; height: 51px; border-radius: 50%;
        background: linear-gradient(180deg, #1F324E 0%, #4873B4 100%);
    }
    .fc-icon svg { width: 27px; height: 27px; stroke: #fff; }
    .fc-icon svg circle[fill] { fill: #fff; }
    .feature-card h3 { font-size: 15px; letter-spacing: .3px; }
    .feature-card p { font-size: 10px; font-weight: 500; line-height: 1.5; max-width: none; text-align: left; }

    /* Heading & paragraf tidak ada di desain mobile */
    .about-text h2, .about-text > p { display: none; }

    /* Main: 1 kolom (kolase lalu statistik) */
    .about-main { display: flex; flex-direction: column; align-items: center; gap: 26px; }

    /* Kolase versi mobile (lebih kecil) */
    .about-collage { width: 222px; height: 210px; transform: none; margin: 0 auto; }
    .collage-bubble { display: block; }   /* bubble tengah hanya di mobile */
    .collage-1 { left: 10px;  top: 0;    width: 103px; height: 96px; border-radius: 20px; }
    .collage-2 { left: 130px; top: 22px; width: 92px;  height: 92px; }
    .collage-3 { left: 120px; top: 124px; width: 93px; height: 78px; border-radius: 19px; }
    .collage-3-bg { display: none; }   /* di mobile cukup bubble saja, tanpa rectangle */

    /* Badge 7+ : teks putih tanpa kartu biru (sesuai desain mobile) */
    .stat-badge {
        left: 12px; top: 104px; width: auto; height: auto;
        background: none; box-shadow: none; border-radius: 0;
        align-items: flex-start; gap: 2px;
    }
    .sb-num span:first-child { font-size: 60px; }
    .sb-plus { font-size: 46px; }
    .sb-label { opacity: .8; color: #1F324E; max-width: 110px; text-align: left; font-size: 15px; font-weight: 500; line-height: 18px; }
    .sb-label strong { font-weight: 700; }

    /* Statistik di bawah kolase */
    .about-text { text-align: center; }
    .about-stats { justify-content: center; gap: 22px; margin-top: 0; }
    .stat-num { font-size: 34px; }
    .stat-num span { font-size: 30px; }
    .stat-label { font-size: 13px; margin-top: 6px; }
    .stat-divider { height: 50px; }
}

/* ============================================================
   MENGAPA MEMILIH KLINKLIN (section ke-3)
   ============================================================ */
.why {
    position: relative; z-index: 5;
    max-width: 1380px; margin: 0 auto;
    padding: 30px 60px 100px;
    overflow-x: clip;
}
.why-grid { display: grid; grid-template-columns: 1.04fr 1fr; gap: 40px; align-items: start; }

/* --- Kiri: teks --- */
.why-text h2 {
    font-size: 45px; font-weight: 800; line-height: 1.35; letter-spacing: .9px;
    color: var(--navy); max-width: 690px;
}
.why-lead { margin: 18px 0 26px; max-width: 625px; font-size: 20px; line-height: 1.5; color: rgba(0,0,0,.8); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 20px; line-height: 1.5; color: rgba(0,0,0,.85); }
.why-list strong { font-weight: 700; }
.why-chk { flex: none; width: 25px; height: 25px; margin-top: 4px; border-radius: 50%; background: #4873B4; display: grid; place-items: center; }
.why-chk svg { width: 14px; height: 14px; }

/* --- Baris bawah kiri: kluster foto + teks/cta --- */
.why-lower { display: flex; gap: 34px; margin-top: 44px; align-items: flex-start; }
.why-cluster { position: relative; width: 212px; height: 270px; flex: none; }
.why-cluster-rect {
    position: absolute; left: 49px; top: 0; z-index: 1;
    width: 163px; height: 217px; border-radius: 30px; object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.why-video-ring {
    position: absolute; left: -10px; bottom: -12px; z-index: 2;
    width: 146px; height: 146px; border-radius: 50%;
    background: #EDF2F8;   /* senada warna BG agar tidak kontras */
    display: grid; place-items: center;
}
.why-video { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; background: #d9e3f0; }
.why-lower-text { flex: 1; min-width: 0; padding-top: 20px; }
.why-care { max-width: 454px; font-size: 20px; line-height: 1.5; color: rgba(0,0,0,.6); }
.why-care strong { font-weight: 700; color: rgba(0,0,0,.78); }
.why-order { display: flex; align-items: center; gap: 12px; margin: 24px 0 16px; font-size: 20px; font-weight: 700; color: var(--navy); }
.why-order-arrow { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--navy); }
.why-order-arrow svg { width: 13px; height: 13px; }
.why-cta {
    display: inline-flex; align-items: center; gap: 10px;
    width: 204px; height: 67px; padding-left: 10px;
    background: linear-gradient(263deg, #669CF2 0%, #3B5A8C 100%);
    border-radius: 30px; text-decoration: none;
    box-shadow: 0 12px 28px rgba(102,156,242,.4);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.why-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(102,156,242,.5); }
.why-cta:active { transform: translateY(0) scale(.98); }
.why-cta-circle { flex: none; width: 48px; height: 48px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.why-cta-circle svg { width: 20px; height: 20px; stroke: #1F324E; }
.why-cta .txt { color: #fff; font-size: 16px; font-weight: 600; }

/* --- Kanan: foto + rectangle (perpotongan rapi) + kartu statistik --- */
.why-visual { position: relative; width: 470px; height: 475px; margin: 52px 0 0 auto; }
.why-photo {
    position: absolute; left: 50px; top: 0; z-index: 2;
    width: 410px; height: 222px; border-radius: 30px;
    object-fit: cover; object-position: center;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
/* Foto portrait (212x282, aspect 106/141) menumpuk sudut kiri-bawah landscape */
.why-photo-portrait {
    position: absolute; left: 30px; top: 188px; z-index: 4;
    width: 212px; height: 282px; border-radius: 30px;
    object-fit: cover; object-position: center;
    box-shadow: 0 12px 26px rgba(0,0,0,.2);
}
/* Rectangle 258x154: di DEPAN foto landscape (z2) tapi di BELAKANG foto portrait (z4). */
.why-rect {
    position: absolute; left: 0; top: 172px; z-index: 3;
    width: 258px; height: 154px; border-radius: 30px;
    background: linear-gradient(286deg, #C2D4F2 52.16%, #BED9EE 83.26%);
}
.why-stat {
    position: absolute; left: 300px; top: 248px; z-index: 3;
    width: 143px; height: 121px; border-radius: 20px;
    background: #669CF2; box-shadow: 0 10px 22px rgba(59,90,140,.5);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.why-stat-num { color: #fff; font-size: 48px; font-weight: 800; line-height: 1; text-shadow: 0 4px 4px rgba(0,0,0,.25); }
.why-stat-label { text-align: center; color: #fff; font-size: 16px; line-height: 1.25; }
.why-stat-label strong { font-weight: 800; }

/* Blok sosial (PESAN SEKARANG + Whatsapp/Instagram) — hanya tampil di mobile */
.why-social { display: none; flex-direction: column; align-items: center; gap: 16px; margin-top: 36px; }
.why-social-title { font-size: 15px; font-weight: 700; letter-spacing: .45px; color: var(--navy); }
.why-social-btn {
    display: flex; align-items: center; gap: 12px;
    width: 225px; height: 68px; padding: 0 18px;
    background: #fff; border: 1px solid var(--navy); border-radius: 25px;
    text-decoration: none;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.why-social-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(31,50,78,.14); }
.why-social-btn:active { transform: translateY(0) scale(.98); }
.why-social-ic { display: grid; place-items: center; width: 48px; height: 48px; flex: none; }
.why-social-ic svg { width: 44px; height: 44px; }
.why-social-ic img { width: 100%; height: 100%; object-fit: contain; }
.why-social-btn > span { font-size: 14px; font-weight: 700; letter-spacing: .28px; color: var(--navy); }

/* Bubble dekoratif mengambang (hanya tampil di mobile) */
.why-bubble { display: none; }
@keyframes float-bubble {
    0%, 100% { transform: translateY(0) scale(1);     opacity: .55; }
    50%      { transform: translateY(-18px) scale(1.12); opacity: .9; }
}

/* --- Responsif Why --- */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; gap: 56px; }
    .why-visual { margin: 10px auto 0; }
}
@media (max-width: 768px) {
    .why {
        padding: 36px 24px 64px;
        background: linear-gradient(186deg, #FFF 4.82%, #BED5F4 31.13%, #B9E0E7 100%);
    }
    .why-grid { display: flex; flex-direction: column; gap: 0; max-width: 342px; margin: 0 auto; }
    .why-visual { order: -1; }   /* foto cluster paling atas */

    /* Sembunyikan elemen yang tidak ada di desain mobile */
    .why-text h2, .why-lead, .why-lower { display: none; }

    /* --- Foto cluster mobile (landscape + portrait + rect + kartu) --- */
    .why-visual {
        position: relative; width: 100%; height: 292px;
        margin: 0; transform: none;
    }
    .why-photo { left: 40px; top: 0; width: 278px; height: 150px; border-radius: 30px; }
    .why-rect {
        left: 1px; top: 123px; width: 171px; height: 92px; border-radius: 30px;
        background: linear-gradient(270deg, #BCDAEC 0%, #BDD6F1 100%);
    }
    .why-photo-portrait { left: 43px; top: 130px; width: 120px; height: 151px; border-radius: 20px; }
    .why-stat {
        left: 191px; top: 186px; width: 91px; height: 77px; border-radius: 20px;
        gap: 2px; box-shadow: 0 5px 5px 2px rgba(59,90,140,.55);
    }
    .why-stat-num { font-size: 24px; }
    .why-stat-label { font-size: 11px; line-height: 1.2; }

    /* --- Checklist mobile (ikon lingkaran outline navy) --- */
    .why-list { gap: 18px; margin-top: 24px; max-width: 100%; }
    .why-list li { font-size: 14px; line-height: 1.45; gap: 10px; align-items: flex-start; color: rgba(0,0,0,.8); }
    .why-chk { background: transparent; border: 2px solid var(--navy); width: 20px; height: 20px; margin-top: 2px; }
    .why-chk svg { width: 11px; height: 11px; stroke: var(--navy); stroke-width: 3.2; }

    /* --- Blok sosial --- */
    .why-social { display: flex; margin-top: 38px; }

    /* --- Bubble dekoratif di tepi (mengambang) --- */
    .why-bubble {
        display: block; position: absolute; z-index: -1; pointer-events: none;
        border-radius: 50%;
        background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.75) 0%, rgba(174,214,255,.6) 55%, rgba(150,196,242,.32) 100%);
        animation: float-bubble 6.5s ease-in-out infinite;
        will-change: transform, opacity;
    }
    .wb1 { width: 66px; height: 66px; left: -24px;  top: 84px;  animation-delay: 0s; }
    .wb2 { width: 46px; height: 46px; right: -16px; top: 232px; animation-delay: -1.4s; animation-duration: 5.5s; }
    .wb3 { width: 90px; height: 90px; left: -34px;  top: 470px; animation-delay: -3.2s; animation-duration: 7.5s; }
    .wb4 { width: 54px; height: 54px; right: -20px; top: 628px; animation-delay: -2.1s; }
    .wb5 { width: 38px; height: 38px; left: 8px;    top: 802px; animation-delay: -4s; animation-duration: 5s; }
}

/* ============================================================
   HARGA / PRICING (section ke-4)
   ============================================================ */
.pricing {
    position: relative; z-index: 5;
    max-width: 1380px; margin: 0 auto;
    padding: 30px 60px 100px;
    overflow: clip;
}
/* Bubble dekoratif pojok kanan bawah */
.pricing-bubble {
    position: absolute; z-index: 0; pointer-events: none;
    width: 460px; height: 460px;
    bottom: -150px; right: -150px;
    border-radius: 307px;
    background: linear-gradient(180deg, rgba(52,85,132,0) 0%, #AED6FF 100%);
}
.pricing-head {
    position: relative; z-index: 1;
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 60px; margin-bottom: 54px;
}
.pricing-title {
    font-size: 45px; font-weight: 500; line-height: 1.25; letter-spacing: .9px;
    color: var(--navy); max-width: 460px;
}
.pricing-title strong { font-weight: 800; }
.pt-big { font-size: 64px; font-weight: 800; letter-spacing: 1.28px; }
.pricing-lead {
    max-width: 454px; margin-top: 26px;
    font-size: 20px; font-weight: 400; line-height: 1.75; color: rgba(0,0,0,.8);
}
.pricing-lead strong { font-weight: 700; }

.pricing-cards { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: stretch; }
.price-card {
    display: flex; flex-direction: column;
    background: #fff; border-radius: 35px;
    box-shadow: 0 10px 34px rgba(31,50,78,.10);
    padding: 34px 44px 40px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(31,50,78,.16); }
.pc-label { font-size: 20px; font-weight: 700; color: var(--navy); }
.pc-price { font-size: 48px; font-weight: 700; letter-spacing: .96px; color: var(--navy); margin-top: 6px; }
.pc-sub { font-size: 20px; font-weight: 500; line-height: 1.4; color: var(--navy); min-height: 2.8em; }
.pc-sub strong { font-weight: 700; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.pc-list li { display: flex; align-items: center; gap: 16px; font-size: 20px; font-weight: 700; line-height: 1.35; color: rgba(0,0,0,.8); }
.pc-chk { flex: none; width: 25px; height: 25px; border-radius: 50%; background: #4873B4; display: grid; place-items: center; }
.pc-chk svg { width: 14px; height: 14px; }

/* --- Responsif Pricing --- */
@media (max-width: 1024px) {
    .pricing-head { flex-direction: column; gap: 20px; }
    .pricing-lead { margin-top: 0; }
    .pricing-cards { grid-template-columns: 1fr; gap: 24px; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .pricing {
        padding: 30px 24px 64px;
        background: linear-gradient(7deg, #FFF 7.92%, #BED5F4 32.4%, #B9E0E7 96.49%);
    }
    .pricing-head { margin-bottom: 34px; gap: 14px; align-items: center; text-align: center; }
    .pricing-title {
        font-size: 20px; font-weight: 500; line-height: 50px;
        letter-spacing: .4px; max-width: 228px; margin: 0 auto;
    }
    .pricing-title strong { font-weight: 800; }
    .pt-big { font-size: 40px; font-weight: 800; letter-spacing: .8px; }
    .pricing-lead {
        max-width: 288px; margin: 0 auto;
        font-size: 18px; font-weight: 400; line-height: 35px;
        color: rgba(0,0,0,.8);
    }
    .pricing-lead strong { font-weight: 700; color: #000; }

    /* Kartu lebih ringkas tapi alur informasi tetap jelas */
    .pricing-cards { gap: 18px; max-width: 330px; }
    .price-card { padding: 20px 24px 24px; border-radius: 22px; }
    .pc-label { font-size: 14px; }
    .pc-price { font-size: 30px; letter-spacing: .6px; margin-top: 2px; }
    .pc-sub { font-size: 14px; line-height: 1.3; min-height: 0; }
    .pc-list { gap: 13px; margin-top: 18px; }
    .pc-list li { font-size: 14px; gap: 12px; }
    .pc-chk { width: 20px; height: 20px; }
    .pc-chk svg { width: 11px; height: 11px; }
    .pricing-bubble { width: 320px; height: 320px; bottom: -120px; right: -110px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative; z-index: 5;
    margin-top: 40px;
    color: #DCE6F4;
    background: linear-gradient(180deg, #24395A 0%, #1F324E 100%);
}
.footer-inner {
    max-width: 1380px; margin: 0 auto;
    padding: 66px 60px 44px;
    display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer-brand .f-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand .brand-icon { width: 46px; height: 46px; object-fit: contain; }
.footer-brand .brand-word { height: 28px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.f-desc { margin-top: 20px; max-width: 360px; font-size: 15px; line-height: 1.7; color: rgba(220,230,244,.78); }

.f-social { margin-top: 26px; }
.f-social-title { display: block; font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: rgba(220,230,244,.6); margin-bottom: 14px; }
.f-social-row { display: flex; flex-direction: column; gap: 12px; }
.f-social-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #DCE6F4; font-size: 15px; font-weight: 600; width: fit-content; transition: color .25s var(--ease); }
.f-social-ic { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); transition: background .25s var(--ease), transform .25s var(--ease); }
.f-social-ic svg { width: 19px; height: 19px; color: #fff; }
.f-social-link:hover { color: #fff; }
.f-social-link:hover .f-social-ic { background: var(--blue); transform: translateY(-2px); }

.footer-col h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-col a, .footer-col .f-line {
    display: block; font-size: 15px; line-height: 1.5; color: rgba(220,230,244,.78);
    text-decoration: none; margin-bottom: 13px; transition: color .25s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-contact .f-funded { margin-top: 18px; font-size: 13px; color: rgba(220,230,244,.55); }

.footer-bottom {
    max-width: 1380px; margin: 0 auto;
    padding: 22px 60px 30px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13.5px; color: rgba(220,230,244,.6); }

/* --- Responsif Footer --- */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding: 54px 36px 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { padding: 20px 36px 28px; }
}
@media (max-width: 768px) {
    .site-footer { margin-top: 0; }
    /* Brand di atas (tengah), lalu kolom link 2 baris supaya ringkas */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px 18px; padding: 40px 26px 28px;
    }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-brand .f-logo { justify-content: center; }
    .f-desc { margin: 16px auto 0; font-size: 14px; max-width: 320px; }
    .f-social { margin-top: 22px; display: flex; flex-direction: column; align-items: center; }
    .f-social-title { text-align: center; margin-bottom: 12px; }
    .f-social-row { flex-direction: row; gap: 14px; flex-wrap: wrap; justify-content: center; }
    .f-social-link { width: auto; font-size: 14px; gap: 9px; }
    .f-social-ic { width: 34px; height: 34px; }
    .footer-col { font-size: 14px; }
    .footer-col h4 { font-size: 15.5px; margin-bottom: 14px; }
    .footer-col a, .footer-col .f-line { font-size: 14px; margin-bottom: 10px; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-contact .f-funded { margin-top: 12px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 6px; padding: 18px 26px 24px; }
}

/* ============================================================
   ORDER / PESAN — transisi ke WhatsApp / Instagram
   ============================================================ */
.order {
    position: relative; z-index: 5;
    max-width: 1380px; margin: 0 auto;
    padding: 30px 60px 100px;
    scroll-margin-top: 96px;            /* offset header sticky saat di-scroll ke sini */
}
.order-title {
    font-size: 36px; font-weight: 600; color: var(--navy);
    letter-spacing: .72px; line-height: 1.35; margin: 0 0 30px 14px;
    text-shadow: 0 4px 8px rgba(31,50,78,.14);
}
.order-title strong { font-size: 48px; font-weight: 800; letter-spacing: .96px; }
.order-title b { font-weight: 700; }

.order-card {
    position: relative; overflow: hidden;
    background: linear-gradient(90deg, #1F324E 0%, #4873B4 100%);
    border-radius: 35px;
    box-shadow: 0 24px 60px rgba(31,50,78,.30);
    padding: 56px 70px 70px; color: #fff;
}
/* cahaya lembut yang bergerak halus di kartu → kesan premium */
.order-glow {
    position: absolute; right: -120px; bottom: -160px; z-index: 0;
    width: 460px; height: 460px; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 70%);
    animation: order-glow 9s ease-in-out infinite;
}
@keyframes order-glow {
    0%,100% { transform: translate(0,0) scale(1); opacity: .8; }
    50%     { transform: translate(-40px,-30px) scale(1.12); opacity: 1; }
}
.order-card > *:not(.order-glow) { position: relative; z-index: 1; }

.order-card-title { font-size: 32px; font-weight: 500; display: flex; align-items: center; gap: 14px; margin: 0; }
.order-card-title strong { font-weight: 700; font-size: 36px; }

.order-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; }
.order-channel {
    display: flex; align-items: center; gap: 20px;
    background: #fff; border-radius: 20px; padding: 20px 30px; min-height: 116px;
    box-sizing: border-box; text-decoration: none;
    color: var(--navy); font-size: 28px; font-weight: 700;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.order-channel.is-ig { border: 1.5px solid #4873B4; }
.order-channel-ic { flex: none; width: 72px; height: 72px; display: grid; place-items: center; }
.order-channel-ic img { width: 100%; height: 100%; object-fit: contain; }
.order-channel:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.22); }

.order-card-sub { margin: 44px 0 0; font-size: 32px; font-weight: 500; }
.order-card-sub strong { font-weight: 700; }

.order-format { position: relative; margin-top: 22px; background: #fff; border-radius: 20px; padding: 36px 44px; }
.order-format-text {
    margin: 0; font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 17px; line-height: 2.05; color: var(--navy);
    white-space: pre-wrap; word-break: break-word;
}
.order-copy {
    position: absolute; top: 20px; right: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: #fff; border: none; border-radius: 12px;
    padding: 11px 18px; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
    box-shadow: 0 6px 16px rgba(31,50,78,.20);
    transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
}
.order-copy:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(31,50,78,.26); }
.order-copy:active { transform: translateY(0) scale(.97); }
.order-copy svg { width: 16px; height: 16px; }
.order-copy .ic-check { display: none; }
.order-copy.copied { background: #2B9D5B; }
.order-copy.copied .ic-copy { display: none; }
.order-copy.copied .ic-check { display: block; }

/* --- Responsif Order --- */
@media (max-width: 1024px) {
    .order { padding: 24px 36px 80px; }
    .order-card { padding: 44px 44px 52px; border-radius: 28px; }
    .order-channels { gap: 24px; }
    .order-channel { font-size: 24px; min-height: 96px; gap: 16px; padding: 16px 24px; }
    .order-channel-ic { width: 60px; height: 60px; }
    .order-card-title, .order-card-sub { font-size: 26px; }
    .order-card-title strong { font-size: 30px; }
    .order-format { padding: 30px 32px; }
}
@media (max-width: 768px) {
    .order { padding: 26px 24px 56px; scroll-margin-top: 80px;
        background: linear-gradient(7deg, #FFF 7.92%, #BED5F4 32.4%, #B9E0E7 96.49%); }
    .order-title { font-size: 22px; line-height: 1.3; margin: 0 0 20px; text-align: center; }
    .order-title strong { font-size: 30px; }
    .order-card { padding: 28px 22px 32px; border-radius: 24px; }
    .order-card-title { font-size: 20px; gap: 10px; }
    .order-card-title strong { font-size: 23px; }
    .order-channels { grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
    .order-channel { font-size: 19px; min-height: 72px; gap: 14px; padding: 14px 20px; border-radius: 16px; }
    .order-channel-ic { width: 46px; height: 46px; }
    .order-card-sub { margin-top: 30px; font-size: 20px; }
    .order-format { padding: 44px 20px 22px; border-radius: 16px; }
    .order-format-text { font-size: 13px; line-height: 1.95; }
    .order-copy { top: 12px; right: 12px; padding: 8px 13px; font-size: 12.5px; }
}

/* ============================================================
   ORDER PAGE — form dinamis + preview langsung
   ============================================================ */
.order-page { padding-top: 40px; }
.order-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }
.order-main { min-width: 0; }

.order-card-sub { margin-bottom: 4px; }

/* Form */
.order-form { margin-top: 18px; display: flex; flex-direction: column; gap: 16px; }
.of-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.of-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.of-field label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.86); letter-spacing: .2px; }
.of-opt { font-weight: 500; color: rgba(255,255,255,.5); font-size: 12.5px; }
.of-field input,
.of-field select,
.of-field textarea {
    font: inherit; font-size: 15px; color: var(--navy);
    background: #fff; border: 1.5px solid transparent; border-radius: 13px;
    padding: 12px 15px; width: 100%; box-sizing: border-box;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
}
.of-field textarea { resize: vertical; min-height: 46px; line-height: 1.5; }
.of-field input::placeholder, .of-field textarea::placeholder { color: #9AA8BD; }
.of-field input:focus,
.of-field select:focus,
.of-field textarea:focus {
    outline: none; border-color: var(--blue-cta);
    box-shadow: 0 0 0 4px rgba(102,156,242,.25);
}
.of-field select { appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231F324E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}

/* Sisi kanan: preview + aksi (sticky biar selalu kelihatan) */
.order-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.order-preview-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; overflow: hidden; backdrop-filter: blur(4px); }
.order-preview-head { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.order-preview-head .dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.35); }
.order-preview-head .dot:nth-child(1) { background: #FF6058; }
.order-preview-head .dot:nth-child(2) { background: #FFBD2E; }
.order-preview-head .dot:nth-child(3) { background: #28C840; }
.order-preview-title { margin-left: 8px; font-size: 13.5px; font-weight: 700; letter-spacing: .4px; color: rgba(255,255,255,.7); }
.order-preview-text {
    margin: 0; padding: 22px 24px; min-height: 220px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 14.5px; line-height: 1.85; color: #EAF1FB;
    white-space: pre-wrap; word-break: break-word;
}

.order-actions { display: flex; flex-direction: column; gap: 12px; }
.order-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 11px;
    border: none; border-radius: 15px; padding: 15px 20px; cursor: pointer;
    font: inherit; font-size: 16px; font-weight: 700; text-decoration: none;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
}
.order-btn img { width: 24px; height: 24px; object-fit: contain; }
.order-btn svg { width: 18px; height: 18px; }
.order-btn:hover { transform: translateY(-2px); }
.order-btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.order-btn-ghost:hover { background: rgba(255,255,255,.2); }
.order-btn-ghost .ic-check { display: none; }
.order-btn-ghost.copied { background: #2B9D5B; border-color: #2B9D5B; }
.order-btn-ghost.copied .ic-copy { display: none; }
.order-btn-ghost.copied .ic-check { display: inline; }
.order-btn-wa { background: #25D366; color: #0B3D24; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.order-btn-wa:hover { box-shadow: 0 16px 30px rgba(37,211,102,.4); }
.order-btn-ig { background: #fff; color: var(--navy); box-shadow: 0 8px 20px rgba(0,0,0,.16); }
.order-btn-ig:hover { box-shadow: 0 14px 28px rgba(0,0,0,.22); }

/* --- Responsif Order Page --- */
@media (max-width: 1024px) {
    .order-grid { grid-template-columns: 1fr; gap: 30px; }
    .order-side { position: static; }
    .order-preview-text { min-height: 0; }
}
@media (max-width: 768px) {
    .order-page { padding-top: 26px; }
    .of-row { grid-template-columns: 1fr; gap: 14px; }
    .of-field input, .of-field select, .of-field textarea { font-size: 14px; padding: 11px 13px; border-radius: 11px; }
    .order-preview-text { font-size: 13px; padding: 18px 18px; }
    .order-btn { font-size: 15px; padding: 14px 18px; }
}

.lang-switch-mobile {
    display: none;
}

@media (max-width: 768px) {
    .lang-switch-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px 0;
        color: inherit;
        font-size: 15px;
        font-weight: 600;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .lang-switch-mobile .lang-label {
        color: #ffffff;
    }
}