/* ================================================================
   JUALMOBILDISINI.ID — landing.css
   Light Colorful Theme · Mobile-First
   ================================================================ */

/* ── Variables ── */
:root {
    --blue:     #1D6EF5;
    --blue-d:   #1456C8;
    --blue-l:   #EBF2FF;
    --orange:   #FF5C1A;
    --orange-l: #FFF0EB;
    --green:    #16A34A;
    --green-l:  #ECFDF5;
    --purple:   #7C3AED;
    --purple-l: #F5F3FF;
    --teal:     #0D9488;
    --teal-l:   #F0FDFA;
    --amber:    #D97706;
    --amber-l:  #FFFBEB;
    --yellow:   #FACC15;
    --red:      #DC2626;
    --ink:      #1A1D2E;
    --ink2:     #374151;
    --ink3:     #6B7280;
    --bg:       #F7F8FC;
    --bg2:      #fff;
    --bg3:      #EEF1F8;
    --bdr:      rgba(0,0,0,.08);
    --bdr2:     rgba(0,0,0,.12);
    --r:        12px;
    --rl:       20px;
    --sh:       0 8px 40px rgba(0,0,0,.1);
    --shsm:     0 2px 16px rgba(0,0,0,.06);
    --ff:       'Plus Jakarta Sans', sans-serif;
    --ffd:      'Syne', 'Plus Jakarta Sans', sans-serif;
    --tr:       .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html  { scroll-behavior: smooth }
body  { font-family: var(--ff); background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-text-size-adjust: 100% }
img   { max-width: 100%; height: auto; display: block }

::-webkit-scrollbar { width: 5px }
::-webkit-scrollbar-track { background: var(--bg3) }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px }

h1,h2,h3,h4,h5,h6 { font-family: var(--ffd); font-weight: 700 }

.tblue  { color: var(--blue) }
.torange{ color: var(--orange) }
.tgreen { color: var(--green) }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.nbar-main {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1.5px solid rgba(29,110,245,.1);
    height: 68px;
    padding: 0;
    transition: var(--tr);
    z-index: 1030;
}
.nbar-main.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08) }
.nbar-main .container { height: 100% }

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none }
.logo-img-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    object-fit: contain;
    background: #fff;
}
.logo-stack  { display: flex; flex-direction: column; line-height: 1.1 }
.logo-name   { font-family: var(--ffd); font-size: 1rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em }
.logo-name em{ font-style: normal; color: var(--blue) }
.logo-tag    { font-size: .55rem; color: var(--ink3); letter-spacing: .05em; text-transform: uppercase; font-weight: 500 }

.nav-a { font-size: .82rem; color: var(--ink3) !important; font-weight: 500; padding: 6px 12px !important; border-radius: 8px; transition: var(--tr) }
.nav-a:hover { color: var(--blue) !important; background: var(--blue-l) }

.btn-cta-nav {
    display: flex; align-items: center; gap: 7px;
    background: var(--blue); color: #fff !important;
    font-family: var(--ffd); font-weight: 700; font-size: .78rem;
    padding: 9px 20px; border-radius: 50px; border: none;
    cursor: pointer; transition: var(--tr); text-decoration: none;
    letter-spacing: .01em; white-space: nowrap;
}
.btn-cta-nav:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,110,245,.35); color: #fff !important }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-p {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: #fff;
    font-family: var(--ffd); font-weight: 700; font-size: .9rem;
    padding: 13px 28px; border-radius: 50px; border: none;
    cursor: pointer; transition: var(--tr); text-decoration: none;
    justify-content: center;
}
.btn-p:hover { background: var(--blue-d); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,110,245,.35) }

.btn-o {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--ink2);
    font-family: var(--ffd); font-weight: 600; font-size: .9rem;
    padding: 13px 26px; border-radius: 50px;
    border: 1.5px solid var(--bdr2); cursor: pointer;
    transition: var(--tr); text-decoration: none;
    justify-content: center;
}
.btn-o:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px) }

