/* =========================================================
   TOKTOK VERSE
   CLEANED + FIXED STYLE.CSS
   Based on the supplied index.html + style.css
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root{
    --bg:#050505;
    --bg2:#0b0b0d;
    --card:rgba(12,14,20,.82);
    --card-soft:rgba(255,255,255,.045);
    --line:rgba(255,255,255,.11);
    --text:#f5f7fb;
    --muted:#a8b0bd;

    --orange:#ff7a00;
    --orange-light:#ffb15c;
    --blue:#2f8cff;
    --blue-light:#65b7ff;

    --cyan:var(--orange);
    --cyan2:var(--blue);
    --pink:#ff9a3d;
    --purple:#8da9ff;

    --nav-height:76px;
    --radius:22px;
    --shadow:0 24px 70px rgba(0,0,0,.30);
}

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

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

/* =========================================
   BACKGROUND BERGERAK SEPERTI GELOMBANG
========================================= */

body{
    min-height:100vh;
    overflow-x:hidden;

    font-family:"DM Sans",Arial,sans-serif;
    line-height:1.65;
    color:var(--text);

    background:#02060d;
}


/* CAHAYA ORANYE + BIRU BERGERAK */
body::before{
    content:"";

    position:fixed;
    inset:-20%;

    z-index:-2;
    pointer-events:none;

    background:

        radial-gradient(
            ellipse at 50% 15%,
            rgba(255,100,0,.75) 0%,
            rgba(255,100,0,.35) 22%,
            transparent 55%
        ),

        radial-gradient(
            ellipse at 70% 45%,
            rgba(0,170,255,.45) 0%,
            rgba(0,100,255,.18) 28%,
            transparent 58%
        ),

        radial-gradient(
            ellipse at 20% 60%,
            rgba(255,90,0,.22) 0%,
            transparent 45%
        ),

        #02060d;

    filter:blur(25px);

    animation:
        waveGlow 12s ease-in-out infinite alternate;
}


/* GELOMBANG NEON */
body::after{
    content:"";

    position:fixed;
    inset:-30%;

    z-index:-1;
    pointer-events:none;

    background:

        /* Gelombang biru besar */
        radial-gradient(
            ellipse at 50% 110%,
            transparent 0%,
            transparent 42%,
            rgba(0,140,255,.45) 43%,
            rgba(0,140,255,.10) 44%,
            transparent 45%
        ),

        /* Gelombang cyan */
        radial-gradient(
            ellipse at 50% 95%,
            transparent 0%,
            transparent 48%,
            rgba(0,220,255,.25) 49%,
            transparent 50%
        ),

        /* Gelombang oranye atas */
        radial-gradient(
            ellipse at 50% -20%,
            transparent 0%,
            transparent 48%,
            rgba(255,120,0,.45) 49%,
            rgba(255,120,0,.10) 50%,
            transparent 51%
        ),

        /* Lapisan gelap */
        linear-gradient(
            180deg,
            rgba(0,0,0,.15),
            rgba(0,0,0,.35) 55%,
            rgba(0,0,0,.70)
        );

    filter:blur(1px);

    animation:
        waveMove 10s ease-in-out infinite alternate;
}


/* GERAKAN CAHAYA */
@keyframes waveGlow{

    0%{
        transform:
            translate3d(-4%, -2%, 0)
            scale(1);
    }

    25%{
        transform:
            translate3d(3%, 2%, 0)
            scale(1.06);
    }

    50%{
        transform:
            translate3d(6%, -3%, 0)
            scale(1.10);
    }

    75%{
        transform:
            translate3d(-2%, 4%, 0)
            scale(1.05);
    }

    100%{
        transform:
            translate3d(-5%, 1%, 0)
            scale(1.08);
    }

}


