/* =============================================
   WarungWeb.net — styles.css
   Warm-modern minimalist for UMKM Indonesia
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --color-bg: #fdfaf5;
    --color-bg-alt: #f5f0e8;
    --color-surface: #ffffff;
    --color-primary: #e8622a;
    --color-primary-dark: #c94e1a;
    --color-primary-light: #ff8a5c;
    --color-accent: #2a5c8c;
    --color-accent-light: #3a7ec4;
    --color-gold: #f0a500;
    --color-text: #1a1410;
    --color-text-muted: #6b5e52;
    --color-text-light: #a89680;
    --color-border: #e8ddd4;
    --color-border-light: #f0eae2;

    --font-display: "Bricolage Grotesque", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(30, 20, 10, 0.06);
    --shadow-md: 0 4px 20px rgba(30, 20, 10, 0.1);
    --shadow-lg: 0 8px 40px rgba(30, 20, 10, 0.12);
    --shadow-xl: 0 16px 60px rgba(30, 20, 10, 0.15);
    --shadow-glow: 0 0 40px rgba(232, 98, 42, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --section-pad: 96px 0;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-pad);
}

.text-accent {
    color: var(--color-primary);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(232, 98, 42, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 98, 42, 0.45);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}
.btn-white {
    background: white;
    color: var(--color-primary);
    font-weight: 700;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-full);
}

/* ===== SECTION LABELS ===== */
.section-label {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
    background: rgba(232, 98, 42, 0.08);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(232, 98, 42, 0.2);
    text-align: center;
}
.section-label-faq {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
    background: rgba(232, 98, 42, 0.08);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(232, 98, 42, 0.2);
    text-align: center;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}
