/* ==========================================================================
   ADAM JAYA ENTERPRISE — LUXURY EXECUTIVE LANDING PAGE
   Wine & Gold Design System | Professional, Elegant, Responsive
   ========================================================================== */

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

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
    --wine: #0A1628;
    --wine-dark: #060E1A;
    --wine-deep: #030810;
    --wine-light: #162C4E;
    --wine-50: rgba(10, 22, 40, 0.06);
    --wine-100: rgba(10, 22, 40, 0.12);

    --gold: #C5A059;
    --gold-accent: #D4AF37;
    --gold-dark: #9A7B38;
    --gold-light: #EBDCB9;
    --gold-bright: #DFC183;
    --gold-50: rgba(197, 160, 89, 0.08);
    --gold-glow: rgba(197, 160, 89, 0.15);

    --navy: #380812;
    --navy-soft: #4A0B18;
    --navy-slate: #5C1020;
    --navy-card: #450A16;
    --ink: #0F172A;
    --ink-muted: #475569;
    --ink-light: #64748B;

    --bg: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-cream: #F1F5F9;

    --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-pill: 9999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
    --shadow-wine: 0 8px 24px rgba(122, 30, 51, 0.25);
    --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.25);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1140px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

a { text-decoration: none; color: inherit; transition: all 0.25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Scroll margin for fixed nav */
section[id] { scroll-margin-top: 90px; }

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: var(--navy);
    color: #fff;
}

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

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-head);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wine);
    background: var(--wine-50);
    padding: 0.3rem 0.85rem;
    border-radius: var(--r-pill);
    margin-bottom: 0.8rem;
}

.section-dark .section-tag {
    color: var(--gold-bright);
    background: var(--gold-50);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.section-dark .section-title {
    color: #fff;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.7);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #F5E8C8 0%, #D4AF37 50%, #B88E3E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 2px 8px rgba(197, 160, 89, 0.25));
}

.wine-gold-gradient-text {
    background: linear-gradient(135deg, #7A1E33 0%, #C5A059 60%, #58101F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 700;
    border-radius: var(--r-pill);
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease);
}

.btn-sm { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
.btn-md { font-size: 0.88rem; padding: 0.7rem 1.4rem; }
.btn-lg { font-size: 0.98rem; padding: 0.85rem 1.8rem; }

.btn-wine {
    background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-wine);
}

.btn-wine:hover {
    background: linear-gradient(135deg, var(--wine-light) 0%, var(--wine) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(122, 30, 51, 0.35);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 151, 62, 0.45);
}

.btn-outline {
    background: #FFFFFF;
    color: var(--ink);
    border: 1px solid rgba(10, 22, 40, 0.15);
    box-shadow: 0 2px 6px rgba(10, 22, 40, 0.04);
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.2);
}

/* ==========================================================================
   1. FIXED GLASSMORPHISM NAVBAR (INTELLIGENT SCROLL SHRINK)
   ========================================================================== */
.navbar-wrap {
    position: fixed;
    top: 1.2rem;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
    pointer-events: none;
    transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-wrap.scrolled {
    top: 0.5rem;
}

.navbar {
    pointer-events: auto;
    width: 100%;
    max-width: 1200px;
    background: rgba(6, 20, 38, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--r-pill);
    padding: 0.75rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    max-width: 1060px;
    padding: 0.42rem 1.25rem;
    background: rgba(6, 20, 38, 0.96);
    border-color: rgba(201, 151, 62, 0.45);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65), 0 0 20px rgba(201, 151, 62, 0.18);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.nav-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .nav-brand img {
    height: 30px;
}

.navbar.scrolled .nav-link {
    padding: 0.35rem 0.72rem;
    font-size: 0.8rem;
}

.navbar.scrolled .btn-nav-wa {
    padding: 0.38rem 0.95rem;
    font-size: 0.76rem;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    line-height: 1.15;
}

.nav-brand-sub {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #DFC183;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link {
    font-family: var(--font-head);
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.45rem 0.85rem;
    border-radius: var(--r-pill);
    position: relative;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    color: #EBDCB9;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.48rem 1.1rem;
    border-radius: var(--r-pill);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.25s var(--ease);
}

.btn-nav-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
    filter: brightness(1.08);
}

.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(201, 151, 62, 0.35);
    border-radius: var(--r-xl);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s var(--ease);
}

.mobile-drawer.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-drawer ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-drawer li a {
    font-family: var(--font-head);
    font-size: 0.94rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: var(--r-md);
}

.mobile-drawer li a:hover,
.mobile-drawer li a.active {
    background: rgba(201, 151, 62, 0.15);
    color: var(--gold-bright);
}

/* ==========================================================================
   2. HERO / JUMBOTRON SECTION
   ========================================================================== */
.hero-industrial-wrapper {
    position: relative;
    background: #380812;
    background: 
        radial-gradient(circle at 75% 40%, rgba(122, 30, 51, 0.85) 0%, transparent 60%),
        radial-gradient(circle at 18% 30%, rgba(10, 22, 40, 0.4) 0%, transparent 55%),
        radial-gradient(circle at 50% 85%, rgba(56, 8, 18, 0.95) 0%, transparent 80%),
        #380812;
    color: #FFFFFF;
    padding-top: 6.5rem;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero-industrial-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-blueprint-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-gold-arc {
    position: absolute;
    top: 8%;
    right: -4%;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    border: 1px dashed rgba(197, 160, 89, 0.25);
    animation: rotateSlow 50s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-radial-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.glow-left {
    top: 15%;
    left: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(122, 30, 51, 0.3) 0%, transparent 70%);
}

.glow-center {
    top: 25%;
    right: 20%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(22, 48, 88, 0.7) 0%, transparent 70%);
}

.glow-right {
    bottom: 10%;
    right: -5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(15, 35, 70, 0.8) 0%, transparent 70%);
}

.hero-main-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-composition-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-head);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #EBDCB9;
    background: rgba(11, 27, 51, 0.9);
    border: 1px solid rgba(197, 160, 89, 0.38);
    padding: 0.38rem 0.95rem;
    border-radius: var(--r-pill);
    margin-bottom: 0.9rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.hero-eyebrow-pill i {
    font-size: 0.8rem;
    color: #DFC183;
}

.hero-headline-industrial {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.6px;
    color: #FFFFFF;
    margin-bottom: 0.9rem;
}

.hero-subheadline-industrial {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #CBD5E1;
    max-width: 520px;
    margin-bottom: 1.4rem;
}

.hero-benefits-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.benefit-card-mini {
    background: rgba(11, 27, 51, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    border-radius: var(--r-md);
    padding: 0.65rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s var(--ease);
}

.benefit-card-mini:hover {
    background: rgba(16, 38, 70, 0.95);
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.benefit-icon-box {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    background: rgba(6, 20, 38, 0.9);
    border: 1px solid rgba(197, 160, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DFC183;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.benefit-text-box {
    display: flex;
    flex-direction: column;
}

.benefit-text-box strong {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.benefit-text-box span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #94A3B8;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.78rem 1.65rem;
    border-radius: var(--r-pill);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.25s var(--ease);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
    filter: brightness(1.08);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(11, 27, 51, 0.85);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.78rem 1.5rem;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.25s var(--ease);
}

.btn-hero-secondary:hover {
    background: rgba(22, 48, 88, 0.95);
    border-color: rgba(197, 160, 89, 0.45);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Hero Machine Focal Visual */
.hero-center-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.machine-stage-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.machine-backdrop-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 48, 88, 0.6) 0%, rgba(122, 30, 51, 0.15) 45%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

.hero-machine-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 440px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.75));
    transition: transform 0.4s var(--ease);
}

.machine-floor-shadow {
    position: absolute;
    bottom: -15px;
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, transparent 70%);
    z-index: 1;
}

