/* ══════════════════════════════════════════════
   YellowFit Kitchen — Landing Page Stylesheet
   ══════════════════════════════════════════════ */

:root {
    --yellow: #F5C518;
    --yellow-d: #D4A800;
    --yellow-l: #FFF8DC;
    --green: #4CAF50;
    --red: #EF5350;
    --blue: #2196F3;
    --purple: #9C27B0;
    --dark: #1A1A2E;
    --dark2: #2d2d4e;
    --muted: #6B7280;
    --bg: #F9FAFB;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: var(--dark);
    flex-shrink: 0;
}

.logo-box {
    font-size: 26px;
}

.logo-name strong {
    color: var(--yellow-d);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    flex: 1;
}

.nav-links a {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: all .2s;
}

.nav-links a:hover {
    background: var(--yellow-l);
    color: var(--dark);
}

.nav-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-nav-outline {
    padding: 8px 18px;
    border: 2px solid var(--yellow);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow-d);
    transition: all .2s;
}

.btn-nav-outline:hover {
    background: var(--yellow-l);
}

.btn-nav-primary {
    padding: 8px 18px;
    background: var(--yellow);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: all .2s;
    box-shadow: 0 3px 10px rgba(245, 197, 24, .35);
}

.btn-nav-primary:hover {
    background: var(--yellow-d);
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.mobile-menu a:hover {
    background: var(--yellow-l);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFFDF0 0%, #FFF8DC 40%, #FFFDE7 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.s1 {
    width: 500px;
    height: 500px;
    background: var(--yellow);
    top: -100px;
    right: -100px;
    animation: float1 8s ease-in-out infinite;
}

.s2 {
    width: 300px;
    height: 300px;
    background: var(--green);
    bottom: 50px;
    left: -80px;
    animation: float2 10s ease-in-out infinite;
}

.s3 {
    width: 200px;
    height: 200px;
    background: var(--blue);
    bottom: 200px;
    right: 200px;
    animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {

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

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes float2 {

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

    50% {
        transform: translateX(20px) scale(1.03);
    }
}

.hero-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--yellow);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown .6s ease both;
}

.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp .7s ease both .1s;
}

.gradient-text {
    background: linear-gradient(135deg, var(--yellow-d), #FF9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp .7s ease both .2s;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeInUp .7s ease both .3s;
}

.btn-hero-primary {
    padding: 16px 32px;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 800;
    font-size: 16px;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(245, 197, 24, .45);
    transition: all .25s;
}

.btn-hero-primary:hover {
    background: var(--yellow-d);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 197, 24, .5);
}

.btn-hero-outline {
    padding: 16px 28px;
    background: transparent;
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--dark);
    border-radius: 14px;
    transition: all .25s;
}

.btn-hero-outline:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-3px);
}

.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 0;
    animation: fadeInUp .7s ease both .4s;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.mini-stat:first-child {
    padding-left: 0;
}

.mini-stat strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.mini-stat span {
    font-size: 12px;
    color: var(--muted);
}

.mini-stat-div {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Food Showcase */
.hero-visual {
    position: relative;
    animation: fadeInRight .8s ease both .2s;
}

.food-showcase {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    padding: 32px;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.food-card-hero {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn .5s ease;
}

.food-card-hero.active {
    display: flex;
}

.food-emoji {
    font-size: 90px;
    line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .15));
}

.food-info-hero strong {
    font-size: 20px;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
}

.food-info-hero span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
}

.food-info-hero em {
    display: inline-block;
    background: var(--yellow-l);
    color: var(--yellow-d);
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.hero-card-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .2s;
}

.hero-dot.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 4px;
}

/* Floating badges */
.float-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    animation: floatBadge 4s ease-in-out infinite;
}

.fb1 {
    top: -16px;
    left: -20px;
    animation-delay: 0s;
}

.fb2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.5s;
}

.fb3 {
    top: 40px;
    right: -20px;
    animation-delay: 0.8s;
}

.float-badge small {
    font-weight: 400;
    color: var(--muted);
    display: block;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

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

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 18px;
    color: var(--yellow-d);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

/* ── STATS BAR ── */
.stats-bar {
    background: var(--dark);
    padding: 24px 0;
}

.stats-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.stat-item i {
    color: var(--yellow);
    width: 22px;
    height: 22px;
}

.stat-item strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.stat-item span {
    display: block;
    font-size: 12px;
    opacity: .7;
}

/* ── SECTIONS ── */
.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--bg);
}