.btn-submit-full {
    width: 100%; background: linear-gradient(135deg,var(--blue),var(--blue-d));
    color: #fff; font-family: var(--ffd); font-weight: 700; font-size: .9rem;
    padding: 14px; border-radius: 50px; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: var(--tr); box-shadow: 0 6px 24px rgba(29,110,245,.25);
}
.btn-submit-full:hover { box-shadow: 0 10px 32px rgba(29,110,245,.4); transform: translateY(-1px) }

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.sec-lbl {
    font-size: .68rem; font-weight: 700; letter-spacing: .15em;
    text-transform: uppercase; color: var(--blue);
    display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.sec-lbl::before { content: ''; width: 22px; height: 2.5px; background: var(--blue); border-radius: 2px }
.sec-ttl { font-size: clamp(1.7rem,5vw,2.7rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 12px; color: var(--ink) }
.sec-sub  { color: var(--ink3); font-size: .92rem; line-height: 1.75 }

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
.trust-strip  { background: #fff; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); padding: 13px 0; overflow: hidden }
.trust-inner  { display: flex; gap: 40px; animation: scrollx 22s linear infinite; width: max-content }
@keyframes scrollx { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.trust-item   { font-family: var(--ffd); font-weight: 600; font-size: .73rem; color: var(--ink3); letter-spacing: .05em; text-transform: uppercase; opacity: .55; white-space: nowrap; display: flex; align-items: center; gap: 6px }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-sec {
    min-height: 100svh; position: relative;
    display: flex; align-items: center;
    overflow: hidden; padding-top: 68px;
    background: linear-gradient(135deg,#EBF2FF 0%,#F0FDFA 40%,#FFF0EB 100%);
}
.hero-pbg {
    position: absolute; inset: -60px;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover; background-position: center 50%;
    opacity: .1; will-change: transform;
}
.hero-sh { position: absolute; border-radius: 50%; pointer-events: none }
.hs1 { width: 500px; height: 500px; background: var(--blue);   opacity: .07; top: -120px; right: -80px }
.hs2 { width: 300px; height: 300px; background: var(--purple); opacity: .06; bottom: -60px; right: 220px }
.hs3 { width: 200px; height: 200px; background: var(--orange); opacity: .05; top: 80px; right: 320px }
.hero-car { position: absolute; right: 0; bottom: 0; width: 58%; pointer-events: none; opacity: .08 }
.hero-c   { position: relative; z-index: 2 }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1.5px solid rgba(29,110,245,.2);
    color: var(--blue); font-size: .72rem; font-weight: 700;
    padding: 6px 14px; border-radius: 50px; letter-spacing: .06em;
    text-transform: uppercase; margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(29,110,245,.1);
}
.bdot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; flex-shrink: 0 }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-title { font-size: clamp(2.8rem,10vw,4.2rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.03; margin-bottom: 16px; color: var(--ink) }
.hero-sub   { font-size: 1rem; color: var(--ink3); max-width: 460px; margin-bottom: 28px; line-height: 1.75 }

/* Stats card */
.stats-card {
    display: inline-flex; align-items: stretch;
    background: #fff; border-radius: 18px;
    padding: 20px 26px; gap: 0;
    box-shadow: 0 6px 28px rgba(0,0,0,.1);
    border: 1px solid var(--bdr); margin-top: 32px;
}
.stat-it  { text-align: center; min-width: 90px }
.stat-div { width: 1px; background: var(--bdr); margin: 0 18px; align-self: stretch }
.stat-n   { font-family: var(--ffd); font-size: 1.8rem; font-weight: 800; line-height: 1; margin-bottom: 5px }
.stat-l   { font-size: .66rem; color: var(--ink3); letter-spacing: .05em; text-transform: uppercase; font-weight: 600 }

/* ═══════════════════════════════════════
   SECTION: TAWARKAN HOME
═══════════════════════════════════════ */
.sec-twr { padding: 6rem 0; background: linear-gradient(135deg,#F0F6FF 0%,#F0FDFA 100%); position: relative; overflow: hidden }
.sec-twr::before { content: ''; position: absolute; top: -120px; right: -80px; width: 400px; height: 400px; background: var(--blue); border-radius: 50%; opacity: .04 }
.prev-card { background: #fff; border-radius: var(--rl); padding: 26px; box-shadow: var(--sh); border: 1px solid var(--bdr); position: relative; overflow: hidden }
.prev-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--blue),var(--purple),var(--orange)) }
.inp-mock { background: var(--bg3); border: 1.5px solid var(--bdr); border-radius: 9px; padding: 10px 14px; color: var(--ink3); font-size: .82rem; margin-bottom: 8px }
.lbl-sm   { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: 7px }
.ben-row  { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px }
.bicon    { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0 }
.bi-b { background: var(--blue-l);   color: var(--blue) }
.bi-g { background: var(--green-l);  color: var(--green) }
.bi-o { background: var(--orange-l); color: var(--orange) }
.safety-label { font-size: .74rem; color: var(--ink3); display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 10px }

/* ═══════════════════════════════════════
   SECTION: PROSES
═══════════════════════════════════════ */
.sec-proc { padding: 6rem 0; background: #fff }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 44px; position: relative }
.proc-grid::before { content: ''; position: absolute; top: 28px; left: 12%; width: 76%; height: 2.5px; background: linear-gradient(90deg,var(--blue),var(--purple),var(--orange),#E5E7EB); border-radius: 2px; z-index: 0 }
.pstep    { text-align: center; position: relative; z-index: 1 }
.pnum     { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ffd); font-weight: 800; font-size: 1.1rem; color: #fff; margin: 0 auto 16px }
.pn1 { background: var(--blue);   box-shadow: 0 6px 20px rgba(29,110,245,.3) }
.pn2 { background: var(--purple); box-shadow: 0 6px 20px rgba(124,58,237,.3) }
.pn3 { background: var(--orange); box-shadow: 0 6px 20px rgba(255,92,26,.3)  }
.pn4 { background: var(--green);  box-shadow: 0 6px 20px rgba(22,163,74,.3)  }
.pstep h5 { font-size: .9rem; font-weight: 700; margin-bottom: 6px }
.pstep p  { font-size: .78rem; color: var(--ink3); line-height: 1.6 }

/* ═══════════════════════════════════════
   SECTION: FEATURES/KELEBIHAN
═══════════════════════════════════════ */
.sec-feat { padding: 6rem 0; background: var(--bg) }
.feat-card { background: #fff; border: 1.5px solid var(--bdr); border-radius: var(--rl); padding: 24px; height: 100%; transition: var(--tr); position: relative; overflow: hidden; cursor: default }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: rgba(29,110,245,.2) }
.feat-num  { position: absolute; top: 16px; right: 18px; font-family: var(--ffd); font-size: 3rem; font-weight: 800; color: rgba(0,0,0,.04); line-height: 1; transition: var(--tr) }
.feat-card:hover .feat-num { color: rgba(29,110,245,.07) }
.feat-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px; transition: var(--tr) }
.feat-card:hover .feat-icon { transform: scale(1.08) }
.fi1 { background: var(--blue-l);   color: var(--blue)   }
.fi2 { background: var(--purple-l); color: var(--purple) }
.fi3 { background: var(--orange-l); color: var(--orange) }
.fi4 { background: var(--green-l);  color: var(--green)  }
.fi5 { background: var(--teal-l);   color: var(--teal)   }
.fi6 { background: var(--amber-l);  color: var(--amber)  }
.feat-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--ink) }
.feat-card p  { font-size: .8rem; color: var(--ink3); line-height: 1.6 }

/* ═══════════════════════════════════════
   SECTION: GALLERY / BUKTI NYATA
═══════════════════════════════════════ */
.sec-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg,#F0F6FF 0%,#F5F3FF 100%);
    position: relative; overflow: hidden;
}
.sec-gallery::before {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 360px; height: 360px; background: var(--blue);
    border-radius: 50%; opacity: .04;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

/* 5 items: first row 3, second row 2 centered */
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--rl);
    cursor: pointer;
    aspect-ratio: 4/5;
    background: var(--bg3);
    box-shadow: var(--shsm);
    transition: var(--tr);
}
.gallery-item:nth-child(4) { grid-column: 1; }
.gallery-item:nth-child(5) { grid-column: 2; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    display: block;
}
.gallery-item:hover img { transform: scale(1.05) }
.gallery-item:hover { box-shadow: var(--sh) }

.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(29,110,245,.7) 0%, transparent 50%);
    opacity: 0; transition: var(--tr);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1 }
.gallery-overlay-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: grid; place-items: center;
    font-size: 1.1rem; color: var(--blue);
    transform: translateY(10px); transition: var(--tr) .05s;
}
.gallery-item:hover .gallery-overlay-icon { transform: translateY(0) }

