/* =========================================================
       ROOT / GLOBAL
    ========================================================= */

:root {
    --blue-950: #0d103a;
    --blue-900: #14184c;
    --blue-800: #1d2267;
    --blue-700: #2f318b;
    --blue-600: #3e43ad;
    --blue-500: #5864dc;
    --blue-300: #aeb7ff;
    --blue-100: #e9ecff;
    --blue-50: #f5f7ff;

    --white: #ffffff;
    --ink: #171a3e;
    --muted: #606686;

    --line: rgba(47, 49, 139, .14);

    --shadow-sm:
        0 12px 34px rgba(22, 27, 83, .08);

    --shadow-md:
        0 24px 70px rgba(22, 27, 83, .16);

    --shadow-blue:
        0 18px 42px rgba(47, 49, 139, .28);

    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;

    --container:
        min(1180px, calc(100% - 40px));
}


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


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


body {
    font-family: "DM Sans", sans-serif;

    color: var(--ink);
    background: var(--white);

    overflow-x: hidden;

    line-height: 1.6;

    text-rendering: optimizeLegibility;
}


body.menu-open {
    overflow: hidden;
}


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


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


button,
input {
    font: inherit;
}


button {
    border: 0;
}


ul {
    list-style: none;
}


.container {
    width: var(--container);
    margin-inline: auto;
}


.section {
    position: relative;

    padding: 108px 0;
}


.section-soft {
    background: var(--blue-50);
}


.section-dark {
    position: relative;

    color: var(--white);

    background:
        radial-gradient(circle at 12% 20%,
            rgba(88, 100, 220, .34),
            transparent 34%),
        radial-gradient(circle at 88% 85%,
            rgba(174, 183, 255, .14),
            transparent 32%),
        linear-gradient(150deg,
            var(--blue-950),
            var(--blue-800));

    overflow: hidden;
}


.section-dark::before,
.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .035) 1px,
            transparent 1px);

    background-size: 46px 46px;

    mask-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .9),
            transparent 92%);

    -webkit-mask-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .9),
            transparent 92%);
}


/* =========================================================
       TYPOGRAPHY
    ========================================================= */

h1,
h2,
h3,
.display-font {
    font-family: "League Spartan", sans-serif;

    letter-spacing: -.025em;

    line-height: 1.04;
}


h1 {
    font-size:
        clamp(3.3rem, 7vw, 6.4rem);
}


h2 {
    font-size:
        clamp(2.2rem, 4.3vw, 4rem);
}


h3 {
    font-size: 1.28rem;
}


p {
    color: var(--muted);
}


.section-dark p {
    color: rgba(255, 255, 255, .70);
}


/* =========================================================
       SECTION HEAD
    ========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--blue-700);

    font-size: .76rem;
    font-weight: 800;

    letter-spacing: .17em;

    text-transform: uppercase;
}


.eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    border-radius: 999px;

    background: currentColor;
}


.section-dark .eyebrow {
    color: var(--blue-300);
}


.section-head {
    max-width: 720px;

    margin-bottom: 46px;
}


.section-head.center {
    margin-inline: auto;

    text-align: center;
}


.section-head.center .eyebrow::before {
    display: none;
}


.section-head p {
    margin-top: 16px;

    font-size: 1.02rem;
}


/* =========================================================
       BUTTON
    ========================================================= */

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

    gap: 10px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: .92rem;
    font-weight: 800;

    cursor: pointer;

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


.btn:hover {
    transform: translateY(-3px);
}


.btn-primary {
    color: var(--white);

    background:
        linear-gradient(135deg,
            var(--blue-700),
            var(--blue-500));

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


.btn-primary:hover {
    box-shadow:
        0 24px 54px rgba(47, 49, 139, .36);
}


.btn-light {
    color: var(--blue-800);

    background: var(--white);

    box-shadow:
        0 18px 42px rgba(5, 8, 32, .20);
}


.btn-ghost {
    color: var(--white);

    border:
        1px solid rgba(255, 255, 255, .32);

    background:
        rgba(255, 255, 255, .07);

    backdrop-filter: blur(10px);
}


.btn-ghost:hover {
    background:
        rgba(255, 255, 255, .15);

    border-color:
        rgba(255, 255, 255, .60);
}


.btn-outline {
    color: var(--blue-700);

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

    background: var(--white);
}


.btn-outline:hover {
    border-color: var(--blue-500);

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


.icon-arrow {
    width: 18px;
    height: 18px;

    transition:
        transform .25s ease;
}


.btn:hover .icon-arrow {
    transform: translateX(3px);
}


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

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    border-bottom:
        1px solid transparent;

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


.navbar.scrolled {
    padding: 10px 0;

    background:
        rgba(255, 255, 255, .90);

    border-color: var(--line);

    box-shadow:
        0 12px 36px rgba(15, 20, 61, .08);

    backdrop-filter: blur(18px);
}


.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 26px;
}


.brand {
    position: relative;

    display: inline-flex;
    align-items: center;

    z-index: 1002;
}


.brand img {
    width: 174px;
    height: auto;

    filter:
        brightness(0) invert(1);

    transition:
        filter .3s ease,
        transform .3s ease;
}


.navbar.scrolled .brand img {
    filter: none;
}


.brand:hover img {
    transform: scale(1.025);
}


.nav-links {
    display: flex;
    align-items: center;

    gap: 30px;
}


.nav-links a {
    position: relative;

    padding: 8px 0;

    color:
        rgba(255, 255, 255, .82);

    font-size: .88rem;
    font-weight: 700;

    transition:
        color .25s ease;
}


.navbar.scrolled .nav-links a {
    color: var(--muted);
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    border-radius: 999px;

    background: var(--blue-500);

    transform: scaleX(0);

    transform-origin: right;

    transition:
        transform .25s ease;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}


.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--blue-700);
}


.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);

    transform-origin: left;
}


.nav-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}


.navbar .nav-cta {
    min-height: 44px;

    padding-inline: 20px;

    color: var(--blue-800);

    background: var(--white);

    box-shadow: none;
}


.navbar.scrolled .nav-cta {
    color: var(--white);

    background: var(--blue-700);
}


/* =========================================================
       MOBILE MENU BUTTON
    ========================================================= */

.menu-toggle {
    position: relative;

    display: none;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .12);

    cursor: pointer;

    z-index: 1002;
}


.navbar.scrolled .menu-toggle {
    background:
        var(--blue-100);
}


.menu-toggle span {
    position: absolute;

    left: 13px;

    width: 20px;
    height: 2px;

    border-radius: 2px;

    background: var(--white);

    transition:
        transform .3s ease,
        top .3s ease,
        opacity .3s ease;
}


.navbar.scrolled .menu-toggle span {
    background: var(--blue-700);
}


.menu-toggle span:nth-child(1) {
    top: 16px;
}


.menu-toggle span:nth-child(2) {
    top: 22px;
}