/* GERAKAN GELOMBANG */
@keyframes waveMove{

    0%{
        transform:
            translateX(-4%)
            translateY(0)
            rotate(-2deg)
            scale(1.05);
    }

    25%{
        transform:
            translateX(3%)
            translateY(-2%)
            rotate(1deg)
            scale(1.08);
    }

    50%{
        transform:
            translateX(6%)
            translateY(2%)
            rotate(2deg)
            scale(1.10);
    }

    75%{
        transform:
            translateX(-2%)
            translateY(3%)
            rotate(-1deg)
            scale(1.07);
    }

    100%{
        transform:
            translateX(-5%)
            translateY(-2%)
            rotate(-2deg)
            scale(1.05);
    }

}

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

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

button,
input,
textarea{
    font:inherit;
}

button{
    cursor:pointer;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:var(--nav-height);
    z-index:1000;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    padding:0 5%;

    background:rgba(5,5,8,.82);
    border-bottom:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 10px 35px rgba(0,0,0,.14);
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;

    color:#fff;
    font-family:"Manrope",sans-serif;
    font-size:18px;
    font-weight:800;
    white-space:nowrap;
}

.brand img{
    width:42px;
    height:42px;
    object-fit:contain;
    border-radius:11px;
}

.brand b{
    color:var(--orange);
}

#navMenu{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:28px;
}

#navMenu a{
    position:relative;
    display:inline-block;
    padding:9px 0;

    color:#aeb5c2;
    font-size:12px;
    font-weight:600;
    white-space:nowrap;

    transition:color .25s ease;
}

#navMenu a:hover,
#navMenu a.active{
    color:#fff;
}

#navMenu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;

    width:0;
    height:2px;

    border-radius:999px;
    background:linear-gradient(90deg,var(--orange),var(--blue));
    box-shadow:0 0 12px rgba(255,122,0,.35);

    transform:scaleX(.25);
    transform-origin:center;

    transition:
        width .35s cubic-bezier(.22,1,.36,1),
        transform .35s cubic-bezier(.22,1,.36,1);
}

#navMenu a:hover::after,
#navMenu a.active::after{
    width:100%;
    transform:scaleX(1);
}

/* =========================================================
   SCROLL PROGRESS + ROCKET
========================================================= */

#scrollProgress {
    position: fixed;
    top: 70px;
    left: 15;

    width: 100%;
    height: 10px;

    z-index: 99999;
    overflow: visible;
    pointer-events: none;

    background: rgba(255,255,255,.10);
}

#scrollProgressBar {
    position: absolute;
    top: 70;
    left: 0;

    width: 0%;
    height: 100%;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #ff7a00,
        #ffb15c,
        #2f8cff
    );

    box-shadow:
        0 0 10px rgba(47,140,255,.40);
}

#scrollEmoji {
    position: absolute;

    top: 9px;
    left: 10;

    font-size: 23px;
    line-height: 0;

    transform: translateX(-50%);

    pointer-events: none;
    z-index: 100000;

    filter: drop-shadow(
        0 3px 6px rgba(0, 0, 0, .45)
    );

    /* jangan pakai transition */
    transition: none;
}

/* =========================================================
   GENERAL
========================================================= */

main{
    position:relative;
}

.section{
    width:min(1180px,100%);
    margin:0 auto;
    padding:110px 5%;
    position:relative;
}

h1,
h2,
h3{
    font-family:"Manrope",sans-serif;
}

h1,
h2{
    line-height:1.05;
    letter-spacing:-2px;
}

h1 em,
h2 em{
    font-style:normal;
    background:linear-gradient(
        90deg,
        var(--orange),
        #fff 52%,
        var(--blue-light)
    );
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.eyebrow{
    display:flex;
    align-items:center;
    gap:9px;
    margin-bottom:18px;

    color:var(--orange);
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.eyebrow span{
    width:24px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg,var(--orange),var(--blue));
}

.section-heading h2{
    color:#fff;
    font-size:clamp(42px,5vw,68px);
}

.section-heading.centered{
    text-align:center;
}

.section-heading.centered .eyebrow{
    justify-content:center;
}

.text-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:12px;

    color:var(--blue-light);
    font-size:12px;
    font-weight:700;

    transition:.25s ease;
}

.text-link:hover{
    color:#fff;
    gap:12px;
}