.section-badge {
    display: inline-block;
    background: var(--yellow-l);
    color: var(--yellow-d);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.yellow-text {
    color: var(--yellow-d);
}

.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* ── BENEFITS ── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: all .3s;
    box-shadow: var(--shadow);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── STEPS ── */
.steps-wrap {
    position: relative;
}

.step-line {
    position: absolute;
    top: 36px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-d));
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all .3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--yellow);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: 0 3px 12px rgba(245, 197, 24, .4);
}

.step-icon {
    font-size: 40px;
    margin: 8px 0 14px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── MENU ── */
.menu-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 8px 18px;
    border: 2px solid var(--border);
    background: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    color: var(--muted);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}

.menu-card.hidden-menu {
    display: none;
}

.menu-card-img {
    background: linear-gradient(135deg, var(--yellow-l), #FFF0A0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    height: 140px;
    transition: transform .3s;
}

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

.menu-card-body {
    padding: 16px;
}

.menu-card-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--yellow-d);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.menu-card-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.menu-card-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.menu-stat-tag {
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
}

.menu-card-bonus {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
}

/* ── PROGRAM ── */
.program-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.prog-tab {
    padding: 10px 24px;
    border: 2px solid var(--border);
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    color: var(--muted);
}

.prog-tab.active,
.prog-tab:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}

.price-card {
    background: #fff;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    padding: 28px 20px;
    position: relative;
    transition: all .3s;
    box-shadow: var(--shadow);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--yellow);
    background: linear-gradient(180deg, var(--yellow-l), #fff 60%);
}

.price-card.featured::before {
    content: '🌟 Paling Populer';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(245, 197, 24, .4);
}

.price-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.price-duration {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
}

.price-type {
    font-size: 11px;
    background: var(--bg);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--muted);
    display: inline-block;
    margin-bottom: 16px;
}

.price-ori {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 4px;
    min-height: 20px;
}

.price-promo {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1;
}

.price-per-day {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 16px;
}

.price-bonus {
    background: var(--yellow-l);
    color: var(--yellow-d);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: center;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--dark);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.btn-price:hover {
    background: var(--yellow);
    color: var(--dark);
}

.featured .btn-price {
    background: var(--yellow);
    color: var(--dark);
}

.featured .btn-price:hover {
    background: var(--yellow-d);
}

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

.addl-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all .3s;
}

.addl-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.addl-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.addl-type {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}

.addl-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--yellow-d);
}

/* ── MINIGAME ── */
.game-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--border);
}

.game-screen {
    padding: 48px 40px;
}

.game-screen.hidden {
    display: none;
}

/* Intro */
.game-intro-icon {
    font-size: 72px;
    text-align: center;
    margin-bottom: 20px;
    animation: float1 3s ease-in-out infinite;
}

.game-screen h3 {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
}

.game-screen p {
    font-size: 15px;
    color: var(--muted);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 28px;
}

.game-rules {
    background: var(--bg);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rule-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.btn-game-start {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 17px;
    font-weight: 800;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 6px 20px rgba(245, 197, 24, .4);
}

.btn-game-start:hover {
    background: var(--yellow-d);
    transform: translateY(-3px);
}

/* Game Play */
.game-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 20px;
}

.game-progress {
    flex: 1;
}

.game-q-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
    display: block;
}

.game-progress-bar {
    height: 8px;
    background: var(--bg);
    border-radius: 50px;
    overflow: hidden;
}

.game-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-d));
    border-radius: 50px;
    transition: width .5s ease;
}

.game-score-display {
    background: var(--dark);
    color: var(--yellow);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.game-question-card {
    background: linear-gradient(135deg, var(--yellow-l), #FFF0A0);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    margin-bottom: 28px;
    border: 2px solid rgba(245, 197, 24, .3);
}

.game-food-emoji {
    font-size: 80px;
    margin-bottom: 12px;
    display: block;
    animation: fadeIn .4s ease;
}

.game-food-name {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
    animation: fadeInUp .4s ease both;
}

.game-food-hint {
    font-size: 13px;
    color: var(--muted);
    animation: fadeInUp .4s ease both .1s;
}

.game-input-wrap label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--dark);
}

.game-slider-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

#game-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--border) 0%);
    border-radius: 50px;
    outline: none;
    cursor: pointer;
}

#game-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--yellow);
    border: 3px solid var(--dark);
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(245, 197, 24, .5);
}