.menu-toggle span:nth-child(3) {
    top: 28px;
}


.menu-toggle.open span:nth-child(1) {
    top: 22px;

    transform: rotate(45deg);
}


.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.open span:nth-child(3) {
    top: 22px;

    transform: rotate(-45deg);
}


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

.hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    padding:
        140px 0 82px;

    color: var(--white);

    overflow: hidden;

    background:
        radial-gradient(circle at 74% 16%,
            rgba(121, 135, 255, .25),
            transparent 28%),
        radial-gradient(circle at 10% 90%,
            rgba(70, 78, 183, .50),
            transparent 34%),
        linear-gradient(145deg,
            #0d103a 0%,
            #1e236b 48%,
            #313692 100%);
}


.hero-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        1.02fr .98fr;

    align-items: center;

    gap: 70px;

    z-index: 2;
}


.hero-copy {
    max-width: 650px;
}


.hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    padding: 9px 15px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .08);

    color:
        rgba(255, 255, 255, .86);

    font-size: .78rem;
    font-weight: 800;

    letter-spacing: .09em;

    text-transform: uppercase;

    backdrop-filter: blur(12px);
}


.hero-badge i {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #9ca6ff;

    box-shadow:
        0 0 0 7px rgba(156, 166, 255, .12);

    animation:
        statusPulse 2s infinite;
}


.hero h1 {
    max-width: 720px;
}


.hero h1 span {
    color: #cbd1ff;
}


.hero-copy>p {
    max-width: 610px;

    margin:
        24px 0 32px;

    color:
        rgba(255, 255, 255, .72);

    font-size: 1.08rem;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}


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

.hero-stats {
    display: grid;

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

    max-width: 600px;

    margin-top: 42px;

    padding-top: 28px;

    border-top:
        1px solid rgba(255, 255, 255, .13);
}


.hero-stat {
    padding-right: 22px;
}


.hero-stat+.hero-stat {
    padding-left: 24px;

    border-left:
        1px solid rgba(255, 255, 255, .12);
}


.hero-stat strong {
    display: block;

    font-family:
        "League Spartan",
        sans-serif;

    font-size: 2rem;

    line-height: 1;
}


.hero-stat span {
    display: block;

    margin-top: 6px;

    color:
        rgba(255, 255, 255, .55);

    font-size: .78rem;
}


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

.hero-visual {
    position: relative;

    min-height: 560px;

    display: grid;
    place-items: center;

    isolation: isolate;
}


.hero-orbit {
    position: absolute;

    width:
        min(510px, 90vw);

    aspect-ratio: 1;

    border-radius: 50%;

    border:
        1px solid rgba(174, 183, 255, .14);

    box-shadow:
        inset 0 0 80px rgba(88, 100, 220, .04),

        0 0 60px rgba(88, 100, 220, .05);

    animation:
        orbitSpin 28s linear infinite;

    opacity: .8;
}


.hero-orbit::before,
.hero-orbit::after {
    content: "";

    position: absolute;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--white);

    box-shadow:
        0 0 30px rgba(255, 255, 255, .70);
}


.hero-orbit::before {
    top: 9%;
    left: 16%;
}


.hero-orbit::after {
    right: 6%;
    bottom: 28%;

    width: 9px;
    height: 9px;

    opacity: .7;
}


.logo-stage {
    position: relative;

    width:
        min(480px, 84vw);

    aspect-ratio: 1;

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

    border-radius: 50%;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, .14) 0%,
            rgba(174, 183, 255, .10) 35%,
            rgba(88, 100, 220, .06) 55%,
            transparent 72%);

    z-index: 2;

    animation:
        logoFloat 5.5s ease-in-out infinite;
}


.logo-stage::before {
    content: "";

    position: absolute;

    width: 82%;
    height: 82%;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(174, 183, 255, .28) 0%,
            rgba(88, 100, 220, .16) 38%,
            rgba(47, 49, 139, .07) 58%,
            transparent 72%);

    filter: blur(14px);

    animation:
        heroGlow 4s ease-in-out infinite;

    z-index: -1;
}


.logo-stage::after {
    content: "";

    position: absolute;

    width: 88%;
    height: 88%;

    border-radius: 50%;

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

    box-shadow:
        inset 0 0 45px rgba(174, 183, 255, .06),

        0 0 55px rgba(88, 100, 220, .10);

    z-index: -1;
}


.logo-icon {
    position: relative;

    width: 92%;
    max-width: 450px;

    height: auto;

    object-fit: contain;

    z-index: 3;

    filter:
        drop-shadow(0 24px 28px rgba(3, 7, 35, .34)) drop-shadow(0 0 24px rgba(174, 183, 255, .12));

    animation:
        iconBreathe 4s ease-in-out infinite;
}


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

.smoke {
    position: absolute;

    top: -52px;
    left: 50%;

    width: 42px;
    height: 150px;

    transform:
        translateX(-50%);

    pointer-events: none;

    z-index: 1;
}


.smoke span {
    position: absolute;

    bottom: 0;

    width: 34px;
    height: 80px;

    border:
        8px solid rgba(255, 255, 255, .26);

    border-left-color:
        transparent;

    border-bottom-color:
        transparent;

    border-radius: 50%;

    opacity: 0;

    animation:
        smokeRise 4.8s ease-out infinite;
}


.smoke span:nth-child(1) {
    left: 0;

    animation-delay: 0s;
}


.smoke span:nth-child(2) {
    left: 22px;

    width: 28px;
    height: 66px;

    animation-delay: 1.35s;
}


.smoke span:nth-child(3) {
    left: -12px;

    width: 30px;
    height: 72px;

    animation-delay: 2.7s;
}


.spark {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #cbd1ff;

    box-shadow:
        0 0 16px rgba(203, 209, 255, .90);

    animation:
        sparkRise 4.2s ease-in infinite;

    z-index: 3;
}


.spark.s1 {
    left: 18%;
    bottom: 24%;

    animation-delay: .3s;
}


.spark.s2 {
    right: 18%;
    bottom: 18%;

    width: 5px;
    height: 5px;

    animation-delay: 1.7s;
}


.spark.s3 {
    left: 38%;
    bottom: 8%;

    width: 4px;
    height: 4px;

    animation-delay: 2.8s;
}


.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 24px;

    display: grid;
    place-items: center;

    gap: 7px;

    transform:
        translateX(-50%);

    color:
        rgba(255, 255, 255, .48);

    font-size: .68rem;

    text-transform: uppercase;

    letter-spacing: .14em;

    z-index: 3;
}


.mouse {
    position: relative;

    width: 24px;
    height: 38px;

    border:
        1px solid rgba(255, 255, 255, .30);

    border-radius: 20px;
}


.mouse::before {
    content: "";

    position: absolute;

    top: 8px;
    left: 50%;

    width: 4px;
    height: 7px;

    border-radius: 9px;

    background: var(--white);

    transform:
        translateX(-50%);

    animation:
        scrollDot 1.8s infinite;
}