.section-title-faq {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 48px;
    text-align: center;
    margin-left: 0;
    margin-right: auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-slow);
    padding: 16px 0;
    overflow: visible;
}
.navbar.scrolled {
    background: rgba(253, 250, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text);
    flex-shrink: 0;
    z-index: 1;
}
.brand-icon {
    font-size: 1.4rem;
}
.brand-dot {
    color: var(--color-primary);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
}
.nav-link:hover {
    background: rgba(232, 98, 42, 0.08);
    color: var(--color-primary);
}
.nav-link.active {
    background: rgba(232, 98, 42, 0.10);
    color: var(--color-primary);
    font-weight: 600;
}
.nav-cta {
    margin-left: auto;
    font-size: 0.875rem;
    z-index: 1;
}
/* ===== HAMBURGER BUTTON ===== */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
    background: transparent;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    box-shadow: none;
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
    z-index: 1002;
}
.hamburger:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 98, 42, 0.12);
}
.hamburger.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(232, 98, 42, 0.35);
}
.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active span {
    background: white;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE FLOATING DROPDOWN ===== */
.mobile-menu {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    z-index: 1001;
    background: rgba(253, 250, 245, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow:
        0 8px 32px rgba(30, 20, 10, 0.13),
        0 2px 8px rgba(30, 20, 10, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    /* Hidden state */
    opacity: 0;
    transform: scale(0.96) translateY(-10px);
    transform-origin: top right;
    pointer-events: none;
    transition:
        opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

/* Nav items */
.mobile-nav {
    padding: 8px 0;
}
.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
    letter-spacing: -0.01em;
}
.mobile-link:hover {
    background: rgba(232, 98, 42, 0.06);
    color: var(--color-primary);
}
.mobile-link.active {
    background: rgba(232, 98, 42, 0.08);
    color: var(--color-primary);
}
.mobile-link.active .mobile-link-arrow {
    color: var(--color-primary);
}
.mobile-link:hover .mobile-link-arrow {
    color: var(--color-primary);
    transform: translateX(3px);
}
.mobile-link-text {
    flex: 1;
}
.mobile-link-arrow {
    color: var(--color-text-light);
    transition: var(--transition);
    flex-shrink: 0;
}
.mobile-divider {
    height: 1px;
    background: var(--color-border-light);
    margin: 0 22px;
}

/* Footer CTA */
.mobile-menu-footer {
    padding: 16px 22px 20px;
    border-top: 1px solid var(--color-border-light);
    margin-top: 4px;
    display: flex;
    justify-content: center;
}
.mobile-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    letter-spacing: 0.01em;
}
.mobile-menu-brand-logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
}

/* ===== BACKDROP ===== */
.mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 20, 16, 0.25);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mobile-backdrop.open {
    opacity: 1;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(232, 98, 42, 0.13) 0%, transparent 55%), radial-gradient(ellipse 60% 50% at 85% 75%, rgba(42, 92, 140, 0.11) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 55%, rgba(240, 165, 0, 0.08) 0%, transparent 60%), linear-gradient(165deg, #fff4ec 0%, #fdfaf5 40%, #f5ede8 70%, #ede8f5 100%);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

/* Three.js canvas */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 98, 42, 0.12), transparent 70%);
    top: -100px;
    right: -100px;
}
.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(42, 92, 140, 0.1), transparent 70%);
    bottom: 0;
    left: -80px;
}
.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.12), transparent 70%);
    top: 40%;
    right: 25%;
}
.shape-4 {
    width: 80px;
    height: 80px;
    background: rgba(232, 98, 42, 0.08);
    top: 20%;
    left: 10%;
    border-radius: var(--radius-xl);
    transform: rotate(20deg);
}
.shape-5 {
    width: 50px;
    height: 50px;
    background: rgba(42, 92, 140, 0.08);
    bottom: 25%;
    right: 15%;
    border-radius: var(--radius-lg);
    transform: rotate(-15deg);
}
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}
.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero-highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}
.hero-highlight::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    border-radius: 3px;
    opacity: 0.3;
}
.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 32px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 18px 16px;
    max-width: 460px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 1;
    min-width: 0;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    white-space: nowrap;
}
.stat-plus {
    font-size: 1.2rem;
    color: var(--color-primary);
}
.stat-star {
    color: var(--color-gold);
    font-size: 1.2rem;
}
.stat-label {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 5px;
    text-align: center;
    white-space: nowrap;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--color-border);
    flex-shrink: 0;
}
.hero-visual {
    position: relative;
    z-index: 10;
    max-width: 540px;
    margin: 40px auto 0;
    padding: 0 20px 100px;
}
.browser-mockup {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
}
.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f5f0;
    border-bottom: 1px solid var(--color-border-light);
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red {
    background: #ff5f57;
}
.dot.yellow {
    background: #ffbd2e;
}
.dot.green {
    background: #28ca41;
}
.browser-url {
    flex: 1;
    background: white;
    border-radius: var(--radius-full);
    padding: 4px 12px;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border-light);
    text-align: center;
}
.browser-content {
    position: relative;
}
.browser-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.browser-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text);
}
.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--color-text);
}
.card-1 {
    top: 20px;
    left: -10px;
    animation: float1 3s ease-in-out infinite;
}
.card-2 {
    bottom: 80px;
    right: -10px;
    animation: float2 3.5s ease-in-out infinite;
}
@keyframes float1 {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}
@keyframes float2 {
    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}
.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-text-light);
    border-bottom: 2px solid var(--color-text-light);
    transform: rotate(45deg);
    animation: bounce-arrow 1.5s ease-in-out infinite;
}
@keyframes bounce-arrow {
    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(4px);
    }
}