/* Verified badge on gallery item */
.gallery-badge {
    position: absolute; top: 12px; left: 12px;
    background: #fff; color: var(--green);
    font-size: .62rem; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 50px;
    display: flex; align-items: center; gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* CTA below gallery */
.gallery-cta {
    background: #fff; border-radius: var(--rl);
    padding: 28px 32px; margin-top: 40px;
    border: 1.5px solid rgba(29,110,245,.12);
    box-shadow: var(--shsm);
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.gallery-cta-text h3 { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 6px }
.gallery-cta-text p  { font-size: .85rem; color: var(--ink3); line-height: 1.6; max-width: 480px }

/* ── LIGHTBOX ── */
.lightbox-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,12,20,.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
    padding: 16px;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all }
.lightbox-inner { position: relative; max-width: 480px; width: 100%; max-height: 90vh; display: flex; flex-direction: column }
.lightbox-img {
    width: 100%; max-height: 78vh;
    object-fit: contain; border-radius: 14px;
    display: block;
}
.lightbox-close {
    position: absolute; top: -14px; right: -14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: #fff; color: var(--ink); border: none;
    display: grid; place-items: center; font-size: 1rem;
    cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.2);
    transition: var(--tr);
}
.lightbox-close:hover { background: var(--red); color: #fff }
.lightbox-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 14px;
}
.lightbox-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-size: 1rem;
    display: grid; place-items: center; cursor: pointer;
    transition: var(--tr);
}
.lightbox-btn:hover { background: var(--blue); border-color: var(--blue) }
.lightbox-counter { font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 600 }