/* =========================================================
       STORY
    ========================================================= */

.story-grid {
    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    align-items: center;

    gap: 72px;
}


.story-media {
    position: relative;
}


.story-photo {
    width: 100%;

    min-height: 540px;

    object-fit: cover;

    border-radius:
        var(--radius-lg);

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


.story-media::before {
    content: "";

    position: absolute;

    left: -18px;
    top: -18px;

    width: 126px;
    height: 126px;

    border-radius: 28px;

    border:
        2px solid var(--blue-300);

    z-index: -1;
}


.story-note {
    position: absolute;

    right: -30px;
    bottom: 34px;

    max-width: 230px;

    padding: 20px;

    border-radius: 22px;

    background:
        rgba(255, 255, 255, .93);

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

    backdrop-filter: blur(12px);
}


.story-note strong {
    display: block;

    color: var(--blue-700);

    font-family:
        "League Spartan",
        sans-serif;

    font-size: 2rem;
}


.story-note span {
    color: var(--muted);

    font-size: .84rem;
}


.story-copy p+p {
    margin-top: 15px;
}


.signature {
    margin-top: 26px;

    color: var(--blue-700);

    font-weight: 800;
}


/* =========================================================
       FEATURE / KEUNGGULAN
    ========================================================= */

.feature-grid {
    position: relative;

    display: grid;

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

    gap: 22px;

    z-index: 2;
}


.feature-card {
    min-height: 245px;

    padding: 28px;

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

    border-radius:
        var(--radius-md);

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter: blur(14px);

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


.feature-card:hover {
    transform:
        translateY(-8px);

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

    border-color:
        rgba(174, 183, 255, .34);
}


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

    display: grid;
    place-items: center;

    margin-bottom: 26px;

    border-radius: 16px;

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

    color: var(--blue-300);
}


.feature-icon svg {
    width: 27px;
    height: 27px;
}


.feature-icon i {
    font-size: 24px;
}


.feature-card h3 {
    margin-bottom: 12px;

    color: var(--white);
}


.feature-card p {
    font-size: .9rem;
}


/* HALAL */

.feature-halal {
    position: relative;

    overflow: hidden;
}


.feature-halal::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -45px;
    bottom: -55px;

    border-radius: 50%;

    background:
        rgba(174, 183, 255, .06);

    pointer-events: none;
}


.halal-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.halal-number {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 18px;

    padding: 8px 11px;

    border:
        1px solid rgba(174, 183, 255, .12);

    border-radius: 10px;

    background:
        rgba(174, 183, 255, .10);

    color: #dce1ff;

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

    letter-spacing: .02em;
}


.halal-number i {
    color: var(--blue-300);
}


/* =========================================================
       MENU PRODUK
    ========================================================= */

.menu-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 24px;

    margin-bottom: 44px;
}


.menu-toolbar .section-head {
    margin-bottom: 0;
}


.menu-grid {
    display: grid;

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

    gap: 24px;
}


.menu-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

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

    border-radius: 26px;

    background: var(--white);

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

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


.menu-card:hover {
    transform:
        translateY(-9px);

    border-color:
        rgba(47, 49, 139, .28);

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


.menu-image {
    position: relative;

    height: 230px;

    overflow: hidden;

    background:
        var(--blue-100);
}


.menu-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}


.menu-card:hover .menu-image img {
    transform: scale(1.07);
}


.menu-badge {
    position: absolute;

    left: 18px;
    top: 18px;

    padding: 7px 12px;

    border-radius: 999px;

    color: var(--blue-800);

    background:
        rgba(255, 255, 255, .92);

    backdrop-filter: blur(8px);

    font-size: .7rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .08em;
}


.menu-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 24px;
}


.menu-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 14px;
}


.menu-topline h3 {
    min-height: 48px;
}


.price {
    color: var(--blue-700);

    font-weight: 800;

    white-space: nowrap;
}


.menu-body p {
    min-height: 70px;

    margin:
        12px 0 20px;

    font-size: .9rem;

    line-height: 1.6;
}


.menu-card .btn {
    width: 100%;

    min-height: 46px;

    margin-top: auto;
}


/* =========================================================
       ORDER SECTION
    ========================================================= */

.order-panel {
    position: relative;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 58px;

    padding: 54px;

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

    border-radius: 36px;

    background:
        rgba(255, 255, 255, .07);

    backdrop-filter: blur(18px);

    z-index: 2;
}


.order-copy p {
    margin:
        18px 0 28px;
}


.order-copy .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}


.order-options {
    display: grid;

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

    gap: 16px;
}


.order-option {
    min-height: 170px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 22px;

    border-radius: 20px;

    background: var(--white);

    color: var(--ink);

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


.order-option:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 20px 48px rgba(3, 7, 35, .24);
}


.order-option>img {
    width: auto;
    height: 48px;

    max-width: 145px;

    object-fit: contain;
    object-position: left center;
}


.order-option h3 {
    margin-top: 22px;

    font-size: 1.1rem;
}


.order-option span {
    display: block;

    margin-top: 6px;

    color: var(--muted);

    font-size: .82rem;

    line-height: 1.5;
}


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

.steps-grid {
    display: grid;

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

    gap: 20px;
}


.step-card {
    position: relative;

    padding: 28px;

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

    border-radius:
        var(--radius-md);

    background: var(--white);
}


.step-card:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 52px;
    right: -16px;

    width: 30px;
    height: 1px;

    background:
        var(--blue-300);

    z-index: 2;
}


.step-number {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    border-radius: 15px;

    color: var(--white);

    background:
        linear-gradient(135deg,
            var(--blue-700),
            var(--blue-500));

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

    font-family:
        "League Spartan",
        sans-serif;

    font-size: 1.2rem;
}


.step-card p {
    margin-top: 10px;

    font-size: .9rem;
}


/* =========================================================
       TESTIMONIAL
    ========================================================= */

.testimonial-grid {
    display: grid;

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

    gap: 22px;
}


.quote-card {
    padding: 30px;

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

    border-radius:
        var(--radius-md);

    background: var(--white);

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


.quote-mark {
    color: var(--blue-300);

    font-family: Georgia, serif;

    font-size: 4rem;

    line-height: .7;
}


.quote-card>p {
    margin:
        18px 0 26px;

    font-size: .95rem;
}


.rating {
    margin-bottom: 12px;

    color: var(--blue-700);

    font-size: .78rem;

    letter-spacing: 2px;
}


.person {
    display: flex;
    align-items: center;

    gap: 12px;
}


.avatar {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);

    background: var(--blue-700);

    font-weight: 800;
}


.person strong {
    display: block;

    font-size: .9rem;
}


.person span {
    color: var(--muted);

    font-size: .78rem;
}


/* =========================================================
       CABANG
    ========================================================= */