/* ===== TENTANG ===== */
.tentang {
    background: var(--color-bg);
}
.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 72px;
}
.why-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 98, 42, 0.2);
}
.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}
.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.why-warungweb {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #fff8f0 0%, #fdfaf5 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--color-border-light);
}
.ww-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.ww-content h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.ww-content > p {
    color: var(--color-text-muted);
    margin-bottom: 28px;
}
.ww-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ww-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feat-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 2px;
}
.ww-feat strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.ww-feat p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}
.ww-image {
    position: relative;
}
.ww-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.ww-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}
.badge-emoji {
    font-size: 1.5rem;
}
.ww-badge strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}
.ww-badge span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ===== PAKET ===== */
.paket {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}
.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 900px) {
    .pricing-grid-3 {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}
/* Paket slider mobile: ruang shadow + jarak bawah */
@media (max-width: 900px) {
    .paket-slider-viewport {
        overflow: visible !important;
    }
    .paket-slider-wrap {
        overflow: hidden;
        overflow-x: hidden;
        padding: 70px 0;
        margin-top: -70px;
        margin-bottom: 16px;
    }
}
.price-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    border: 2px solid var(--color-border-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(232, 98, 42, 0.3);
}
.price-featured {
    background: linear-gradient(145deg, #f5c400 0%, #f0a500 100%);
    border-color: #d4900a;
    box-shadow: 0 8px 32px rgba(240, 165, 0, 0.35);
    color: #1a1000;
}
.price-featured .price-name,
.price-featured .price-target,
.price-featured .price-amount,
.price-featured .price-currency,
.price-featured .price-number,
.price-featured .price-features li {
    color: #1a1000;
}
.price-featured .price-features li span {
    color: #1a1000;
}
.price-featured:hover {
    box-shadow: 0 20px 60px rgba(240, 165, 0, 0.45);
}
.price-featured .btn-primary {
    background: #1a1000;
    color: #f5c400;
    border-color: #1a1000;
}
.price-featured .btn-primary:hover {
    background: #2d1f00;
}
.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(232, 98, 42, 0.4);
}
.price-featured .price-badge {
    top: 0;
    left: auto;
    right: 0;
    transform: none;
    background: #2a5ca8;
    border-radius: 0 var(--radius-xl) 0 var(--radius-xl);
    padding: 10px 14px 10px 18px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
}
.price-tag-top {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.price-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.price-target {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.price-amount {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 4px;
}
.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    padding-bottom: 4px;
}
.price-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}
.price-concept {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--color-text);
}
.price-features li span {
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
}
.price-features li.note {
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 0.8rem;
}
.price-slogan {
    background: rgba(42, 92, 140, 0.07);
    border-left: 3px solid var(--color-accent);
    padding: 10px 14px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}
.price-cta {
    justify-content: center;
    margin-top: auto;
}
.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(42, 92, 140, 0.06);
    border: 1px solid rgba(42, 92, 140, 0.15);
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 24px;
}
.pricing-note span {
    font-size: 1.2rem;
    flex-shrink: 0;
}
.pricing-note a {
    color: var(--color-primary);
    font-weight: 600;
}
.pricing-note a:hover {
    text-decoration: underline;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    background: var(--color-bg);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.portfolio-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
}
.portfolio-img-wrap img {
    width: 100%;
    height: 220px;
    transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.08);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.9) 0%, rgba(26, 20, 16, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-tag {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
    width: fit-content;
}
.portfolio-overlay h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
}

/* ===== CARA PESAN ===== */
.cara-pesan {
    background: linear-gradient(160deg, #f5f0e8 0%, var(--color-bg) 100%);
}
.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}
.step-arrow {
    display: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    align-self: center;
    justify-self: center;
    padding: 0 8px;
}
.step {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    border: 1px solid var(--color-border-light);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 98, 42, 0.2);
}
.step-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.step-num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    background: var(--color-bg-alt);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 12px;
}
.step h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.step p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}
.cara-cta {
    text-align: center;
}

/* ===== TESTIMONI ===== */
.testimoni {
    background: var(--color-bg);
}
.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
    min-width: 100%;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
}
.testi-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testi-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testi-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
}
.testi-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}
.testi-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}
.testi-btn {
    width: 44px;
    height: 44px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.testi-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(232, 98, 42, 0.35);
}
.testi-dots {
    display: flex;
    gap: 8px;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.testi-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--color-bg-alt);
}
.cta-box {
    background: linear-gradient(135deg, #c94e1a 0%, #e8622a 40%, #2a5c8c 100%);
    border-radius: var(--radius-xl);
    padding: 52px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box .btn-white {
    white-space: normal;
    width: 100%;
    max-width: 340px;
    justify-content: center;
    line-height: 1.4;
    text-align: center;
}
.cta-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}
.cta-box h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}
.cta-box h2 span {
    color: var(--color-gold);
}
.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 32px;
}
.cta-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    margin-top: 16px;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--color-bg);
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.faq-item.open {
    border-color: rgba(232, 98, 42, 0.3);
    box-shadow: 0 4px 20px rgba(232, 98, 42, 0.1);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    background: none;
}
.faq-question:hover {
    color: var(--color-primary);
}
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 400;
    transition: var(--transition);
}
.faq-item.open .faq-icon {
    background: var(--color-primary);
    color: white;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
    padding: 0 24px;
}
.faq-answer.open {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #1a1410 0%, #0e0b08 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 16px auto 24px;
    max-width: 280px;
}
.footer .nav-brand {
    color: white;
    justify-content: center;
}
.footer .brand-dot {
    color: var(--color-primary);
}
.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: white;
}
.footer-contact li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer-contact svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
}
.footer-wa-btn {
    margin-top: 20px;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
}
.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a:hover {
    color: white;
}

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    animation: wa-bounce 2s ease-in-out infinite;
    transition: var(--transition);
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}
@keyframes wa-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--color-text);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}
.wa-tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-text);
}
.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== HERO ANIMATE (initial state) ===== */
.animate-hero {
    opacity: 0;
    transform: translateY(30px);
}