/* =========================================================
   HERO
========================================================= */

.hero{
    isolation:isolate;
    width:min(1180px,100%);
    min-height:850px;
    margin:0 auto;

    padding:140px 5% 90px;

    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:60px;

    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-170px;
    top:90px;
    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(47,140,255,.18),
        transparent 68%
    );

    filter:blur(10px);
    z-index:-1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:680px;
}

.hero h1{
    margin-bottom:24px;
    color:#fff;
    font-size:clamp(52px,6.5vw,88px);
}

.hero-content>p{
    max-width:650px;
    color:var(--muted);
    font-size:14px;
    line-height:1.9;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:32px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:46px;
    padding:12px 20px;

    border:1px solid var(--line);
    border-radius:12px;

    font-size:12px;
    font-weight:800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn.primary{
    color:#fff;
    background:linear-gradient(100deg,var(--orange),var(--blue));
    box-shadow:0 12px 35px rgba(47,140,255,.18);
}

.btn.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 45px rgba(47,140,255,.28);
}

.btn.ghost{
    color:#fff;
    background:rgba(255,255,255,.045);
}

.btn.ghost:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.20);
}

/* =========================================================
   HERO PHONE
========================================================= */

.hero-card{
    position:relative;
    height:560px;

    display:grid;
    place-items:center;

    z-index:1;
}

.hero-card::before{
    content:"";
    position:absolute;
    width:410px;
    height:410px;
    border-radius:50%;

    background:conic-gradient(
        from 120deg,
        rgba(255,122,0,.17),
        rgba(47,140,255,.17),
        rgba(255,122,0,.17)
    );

    filter:blur(24px);
    animation:heroGlow 12s linear infinite;
}

@keyframes heroGlow{
    to{transform:rotate(360deg)}
}

.phone{
    position:relative;
    width:270px;
    height:520px;

    padding:10px;

    border:7px solid #111827;
    border-radius:42px;

    background:#030508;

    box-shadow:
        0 35px 90px rgba(0,0,0,.50),
        0 0 70px rgba(47,140,255,.12);

    transform:rotate(4deg);
    transition:transform .5s ease;
}

.phone:hover{
    transform:rotate(1deg) translateY(-8px);
}

.phone-top{
    width:86px;
    height:20px;
    margin:0 auto 12px;

    border-radius:999px;
    background:#111827;
}

.video-card{
    position:relative;
    height:395px;
    overflow:hidden;

    border-radius:25px;

    background:
        radial-gradient(circle at 25% 25%,rgba(255,122,0,.60),transparent 25%),
        radial-gradient(circle at 78% 72%,rgba(47,140,255,.55),transparent 30%),
        linear-gradient(145deg,#161b27,#172d4a 48%,#38211c);
}

.video-card::before{
    content:"";
    position:absolute;

    width:170px;
    height:170px;
    left:-55px;
    bottom:60px;

    border-radius:50%;
    background:rgba(255,122,0,.22);
    filter:blur(4px);
}

.video-card::after{
    content:"";
    position:absolute;

    width:180px;
    height:180px;
    right:-70px;
    top:30px;

    border-radius:50%;
    background:rgba(47,140,255,.20);
    filter:blur(4px);
}

.video-gradient{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.62),transparent 48%);
}

.play{
    position:absolute;
    top:45%;
    left:50%;

    width:56px;
    height:56px;

    display:grid;
    place-items:center;

    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;

    background:rgba(0,0,0,.30);
    backdrop-filter:blur(8px);

    transform:translate(-50%,-50%);
}

.video-caption{
    position:absolute;
    left:17px;
    bottom:18px;

    color:#fff;
    font-size:11px;
    font-weight:700;
}

.phone-icons{
    display:flex;
    justify-content:space-around;

    padding:12px 5px 2px;

    color:#dce9f5;
    font-size:17px;
}

/* =========================================================
   STATS
========================================================= */

.stats{
    width:100%;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);

    background:rgba(5,7,12,.72);

    backdrop-filter:blur(10px);
}