.branch-grid {
    display: grid;

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

    gap: 24px;
}


.branch-card {
    position: relative;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, .11);

    border-radius: 26px;

    background:
        rgba(255, 255, 255, .07);

    backdrop-filter: blur(14px);

    transition:
        transform .3s ease,
        background .3s ease;

    z-index: 2;
}


.branch-card:hover {
    transform:
        translateY(-8px);

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


.branch-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -42px;
    top: -42px;

    border-radius: 50%;

    background:
        rgba(174, 183, 255, .08);

    pointer-events: none;
}


.city-tag {
    display: inline-flex;

    padding: 6px 11px;

    border-radius: 999px;

    color: var(--blue-300);

    background:
        rgba(174, 183, 255, .10);

    font-size: .7rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;
}


.branch-card h3 {
    margin:
        18px 0 14px;

    color: var(--white);

    font-size: 1.5rem;
}


.branch-card p {
    min-height: 96px;

    font-size: .9rem;
}


.branch-meta {
    display: flex;
    align-items: center;

    gap: 8px;

    margin:
        16px 0 22px;

    color:
        rgba(255, 255, 255, .76);

    font-size: .82rem;
}


.branch-card .btn {
    width: 100%;

    min-height: 46px;
}


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

.contact-grid {
    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    align-items: start;

    gap: 72px;
}


.contact-copy p {
    max-width: 560px;

    margin:
        18px 0 28px;
}


.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-visual img {
    width: 100%;

    max-width: 560px;

    height: auto;

    object-fit: contain;
}


.contact-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


.contact-link {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 14px 16px;

    border:
        1px solid rgba(5, 43, 145, .12);

    border-radius: 14px;

    background: #ffffff;

    color: #052B91;

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


.contact-link>i {
    width: 44px;
    height: 44px;

    min-width: 44px;

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

    border-radius: 12px;

    background: #f4f7ff;

    color: #052B91;

    font-size: 23px;

    transition:
        background .25s ease,
        color .25s ease;
}


.contact-link div {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


.contact-link strong {
    font-size: 14px;

    font-weight: 700;
}


.contact-link span {
    color: #667085;

    font-size: 13px;
}


.contact-link:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(5, 43, 145, .30);

    box-shadow:
        0 8px 24px rgba(5, 43, 145, .10);
}


.contact-link:hover>i {
    background: #052B91;

    color: #ffffff;
}


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

footer {
    padding:
        74px 0 28px;

    color: var(--white);

    background:
        var(--blue-950);
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr .8fr .8fr 1fr;

    gap: 48px;
}


.footer-brand img {
    width: 218px;

    filter:
        brightness(0) invert(1);
}


.footer-brand p {
    max-width: 380px;

    margin-top: 18px;

    color:
        rgba(255, 255, 255, .60);

    font-size: .9rem;
}


.footer-col h3 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: 1rem;
}


.footer-col a,
.footer-col p {
    display: block;

    margin: 9px 0;

    color:
        rgba(255, 255, 255, .58);

    font-size: .86rem;

    transition:
        color .2s ease;
}


.footer-col a:hover {
    color: var(--white);
}


.payment-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.payment-list span {
    padding: 7px 10px;

    border-radius: 9px;

    color: var(--blue-950);

    background: var(--white);

    font-size: .7rem;
    font-weight: 800;
}


.copyright {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 46px;

    padding-top: 24px;

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

    color:
        rgba(255, 255, 255, .42);

    font-size: .75rem;
}


/* =========================================================
       FLOATING ORDER
    ========================================================= */

.order-float-wrap {
    position: fixed;

    right: 22px;
    bottom: 94px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    z-index: 9998;
}


/* MAIN BUTTON */

.order-float-main {
    width: 58px;
    height: 58px;

    min-width: 58px;

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

    margin: 0;
    padding: 0;

    border: 0;
    outline: 0;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #052B91,
            #3e43ad);

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(5, 43, 145, .30);

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


.order-float-main:hover {
    transform:
        translateY(-3px) scale(1.04);

    box-shadow:
        0 12px 32px rgba(5, 43, 145, .38);
}


.order-float-main i {
    line-height: 1;

    transition:
        transform .3s ease;
}


.order-float-wrap.active .order-float-main i {
    transform: rotate(45deg);
}


/* FLOAT MENU */

.order-float-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 10px;

    margin-bottom: 12px;

    padding: 0;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}


/* WAJIB AGAR MENU MUNCUL */

.order-float-wrap.active .order-float-menu {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

    pointer-events: auto;
}


/* FLOAT ITEM */

.order-float-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    margin: 0;
    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: inherit;

    font-family: inherit;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}


/* LABEL */

.order-float-item>span {
    display: flex;
    align-items: center;

    min-height: 36px;

    padding: 7px 12px;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, .97);

    color: #101828;

    box-shadow:
        0 6px 22px rgba(0, 0, 0, .12);

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

    line-height: 1;

    white-space: nowrap;

    opacity: 0;

    transform:
        translateX(8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        color .2s ease;
}


.order-float-wrap.active .order-float-item>span {
    opacity: 1;

    transform:
        translateX(0);
}


.order-float-item:hover>span {
    color: #052B91;
}


/* ICON PLATFORM */

.order-float-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

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

    flex-shrink: 0;

    padding: 9px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 7px 24px rgba(0, 0, 0, .16);

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


.order-float-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.order-float-item:hover .order-float-icon {
    transform:
        scale(1.07);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, .20);
}


/* =========================================================
       WHATSAPP FLOAT
    ========================================================= */

.wa-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    min-width: 58px;

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

    border-radius: 50%;

    background: #25D366;

    color: #ffffff;

    font-size: 30px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .18);

    z-index: 9999;

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


.wa-float i {
    position: relative;

    z-index: 2;

    line-height: 1;
}


.wa-float:hover {
    transform:
        translateY(-4px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .25);
}


.wa-float::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background: #25D366;

    z-index: -1;

    animation:
        waPulse 2s infinite;
}


/* =========================================================
       ORDER POPUP
    ========================================================= */

.order-popup {
    position: fixed;

    inset: 0;

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

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    z-index: 99999;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.order-popup.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.order-popup-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 18, 60, .55);

    backdrop-filter: blur(7px);

    -webkit-backdrop-filter:
        blur(7px);
}


.order-popup-box {
    position: relative;

    width: 100%;
    max-width: 470px;

    padding: 28px;

    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(0, 20, 80, .25);

    transform:
        translateY(20px) scale(.96);

    transition:
        transform .3s ease;

    z-index: 2;
}


.order-popup.active .order-popup-box {
    transform:
        translateY(0) scale(1);
}


/* CLOSE */