/* Statistics Bar Integrated */
.hero-stats-integrated {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    margin-bottom: 2.2rem;
}

.hero-stats-glass-card {
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: var(--r-xl);
    padding: 1.15rem 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    box-shadow: none !important;
}

.hero-stat-cell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hero-stat-icon-sq {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DFC183;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-stat-info {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
}

.hero-stat-name {
    font-size: 0.74rem;
    font-weight: 500;
    color: #94A3B8;
    line-height: 1.3;
}

/* Organic Wave Dividers */
.hero-wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #380812;
    margin: 0;
    margin-bottom: -1px;
    padding: 0;
    display: block;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 65px;
    margin: 0;
    margin-bottom: -1px;
}

.section-wave-bottom,
.section-wave-top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    margin-bottom: -1px;
    padding: 0;
    display: block;
}

.section-wave-bottom svg,
.section-wave-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 55px;
    margin-bottom: -1px;
    margin: 0;
}

/* ==========================================================================
   5. MASTER KATALOG & REAL-TIME STOCK FILTER
   ========================================================================== */
#katalog-stok {
    position: relative;
    background: #F8FAFC;
    background: 
        radial-gradient(circle at 12% 15%, rgba(122, 30, 51, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 88% 25%, rgba(201, 151, 62, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(26, 75, 138, 0.04) 0%, transparent 50%),
        #F8FAFC;
    border-top: none;
    border-bottom: none;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

#katalog-stok .container {
    max-width: 1560px;
    width: 95%;
    padding: 0 1.5rem;
}

#katalog-stok::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(10, 22, 40, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 22, 40, 0.02) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDotGreen 2s infinite;
}

@keyframes pulseDotGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* 3D Command Deck Container */
.catalog-command-deck {
    max-width: 1060px;
    margin: 2rem auto 3rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(197, 160, 89, 0.3);
    border-radius: 24px;
    padding: 1.5rem 1.8rem;
    box-shadow: 
        0 24px 50px -12px rgba(10, 22, 40, 0.08),
        0 0 30px rgba(197, 160, 89, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
}

.command-deck-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
    align-items: center;
}

.catalog-search {
    position: relative;
    width: 100%;
}

.catalog-search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    pointer-events: none;
}

.catalog-search input {
    width: 100%;
    padding: 0.85rem 1.2rem 0.85rem 3.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1.5px solid rgba(10, 22, 40, 0.1);
    border-radius: var(--r-pill);
    background: #FFFFFF;
    color: var(--ink);
    box-shadow: inset 0 2px 4px rgba(10, 22, 40, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-search input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3.5px rgba(6, 20, 38, 0.1);
}

.catalog-search input:focus + i {
    color: var(--navy);
}

/* Sorting Selector */
.catalog-sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sort-label {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-muted);
    white-space: nowrap;
}

.sort-select {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.8rem 2.2rem 0.8rem 1rem;
    background: #FFFFFF;
    border: 1.5px solid rgba(10, 22, 40, 0.1);
    border-radius: var(--r-pill);
    color: var(--ink);
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23061426'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(10, 22, 40, 0.04);
    transition: all 0.25s ease;
}

.sort-select:focus,
.sort-select:hover {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(6, 20, 38, 0.08);
}

.deck-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 22, 40, 0.08), transparent);
    margin: 1.1rem 0;
}

/* 3D Filter Tabs */
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.filter-btn {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--r-pill);
    background: #FFFFFF;
    color: var(--ink-muted);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(10, 22, 40, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.filter-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 22, 40, 0.08);
}

.filter-btn.active {
    background: #0A1628;
    color: #FFFFFF;
    border-color: #0A1628;
    box-shadow: 0 6px 18px rgba(10, 22, 40, 0.25);
    transform: translateY(-2px);
}