/* ===== RESPONSIVE: TABLET ===== */
@media (min-width: 640px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .ww-image img {
        height: 380px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .hero-container {
        padding: 80px 40px 40px;
    }
    .why-warungweb {
        grid-template-columns: 1fr 1fr;
        padding: 52px;
        align-items: center;
    }
    .testi-card {
        min-width: calc(50% - 12px);
    }
    .testi-card:nth-child(n + 3) {
        display: block;
    }

    /* Footer switches to multi-column at tablet/iPad */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        text-align: left;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer .nav-brand {
        justify-content: flex-start;
    }
    .footer-brand p {
        margin: 16px 0 24px;
    }
    .footer-social {
        justify-content: flex-start;
    }
    .footer-col ul {
        align-items: flex-start;
    }
    .footer-contact li {
        justify-content: flex-start;
    }
    .footer-wa-btn {
        justify-content: flex-start;
    }
}

/* ===== RESPONSIVE: DESKTOP ===== */
@media (min-width: 1024px) {
    :root {
        --section-pad: 120px 0;
    }

    .nav-links {
        display: flex;
    }
    .hamburger {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
    .mobile-backdrop {
        display: none !important;
    }

    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        min-height: 100vh;
        padding-top: 80px;
    }
    .hero-container {
        text-align: left;
        padding: 60px 60px 60px;
        grid-column: 1;
    }
    .hero-badge {
        justify-content: flex-start;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .hero-stats {
        justify-content: flex-start;
        margin: 0;
    }
    .hero-visual {
        margin: 0;
        padding: 0 40px 60px 0;
        grid-column: 2;
        align-self: start;
        margin-top: 100px;
    }
    .hero-scroll {
        display: flex;
    }
    .steps-container {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: start;
    }
    .step-arrow {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        text-align: left;
    }
    .footer-brand {
        grid-column: auto;
    }
    .footer .nav-brand {
        justify-content: flex-start;
    }
    .footer-brand p {
        margin: 16px 0 24px;
    }
    .footer-social {
        justify-content: flex-start;
    }
    .footer-col ul {
        align-items: flex-start;
    }
    .footer-col ul li a:hover {
        transform: translateX(4px);
        display: inline-block;
    }
    .footer-contact li {
        justify-content: flex-start;
    }
    .footer-wa-btn {
        justify-content: flex-start;
    }
    .testi-card {
        min-width: calc(50% - 12px);
    }
    .cta-box {
        padding: 72px 60px;
    }
    .cta-box .btn-white {
        width: auto;
        max-width: none;
        white-space: nowrap;
    }

    .section-label {
        margin-left: 0;
        margin-right: auto;
    }
    .section-label-faq {
        margin-left: auto;
        margin-right: auto;
    }
    .section-title,
    .section-sub {
        text-align: left;
    }

    .section-title-faq {
        text-align: center;
    }

    .testimoni .section-label {
        margin-left: 0;
    }
    .testimoni .section-title,
    .testimoni .section-sub {
        text-align: left;
    }

    .paket .section-label {
        margin-left: 0;
    }
    .paket .section-title,
    .paket .section-sub {
        text-align: left;
    }
}

@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }
    .section-sub {
        margin-left: auto;
    }

    /* ── Mobile navbar: hamburger kiri, CTA kanan, brand hilang dari bar ── */
    .nav-container {
        justify-content: flex-start;
    }

    /* Brand disembunyikan dari navbar bar, tapi tetap tampil di dropdown dan footer */
    .nav-brand:not(.mobile-menu-brand-logo):not(.footer .nav-brand) {
        display: none;
    }
    .footer .nav-brand {
        display: flex;
    }

    /* Hamburger di kiri */
    .hamburger {
        display: flex;
        order: 1;
        margin-left: 0;
    }

    /* CTA di kanan */
    .nav-cta {
        display: flex;
        order: 2;
        margin-left: auto;
        font-size: 0.82rem;
        padding: 10px 18px;
    }
}