.order-popup-close {
    position: absolute;

    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 0;

    border-radius: 50%;

    background: #f2f5fb;

    color: #052B91;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}


.order-popup-close:hover {
    transform: rotate(90deg);

    background: #052B91;

    color: #ffffff;
}


/* HEADER */

.order-popup-header {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 24px;

    padding-right: 30px;
}


.popup-platform-logo {
    width: 66px;
    height: 66px;

    min-width: 66px;

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

    padding: 10px;

    border-radius: 18px;

    background: #f5f7fc;
}


.popup-platform-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.popup-label {
    display: inline-block;

    margin-bottom: 3px;

    color: #052B91;

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

    letter-spacing: 1px;

    text-transform: uppercase;
}


.order-popup-header h2 {
    margin:
        0 0 4px;

    color: #071b43;

    font-size: 22px;

    line-height: 1.2;
}


.order-popup-header p {
    margin: 0;

    color: #717b91;

    font-size: 13px;

    line-height: 1.5;
}


/* BRANCH */

.branch-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.branch-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 14px;

    border:
        1px solid #e7ebf4;

    border-radius: 16px;

    background: #ffffff;

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


.branch-item:hover {
    transform:
        translateY(-2px);

    border-color: #052B91;

    box-shadow:
        0 10px 28px rgba(5, 43, 145, .10);
}


.branch-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

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

    border-radius: 13px;

    background: #edf3ff;

    color: #052B91;

    font-size: 18px;
}


.branch-info {
    display: flex;
    flex-direction: column;

    flex: 1;
}


.branch-info strong {
    color: #101828;

    font-size: 14px;
    font-weight: 750;
}


.branch-info span {
    margin-top: 2px;

    color: #8a94a7;

    font-size: 12px;
}


.branch-arrow {
    color: #a8b0bf;

    font-size: 13px;

    transition:
        transform .2s ease,
        color .2s ease;
}


.branch-item:hover .branch-arrow {
    transform:
        translateX(3px);

    color: #052B91;
}


.popup-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    padding: 12px 14px;

    border-radius: 12px;

    background: #f5f8ff;

    color: #667085;

    font-size: 11px;
}


.popup-note i {
    color: #052B91;
}


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

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .75s cubic-bezier(.2, .75, .25, 1),

        transform .75s cubic-bezier(.2, .75, .25, 1);
}


.reveal.in-view {
    opacity: 1;

    transform:
        translateY(0);
}


.delay-1 {
    transition-delay: .08s;
}


.delay-2 {
    transition-delay: .16s;
}


.delay-3 {
    transition-delay: .24s;
}


/* =========================================================
       ANIMATIONS
    ========================================================= */

@keyframes statusPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 7px rgba(156, 166, 255, .12);
    }

    50% {
        box-shadow:
            0 0 0 12px rgba(156, 166, 255, 0);
    }

}


@keyframes logoFloat {

    0%,
    100% {
        transform:
            translateY(0) rotate(-1deg);
    }

    50% {
        transform:
            translateY(-14px) rotate(1deg);
    }

}


@keyframes iconBreathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform:
            scale(1.035);
    }

}


@keyframes heroGlow {

    0%,
    100% {
        transform: scale(.96);

        opacity: .65;
    }

    50% {
        transform: scale(1.06);

        opacity: 1;
    }

}


@keyframes orbitSpin {

    to {
        transform:
            rotate(360deg);
    }

}


@keyframes smokeRise {

    0% {
        transform:
            translateY(0) scale(.72) rotate(8deg);

        opacity: 0;
    }

    14% {
        opacity: .7;
    }

    70% {
        opacity: .18;
    }

    100% {
        transform:
            translateY(-115px) translateX(22px) scale(1.5) rotate(-12deg);

        opacity: 0;
    }

}