.stats div{
    min-height:88px;

    display:flex;
    align-items:center;
    gap:15px;

    padding:18px 24px;

    border-right:1px solid var(--line);
}

.stats div:last-child{
    border-right:0;
}

.stats strong{
    color:var(--orange);
    font-family:"Manrope",sans-serif;
    font-size:19px;
}

.stats span{
    color:#dce2ea;
    font-size:11px;
}

/* =========================================================
   ABOUT
========================================================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    margin-top:58px;
}

.about-copy p{
    max-width:570px;
    margin-bottom:20px;

    color:var(--muted);
    font-size:13px;
    line-height:1.9;
}

.timeline{
    position:relative;
    border-left:1px solid rgba(255,255,255,.13);
}

.timeline-item{
    position:relative;

    display:grid;
    grid-template-columns:55px 1fr;
    gap:18px;

    padding:0 0 32px 25px;
}

.timeline-item:last-child{
    padding-bottom:0;
}

.timeline-item::before{
    content:"";
    position:absolute;
    left:-4px;
    top:4px;

    width:7px;
    height:7px;

    border-radius:50%;
    background:var(--orange);

    box-shadow:0 0 16px rgba(255,122,0,.65);
}

.timeline-item span{
    color:var(--orange);
    font-family:"Manrope",sans-serif;
    font-size:11px;
    font-weight:800;
}

.timeline-item b{
    display:block;
    margin-bottom:3px;
    font-size:14px;
}

.timeline-item small{
    color:var(--muted);
    font-size:11px;
}

/* =========================================================
   DARK SECTION / FEATURES
========================================================= */

.dark-section{
    width:100%;
    max-width:none;

    padding-left:5%;
    padding-right:5%;

    background:rgba(0,0,0,.22);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;

    margin-top:55px;
}

.feature-card{
    position:relative;
    min-height:245px;
    overflow:hidden;

    padding:25px;

    color:#fff;

    border:1px solid var(--line);
    border-radius:20px;

    background:
        linear-gradient(
            145deg,
            rgba(15,18,26,.92),
            rgba(8,10,16,.90)
        );

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.feature-card::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    right:-70px;
    bottom:-80px;

    border-radius:50%;
    background:rgba(47,140,255,.10);

    filter:blur(10px);
    transition:.35s ease;
}

.feature-card:hover{
    transform:translateY(-7px);
    border-color:rgba(47,140,255,.42);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.feature-card:hover::before{
    transform:scale(1.5);
}

.feature-card>span{
    position:absolute;
    top:20px;
    right:20px;

    color:#65758a;
    font-family:"Manrope",sans-serif;
    font-size:10px;
    font-weight:800;
}

.feature-icon{
    width:48px;
    height:48px;

    display:grid;
    place-items:center;

    margin-bottom:26px;

    border-radius:14px;

    font-size:18px;
    font-weight:800;
}

.feature-icon.cyan,
.feature-icon.blue{
    color:var(--blue-light);
    background:rgba(47,140,255,.12);
}

.feature-icon.pink{
    color:var(--orange-light);
    background:rgba(255,122,0,.12);
}

.feature-icon.purple{
    color:var(--purple);
    background:rgba(141,169,255,.11);
}

.feature-card h3{
    margin-bottom:7px;
    font-size:17px;
}

.feature-card p{
    max-width:280px;
    color:var(--muted);
    font-size:12px;
    line-height:1.7;
}

/* =========================================================
   SHOP
========================================================= */

.shop-section{
    padding-top:105px;
}

.shop-banner{
    position:relative;
    min-height:380px;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;

    padding:55px 60px;

    border:1px solid var(--line);
    border-radius:28px;

    background:
        radial-gradient(circle at 80% 45%,rgba(47,140,255,.18),transparent 28%),
        radial-gradient(circle at 15% 70%,rgba(255,122,0,.12),transparent 25%),
        rgba(10,12,18,.82);

    box-shadow:var(--shadow);
}

.shop-banner h2{
    max-width:620px;
    color:#fff;
    font-size:54px;
}

.shop-banner p{
    max-width:520px;
    margin:18px 0 28px;

    color:var(--muted);
    font-size:13px;
}

.shop-banner::after{
    content:"";
    position:absolute;

    width:280px;
    height:280px;

    right:-100px;
    top:-100px;

    border:1px solid rgba(255,255,255,.07);
    border-radius:50%;

    box-shadow:
        0 0 0 40px rgba(255,255,255,.014),
        0 0 0 80px rgba(255,255,255,.009);

    pointer-events:none;
}

.orbit-center{
    background:linear-gradient(135deg,var(--orange),var(--blue));
}

/* =========================================================
   STEPS
========================================================= */

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-top:18px;
}