.filter-btn.active i { color: #DFC183; }

.filter-count {
    font-size: 0.7rem;
    font-weight: 800;
    background: rgba(10, 22, 40, 0.06);
    color: var(--ink);
    padding: 0.1rem 0.45rem;
    border-radius: var(--r-pill);
    min-width: 18px;
    text-align: center;
    transition: all 0.25s ease;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Ultra-Premium Product Grid (4 COLUMNS) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid rgba(10, 22, 40, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.45);
    box-shadow: 
        0 20px 40px -10px rgba(10, 22, 40, 0.12),
        0 0 25px rgba(197, 160, 89, 0.16);
}

.product-img-wrap {
    position: relative;
    height: 195px;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background: #F1F5F9;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

.product-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 20, 38, 0.28) 0%, transparent 40%, rgba(6, 20, 38, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Quick View Hover Overlay */
.quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 38, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.product-card:hover .quick-view-overlay {
    opacity: 1;
    pointer-events: auto;
}

.btn-quick-view {
    background: #FFFFFF;
    color: #061426;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.55rem 1.1rem;
    border-radius: var(--r-pill);
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transform: translateY(10px);
    transition: all 0.25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-quick-view:hover {
    background: #DFC183;
    color: #061426;
    transform: translateY(10px) scale(1.04);
}

.product-card:hover .btn-quick-view {
    transform: translateY(0);
}

/* Status & Verified Badges */
.product-badge-verified {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(6, 20, 38, 0.88);
    backdrop-filter: blur(8px);
    color: #DFC183;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.22rem 0.55rem;
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.product-badge-verified i {
    color: #10B981;
    font-size: 0.65rem;
}

.product-status-pill {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(16, 185, 129, 0.92);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    padding: 0.22rem 0.6rem;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.product-status-pill.status-amber {
    background: rgba(217, 119, 6, 0.92);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.product-status-pill.status-blue {
    background: rgba(37, 99, 235, 0.92);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* Card Body */
.product-body {
    padding: 1rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.product-cat {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--wine);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #D97706;
}

.product-rating .rating-count {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--ink-light);
}

.product-body h3 {
    font-family: var(--font-head);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.product-body p {
    font-size: 0.8rem;
    color: var(--ink-muted);
    line-height: 1.5;
    margin-bottom: 0.6rem;
    flex: 1;
}

/* Floating Price Box */
.product-price-box {
    background: #F8FAFC;
    border: 1px solid rgba(10, 22, 40, 0.06);
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--ink-light);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.price-amount {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.spec-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--navy);
    background: #F1F5F9;
    border: 1px solid rgba(10, 22, 40, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.spec-tag i { font-size: 0.68rem; color: #D97706; }

.product-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(10, 22, 40, 0.05);
}

.product-footer .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.48rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 9px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-footer .btn:active {
    transform: translateY(2px) scale(0.97);
}

.product-footer .btn-outline {
    background: #FFFFFF;
    color: var(--ink);
    border: 1px solid rgba(10, 22, 40, 0.15);
    box-shadow: 0 2px 6px rgba(10, 22, 40, 0.04);
}

.product-footer .btn-outline:hover {
    background: #061426;
    color: #FFFFFF;
    border-color: #061426;
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.2);
}

.product-footer .btn-wine {
    background: linear-gradient(135deg, #7A1E33 0%, #58101F 100%);
    color: #FFFFFF;
    border: 1px solid rgba(201, 151, 62, 0.35);
    box-shadow: 0 4px 14px rgba(122, 30, 51, 0.35);
}

.product-footer .btn-wine:hover {
    background: linear-gradient(135deg, #A5334C 0%, #7A1E33 100%);
    box-shadow: 0 8px 20px rgba(122, 30, 51, 0.45);
    transform: translateY(-2px);
}

.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #FFFFFF;
    border: 1.5px dashed rgba(197, 160, 89, 0.4);
    border-radius: 20px;
    display: none;
}

.catalog-empty.active { display: block; }
.catalog-empty i { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }

/* ==========================================================================
   6. REAL-TIME ROI & FINANCIAL SIMULATOR (FEATURE UNGGULAN)
   ========================================================================== */
.roi-simulator-card {
    background: linear-gradient(145deg, rgba(13, 32, 61, 0.95) 0%, rgba(6, 20, 38, 0.98) 100%);
    border: 1.5px solid rgba(201, 151, 62, 0.35);
    backdrop-filter: blur(20px);
    border-radius: var(--r-xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 151, 62, 0.08);
    position: relative;
    overflow: hidden;
}

.roi-simulator-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 151, 62, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.roi-simulator-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Simulator Presets */
.roi-presets-wrap {
    margin-bottom: 1.8rem;
}

.roi-presets-label {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.roi-preset-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.roi-preset-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.45rem 0.85rem;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.roi-preset-btn:hover {
    background: rgba(201, 151, 62, 0.15);
    border-color: rgba(201, 151, 62, 0.4);
    color: #DFC183;
}

.roi-preset-btn.active {
    background: linear-gradient(135deg, rgba(122, 30, 51, 0.85) 0%, rgba(201, 151, 62, 0.6) 100%);
    border-color: #DFC183;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(201, 151, 62, 0.25);
}

/* Slider Controls */
.roi-slider-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    padding: 1.1rem 1.25rem;
    margin-bottom: 1.1rem;
    transition: border-color 0.25s var(--ease);
}

.roi-slider-group:hover {
    border-color: rgba(201, 151, 62, 0.3);
}

.roi-slider-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
}

.roi-slider-title-box {
    display: flex;
    flex-direction: column;
}

.roi-slider-title {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.roi-slider-subtitle {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}

.roi-slider-val-badge {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: #DFC183;
    background: rgba(201, 151, 62, 0.15);
    border: 1px solid rgba(201, 151, 62, 0.35);
    padding: 0.25rem 0.8rem;
    border-radius: var(--r-pill);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-width: 120px;
    text-align: right;
}

.roi-range-input {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.roi-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DFC183 0%, #C5A059 100%);
    border: 2px solid #FFFFFF;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 12px rgba(201, 151, 62, 0.4);
    transition: transform 0.15s var(--ease);
}

.roi-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Right Result Board */
.roi-results-board {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: rgba(6, 20, 38, 0.6);
    border: 1px solid rgba(201, 151, 62, 0.25);
    border-radius: var(--r-lg);
    padding: 1.8rem;
}

.roi-result-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.roi-metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
}

.roi-metric-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.roi-metric-value {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.2;
}

.roi-metric-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

/* Laba Bersih Showcase Banner */
.roi-profit-banner {
    background: linear-gradient(135deg, rgba(122, 30, 51, 0.45) 0%, rgba(201, 151, 62, 0.25) 100%);
    border: 1.5px solid rgba(201, 151, 62, 0.5);
    border-radius: var(--r-md);
    padding: 1.4rem;
    text-align: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.roi-profit-banner .banner-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #DFC183;
    margin-bottom: 0.3rem;
}

.roi-profit-banner .banner-amount {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(201, 151, 62, 0.3);
    line-height: 1.1;
}

.roi-profit-banner .banner-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.35rem;
}

/* BEP Payback Gauge Bar */
.roi-bep-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.4rem;
}

.roi-bep-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.roi-bep-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.roi-bep-badge {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
    color: #10B981;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 0.15rem 0.65rem;
    border-radius: var(--r-pill);
}

.roi-payback-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.4rem;
}

.roi-payback-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
    border-radius: 4px;
    transition: width 0.4s var(--ease);
}

.roi-bep-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   7. WHY CHOOSE US — ULTRA-VISUAL ECOSYSTEM ARCHITECTURE
   ========================================================================== */
.why-section-wrapper {
    position: relative;
}

/* Animated Top Stats Strip */
.why-stats-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.why-stat-box {
    background: #FFFFFF;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--r-lg);
    padding: 1.6rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.why-stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--wine) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.why-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 151, 62, 0.4);
}

.why-stat-box:hover::after {
    opacity: 1;
}

.why-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(6, 20, 38, 0.15);
}

.why-stat-number {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--navy);
    display: block;
    margin-bottom: 0.25rem;
}

.why-stat-label {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--wine);
    display: block;
    line-height: 1.2;
}

.why-stat-desc {
    font-size: 0.72rem;
    color: var(--ink-light);
    display: block;
    margin-top: 0.15rem;
}

/* Centerpiece Ecosystem Hub */
.why-hub-architecture {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0 auto 3rem;
}

/* Top Experience Banner Card */
.why-top-experience-card {
    background: linear-gradient(135deg, var(--navy) 0%, #0D223F 100%);
    border: 2px solid rgba(201, 151, 62, 0.4);
    border-radius: var(--r-xl);
    padding: 1.8rem 2.2rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 40px rgba(6, 20, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.why-top-experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: radial-gradient(circle at right center, rgba(201, 151, 62, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.why-exp-badge-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.why-exp-big-number {
    font-family: var(--font-head);
    font-size: 3.8rem;
    font-weight: 900;
    color: #DFC183;
    line-height: 0.9;
    text-shadow: 0 4px 15px rgba(201, 151, 62, 0.3);
}

.why-exp-info h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.why-exp-info p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
}

.why-exp-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.why-trust-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 151, 62, 0.35);
    color: #DFC183;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Middle Core Hub Matrix (Factory + Center Node + Support) */
.why-middle-core-grid {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.why-pillar-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(10, 22, 40, 0.09);
    border-radius: var(--r-xl);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

.why-pillar-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.why-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--wine-50);
    color: var(--wine);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-pillar-header h3 {
    font-family: var(--font-head);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}

.why-pillar-card p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.why-pillar-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed rgba(10, 22, 40, 0.08);
}

.why-pillar-list-item {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-pillar-list-item i {
    color: #10B981;
    font-size: 0.82rem;
}

/* Center Emblem Node */
.why-center-emblem-node {
    background: linear-gradient(145deg, #061426 0%, #0D223F 100%);
    border: 2px solid #DFC183;
    border-radius: var(--r-xl);
    padding: 2.2rem 1.4rem;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 16px 40px rgba(6, 20, 38, 0.35), 0 0 30px rgba(201, 151, 62, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.why-emblem-logo-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 151, 62, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(201, 151, 62, 0.3);
}

.why-emblem-logo-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.why-center-emblem-node h4 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

.why-center-emblem-node span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #DFC183;
}

.why-center-tagline {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.8rem;
    line-height: 1.4;
}

/* Bottom Duo Cards (SUS 304 + QC Presisi) */
.why-bottom-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Workflow Ribbon Track */
.why-process-ribbon {
    background: #FFFFFF;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--r-xl);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.why-step-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
}

.why-step-number {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--wine);
    background: var(--wine-50);
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-step-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy);
}

.why-step-text span {
    display: block;
    font-size: 0.72rem;
    color: var(--ink-light);
}

/* ==========================================================================
   8. FABRIKASI CASE STUDY & ENGINEERING TIMELINE
   ========================================================================== */
#proyek {
    background: #380812;
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.proyek-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.proyek-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 151, 62, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 151, 62, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* 4-Step Compact Fabrikasi Grid */
.fabrikasi-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 2.2rem auto 1.5rem;
}

.fabrikasi-step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(201, 151, 62, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--r-xl);
    padding: 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.35s var(--ease);
}