/* ═══════════════════════════════════════
   FORM PAGE
═══════════════════════════════════════ */
.form-hero { background: linear-gradient(135deg,#EBF2FF 0%,#F5F3FF 100%); padding: 7rem 0 4rem; position: relative; overflow: hidden }
.form-hero::before { content: ''; position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: linear-gradient(135deg,rgba(29,110,245,.06),rgba(124,58,237,.06)); border-radius: 50% }
.form-sec-p { padding: 4.5rem 0 6rem; background: var(--bg) }

.fsteps { display: flex; align-items: center; max-width: 600px; margin: 0 auto 3rem }
.fstep-c { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: var(--ffd); font-weight: 700; font-size: .78rem; flex-shrink: 0 }
.fsc-done { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(29,110,245,.3) }
.fsc-pend { background: #fff; border: 2px solid var(--bdr2); color: var(--ink3) }
.fstep-l { flex: 1; height: 2.5px; margin: 0 8px; border-radius: 2px }
.fsl-done { background: var(--blue) }
.fsl-pend { background: var(--bdr) }

.fcard   { background: #fff; border: 1.5px solid var(--bdr); border-radius: var(--rl); overflow: hidden; margin-bottom: 18px; box-shadow: var(--shsm) }
.fcard-h { padding: 15px 22px; border-bottom: 1.5px solid var(--bdr); display: flex; align-items: center; gap: 10px }
.fhi     { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; font-size: .9rem; flex-shrink: 0 }
.fhi-b { background: var(--blue-l);   color: var(--blue)   }
.fhi-o { background: var(--orange-l); color: var(--orange) }
.fhi-g { background: var(--green-l);  color: var(--green)  }
.fcard-ht { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase }
.fht-b { color: var(--blue)   }
.fht-o { color: var(--orange) }
.fht-g { color: var(--green)  }
.fcard-b { padding: 22px }
.flbl    { font-size: .72rem; font-weight: 600; letter-spacing: .03em; color: var(--ink3); text-transform: uppercase; display: block; margin-bottom: 6px }
.flbl span { color: var(--red) }
.finput  {
    width: 100%; background: var(--bg3) !important;
    border: 1.5px solid var(--bdr) !important; border-radius: 10px !important;
    color: var(--ink) !important; padding: 11px 14px !important;
    font-family: var(--ff) !important; font-size: .87rem !important;
    transition: var(--tr) !important; -webkit-appearance: none;
    line-height: 1.4;
}
.finput:focus { border-color: var(--blue) !important; background: #fff !important; box-shadow: 0 0 0 3px rgba(29,110,245,.12) !important; outline: none !important }
.finput::placeholder { color: var(--ink3) !important }
.field-error { color: var(--red); font-size: .75rem; margin-top: .3rem }

/* ═══════════════════════════════════════
   SUCCESS PAGE
═══════════════════════════════════════ */
.success-sec { padding: 6rem 0; background: var(--bg); min-height: 80vh; display: flex; align-items: center }
.scard { background: #fff; border: 1.5px solid var(--bdr); border-radius: var(--rl); padding: 3.5rem; text-align: center; box-shadow: var(--sh); position: relative; overflow: hidden }
.scard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg,var(--blue),var(--purple),var(--orange),var(--green)); background-size: 200%; animation: rainbow 3s linear infinite }
@keyframes rainbow { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }
.ok-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--green-l); border: 2.5px solid rgba(22,163,74,.3); display: grid; place-items: center; font-size: 2.2rem; color: var(--green); margin: 0 auto 20px; animation: pop .6s cubic-bezier(.175,.885,.32,1.275) }
@keyframes pop { 0%{transform:scale(0);opacity:0} 100%{transform:scale(1);opacity:1} }
.det-box { background: var(--bg3); border: 1px solid var(--bdr); border-radius: var(--r); padding: 18px; text-align: left; margin: 14px 0 }
.det-hdr { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px }
.det-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--bdr) }
.det-row:last-child { border-bottom: none }
.det-l   { font-size: .78rem; color: var(--ink3) }
.det-v   { font-size: .82rem; font-weight: 600; color: var(--ink) }
.nxt-box { background: var(--blue-l); border: 1px solid rgba(29,110,245,.15); border-radius: var(--r); padding: 18px; text-align: left; margin: 14px 0 }
.nxt-hdr { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px }
.nxt-item{ display: flex; align-items: center; gap: 10px; margin-bottom: 9px; font-size: .82rem; color: var(--ink2) }
.nxt-n   { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: #fff; font-size: .65rem; font-weight: 700; display: grid; place-items: center; flex-shrink: 0 }
.email-ok{ background: var(--green-l); border: 1px solid rgba(22,163,74,.25); border-radius: 9px; padding: 10px 16px; font-size: .8rem; color: var(--green); display: flex; align-items: center; gap: 8px; margin: 16px 0; font-weight: 500; text-align: left }

/* ═══════════════════════════════════════
   MEGA FOOTER
═══════════════════════════════════════ */
.mega-footer { background: #1A1D2E; padding: 5rem 0 0 }
.ft-desc  { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; margin: 10px 0 18px }
.ft-socials { display: flex; gap: 8px }
.soc-btn  { width: 36px; height: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; color: rgba(255,255,255,.4); display: grid; place-items: center; text-decoration: none; font-size: .9rem; transition: var(--tr) }
.soc-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px) }
.ft-col-t { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px }
.ft-links { list-style: none; padding: 0 }
.ft-links li { margin-bottom: 8px }
.ft-links a  { color: rgba(255,255,255,.5); text-decoration: none; font-size: .82rem; transition: var(--tr) }
.ft-links a:hover { color: #fff }
.ft-ci   { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px }
.ft-ci i { color: var(--blue); font-size: .85rem; margin-top: 2px; flex-shrink: 0 }
.ft-ci span { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.5 }
.ft-badge{ display: inline-flex; align-items: center; gap: 6px; background: rgba(29,110,245,.15); border: 1px solid rgba(29,110,245,.3); color: #93C5FD; padding: 4px 12px; border-radius: 50px; font-size: .7rem; font-weight: 600; margin-bottom: 14px }
.ft-bottom{ border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; margin-top: 3.5rem }
.ft-bottom p { font-size: .74rem; color: rgba(255,255,255,.3); margin: 0 }
.ft-blinks a { font-size: .74rem; color: rgba(255,255,255,.3); text-decoration: none; transition: var(--tr) }
.ft-blinks a:hover { color: rgba(255,255,255,.7) }

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════ */

/* Navbar mobile */
@media(max-width:991px) {
    .nbar-main { height: auto; min-height: 68px; padding: 10px 0 }
    .nbar-main .container { height: auto; flex-wrap: wrap }
    #navMenu {
        background: #fff; border-top: 1px solid var(--bdr);
        margin-top: 10px; padding: 12px 0;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }
    .navbar-nav { gap: 2px !important; padding: 0 6px }
    .btn-cta-nav { margin: 10px 6px 2px !important; justify-content: center }
}

/* Hero mobile */
@media(max-width:767px) {
    .hero-sec   { min-height: 100svh; padding: 76px 0 44px; align-items: flex-start }
    .hero-car   { display: none !important }
    .hero-sh.hs1{ width: 260px; height: 260px; top: -60px; right: -60px }
    .hero-sh.hs2{ display: none }
    .hero-sh.hs3{ display: none }
    .hero-badge { font-size: .65rem; padding: 5px 12px; margin-bottom: 14px }
    .hero-title { font-size: clamp(2.5rem,12vw,3.6rem); margin-bottom: 14px }
    .hero-sub   { font-size: .92rem; margin-bottom: 20px; max-width: 100% }

    .hero-btns  { display: flex; flex-direction: column; gap: 10px }
    .hero-btns .btn-p { width: 100%; font-size: .88rem; padding: 13px 20px }
    .hero-btns .btn-o { width: 100%; font-size: .88rem; padding: 13px 20px }

    /* Stats card vertical on mobile */
    .stats-card {
        display: flex !important; flex-direction: column !important;
        width: 100%; max-width: 280px;
        margin-top: 28px; padding: 20px 24px;
    }
    .stat-div { width: 100% !important; height: 1px !important; margin: 14px 0 !important }
    .stat-it  { min-width: unset }
    .stat-n   { font-size: 2.1rem }
}

/* Trust strip */
@media(max-width:767px) {
    .trust-item { font-size: .68rem }
    .trust-inner { gap: 28px }
}

/* Tawarkan Home */
@media(max-width:767px) {
    .sec-twr { padding: 3.5rem 0 }
    .sec-twr::before { display: none }
    .prev-card { padding: 18px }
    .inp-mock  { font-size: .78rem; padding: 8px 12px }
    .ben-row   { margin-bottom: 14px }
    .bicon     { width: 40px; height: 40px; font-size: .95rem; border-radius: 10px }
}

/* Sections general */
@media(max-width:767px) {
    .sec-proc { padding: 3.5rem 0 }
    .sec-feat { padding: 3.5rem 0 }
    .sec-gallery { padding: 3.5rem 0 }
    .sec-ttl  { font-size: clamp(1.6rem,7vw,2.2rem) }
    .sec-lbl  { font-size: .62rem }
    .sec-sub  { font-size: .86rem }
}

/* Process */
@media(max-width:767px) {
    .proc-grid { grid-template-columns: 1fr 1fr !important; gap: 20px; margin-top: 28px }
    .proc-grid::before { display: none !important }
    .pnum  { width: 48px; height: 48px; font-size: .95rem; margin-bottom: 12px }
    .pstep h5 { font-size: .82rem }
    .pstep p  { font-size: .73rem }
}

/* Features */
@media(max-width:767px) {
    .feat-card  { padding: 18px }
    .feat-icon  { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 12px }
    .feat-card h4 { font-size: .88rem }
    .feat-card p  { font-size: .76rem }
    .feat-num   { font-size: 2.5rem }
}

/* Gallery */
@media(max-width:767px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px }
    .gallery-item:nth-child(4) { grid-column: auto }
    .gallery-item:nth-child(5) { grid-column: auto }
    .gallery-item { aspect-ratio: 3/4 }
    .gallery-cta  { padding: 20px 18px; flex-direction: column; text-align: center }
    .gallery-cta-text h3 { font-size: .98rem }
    .gallery-cta-text p  { font-size: .82rem }
    .gallery-cta .btn-p  { width: 100%; justify-content: center }
}
@media(max-width:400px) {
    .gallery-grid { grid-template-columns: 1fr }
    .gallery-item { aspect-ratio: 4/3 }
    .gallery-item:nth-child(n) { grid-column: auto }
}