.step{
    min-height:220px;
    padding:23px;
}

.step>span{
    color:#61748b;
    font-family:"Manrope",sans-serif;
    font-size:10px;
    font-weight:800;
}

.step-icon{
    margin:18px 0 10px;
    color:var(--orange);
    font-size:25px;
}

.step h3{
    font-size:15px;
}

.step p{
    margin-top:6px;
    color:var(--muted);
    font-size:11px;
}

.step b{
    display:block;
    margin-top:17px;
    color:var(--blue-light);
    font-size:11px;
}

/* =========================================================
   TIPS
========================================================= */

.tips-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:55px;
}

.tip{
    min-height:160px;
    padding:20px 4px 0;

    border-top:1px solid var(--line);

    transition:transform .25s ease;
}

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

.tip>span{
    color:var(--orange);
    font-family:"Manrope",sans-serif;
    font-size:10px;
    font-weight:800;
}

.tip h3{
    margin-top:24px;
    font-size:16px;
}

.tip p{
    margin-top:8px;
    color:var(--muted);
    font-size:12px;
}

/* =========================================================
   SECURITY
========================================================= */

.security{
    padding-top:80px;
}

.security-box{
    display:flex;
    align-items:center;
    gap:35px;

    padding:45px;

    border:1px solid rgba(47,140,255,.22);
    border-radius:24px;

    background:
        linear-gradient(
            130deg,
            rgba(255,122,0,.06),
            rgba(47,140,255,.05)
        );
}

.security-symbol{
    flex:0 0 auto;

    width:76px;
    height:76px;

    display:grid;
    place-items:center;

    border-radius:22px;

    background:rgba(47,140,255,.10);
    color:var(--blue-light);

    font-size:30px;
}

.security-box h2{
    color:#fff;
    font-size:47px;
}

.security-box p{
    margin-top:10px;
    color:var(--muted);
    font-size:13px;
}

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

.security-grid b{
    color:var(--orange);
    font-family:"Manrope",sans-serif;
    font-size:10px;
}

.security-grid h3{
    margin:15px 0 5px;
    font-size:15px;
}