.fabrikasi-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 151, 62, 0.55);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 151, 62, 0.15);
}

.fabrikasi-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7A1E33 0%, #C5A059 100%);
    opacity: 0.8;
}

.fabrikasi-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fabrikasi-step-badge {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 900;
    color: #DFC183;
    line-height: 1;
}

.fabrikasi-step-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201, 151, 62, 0.15);
    border: 1px solid rgba(201, 151, 62, 0.35);
    color: #DFC183;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.fabrikasi-step-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

.fabrikasi-step-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #CBD5E1;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.fabrikasi-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    color: #DFC183;
    background: rgba(201, 151, 62, 0.12);
    border: 1px solid rgba(201, 151, 62, 0.25);
    padding: 0.25rem 0.6rem;
    border-radius: var(--r-pill);
    width: fit-content;
    margin-top: 0.25rem;
}

/* Portfolio Slider Section inside Proyek */
.portfolio-slider {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
}

.portfolio-track {
    display: flex;
    gap: 1.2rem;
    transition: transform 0.4s var(--ease);
}

.portfolio-item {
    flex: 0 0 calc(33.333% - 0.8rem);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
    border: 1.5px solid rgba(201, 151, 62, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-zoom-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(6, 20, 38, 0.85);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: 0.9rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.25s var(--ease);
}

.portfolio-item:hover .portfolio-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 20, 38, 0.9) 0%, rgba(6, 20, 38, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
    z-index: 2;
}

.portfolio-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.25rem;
}

.portfolio-title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.35;
}

.portfolio-nav {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.port-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 151, 62, 0.35);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.port-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.05);
}

/* ==========================================================================
   9. GOOGLE-STYLE TESTIMONIALS & VIDEO SPOTLIGHT
   ========================================================================== */
/* Google Review Scoreboard */
.google-review-scoreboard {
    background: #FFFFFF;
    border: 1.5px solid rgba(10, 22, 40, 0.08);
    border-radius: var(--r-xl);
    padding: 1.5rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.8rem;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 1.2rem;
}

.google-brand-left {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.google-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: #FFFFFF;
    border: 1px solid rgba(10, 22, 40, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.google-score-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.google-stars {
    color: #F59E0B;
    font-size: 1.15rem;
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.25rem;
}

.google-verified-text {
    font-size: 0.82rem;
    color: var(--ink-muted);
    font-weight: 600;
}

/* Video Testimonial Spotlight Card */
.video-testi-spotlight-card {
    background: linear-gradient(135deg, var(--navy) 0%, #0D223F 100%);
    border: 2px solid rgba(201, 151, 62, 0.45);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 20, 38, 0.35);
    margin-bottom: 2.8rem;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    color: #FFFFFF;
    position: relative;
}

.video-thumb-stage {
    position: relative;
    height: 100%;
    min-height: 320px;
    cursor: pointer;
    overflow: hidden;
}

.video-thumb-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.video-thumb-stage:hover img {
    transform: scale(1.06);
}

.video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 20, 38, 0.2) 0%, rgba(6, 20, 38, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.4rem;
}

.video-duration-pill {
    background: rgba(6, 20, 38, 0.85);
    border: 1px solid rgba(201, 151, 62, 0.4);
    color: #DFC183;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: var(--r-pill);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
}

/* Pulsing Play Button */
.video-play-pulse-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DFC183 0%, #C5A059 100%);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 30px rgba(201, 151, 62, 0.6);
    align-self: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.25s var(--ease);
}

.video-play-pulse-btn::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(201, 151, 62, 0.5);
    animation: pulseRings 2s infinite;
}

@keyframes pulseRings {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.video-thumb-stage:hover .video-play-pulse-btn {
    transform: scale(1.12);
}

.video-testi-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-badge-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.video-badge-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--wine-light);
    background: rgba(122, 30, 51, 0.25);
    padding: 0.25rem 0.7rem;
    border-radius: var(--r-pill);
}

.video-quote-text {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.video-author-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #DFC183;
    object-fit: cover;
}

.video-author-name {
    font-family: var(--font-head);
    font-size: 0.98rem;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.video-author-company {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Google-Style Review Cards Grid */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.google-review-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(10, 22, 40, 0.09);
    border-radius: var(--r-xl);
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease);
    position: relative;
}

.google-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 151, 62, 0.45);
    box-shadow: var(--shadow-md);
}

.review-author-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.review-avatar-box {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--wine) 100%);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.review-author-role {
    font-size: 0.74rem;
    color: var(--ink-light);
    line-height: 1.3;
}

.verified-customer-badge {
    color: #059669;
    font-size: 0.8rem;
}

.review-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}

.review-stars {
    color: #F59E0B;
    font-size: 0.92rem;
    display: flex;
    gap: 0.15rem;
}

.review-date-tag {
    font-size: 0.7rem;
    color: var(--ink-light);
}

.review-content-text {
    font-size: 0.86rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    flex: 1;
}