/* Form page */
@media(max-width:767px) {
    .form-hero   { padding: 5rem 0 2.5rem }
    .form-hero::before { display: none }
    .form-sec-p  { padding: 2.5rem 0 4rem }
    .fsteps { max-width: 100%; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-bottom: 2rem }
    .fsteps::-webkit-scrollbar { display: none }
    .fstep-c { width: 30px; height: 30px; font-size: .72rem }
    .fstep-l { min-width: 18px; margin: 0 4px }
    .fcard-b { padding: 16px }
    .fcard-h { padding: 12px 16px }
    .fcard-ht{ font-size: .58rem }
    .fhi     { width: 28px; height: 28px; font-size: .8rem }
    .finput  { font-size: .85rem !important; padding: 10px 12px !important }
    .flbl    { font-size: .66rem }
    .btn-submit-full { font-size: .86rem; padding: 13px }
    .safety-label    { font-size: .7rem }
}

/* Success */
@media(max-width:767px) {
    .success-sec { padding: 2.5rem 0 4rem; min-height: unset }
    .scard       { padding: 2rem 1.25rem }
    .ok-icon     { width: 68px; height: 68px; font-size: 1.9rem }
    .scard h1    { font-size: 1.45rem !important }
    .det-box     { padding: 14px }
    .det-l,.det-v{ font-size: .75rem }
    .det-row     { padding: 8px 0 }
    .nxt-box     { padding: 14px }
    .nxt-item    { font-size: .78rem }
    .nxt-n       { width: 22px; height: 22px; font-size: .6rem }
    .scard .d-flex.flex-wrap { flex-direction: column }
    .scard .d-flex.flex-wrap .btn-o,
    .scard .d-flex.flex-wrap .btn-p { width: 100%; justify-content: center }
}

/* Footer */
@media(max-width:767px) {
    .mega-footer { padding: 3rem 0 0 }
    .ft-desc     { max-width: 100% }
    .ft-bottom .d-flex { flex-direction: column; text-align: center; gap: 8px !important }
    .ft-blinks   { justify-content: center }
}

/* General */
@media(max-width:575px) {
    .container   { padding-left: 18px; padding-right: 18px }
    .row.g-4     { --bs-gutter-x: .9rem; --bs-gutter-y: .9rem }
    .row.g-5     { --bs-gutter-x: 1.1rem; --bs-gutter-y: 2rem }
}