.security-grid p{
    color:var(--muted);
    font-size:12px;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section{
    width:min(1180px,100%);
    margin:0 auto;

    padding:110px 5%;

    scroll-margin-top:80px;
}

.contact-heading{
    max-width:700px;
    margin:0 auto 45px;
    text-align:center;
}

.contact-heading .eyebrow{
    justify-content:center;
}

.contact-heading h2{
    color:#fff;
    font-size:clamp(42px,5vw,62px);
}

.contact-heading h2 em{
    color:transparent;
}

.contact-heading p{
    margin-top:16px;
    color:var(--muted);
    line-height:1.7;
    font-size:13px;
}

.contact-form{
    width:100%;
    max-width:700px;
    margin:auto;

    padding:35px;

    border-radius:20px;

    background:rgba(8,10,15,.78);
    border:1px solid rgba(255,255,255,.11);

    backdrop-filter:blur(15px);

    box-shadow:var(--shadow);
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;

    color:#f5f7fb;
    font-size:13px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    box-sizing:border-box;

    padding:14px 16px;

    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;

    outline:none;

    background:rgba(255,255,255,.055);
    color:#fff;

    font-family:inherit;
    font-size:14px;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.form-group textarea{
    resize:vertical;
    min-height:150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#858b96;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--blue);
    background:rgba(255,255,255,.08);
    box-shadow:0 0 0 3px rgba(47,140,255,.12);
}

.send-message-btn{
    width:100%;

    padding:15px 20px;

    border:none;
    border-radius:10px;

    background:linear-gradient(
        90deg,
        var(--orange),
        var(--blue)
    );

    color:#fff;

    font-size:15px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        opacity .2s ease;
}

.send-message-btn span{
    font-size:20px;
    transition:transform .3s ease;
}

.send-message-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 28px rgba(47,140,255,.25);
}

.send-message-btn:hover span{
    transform:translateX(5px);
}

.send-message-btn:disabled{
    opacity:.65;
    cursor:not-allowed;
    transform:none;
}

.form-status{
    min-height:22px;
    margin-top:15px;

    text-align:center;

    font-size:14px;
    color:var(--orange-light);
}

/* =========================================================
   FOOTER
========================================================= */

footer{
    padding:55px 5% 30px;

    border-top:1px solid var(--line);

    background:rgba(3,5,10,.94);
}

.footer-brand,
.footer-links,
.footer-social,
.copyright{
    width:min(1180px,100%);
    margin-left:auto;
    margin-right:auto;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.footer-brand img{
    width:48px;
    height:48px;
    object-fit:contain;
    border-radius:12px;
}

.footer-brand strong{
    font-family:"Manrope",sans-serif;
    font-size:17px;
}

.footer-brand em{
    color:var(--orange);
    font-style:normal;
}

.footer-brand p{
    margin-top:2px;
    color:var(--muted);
    font-size:11px;
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:28px;
    margin-bottom:28px;
}

.footer-links a{
    padding:8px 11px;
    border-radius:9px;

    color:var(--muted);
    font-size:11px;

    transition:.25s ease;
}

.footer-links a:hover{
    color:var(--orange);
    background:rgba(255,255,255,.04);
}

.footer-social{
    margin-bottom:28px;
}

.footer-social>strong{
    font-size:12px;
}

.footer-social em{
    color:var(--orange);
    font-style:normal;
}

.sosmed{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:10px 0 28px;
}

.sosmed a{
    display:inline-flex;
    align-items:center;

    padding:8px 13px;

    border:1px solid var(--line);
    border-radius:999px;

    color:var(--muted);
    font-size:12px;

    transition:.25s ease;
}

.sosmed a:hover{
    color:var(--orange);
    border-color:rgba(255,122,0,.4);
    transform:translateY(-2px);
}

.copyright{
    padding-top:20px;
    border-top:1px solid var(--line);

    color:#68778b;
    font-size:10px;
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal{
    opacity:0;
    transform:translateY(22px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media(max-width:980px){

    .navbar{
        padding:0 4%;
    }

    #navMenu{
        gap:20px;
    }

    .hero{
        grid-template-columns:1fr;
        min-height:auto;

        padding-top:125px;

        text-align:center;
    }

    .hero-content{
        max-width:760px;
        margin:auto;
    }

    .hero .eyebrow{
        justify-content:center;
    }

    .hero-content>p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-card{
        height:530px;
    }

    .about-grid{
        gap:50px;
    }

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

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

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

    .shop-banner{
        padding:45px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media(max-width:700px){

    :root{
        --nav-height:70px;
    }

    html{
        scroll-padding-top:82px;
    }

    .navbar{
        height:70px;
        padding:0 4%;
        gap:12px;
    }

    .brand{
        font-size:15px;
    }

    .brand img{
        width:38px;
        height:38px;
    }

    #navMenu{
        max-width:55vw;
        overflow-x:auto;
        overflow-y:hidden;

        justify-content:flex-start;

        gap:20px;
        margin-right:0;

        scrollbar-width:thin;
        scrollbar-color:rgba(255,122,0,.55) transparent;
    }

    #navMenu::-webkit-scrollbar{
        height:3px;
    }

    #navMenu::-webkit-scrollbar-thumb{
        background:rgba(255,122,0,.55);
        border-radius:999px;
    }

    #navMenu a{
        flex:0 0 auto;
        font-size:11px;
    }

    #navMenu a::after{
        bottom:-1px;
    }

    #scrollProgress{
        top:70px;
    }

    .section{
        padding:78px 5%;
    }

    .hero{
        padding:120px 5% 70px;
    }

    .hero h1{
        font-size:clamp(42px,12vw,58px);
    }

    .hero-content>p{
        font-size:13px;
        line-height:1.8;
    }

    .hero-actions{
        gap:9px;
    }

    .btn{
        min-height:44px;
        padding:11px 16px;
        font-size:11px;
    }

    .hero-card{
        height:470px;
    }

    .phone{
        width:230px;
        height:440px;
        border-width:6px;
        border-radius:35px;
    }

    .video-card{
        height:335px;
        border-radius:21px;
    }

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

    .stats div{
        min-height:76px;
        padding:15px;
        gap:10px;
    }

    .stats div:nth-child(2n){
        border-right:0;
    }

    .stats div:nth-child(-n+2){
        border-bottom:1px solid var(--line);
    }

    .stats strong{
        font-size:16px;
    }

    .stats span{
        font-size:9px;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:45px;
        margin-top:45px;
    }

    .feature-grid,
    .steps,
    .tips-grid,
    .security-grid{
        grid-template-columns:1fr;
    }

    .feature-grid,
    .steps,
    .tips-grid{
        margin-top:40px;
    }

    .feature-card{
        min-height:215px;
    }

    .shop-banner{
        display:block;
        min-height:auto;
        padding:34px 24px;
        border-radius:22px;
    }

    .shop-banner h2{
        font-size:39px;
    }

    .shop-banner p{
        font-size:12px;
    }

    .security-box{
        display:block;
        padding:30px 24px;
    }

    .security-symbol{
        margin-bottom:25px;
    }

    .security-box h2{
        font-size:39px;
    }

    .security-grid{
        gap:30px;
        margin-top:35px;
    }

    .contact-section{
        padding:78px 5%;
    }

    .contact-form{
        padding:25px 20px;
    }

    footer{
        padding-left:5%;
        padding-right:5%;
    }

    .sosmed{
        gap:8px;
    }
}