.review-product-tag {
    background: #F8FAFC;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.review-location-pin {
    font-size: 0.72rem;
    color: var(--ink-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Video Player Modal */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 20, 38, 0.92);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-box {
    background: #0A1E38;
    border: 2px solid #DFC183;
    border-radius: var(--r-xl);
    max-width: 780px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s var(--ease);
}

.video-modal-close:hover {
    background: var(--wine);
    transform: scale(1.1);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .video-testi-spotlight-card { grid-template-columns: 1fr; }
    .video-thumb-stage { min-height: 240px; }
    .google-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   10. FAQ ACCORDION (3D DARK STAGE)
   ========================================================================== */
#faq {
    background: #380812;
    color: #FFFFFF;
}

.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 151, 62, 0.2);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 151, 62, 0.15);
    border: 1px solid rgba(201, 151, 62, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-q-text {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
}

.faq-toggle-btn {
    color: var(--gold-bright);
    font-size: 0.9rem;
    transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-toggle-btn {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.4rem 3.8rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* ==========================================================================
   12. WORKSHOP LOCATION & MAP
   ========================================================================== */
.location-card {
    background: var(--bg-white);
    border: 1.5px solid rgba(201, 151, 62, 0.28);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.location-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.location-info p {
    font-size: 0.88rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.location-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.location-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wine-50);
    color: var(--wine);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.location-detail h4 {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.location-detail p { font-size: 0.82rem; margin-bottom: 0; }

.location-btns {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-brand img { height: 36px; }

.footer-brand-name {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
}

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   14. FLOATING BACK TO TOP BUTTON
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A1E38 0%, #061426 100%);
    border: 2px solid #DFC183;
    color: #DFC183;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(6, 20, 38, 0.6), 0 0 15px rgba(201, 151, 62, 0.25);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top:hover {
    background: linear-gradient(135deg, #7A1E33 0%, #A5334C 100%);
    border-color: #F5E8C8;
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(122, 30, 51, 0.6), 0 0 25px rgba(201, 151, 62, 0.4);
}

/* ==========================================================================
   15. MODALS & SMOOTH PRODUCT TRANSITIONS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 20, 38, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #FFFFFF;
    border: 2px solid rgba(201, 151, 62, 0.35);
    border-radius: var(--r-xl);
    max-width: 560px;
    width: 100%;
    padding: 2.2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 151, 62, 0.15);
    transform: scale(0.92) translateY(24px);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--bg);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
}

.modal-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.modal-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-md);
    background: var(--wine-50);
    color: var(--wine);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem;
    font-size: 0.82rem;
}

.spec-table td {
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(10,22,40,0.08);
}

.spec-table td:first-child {
    font-weight: 700;
    color: var(--navy);
    width: 40%;
    background: var(--bg);
}

.modal-benefits {
    background: var(--gold-50);
    border-radius: var(--r-md);
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.78rem;
}

.modal-benefits h4 {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 0.3rem;
}

.modal-benefits li {
    margin-bottom: 0.2rem;
    color: var(--ink-muted);
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */
/* ==========================================================================
   RESPONSIVE LAYOUT & MOBILE PERFECTION
   ========================================================================== */
@media (max-width: 1400px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}

@media (max-width: 1200px) {
    .hero-composition-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .hero-machine-img {
        max-height: 420px;
    }
    .hero-stats-glass-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .workflow-grid { grid-template-columns: repeat(3, 1fr); }
    .roi-grid { grid-template-columns: 1fr; }
    .location-inner { grid-template-columns: 1fr; }
    .location-map iframe { min-height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-item { flex: 0 0 calc(50% - 0.6rem); }
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 0.95rem; }
}

@media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .roi-simulator-grid { grid-template-columns: 1fr; gap: 2rem; }
    .trusted-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html {
        zoom: 1 !important;
        -webkit-text-size-adjust: 100%;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-head {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.45rem, 5vw, 1.85rem);
    }

    /* Fixed Navbar on Mobile */
    .navbar-wrap {
        padding: 0 0.75rem;
        top: 0.5rem;
    }

    .navbar {
        padding: 0.55rem 0.85rem;
        border-radius: var(--r-lg);
    }

    .nav-brand img {
        height: 30px;
        width: auto;
    }

    .nav-brand-name {
        font-size: 0.9rem;
    }

    .nav-brand-sub {
        font-size: 0.58rem;
        letter-spacing: 0.4px;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }

    .btn-nav-wa {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    /* Mobile Drawer */
    .mobile-drawer {
        top: 4.5rem;
        left: 0.75rem;
        right: 0.75rem;
        padding: 1.25rem;
        border-radius: 18px;
        max-height: calc(100vh - 5.5rem);
        overflow-y: auto;
    }

    .mobile-drawer li a {
        font-size: 0.88rem;
        padding: 0.55rem 0.75rem;
    }

    /* Hero Section */
    .hero-industrial-wrapper {
        padding-top: 5.5rem;
        padding-bottom: 0 !important;
        min-height: auto;
    }

    .hero-composition-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-left-content {
        align-items: center;
        text-align: center;
    }

    .hero-headline-industrial {
        font-size: clamp(1.65rem, 6.5vw, 2.2rem);
        line-height: 1.25;
    }

    .hero-subheadline-industrial {
        font-size: 0.88rem;
        line-height: 1.55;
        max-width: 100%;
    }

    .story-chapter-pill {
        font-size: 0.68rem;
        padding: 0.25rem 0.7rem;
    }

    .hero-benefits-trio {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        width: 100%;
        margin-bottom: 1.2rem;
    }

    .benefit-card-mini {
        padding: 0.55rem 0.35rem;
        font-size: 0.72rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
        border-radius: 10px;
    }

    .benefit-icon-box {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .benefit-text-box strong {
        display: block;
        font-size: 0.7rem;
        line-height: 1.15;
    }

    .benefit-text-box span {
        display: block;
        font-size: 0.6rem;
        color: #94A3B8;
        line-height: 1.15;
        margin-top: 0.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.65rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.2rem;
        font-size: 0.88rem;
    }

    .hero-right-stage {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-machine-img {
        max-height: 240px;
        margin: 0 auto;
    }

    .hero-stats-glass-card {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem 0.65rem !important;
        padding: 0.85rem 0.75rem !important;
        border-radius: 16px !important;
        align-items: stretch !important;
    }

    .hero-stat-cell {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0.15rem 0 !important;
    }

    .hero-stat-icon-sq {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
    }

    .hero-stat-value {
        font-size: 1.25rem !important;
        line-height: 1.1 !important;
        font-weight: 800 !important;
    }

    .hero-stat-name {
        font-size: 0.68rem !important;
        line-height: 1.25 !important;
        color: rgba(255, 255, 255, 0.78) !important;
        margin-top: 0.1rem !important;
        white-space: normal !important;
    }

    /* Product Catalog Command Deck & Filter Tabs (Mobile) */
    .catalog-command-deck {
        padding: 1.1rem 0.95rem;
        border-radius: 18px;
        margin: 1.2rem 0 1.8rem;
    }

    .command-deck-top {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .catalog-search {
        width: 100%;
    }

    .catalog-search input {
        width: 100%;
        padding: 0.75rem 1rem 0.75rem 2.7rem;
        font-size: 0.84rem;
    }

    .catalog-search i {
        left: 1rem;
        font-size: 0.9rem;
    }

    .catalog-sort-wrap {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .sort-label {
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .sort-select {
        flex: 1;
        width: auto;
        padding: 0.55rem 2rem 0.55rem 0.85rem;
        font-size: 0.78rem;
    }

    .deck-divider {
        margin: 0.75rem 0;
    }

    .catalog-filters {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.45rem;
        padding: 0.2rem 0 0.4rem;
        justify-content: flex-start;
    }

    .catalog-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.76rem;
        padding: 0.45rem 0.85rem;
        border-radius: 20px;
    }

    /* 2-Column Responsive Product Grid */
    #katalog-stok .container {
        padding: 0 0.65rem;
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
    }

    .product-card {
        border-radius: 14px;
        background: #FFFFFF;
        border: 1px solid rgba(10, 22, 40, 0.08);
        box-shadow: 0 3px 10px rgba(10, 22, 40, 0.04);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .product-img-wrap {
        height: 125px;
        border-radius: 14px 14px 0 0;
        position: relative;
    }

    .product-badge-verified {
        font-size: 0.52rem;
        padding: 0.15rem 0.4rem;
        top: 0.35rem;
        left: 0.35rem;
        border-radius: 4px;
        gap: 0.2rem;
    }

    .product-status-pill {
        font-size: 0.52rem;
        padding: 0.15rem 0.4rem;
        top: 0.35rem;
        right: 0.35rem;
        border-radius: 4px;
    }

    .product-body {
        padding: 0.55rem 0.55rem 0.65rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-meta-row {
        margin-bottom: 0.2rem;
    }

    .product-cat {
        font-size: 0.58rem;
    }

    .product-rating {
        font-size: 0.58rem;
    }

    .product-rating .rating-count {
        display: none;
    }

    .product-body h3 {
        font-size: 0.8rem;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 0.15rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2em;
    }

    .product-body p {
        font-size: 0.62rem;
        line-height: 1.25;
        color: #64748B;
        margin-bottom: 0.35rem;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-price-box {
        padding: 0.3rem 0.45rem;
        border-radius: 6px;
        margin-bottom: 0.45rem;
        background: #F8FAFC;
        border: 1px solid rgba(10, 22, 40, 0.05);
    }

    .price-label {
        font-size: 0.5rem;
        color: #94A3B8;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        margin-bottom: 0.1rem;
    }

    .price-amount {
        font-size: 0.78rem;
        font-weight: 800;
        color: #7A1E33;
        line-height: 1.2;
    }

    .product-specs {
        display: none;
    }

    .product-footer {
        flex-direction: column;
        gap: 0.3rem;
        padding-top: 0.3rem;
        margin-top: auto;
    }

    .product-footer .btn {
        width: 100%;
        padding: 0.35rem 0.4rem;
        font-size: 0.68rem;
        border-radius: 6px;
        justify-content: center;
    }

    /* ROI Simulator on Mobile */
    .roi-simulator-card {
        padding: 1.4rem 1rem;
        border-radius: 16px;
    }

    .roi-presets-wrap {
        margin-bottom: 1.2rem;
    }

    .roi-presets-label {
        font-size: 0.72rem;
        margin-bottom: 0.5rem;
    }

    .roi-preset-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.45rem;
        width: 100%;
    }

    .roi-preset-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 0.68rem;
        padding: 0.48rem 0.35rem;
        border-radius: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .roi-slider-group {
        padding: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .roi-slider-val-badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.55rem;
        min-width: 85px;
    }

    .roi-results-board {
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }

    .roi-result-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .roi-kpi-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Section 7: Kenapa Memilih Adam Jaya & Architecture Hub */
    .why-stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0;
        background: transparent;
        margin-bottom: 2rem;
    }

    .why-stat-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.85rem 0.8rem;
        border-radius: 12px;
        gap: 0.25rem;
        background: #FFFFFF;
        border: 1px solid rgba(10, 22, 40, 0.08);
        box-shadow: 0 3px 12px rgba(10, 22, 40, 0.04);
        min-height: auto;
    }

    .why-stat-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
        border-radius: 8px;
        margin-bottom: 0.25rem;
        box-shadow: 0 2px 8px rgba(6, 20, 38, 0.12);
    }

    .why-stat-number {
        font-size: 1.45rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 0.1rem;
        color: var(--navy);
    }

    .why-stat-label {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--wine);
        line-height: 1.25;
    }

    .why-stat-desc {
        font-size: 0.68rem;
        line-height: 1.35;
        margin-top: 0.1rem;
        color: var(--ink-light);
    }

    .why-top-experience-card {
        flex-direction: column;
        padding: 1.4rem 1.1rem;
        gap: 1rem;
        text-align: center;
    }

    .why-exp-badge-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.6rem;
    }

    .why-exp-big-number {
        font-size: 2.5rem;
    }

    .why-exp-badges {
        justify-content: center;
    }

    .why-middle-core-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-pillar-card {
        padding: 1.4rem 1.1rem;
    }

    .why-center-emblem-node {
        padding: 1.8rem 1.2rem;
    }

    .why-bottom-duo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-process-ribbon {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1.2rem 1rem;
    }

    /* Section 8: 4-Step Compact Fabrikasi Grid on Mobile */
    .fabrikasi-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
        margin: 1.2rem 0 1rem;
    }

    .fabrikasi-step-card {
        padding: 1rem 0.85rem;
        border-radius: 14px;
        gap: 0.5rem;
    }

    .fabrikasi-step-badge {
        font-size: 1.1rem;
    }

    .fabrikasi-step-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .fabrikasi-step-title {
        font-size: 0.85rem;
    }

    .fabrikasi-step-desc {
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .fabrikasi-step-tag {
        font-size: 0.62rem;
        padding: 0.2rem 0.45rem;
    }

    /* Section 9: Portfolio Showcase */
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .workflow-step {
        padding: 1.2rem;
    }

    .portfolio-item {
        flex: 0 0 100%;
        height: 220px;
    }

    .portfolio-nav {
        margin-top: 1.2rem;
    }

    /* Section 10: Testimonials & Google Scoreboard */
    .google-review-scoreboard {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .google-brand-left {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .video-testi-spotlight-card {
        grid-template-columns: 1fr;
    }

    .video-thumb-stage {
        min-height: 220px;
    }

    .video-testi-info {
        padding: 1.4rem 1.1rem;
    }

    .google-reviews-slider-wrapper {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0.5rem 0 0.2rem;
    }

    .google-reviews-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: stretch;
        width: max-content !important;
        position: relative;
        gap: 0 !important;
        padding: 0.5rem 0 0.8rem;
        margin: 0;
        will-change: transform;
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .google-review-card {
        width: 78vw !important;
        max-width: 320px !important;
        min-width: 265px !important;
        flex-shrink: 0 !important;
        margin: 0 8px !important;
        box-sizing: border-box !important;
        border-radius: 18px;
        padding: 1.3rem 1.15rem;
        opacity: 0.42 !important;
        transform: scale(0.92) !important;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
        box-shadow: 0 4px 16px rgba(10, 22, 40, 0.05);
        user-select: none;
    }

    .google-review-card.active {
        opacity: 1 !important;
        transform: scale(1) !important;
        border-color: rgba(201, 151, 62, 0.55) !important;
        box-shadow: 0 12px 30px rgba(10, 22, 40, 0.12), 0 0 20px rgba(201, 151, 62, 0.1) !important;
    }

    .reviews-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.45rem;
        margin-top: 0.8rem;
    }

    .review-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(10, 22, 40, 0.18);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
    }

    .review-dot.active {
        width: 22px;
        border-radius: 10px;
        background: var(--wine);
        box-shadow: 0 2px 8px rgba(122, 30, 51, 0.3);
    }

    /* Section 11: FAQ Accordion */
    .faq-question {
        padding: 1rem 1.1rem;
    }

    .faq-q-text {
        font-size: 0.86rem;
    }

    .faq-answer-inner {
        padding: 0 1.1rem 1.1rem 1.1rem;
        font-size: 0.82rem;
    }

    /* Section 12: Location & Workshop */
    .location-inner {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 1.4rem 1.1rem;
    }

    .location-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

    .location-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .location-map iframe {
        min-height: 240px;
        height: 260px;
    }

    /* Section 13: Footer */
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }

    /* Section 16: Trusted By Enterprise Partners Ribbon */
    .trusted-by-section {
        padding: 1.4rem 0 1.6rem !important;
    }

    .trusted-header {
        display: block !important;
        margin-bottom: 0.75rem !important;
    }

    .trusted-pill-tag {
        display: inline-flex !important;
        font-size: 0.62rem !important;
        padding: 0.22rem 0.65rem !important;
        margin-bottom: 0 !important;
        letter-spacing: 1px !important;
    }

    .trusted-title {
        display: none !important;
    }

    .trusted-logos-grid {
        gap: 0.75rem !important;
    }

    .trusted-logo-card {
        padding: 0.45rem 1rem 0.45rem 0.55rem !important;
        gap: 0.6rem !important;
    }

    .trusted-logo-emblem {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }

    .trusted-logo-name {
        font-size: 0.78rem !important;
    }

    /* Section 14: Floating AI Bot & Scroll To Top */
    .floating-assistant-trigger {
        bottom: 1rem;
        left: 1rem;
        gap: 0.4rem;
    }

    .assistant-btn-circle {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .assistant-callout-pill {
        display: none !important;
    }

    .assistant-modal-chat {
        bottom: 4.5rem !important;
        left: 0.75rem !important;
        right: 0.75rem !important;
        width: calc(100vw - 1.5rem) !important;
        max-width: 380px !important;
        height: 460px !important;
        max-height: 65vh !important;
        border-radius: 18px !important;
    }

    .scroll-top {
        right: 1rem;
        bottom: 1rem;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    /* Section 15: Modals */
    .modal-overlay {
        padding: 0.75rem;
    }

    .modal-box {
        padding: 1.25rem 1rem;
        border-radius: 16px;
        max-height: 86vh;
        width: calc(100vw - 1.5rem);
    }
}

@media (max-width: 420px) {
    .btn-nav-wa span {
        display: none;
    }

    .btn-nav-wa {
        padding: 0.4rem 0.55rem;
    }

    .hero-headline-industrial {
        font-size: 1.55rem;
    }
}

/* ==========================================================================
   SCROLL STORYTELLING & STAGGERED REVEAL ENGINE
   ========================================================================== */

/* Story Chapter Pill Badge */
.story-chapter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7A1E33;
    background: rgba(122, 30, 51, 0.07);
    border: 1px solid rgba(122, 30, 51, 0.22);
    padding: 0.3rem 0.85rem;
    border-radius: var(--r-pill);
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(122, 30, 51, 0.04);
}

.story-chapter-pill i {
    font-size: 0.75rem;
    color: #C9973E;
}

.section-dark .story-chapter-pill {
    background: rgba(11, 27, 51, 0.9);
    border-color: rgba(197, 160, 89, 0.4);
    color: #EBDCB9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.section-dark .story-chapter-pill i {
    color: var(--gold-bright);
}

/* Base Story Item States (Fade-up + Blur -> Clear) */
.story-reveal {
    opacity: 0;
    transform: translateY(38px);
    filter: blur(12px);
    will-change: transform, opacity, filter;
    transition: 
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--story-delay, 0s);
}

.story-slide-right {
    opacity: 0;
    transform: translateX(50px) translateY(10px);
    filter: blur(14px);
    will-change: transform, opacity, filter;
    transition: 
        opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--story-delay, 0s);
}

.story-slide-left {
    opacity: 0;
    transform: translateX(-50px) translateY(10px);
    filter: blur(14px);
    will-change: transform, opacity, filter;
    transition: 
        opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--story-delay, 0s);
}

.story-scale-up {
    opacity: 0;
    transform: scale(0.92) translateY(25px);
    filter: blur(12px);
    will-change: transform, opacity, filter;
    transition: 
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--story-delay, 0s);
}

/* Revealed State */
.story-revealed,
.story-revealed.story-reveal,
.story-revealed.story-slide-right,
.story-revealed.story-slide-left,
.story-revealed.story-scale-up {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
    filter: blur(0px) !important;
}

/* Stagger utility classes */
.delay-1 { --story-delay: 0.08s; }
.delay-2 { --story-delay: 0.16s; }
.delay-3 { --story-delay: 0.24s; }
.delay-4 { --story-delay: 0.32s; }
.delay-5 { --story-delay: 0.40s; }
.delay-6 { --story-delay: 0.48s; }
.delay-7 { --story-delay: 0.56s; }
.delay-8 { --story-delay: 0.64s; }

/* ==========================================================================
   16. TRUSTED BY / ENTERPRISE CLIENT LOGOS SECTION
   ========================================================================== */
.trusted-by-section {
    background: #380812;
    border-bottom: none;
    padding: 3rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.trusted-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.2rem;
}

.trusted-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #DFC183;
    background: rgba(201, 151, 62, 0.12);
    border: 1px solid rgba(201, 151, 62, 0.3);
    padding: 0.3rem 0.85rem;
    border-radius: var(--r-pill);
    margin-bottom: 0.8rem;
}

.trusted-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.3;
}