@keyframes sparkRise {

    0% {
        transform:
            translateY(0) scale(.6);

        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    100% {
        transform:
            translateY(-170px) translateX(16px) scale(1.1);

        opacity: 0;
    }

}


@keyframes scrollDot {

    0% {
        transform:
            translate(-50%, 0);

        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform:
            translate(-50%, 13px);

        opacity: 0;
    }

}


@keyframes waPulse {

    0% {
        transform: scale(1);

        opacity: .5;
    }

    70%,
    100% {
        transform:
            scale(1.5);

        opacity: 0;
    }

}


/* =========================================================
       RESPONSIVE <= 1060
    ========================================================= */

@media (max-width: 1060px) {

    .nav-links {
        gap: 20px;
    }


    .hero-grid {
        gap: 34px;
    }


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


    .story-grid,
    .contact-grid {
        gap: 44px;
    }


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


    .step-card:nth-child(2)::after {
        display: none;
    }


    .footer-grid {
        grid-template-columns:
            1.35fr 1fr 1fr;
    }


    .footer-col:last-child {
        grid-column:
            2 / 4;
    }

}


/* =========================================================
       RESPONSIVE <= 900 TABLET
    ========================================================= */

@media (max-width: 900px) {

    .navbar {
        background:
            rgba(13, 16, 58, .72);

        backdrop-filter:
            blur(14px);
    }


    .navbar.scrolled {
        background:
            rgba(255, 255, 255, .94);
    }


    .menu-toggle {
        display: block;
    }


    .nav-actions .nav-cta {
        display: none;
    }


    .nav-links {
        position: fixed;

        inset:
            0 0 0 auto;

        width:
            min(380px, 88vw);

        height: 100dvh;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 8px;

        padding:
            108px 30px 30px;

        background:
            rgba(13, 16, 58, .98);

        transform:
            translateX(102%);

        transition:
            transform .35s cubic-bezier(.2, .75, .25, 1);

        box-shadow:
            -28px 0 70px rgba(3, 7, 35, .36);
    }


    .nav-links.show {
        transform:
            translateX(0);
    }


    .nav-links a,
    .navbar.scrolled .nav-links a {
        width: 100%;

        padding: 14px 0;

        color:
            rgba(255, 255, 255, .78);

        font-size: 1.05rem;
    }


    .nav-links a:hover,
    .nav-links a.active,
    .navbar.scrolled .nav-links a:hover,
    .navbar.scrolled .nav-links a.active {
        color: var(--white);
    }


    .nav-links a::after {
        background:
            var(--blue-300);
    }


    .hero {
        min-height: auto;

        padding:
            132px 0 90px;
    }


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


    .hero-copy {
        max-width: 760px;
    }


    .hero-visual {
        min-height: 510px;

        order: -1;
    }


    .hero-scroll {
        display: none;
    }


    .story-grid,
    .contact-grid,
    .order-panel {
        grid-template-columns: 1fr;
    }


    .story-copy {
        max-width: 760px;
    }


    .story-media {
        order: 2;
    }


    .story-photo {
        min-height: 480px;
    }


    .testimonial-grid,
    .branch-grid {
        grid-template-columns: 1fr;
    }


    .branch-card p {
        min-height: auto;
    }


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


    .footer-col:last-child {
        grid-column: auto;
    }

}


/* =========================================================
       RESPONSIVE <= 640 MOBILE
    ========================================================= */

@media (max-width: 640px) {

    :root {
        --container:
            min(1180px, calc(100% - 28px));
    }


    .section {
        padding:
            76px 0;
    }


    .navbar {
        padding:
            11px 0;
    }


    .brand img {
        width: 148px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding:
            120px 0 64px;
    }


    .hero-grid {
        display: block;
    }


    /* HILANGKAN HERO IMAGE */

    .hero-visual {
        display: none;
    }


    .hero-copy {
        max-width: 100%;
    }


    .hero h1 {
        font-size:
            clamp(3rem, 14vw, 4.3rem);
    }


    .hero-copy>p {
        margin:
            20px 0 28px;

        font-size: .98rem;
    }


    .hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .hero-actions .btn {
        width: 100%;
    }


    /* HERO STATS 3 KOLOM */

    .hero-stats {
        grid-template-columns:
            repeat(3, 1fr);

        width: 100%;
        max-width: none;

        gap: 0;

        margin-top: 32px;

        padding-top: 24px;

        border-top:
            1px solid rgba(255, 255, 255, .14);
    }


    .hero-stat {
        display: flex;
        flex-direction: column;
        align-items: center;

        padding:
            0 8px;

        text-align: center;
    }


    .hero-stat+.hero-stat {
        padding:
            0 8px;

        border-top: 0;

        border-left:
            1px solid rgba(255, 255, 255, .14);
    }


    .hero-stat strong {
        margin-bottom: 7px;

        font-size: 1.45rem;

        white-space: nowrap;
    }


    .hero-stat span {
        max-width: 90px;

        margin: 0;

        color:
            rgba(255, 255, 255, .60);

        font-size: .68rem;

        line-height: 1.35;
    }


    /* SECTION */

    .section-head {
        margin-bottom: 32px;
    }


    /* STORY */

    .story-photo {
        min-height: 360px;
    }


    .story-note {
        position: static;

        max-width: none;

        margin-top: 16px;
    }


    /* GRID */

    .feature-grid,
    .menu-grid,
    .steps-grid,
    .order-options,
    .footer-grid {
        grid-template-columns: 1fr;
    }


    /* MENU */

    .menu-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }


    .menu-image {
        height: 250px;
    }


    .menu-topline h3 {
        min-height: auto;
    }


    .menu-body p {
        min-height: auto;
    }


    /* ORDER */

    .order-panel {
        gap: 34px;

        padding:
            28px 20px;

        border-radius: 26px;
    }


    .order-option {
        min-height: 145px;
    }


    /* STEP */

    .step-card::after {
        display: none !important;
    }


    /* CONTACT */

    .contact-visual {
        min-height: auto;
    }


    /* FOOTER */

    .copyright {
        flex-direction: column;
    }


    /* FLOAT ORDER */

    .order-float-wrap {
        right: 15px;

        bottom: 82px;
    }


    .order-float-main,
    .order-float-icon {
        width: 54px;
        height: 54px;

        min-width: 54px;
    }


    .order-float-main {
        font-size: 20px;
    }


    .order-float-icon {
        padding: 8px;
    }


    .order-float-menu {
        gap: 9px;

        margin-bottom: 10px;
    }


    .order-float-item>span {
        min-height: 34px;

        padding: 7px 10px;

        font-size: 11px;
    }


    /* WHATSAPP */

    .wa-float {
        right: 15px;
        bottom: 15px;

        width: 54px;
        height: 54px;

        min-width: 54px;

        font-size: 27px;
    }

}


/* =========================================================
       RESPONSIVE <= 600 POPUP
    ========================================================= */

@media (max-width: 600px) {

    .order-popup {
        align-items: flex-end;

        padding: 0;
    }


    .order-popup-box {
        max-width: 100%;

        padding:
            26px 20px calc(24px + env(safe-area-inset-bottom));

        border-radius:
            26px 26px 0 0;

        transform:
            translateY(100%);
    }


    .order-popup.active .order-popup-box {
        transform:
            translateY(0);
    }


    .order-popup-header h2 {
        font-size: 20px;
    }

}


/* =========================================================
       VERY SMALL MOBILE
    ========================================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 2.85rem;
    }


    .hero-stat {
        padding:
            0 5px;
    }


    .hero-stat+.hero-stat {
        padding:
            0 5px;
    }


    .hero-stat strong {
        font-size: 1.3rem;
    }


    .hero-stat span {
        font-size: .63rem;
    }


    .order-float-wrap {
        right: 12px;

        bottom: 76px;
    }


    .wa-float {
        right: 12px;
        bottom: 12px;
    }


    .order-float-main,
    .order-float-icon,
    .wa-float {
        width: 50px;
        height: 50px;

        min-width: 50px;
    }


    .order-float-main {
        font-size: 18px;
    }


    .wa-float {
        font-size: 25px;
    }


    .order-float-item>span {
        font-size: 10.5px;

        padding: 6px 9px;
    }

}


/* =========================================================
       REDUCED MOTION
    ========================================================= */

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

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration:
            .001ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .001ms !important;
    }


    .reveal {
        opacity: 1;

        transform: none;
    }

}


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

:focus-visible {
    outline:
        3px solid var(--blue-300);

    outline-offset: 4px;
}

/* =========================================================
   NGEBUL PREMIUM PRELOADER
========================================================= */