.game-slider-val {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
    background: var(--yellow-l);
    padding: 8px 24px;
    border-radius: 50px;
    min-width: 160px;
    text-align: center;
}

.game-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 20px;
}

.btn-game-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--dark);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all .25s;
}

.btn-game-submit:hover {
    background: var(--yellow);
    color: var(--dark);
}

/* Feedback */
.game-feedback {
    text-align: center;
    padding: 28px;
    background: var(--bg);
    border-radius: 16px;
    margin-top: 20px;
    animation: fadeIn .4s ease;
}

.game-feedback.hidden {
    display: none;
}

.feedback-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.feedback-text {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

.feedback-detail {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}

.feedback-points {
    font-size: 28px;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 16px;
}

.btn-game-next {
    padding: 12px 28px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 15px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all .25s;
}

.btn-game-next:hover {
    background: var(--yellow-d);
    transform: translateY(-2px);
}

/* Result */
.result-trophy {
    font-size: 80px;
    text-align: center;
    margin-bottom: 12px;
    animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

.result-score-box {
    background: var(--dark);
    color: #fff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    margin: 20px 0;
}

.result-score-num {
    font-size: 64px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.result-score-label {
    font-size: 14px;
    opacity: .7;
}

.result-stars {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: 10px;
    font-size: 13px;
}

.result-voucher {
    background: linear-gradient(135deg, var(--yellow-l), #FFF0A0);
    border: 2px dashed var(--yellow);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.voucher-code {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--dark);
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 10px 0;
    border: 2px dashed var(--yellow-d);
    cursor: pointer;
}

.result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-game-order {
    display: inline-block;
    padding: 14px 28px;
    background: var(--dark);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    transition: all .25s;
}

.btn-game-order:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

@keyframes popIn {
    0% {
        transform: scale(0) rotate(-10deg);
    }

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

/* ── TESTIMONIALS ── */
.testimonial-track-wrap {
    overflow: hidden;
    margin-bottom: 16px;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
}

.testi-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow .3s;
}

.testi-card:hover {
    box-shadow: var(--shadow-lg);
}

.testi-stars {
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: var(--dark);
}

.testi-name strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.testi-name span {
    font-size: 12px;
    color: var(--muted);
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .2s;
    border: none;
}

.testi-dot.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 4px;
}

/* Result cards */
.result-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.result-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
}

.result-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ba-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
}

.ba-box.before {
    background: #FFEBEE;
}

.ba-box.after {
    background: #E8F5E9;
}

.ba-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-box.before .ba-label {
    color: var(--red);
}

.ba-box.after .ba-label {
    color: var(--green);
}

.ba-kg {
    font-size: 22px;
    font-weight: 900;
}

.ba-arrow {
    font-size: 24px;
    color: var(--muted);
}

.result-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}

.rc-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--yellow-d);
}

/* ── FAQ ── */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s;
}

.faq-q:hover {
    background: var(--yellow-l);
}

.faq-arrow {
    font-size: 12px;
    color: var(--muted);
    transition: transform .3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.faq-item.open .faq-a {
    display: block;
    animation: fadeIn .3s ease;
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .07;
    background: var(--yellow);
}

.cs1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.cs2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-wa {
    padding: 16px 32px;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 14px;
    transition: all .25s;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
}

.btn-cta-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
}

.btn-cta-order {
    padding: 16px 32px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 16px;
    font-weight: 800;
    border-radius: 14px;
    transition: all .25s;
    box-shadow: 0 6px 24px rgba(245, 197, 24, .35);
}

.btn-cta-order:hover {
    background: var(--yellow-d);
    transform: translateY(-3px);
}

/* ── FOOTER ── */
.footer {
    background: #0f0f1f;
    color: rgba(255, 255, 255, .8);
    padding: 64px 0 0;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    transition: color .2s;
}

.social-link:hover {
    color: var(--yellow);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--yellow);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
}

/* ── SCROLL TOP ── */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(245, 197, 24, .4);
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-4px) scale(1.1);
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .float-badge {
        display: none;
    }

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

    .step-line {
        display: none;
    }

    .result-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .testi-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

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

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

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

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

    .result-cards {
        grid-template-columns: 1fr;
    }

    .testi-card {
        flex: 0 0 100%;
    }

    .hero-mini-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .mini-stat-div {
        display: none;
    }

    .stats-container {
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(33% - 20px);
        justify-content: center;
    }

    .game-screen {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        text-align: center;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .result-actions {
        flex-direction: column;
        align-items: center;
    }
}