.trusted-slider-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.8rem 0;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trusted-logos-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    width: max-content;
    gap: 1.25rem !important;
    margin: 0 !important;
    padding: 0.5rem 0 !important;
    animation: trustedMarqueeGlobal 24s linear infinite;
    will-change: transform;
}

.trusted-logos-grid:hover {
    animation-play-state: paused;
}

@keyframes trustedMarqueeGlobal {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.trusted-logo-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1.5px solid rgba(201, 151, 62, 0.25) !important;
    border-radius: 999px !important;
    padding: 0.6rem 1.3rem 0.6rem 0.7rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    filter: none !important;
    cursor: default;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.trusted-logo-card:hover {
    background: rgba(122, 30, 51, 0.45) !important;
    border-color: rgba(201, 151, 62, 0.8) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(201, 151, 62, 0.3) !important;
}

.trusted-clone {
    display: flex !important;
}

.trusted-card-top-tags,
.trusted-card-bottom-info,
.trusted-logo-desc {
    display: none !important;
}

.trusted-card-main-content {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.trusted-logo-emblem {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(201, 151, 62, 0.15) !important;
    border: 1.5px solid rgba(201, 151, 62, 0.45) !important;
    color: #DFC183 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
    flex-shrink: 0 !important;
}

.trusted-logo-name {
    font-family: var(--font-head) !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.6px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.trusted-carousel-nav {
    display: none !important;
}

.trusted-top-loc {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
}

.trusted-card-main-content {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.trusted-logo-emblem {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: rgba(6, 20, 38, 0.9);
    border: 1px solid rgba(201, 151, 62, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #DFC183;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.trusted-logo-card:hover .trusted-logo-emblem {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--wine) 0%, #061426 100%);
}

.trusted-logo-info {
    display: flex;
    flex-direction: column;
}

.trusted-logo-name {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.trusted-logo-desc {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.2rem;
    line-height: 1.35;
}

.trusted-card-bottom-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.68rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.trusted-sector-label {
    color: rgba(255, 255, 255, 0.5);
}

.trusted-sector-tag {
    color: #DFC183;
    font-weight: 600;
}

.trusted-carousel-nav {
    display: none;
}

/* ==========================================================================
   17. FLOATING LIVE ASSISTANT (ROBOT MACHINE ADVISOR)
   ========================================================================== */
.floating-assistant-trigger {
    position: fixed;
    bottom: 1.8rem;
    left: 1.8rem;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
}

.assistant-btn-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7A1E33 0%, #0A1628 100%);
    border: 2px solid #C9A84C;
    color: #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 28px rgba(56, 8, 18, 0.55), 0 0 22px rgba(201, 168, 76, 0.25);
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.assistant-btn-circle::before {
    content: '';
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    animation: pulseRings 2.5s infinite;
}

.assistant-btn-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(56, 8, 18, 0.65), 0 0 28px rgba(201, 168, 76, 0.35);
}

.assistant-online-dot {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10B981;
    border: 2.5px solid #0A1628;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
}

.assistant-callout-pill {
    background: rgba(10, 22, 40, 0.96);
    border: 1.5px solid rgba(201, 168, 76, 0.7);
    backdrop-filter: blur(14px);
    color: #FFFFFF;
    font-family: var(--font-head);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--r-pill);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.assistant-callout-pill i {
    color: #C9A84C;
}

.assistant-callout-pill span {
    color: #E8D5A0;
}

.floating-assistant-trigger:hover .assistant-callout-pill {
    background: rgba(56, 8, 18, 0.96);
    border-color: #C9A84C;
    transform: translateX(5px);
}

/* ═══ ASSISTANT CHAT MODAL ═══ */
.assistant-modal-chat {
    position: fixed;
    bottom: 5.8rem;
    left: 1.8rem;
    width: 420px;
    max-width: calc(100vw - 2.4rem);
    height: 600px;
    max-height: calc(100vh - 8rem);
    background: #0B1A2E;
    border: 1.5px solid rgba(201, 168, 76, 0.5);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 168, 76, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 1250;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: assistantSlideIn 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.assistant-modal-chat.active {
    display: flex;
}

@keyframes assistantSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.assistant-chat-header {
    background: linear-gradient(135deg, #380812 0%, #0A1628 100%);
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    flex-shrink: 0;
}

.assistant-header-left {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.assistant-avatar-head {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 8, 18, 0.9) 0%, rgba(10, 22, 40, 0.9) 100%);
    border: 1.5px solid rgba(201, 168, 76, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #C9A84C;
    flex-shrink: 0;
}

.assistant-header-title {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.assistant-header-sub {
    font-size: 0.66rem;
    color: #34D399;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
    font-weight: 500;
}

.assistant-header-sub i {
    font-size: 0.5rem;
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.assistant-header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.assistant-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.78rem;
    transition: all 0.2s var(--ease);
}

.assistant-action-btn:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: rgba(201, 168, 76, 0.5);
    color: #C9A84C;
    transform: scale(1.08);
}

/* ═══ CHAT BODY ═══ */
.assistant-chat-body {
    padding: 1rem 1.1rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: #081525;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.25) transparent;
}

.assistant-chat-body::-webkit-scrollbar {
    width: 4px;
}

.assistant-chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.assistant-chat-body::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 4px;
}

/* ═══ MESSAGE BUBBLES ═══ */
.assistant-bubble-bot {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 4px 18px 18px 18px;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.83rem;
    line-height: 1.6;
    max-width: 92%;
    word-break: break-word;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.assistant-bubble-bot strong {
    color: #E8D5A0;
    font-weight: 700;
}

.assistant-bubble-bot em {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.assistant-bubble-bot a {
    color: #C9A84C;
    text-decoration: underline;
}

.assistant-bubble-user {
    background: linear-gradient(135deg, #4A0B18 0%, #380812 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 18px 4px 18px 18px;
    padding: 0.75rem 1rem;
    color: #FFFFFF;
    font-size: 0.83rem;
    font-weight: 500;
    line-height: 1.45;
    align-self: flex-end;
    max-width: 85%;
    word-break: break-word;
    box-shadow: 0 2px 12px rgba(56, 8, 18, 0.4);
}

/* ═══ QUICK CHIPS ═══ */
.assistant-quick-chips {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding: 0.55rem 1rem;
    background: rgba(8, 21, 37, 0.98);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-shrink: 0;
}

.assistant-quick-chips::-webkit-scrollbar {
    display: none;
}

.assistant-chip-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: #E8D5A0;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.32rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    flex-shrink: 0;
}

.assistant-chip-btn:hover {
    background: rgba(56, 8, 18, 0.9);
    border-color: #C9A84C;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 8, 18, 0.4);
}

/* ═══ INPUT BAR ═══ */
.assistant-input-bar {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 22, 40, 0.98);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    flex-shrink: 0;
}

.assistant-text-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    border-radius: 24px;
    padding: 0.6rem 1rem;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.82rem;
    outline: none;
    transition: all 0.25s var(--ease);
    min-width: 0;
}

.assistant-text-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.6);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.assistant-text-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
}

.assistant-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #380812 0%, #5A1020 100%);
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    color: #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.88rem;
    transition: all 0.25s var(--ease);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(56, 8, 18, 0.5);
}

.assistant-send-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #4A0B18 0%, #7A1E33 100%);
    border-color: #C9A84C;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(56, 8, 18, 0.6);
}

.assistant-send-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ═══ TYPING INDICATOR ═══ */
.assistant-typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 4px 16px 16px 16px;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9A84C;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.4); opacity: 0.3; }
    40% { transform: scale(1); opacity: 1; }
}
/* Product Placeholder Box for items without image */
.product-placeholder-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A1628 0%, #152238 60%, #203354 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.product-placeholder-box i {
    font-size: 2.5rem;
    color: #DFC183;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.product-card:hover .product-placeholder-box i {
    transform: scale(1.1) rotate(5deg);
}