/* =========================================================
   RESPONSIVE — SMALL PHONE
========================================================= */

@media(max-width:480px){

    #navMenu{
        max-width:48vw;
        gap:16px;
    }

    .brand span{
        display:none;
    }

    .brand img{
        width:38px;
        height:38px;
    }

    .hero h1{
        font-size:43px;
    }

    .hero-card{
        height:450px;
    }

    .phone{
        width:215px;
        height:420px;
    }

    .video-card{
        height:320px;
    }

    .contact-form{
        padding:22px 16px;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible{
    outline:2px solid var(--blue-light);
    outline-offset:3px;
}

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }

    .reveal{
        opacity:1;
        transform:none;
    }
}

/* =========================================
   FIX CONTACT BUTTON
========================================= */

.contact-section {
    position: relative;
    z-index: 10;
}

.contact-form {
    position: relative;
    z-index: 20;
}

.send-message-btn {
    position: relative;
    z-index: 50;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 56px;

    cursor: pointer;
    pointer-events: auto;

    position: relative;
}

.send-message-btn:disabled {
    cursor: wait;
    opacity: .7;
}

/* Pastikan elemen animasi tidak menutupi tombol */
.contact-section::before,
.contact-section::after {
    pointer-events: none;
}

.contact-form::before,
.contact-form::after {
    pointer-events: none;
}

/* =========================================
   ANIMASI EMOJI SCROLL NAIK TURUN
========================================= */

#scrollEmoji {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    animation: emojiFloat 1s ease-in-out infinite alternate;
}


/* Animasi naik turun */

@keyframes emojiFloat {

    0% {
        transform:
            translateY(-50%)
            translateY(-8px);
    }

    100% {
        transform:
            translateY(-50%)
            translateY(8px);
    }

}