body.is-loading {
    overflow: hidden;
  }
  
  
  /* =========================================================
     MAIN OVERLAY
  ========================================================= */
  
  .site-loader {
    position: fixed;
  
    inset: 0;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: 28px;
  
    overflow: hidden;
  
    background:
      radial-gradient(
        circle at 50% 38%,
        rgba(98, 111, 255, .22),
        transparent 30%
      ),
      radial-gradient(
        circle at 12% 90%,
        rgba(55, 63, 170, .46),
        transparent 38%
      ),
      linear-gradient(
        145deg,
        #090c30 0%,
        #171d58 48%,
        #2f318b 100%
      );
  
    z-index: 999999;
  
    opacity: 1;
    visibility: visible;
  
    transition:
      opacity .7s cubic-bezier(.4, 0, .2, 1),
      visibility .7s;
  }
  
  
  /* GRID HALUS */
  
  .site-loader::before {
    content: "";
  
    position: absolute;
  
    inset: -50px;
  
    background-image:
      linear-gradient(
        rgba(255,255,255,.025) 1px,
        transparent 1px
      ),
      linear-gradient(
        90deg,
        rgba(255,255,255,.025) 1px,
        transparent 1px
      );
  
    background-size:
      42px 42px;
  
    animation:
      loaderGridMove 10s linear infinite;
  
    pointer-events: none;
  }
  
  
  /* VIGNETTE */
  
  .site-loader::after {
    content: "";
  
    position: absolute;
  
    inset: 0;
  
    background:
      radial-gradient(
        circle at center,
        transparent 20%,
        rgba(4, 7, 31, .40) 100%
      );
  
    pointer-events: none;
  }
  
  
  /* =========================================================
     BACKGROUND GLOW
  ========================================================= */
  
  .loader-bg-glow {
    position: absolute;
  
    border-radius: 50%;
  
    filter: blur(90px);
  
    pointer-events: none;
  }
  
  
  .glow-1 {
    width: 360px;
    height: 360px;
  
    top: -100px;
    right: -100px;
  
    background:
      rgba(105, 119, 255, .18);
  
    animation:
      loaderGlowOne 6s ease-in-out infinite;
  }
  
  
  .glow-2 {
    width: 320px;
    height: 320px;
  
    bottom: -110px;
    left: -100px;
  
    background:
      rgba(47, 49, 139, .30);
  
    animation:
      loaderGlowTwo 7s ease-in-out infinite;
  }
  
  
  /* =========================================================
     MAIN CONTENT
  ========================================================= */
  
  .ngebul-loader {
    position: relative;
  
    width: min(430px, 100%);
  
    display: flex;
    flex-direction: column;
    align-items: center;
  
    text-align: center;
  
    z-index: 5;
  }
  
  
  /* =========================================================
     VISUAL AREA
  ========================================================= */
  
  .loader-visual {
    position: relative;
  
    width: 230px;
    height: 230px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    margin-bottom: 30px;
  }
  
  
  /* =========================================================
     ORBITS
  ========================================================= */
  
  .loader-orbit {
    position: absolute;
  
    border-radius: 50%;
  
    pointer-events: none;
  }
  
  
  .orbit-one {
    inset: 0;
  
    border:
      1px solid
      rgba(255,255,255,.12);
  
    animation:
      ngebulOrbit 10s linear infinite;
  }
  
  
  .orbit-one::before {
    content: "";
  
    position: absolute;
  
    top: 20px;
    left: 40px;
  
    width: 8px;
    height: 8px;
  
    border-radius: 50%;
  
    background: #ffffff;
  
    box-shadow:
      0 0 18px
      rgba(255,255,255,.85);
  }
  
  
  .orbit-two {
    inset: 18px;
  
    border:
      1px dashed
      rgba(174,183,255,.18);
  
    animation:
      ngebulOrbitReverse 16s linear infinite;
  }
  
  
  /* =========================================================
     LOGO
  ========================================================= */
  
  .loader-logo-shell {
    position: relative;
  
    width: 145px;
    height: 145px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
  
    z-index: 5;
  
    animation:
      loaderLogoFloat 3.5s ease-in-out infinite;
  }
  
  
  .loader-logo-glow {
    position: absolute;
  
    inset: -18px;
  
    border-radius: 50%;
  
    background:
      radial-gradient(
        circle,
        rgba(174,183,255,.32),
        rgba(88,100,220,.16) 42%,
        transparent 72%
      );
  
    filter: blur(8px);
  
    animation:
      loaderLogoGlow 2.8s ease-in-out infinite;
  }
  
  
  .loader-logo-inner {
    position: relative;
  
    width: 128px;
    height: 128px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: 18px;
  
    border:
      1px solid
      rgba(255,255,255,.20);
  
    border-radius: 50%;
  
    background:
      rgba(255,255,255,.96);
  
    box-shadow:
      0 28px 60px
        rgba(0,0,0,.28),
  
      inset 0 0 0 1px
        rgba(255,255,255,.5);
  
    overflow: hidden;
  
    z-index: 2;
  }
  
  
  /* LIGHT SWEEP */
  
  .loader-logo-inner::after {
    content: "";
  
    position: absolute;
  
    top: -50%;
  
    left: -120%;
  
    width: 65%;
    height: 200%;
  
    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.65),
        transparent
      );
  
    transform:
      rotate(20deg);
  
    animation:
      loaderLogoShine 3.2s ease-in-out infinite;
  }
  
  
  .loader-logo-inner img {
    width: 100%;
    height: 100%;
  
    object-fit: contain;
  
    position: relative;
  
    z-index: 2;
  }
  
  
  /* =========================================================
     SMOKE
  ========================================================= */
  
  .ngebul-smoke {
    position: absolute;
  
    top: -48px;
    left: 50%;
  
    width: 100px;
    height: 100px;
  
    transform:
      translateX(-50%);
  
    pointer-events: none;
  
    z-index: 6;
  }
  
  
  .smoke-line {
    position: absolute;
  
    bottom: 0;
  
    width: 25px;
    height: 60px;
  
    border:
      5px solid
      rgba(255,255,255,.28);
  
    border-left-color:
      transparent;
  
    border-bottom-color:
      transparent;
  
    border-radius: 50%;
  
    opacity: 0;
  }
  
  
  .smoke-1 {
    left: 27px;
  
    animation:
      ngebulSmoke 3.3s ease-out infinite;
  }
  
  
  .smoke-2 {
    left: 50px;
  
    width: 21px;
    height: 54px;
  
    animation:
      ngebulSmoke 3.3s
      1.05s ease-out infinite;
  }
  
  
  .smoke-3 {
    left: 10px;
  
    width: 22px;
    height: 50px;
  
    animation:
      ngebulSmoke 3.3s
      2.1s ease-out infinite;
  }
  
  
  /* =========================================================
     PARTICLES / BARA
  ========================================================= */
  
  .loader-particle {
    position: absolute;
  
    width: 5px;
    height: 5px;
  
    border-radius: 50%;
  
    background: #cbd1ff;
  
    box-shadow:
      0 0 14px
      rgba(203,209,255,.90);
  
    opacity: 0;
  
    pointer-events: none;
  
    animation:
      ngebulParticle 3.6s ease-out infinite;
  }
  
  
  .p1 {
    left: 28px;
    bottom: 40px;
  
    animation-delay: .1s;
  }
  
  
  .p2 {
    right: 28px;
    bottom: 48px;
  
    animation-delay: .8s;
  }
  
  
  .p3 {
    left: 50px;
    bottom: 18px;
  
    width: 4px;
    height: 4px;
  
    animation-delay: 1.4s;
  }
  
  
  .p4 {
    right: 58px;
    bottom: 20px;
  
    width: 3px;
    height: 3px;
  
    animation-delay: 2s;
  }
  
  
  .p5 {
    right: 24px;
    bottom: 85px;
  
    width: 4px;
    height: 4px;
  
    animation-delay: 2.6s;
  }
  
  
  /* =========================================================
     COPY
  ========================================================= */
  
  .loader-copy {
    margin-bottom: 30px;
  }
  
  
  .loader-small-title {
    display: block;
  
    margin-bottom: 8px;
  
    color: #aeb7ff;
  
    font-size: 10px;
    font-weight: 800;
  
    letter-spacing: .24em;
  
    text-transform: uppercase;
  }
  
  
  .loader-copy h2 {
    margin: 0;
  
    color: #ffffff;
  
    font-family:
      "League Spartan",
      sans-serif;
  
    font-size: 2.1rem;
  
    line-height: 1.02;
  
    letter-spacing: -.03em;
  }
  
  
  .loader-copy h2 span {
    color: #cbd1ff;
  }
  
  
  .loader-copy p {
    min-height: 20px;
  
    margin-top: 11px;
  
    color:
      rgba(255,255,255,.56);
  
    font-size: 12px;
  
    transition:
      opacity .25s ease;
  }
  
  
  /* =========================================================
     PROGRESS
  ========================================================= */
  
  .loader-progress-area {
    width: 100%;
  }
  
  
  .loader-progress-track {
    position: relative;
  
    width: 100%;
    height: 7px;
  
    overflow: hidden;
  
    border:
      1px solid
      rgba(255,255,255,.08);
  
    border-radius: 999px;
  
    background:
      rgba(255,255,255,.08);
  
    box-shadow:
      inset 0 1px 4px
      rgba(0,0,0,.18);
  }
  
  
  .loader-progress-bar {
    position: relative;
  
    width: 0%;
    height: 100%;
  
    border-radius: inherit;
  
    background:
      linear-gradient(
        90deg,
        #6978ff,
        #cbd1ff,
        #ffffff
      );
  
    box-shadow:
      0 0 20px
      rgba(174,183,255,.65);
  
    transition:
      width .35s
      cubic-bezier(.4, 0, .2, 1);
  }
  
  
  /* SHIMMER */
  
  .loader-progress-bar::after {
    content: "";
  
    position: absolute;
  
    top: 0;
    right: 0;
  
    width: 60px;
    height: 100%;
  
    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.75)
      );
  
    filter: blur(2px);
  }
  
  
  .loader-progress-shine {
    position: absolute;
  
    top: 0;
    left: -90px;
  
    width: 80px;
    height: 100%;
  
    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
      );
  
    animation:
      loaderProgressShine 2s linear infinite;
  }
  
  
  .loader-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    margin-top: 10px;
  
    color:
      rgba(255,255,255,.42);
  
    font-size: 10px;
    font-weight: 700;
  
    letter-spacing: .12em;
  
    text-transform: uppercase;
  }
  
  
  .loader-progress-meta strong {
    color: #ffffff;
  
    font-size: 12px;
  
    letter-spacing: 0;
  }
  
  
  /* =========================================================
     LOADER FINISH
  ========================================================= */
  
  .site-loader.loader-done {
    opacity: 0;
  
    visibility: hidden;
  
    pointer-events: none;
  }
  
  
  body.is-loading
  .navbar,
  body.is-loading
  main,
  body.is-loading
  footer,
  body.is-loading
  .order-float-wrap,
  body.is-loading
  .wa-float {
    opacity: 0;
  }
  
  
  body:not(.is-loading)
  .navbar,
  body:not(.is-loading)
  main,
  body:not(.is-loading)
  footer,
  body:not(.is-loading)
  .order-float-wrap,
  body:not(.is-loading)
  .wa-float {
    opacity: 1;
  
    transition:
      opacity .65s ease;
  }
  
  
  /* =========================================================
     ANIMATION
  ========================================================= */
  
  @keyframes loaderGridMove {
  
    from {
      transform:
        translate(0, 0);
    }
  
    to {
      transform:
        translate(42px, 42px);
    }
  
  }
  
  
  @keyframes ngebulOrbit {
  
    to {
      transform:
        rotate(360deg);
    }
  
  }
  
  
  @keyframes ngebulOrbitReverse {
  
    to {
      transform:
        rotate(-360deg);
    }
  
  }
  
  
  @keyframes loaderLogoFloat {
  
    0%,
    100% {
      transform:
        translateY(0)
        scale(1);
    }
  
    50% {
      transform:
        translateY(-8px)
        scale(1.025);
    }
  
  }
  
  
  @keyframes loaderLogoGlow {
  
    0%,
    100% {
      transform:
        scale(.93);
  
      opacity: .45;
    }
  
    50% {
      transform:
        scale(1.08);
  
      opacity: 1;
    }
  
  }
  
  
  @keyframes loaderLogoShine {
  
    0%,
    45% {
      left: -120%;
    }
  
    70%,
    100% {
      left: 150%;
    }
  
  }
  
  
  @keyframes ngebulSmoke {
  
    0% {
      transform:
        translateY(0)
        translateX(0)
        scale(.65)
        rotate(5deg);
  
      opacity: 0;
    }
  
    15% {
      opacity: .65;
    }
  
    55% {
      opacity: .28;
    }
  
    100% {
      transform:
        translateY(-72px)
        translateX(15px)
        scale(1.45)
        rotate(-15deg);
  
      opacity: 0;
    }
  
  }
  
  
  @keyframes ngebulParticle {
  
    0% {
      transform:
        translateY(0)
        scale(.4);
  
      opacity: 0;
    }
  
    18% {
      opacity: 1;
    }
  
    100% {
      transform:
        translateY(-95px)
        translateX(13px)
        scale(1);
  
      opacity: 0;
    }
  
  }
  
  
  @keyframes loaderProgressShine {
  
    0% {
      left: -90px;
    }
  
    100% {
      left: 110%;
    }
  
  }
  
  
  @keyframes loaderGlowOne {
  
    0%,
    100% {
      transform:
        translate(0, 0)
        scale(1);
    }
  
    50% {
      transform:
        translate(-30px, 25px)
        scale(1.12);
    }
  
  }
  
  
  @keyframes loaderGlowTwo {
  
    0%,
    100% {
      transform:
        translate(0, 0)
        scale(1);
    }
  
    50% {
      transform:
        translate(35px, -20px)
        scale(1.1);
    }
  
  }
  
  
  /* =========================================================
     MOBILE
  ========================================================= */
  
  @media (max-width: 640px) {
  
    .site-loader {
      padding: 22px;
    }
  
  
    .loader-visual {
      width: 190px;
      height: 190px;
  
      margin-bottom: 27px;
    }
  
  
    .loader-logo-shell {
      width: 125px;
      height: 125px;
    }
  
  
    .loader-logo-inner {
      width: 108px;
      height: 108px;
  
      padding: 15px;
    }
  
  
    .ngebul-smoke {
      top: -44px;
    }
  
  
    .loader-copy h2 {
      font-size: 1.75rem;
    }
  
  
    .loader-copy p {
      font-size: 11.5px;
    }
  
  
    .loader-progress-track {
      height: 6px;
    }
  
  }
  
  
  /* =========================================================
     ACCESSIBILITY
  ========================================================= */
  
  @media (prefers-reduced-motion: reduce) {
  
    .loader-orbit,
    .loader-logo-shell,
    .loader-logo-glow,
    .loader-logo-inner::after,
    .smoke-line,
    .loader-particle,
    .loader-progress-shine,
    .loader-bg-glow,
    .site-loader::before {
      animation: none !important;
    }
  
  }