.product-placeholder-box span {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .trusted-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .floating-assistant-trigger { 
        bottom: 1.2rem; 
        left: 1.2rem; 
    }
    .assistant-callout-pill { 
        display: none !important; 
    }
    .assistant-btn-circle { 
        width: 48px !important; 
        height: 48px !important; 
        font-size: 1.25rem !important; 
    }
    .assistant-modal-chat {
        bottom: 4.6rem !important;
        left: 0.85rem !important;
        right: 0.85rem !important;
        width: calc(100vw - 1.7rem) !important;
        max-width: 370px !important;
        height: 460px !important;
        max-height: 65vh !important;
        border-radius: 18px !important;
        border: 1.5px solid rgba(201, 168, 76, 0.45) !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(201, 168, 76, 0.15) !important;
        animation: assistantSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .assistant-chat-header {
        padding: 0.75rem 1rem !important;
    }
    .assistant-avatar-head {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.95rem !important;
    }
    .assistant-header-title {
        font-size: 0.85rem !important;
    }
    .assistant-header-sub {
        font-size: 0.62rem !important;
    }
    .assistant-action-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.72rem !important;
    }
    .assistant-chat-body {
        padding: 0.75rem 0.85rem !important;
        gap: 0.65rem !important;
    }
    .assistant-bubble-bot, .assistant-bubble-user {
        font-size: 0.78rem !important;
        padding: 0.65rem 0.85rem !important;
        line-height: 1.5 !important;
    }
    .assistant-quick-chips {
        padding: 0.4rem 0.85rem !important;
        gap: 0.35rem !important;
    }
    .assistant-chip-btn {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.6rem !important;
    }
    .assistant-input-bar {
        padding: 0.55rem 0.75rem !important;
        gap: 0.45rem !important;
    }
    .assistant-text-input {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.76rem !important;
    }
    .assistant-send-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.8rem !important;
    }
}


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .story-reveal,
    .story-slide-right,
    .story-slide-left,
    .story-scale-up {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}
