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

:root {
    --font-main: 'Plus Jakarta Sans', 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Courier Prime', monospace, monospace;

    /* Neo-Brutalist & Gumroad Signature Palette */
    --gm-black: #000000;
    --gm-white: #ffffff;
    --gm-bg: #f5f5f0;
    --gm-surface: #ffffff;
    --gm-surface-subtle: #fafaf7;
    --gm-hover-bg: #eaeae3;

    --gm-pink: #FF90E8;
    --gm-yellow: #FFC900;
    --gm-green: #23A094;
    --gm-cyan: #90E0EF;
    --gm-mint: #00F5D4;
    --gm-purple: #D4C2FC;
    --gm-red: #FF5A5F;
    --gm-orange: #FF8811;

    --brand-primary: #000000;
    --brand-accent: #FF90E8;

    --text-main: #000000;
    --text-muted: #4a4a4a;
    --text-inverse: #ffffff;

    --border-main: 2.5px solid #000000;
    --border-subtle: 2px solid #000000;
    --border-light: 1.5px solid #000000;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-full: 9999px;

    --shadow-solid: 4px 4px 0px #000000;
    --shadow-solid-lg: 6px 6px 0px #000000;
    --shadow-solid-xl: 8px 8px 0px #000000;
    --shadow-solid-sm: 2.5px 2.5px 0px #000000;
    --shadow-solid-hover: 6px 6px 0px #000000;
}

/* Reset & Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--gm-bg);
    color: var(--text-main);
    font-size: 16.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* Typography Utilities */
.text-pink { color: var(--gm-pink); }
.text-yellow { color: var(--gm-yellow); }
.text-cyan { color: var(--gm-cyan); }
.text-mint { color: var(--gm-mint); }
.text-purple { color: var(--gm-purple); }
.text-muted { color: var(--text-muted); }

/* Neo-Brutalist Buttons */
.btn-neo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 900;
    padding: 12px 24px;
    border: var(--border-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-solid);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    user-select: none;
    line-height: 1.2;
}

.btn-neo:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-solid-lg);
}

.btn-neo:active {
    transform: translate(2px, 2px);
    box-shadow: 1.5px 1.5px 0px #000000;
}

.btn-neo.btn-lg {
    padding: 16px 32px;
    font-size: 18.5px;
}

.btn-neo.btn-sm {
    padding: 8px 16px;
    font-size: 14.5px;
    box-shadow: var(--shadow-solid-sm);
}

.btn-neo.btn-sm:hover {
    transform: translate(-1.5px, -1.5px);
    box-shadow: 3.5px 3.5px 0px #000000;
}

.btn-yellow { background-color: var(--gm-yellow); color: #000000; }
.btn-pink { background-color: var(--gm-pink); color: #000000; }
.btn-mint { background-color: var(--gm-mint); color: #000000; }
.btn-cyan { background-color: var(--gm-cyan); color: #000000; }
.btn-purple { background-color: var(--gm-purple); color: #000000; }
.btn-white { background-color: #ffffff; color: #000000; }
.btn-black { background-color: #000000; color: #ffffff; }
.btn-orange { background-color: var(--gm-orange); color: #ffffff; }

/* Badges & Pills */
.hr-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 6px 14px;
    border: var(--border-light);
    border-radius: var(--radius-full);
    box-shadow: 2px 2px 0px #000;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.badge-yellow { background: var(--gm-yellow); }
.badge-pink { background: var(--gm-pink); }
.badge-cyan { background: var(--gm-cyan); }
.badge-mint { background: var(--gm-mint); }
.badge-purple { background: var(--gm-purple); }
.badge-white { background: #ffffff; }
.badge-orange { background: var(--gm-orange); color: #fff; }

/* Container & Sections */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-wrap {
    padding: 70px 0;
    position: relative;
}

.section-wrap-bordered {
    border-bottom: var(--border-main);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--gm-black);
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 700px;
}

/* Header & Navbar */
.site-header {
    background-color: var(--gm-surface);
    border-bottom: var(--border-main);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.2s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gm-black);
}

.brand-logo-badge {
    width: 44px;
    height: 44px;
    background: var(--gm-yellow);
    color: #000000;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-main);
    box-shadow: var(--shadow-solid-sm);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.45rem;
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-link {
    font-size: 16.5px;
    font-weight: 800;
    white-space: nowrap;
    color: var(--text-main);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
}

.nav-link:hover {
    background: var(--gm-yellow);
    border: 1.5px solid #000;
    box-shadow: 2px 2px 0px #000;
    transform: translate(-1px, -1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: #ffffff;
    border: var(--border-main);
    box-shadow: var(--shadow-solid-sm);
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 900;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--gm-surface);
    border-bottom: var(--border-main);
    padding: 20px;
    z-index: 999;
    box-shadow: var(--shadow-solid-lg);
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-drawer.open {
    display: flex;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    border-bottom: var(--border-main);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gm-pink);
    border: var(--border-main);
    box-shadow: var(--shadow-solid-sm);
    padding: 7px 16px;
    font-weight: 900;
    font-size: 14.5px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #000000;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.28rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 26px;
    border-top: 2px solid #E0E0DC;
}

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

.hero-stat-num {
    font-size: 2.3rem;
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
}

.hero-stat-lbl {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Live Operations Terminal Showcase */
.hero-card-terminal {
    background: #000000;
    color: #ffffff;
    border: var(--border-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-solid-lg);
    overflow: hidden;
}

.terminal-header {
    background: #1e293b;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
}

.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #eab308; }
.terminal-dot.green { background: #22c55e; }

.terminal-badge {
    background: var(--gm-mint);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
}

.terminal-body {
    padding: 20px;
}

.kiosk-mock-screen {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border: 2px solid #3b82f6;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: inset 0 0 14px rgba(0,0,0,0.5);
}

.kiosk-screen-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.kiosk-current-q {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-mono);
    color: var(--gm-yellow);
    line-height: 1;
}

.kiosk-counter-pill {
    background: var(--gm-mint);
    color: #000;
    font-weight: 900;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1.5px solid #000;
}

.terminal-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.terminal-item-box {
    background: #18181b;
    border: 1.5px solid #27272a;
    border-radius: var(--radius-sm);
    padding: 10px;
}

.terminal-item-box span {
    font-size: 10px;
    color: #a1a1aa;
    display: block;
    font-weight: 700;
}

.terminal-item-box strong {
    font-size: 12px;
    color: #ffffff;
    font-weight: 800;
    display: block;
    margin-top: 2px;
}

/* ==========================================================================
   CSS STANDALONE KIOSK & ATM MOCK WITH TICKET DISPENSER ANIMATION
   ========================================================================== */
.kiosk-interactive-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.css-kiosk-body {
    width: 340px;
    background: linear-gradient(180deg, #f0f2f5 0%, #d8dce1 25%, #bcc1c8 60%, #9aa0a9 100%);
    border: 3px solid #000000;
    border-radius: 36px 36px 8px 8px;
    box-shadow: 8px 8px 0px #000000, inset 2px 2px 0px #ffffff, inset -2px -2px 0px #70757d;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s ease;
}

.css-kiosk-body:hover {
    transform: translateY(-2px);
    box-shadow: 10px 10px 0px #000000;
}

/* Top Curved Arch with Light Bar */
.kiosk-top-header {
    width: 100%;
    height: 22px;
    border-radius: 26px 26px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    margin-bottom: 8px;
    border-bottom: 2px solid #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.kiosk-status-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    border: 1px solid #000;
}

/* Screen Housing (Deep Blue / Navy Bezel) */
.kiosk-screen-bezel {
    width: 100%;
    background: linear-gradient(145deg, #1e3a8a 0%, #0f172a 100%);
    border: 2.5px solid #000000;
    border-radius: 16px;
    padding: 12px;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 3px 0px #000;
    position: relative;
}

/* Interactive Touch Display */
.kiosk-touch-screen {
    width: 100%;
    background: linear-gradient(180deg, #0284c7 0%, #0369a1 40%, #075985 100%);
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 10px;
    color: #ffffff;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

.kiosk-screen-brand-bar {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.kiosk-screen-brand-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #fef08a;
    text-transform: uppercase;
}

.kiosk-screen-prompt {
    font-size: 10px;
    color: #e0f2fe;
    font-weight: 700;
}

.kiosk-btn-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kiosk-touch-button {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    color: #0f172a;
    border: 1.5px solid #000000;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 2px 0px #000000;
    transition: all 0.1s ease;
    user-select: none;
}

.kiosk-touch-button:hover {
    background: #fef08a;
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px #000000;
}

.kiosk-touch-button:active {
    transform: translate(1px, 1px);
    box-shadow: 0px 0px 0px #000000;
}

.kiosk-touch-button .btn-code {
    background: #0284c7;
    color: #ffffff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 900;
}

.kiosk-screen-status {
    margin-top: 8px;
    text-align: center;
    font-size: 9px;
    font-weight: 800;
    color: #6ee7b7;
    border-top: 1px dashed rgba(255,255,255,0.2);
    padding-top: 5px;
}

/* Mid Panel Slot & RFID Section */
.kiosk-hardware-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 0 4px;
    gap: 12px;
}

/* Printer Slot Mouth (Exact replica of user screenshot) */
.kiosk-printer-mouth-box {
    flex: 1.4;
    background: linear-gradient(180deg, #1d4ed8 0%, #1e3a8a 50%, #0f172a 100%);
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 4px 8px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.4), 0 2px 0px rgba(0,0,0,0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
}

.kiosk-printer-slot-opening {
    width: 96%;
    height: 5px;
    background: #000000;
    border-radius: 4px;
    box-shadow: inset 0 2px 3px rgba(0,0,0,0.9), 0 1px 1px rgba(255,255,255,0.2);
    position: relative;
    z-index: 10;
}

/* RFID / Contactless Sensor Zone */
.kiosk-rfid-sensor {
    flex: 0.8;
    height: 44px;
    background: #cbd5e1;
    border: 2px solid #000000;
    border-radius: 6px;
    box-shadow: 2px 2px 0px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    position: relative;
    cursor: pointer;
    transition: background 0.15s ease;
}

.kiosk-rfid-sensor:hover {
    background: #e2e8f0;
}

.kiosk-card-slot-line {
    width: 75%;
    height: 3px;
    background: #0f172a;
    border-radius: 2px;
    margin-bottom: 3px;
}

.kiosk-rfid-lbl {
    font-size: 8px;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: 0.5px;
}

/* Lower Pedestal (Clean Standing Pillar Cabinet) */
.kiosk-lower-pillar {
    width: 100%;
    height: 130px;
    background: linear-gradient(90deg, #c5cad1 0%, #e2e6eb 20%, #f8f9fa 50%, #d5d9df 80%, #a8afb9 100%);
    border: 2px solid #000000;
    border-radius: 8px;
    margin-top: 14px;
    box-shadow: inset 2px 2px 4px rgba(255,255,255,0.7), inset -2px -2px 4px rgba(0,0,0,0.25);
    position: relative;
}

.kiosk-bottom-base {
    width: 360px;
    height: 18px;
    background: linear-gradient(180deg, #64748b 0%, #334155 100%);
    border: 3px solid #000000;
    border-radius: 6px;
    box-shadow: 6px 6px 0px #000000;
    margin-top: -2px;
}

/* ==========================================================================
   QUEUE TICKET PAPER & ULTRA-SMOOTH FEED ANIMATION (EXACT SLOT MATCH)
   ========================================================================== */
.printer-feed-chamber {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 154px;
    height: 240px;
    overflow: hidden;
    z-index: 100;
    pointer-events: none;
}

.ticket-paper {
    background: #ffffff;
    border: 1.5px solid #000000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    padding: 8px 10px 12px;
    font-family: var(--font-mono);
    color: #000000;
    position: relative;
    transform: translateY(-102%);
    display: block;
}

.ticket-paper.printing {
    pointer-events: auto;
    cursor: pointer;
    animation: feedPaperOut 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes feedPaperOut {
    0% {
        transform: translateY(-102%);
    }
    100% {
        transform: translateY(0%);
    }
}

/* Compact Serrated / Jagged Bottom Edge */
.ticket-paper::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -1.5px;
    right: -1.5px;
    height: 8px;
    background: radial-gradient(circle, transparent 3px, #ffffff 3px);
    background-size: 8px 8px;
    border-top: 1px dashed #000;
}

.ticket-header-logo {
    text-align: center;
    border-bottom: 1px dashed #000000;
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.ticket-brand {
    font-size: 11px;
    font-weight: 900;
    font-family: var(--font-main);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.ticket-branch {
    font-size: 8px;
    font-weight: 700;
    color: #444;
}

.ticket-q-section {
    text-align: center;
    margin: 4px 0;
}

.ticket-q-lbl {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.ticket-q-number {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #000000;
}

.ticket-service-name {
    font-size: 9px;
    font-weight: 800;
    margin-top: 2px;
    font-family: var(--font-main);
}

.ticket-meta-info {
    font-size: 8px;
    line-height: 1.3;
    border-top: 1px dashed #000000;
    border-bottom: 1px dashed #000000;
    padding: 4px 0;
    margin: 4px 0;
}

.ticket-footer-text {
    font-size: 7.5px;
    text-align: center;
    font-weight: 700;
}

/* Floating Ticket Hint */
.ticket-take-hint {
    background: var(--gm-yellow);
    border: 1.5px solid #000;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 900;
    text-align: center;
    margin-top: 8px;
    border-radius: 4px;
    box-shadow: 2px 2px 0px #000;
    animation: pulseHint 1.5s infinite alternate;
}

@keyframes pulseHint {
    0% { transform: scale(0.98); }
    100% { transform: scale(1.03); }
}

/* Partner / Client Marquee */
.marquee-section {
    background: var(--gm-yellow);
    border-bottom: var(--border-main);
    padding: 26px 0;
    overflow: hidden;
    position: relative;
}

.marquee-title-bar {
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #000000;
}

.marquee-track {
    display: flex;
    gap: 32px;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 60s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-card {
    background: #ffffff;
    border: var(--border-main);
    box-shadow: var(--shadow-solid-sm);
    border-radius: var(--radius-md);
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.15s ease;
}

.marquee-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-solid);
}

.marquee-logo-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Cards Grid (4 Pillars) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--gm-surface);
    border: var(--border-main);
    box-shadow: var(--shadow-solid);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    position: relative;
}

.service-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-solid-lg);
}

.service-card-top {
    margin-bottom: 24px;
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border: var(--border-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-solid-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #000;
}

.service-card-desc {
    font-size: 1.12rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000;
}

.service-checklist li i {
    color: #000;
    background: var(--gm-mint);
    border: 1.5px solid #000;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Feature Spotlight Layout (Clean Seamless Grid, No Outer Frame Box) */
.spotlight-box {
    background: transparent;
    color: #000000;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.spotlight-box h3 {
    font-size: 2.85rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    color: #000000;
}

.spotlight-box p {
    color: #4b5563;
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.65;
    margin-bottom: 24px;
}

.queue-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
    padding-left: 0;
}

.queue-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 3px 3px 0px #000000;
    transition: all 0.15s ease;
}

.queue-feature-list li:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000000;
}

.queue-feature-list li .q-check-icon {
    background: var(--gm-mint);
    color: #000000;
    border: 2px solid #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.queue-feature-list li .q-feat-text strong {
    display: block;
    font-size: 16.5px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 3px;
}

.queue-feature-list li .q-feat-text span {
    font-size: 14.5px;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.5;
}

.spotlight-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: var(--radius-md);
    box-shadow: 3px 3px 0px #000000;
    padding: 12px 18px;
    margin-bottom: 26px;
}

.spotlight-metrics-row .metric-item span {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 800;
    display: block;
}

.spotlight-metrics-row .metric-item strong {
    font-size: 18px;
    color: #000000;
    font-weight: 900;
    display: block;
    margin-top: 2px;
}

/* ==========================================================================
   PURE CSS 3D VOLUMETRIC EVE AI ROBOT (3D LIGHTING & PERSPECTIVE ANIMATION)
   ========================================================================== */
.ai-robot-showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 500px;
    perspective: 1000px;
    user-select: none;
}

/* Floating Assembly with 3D Perspective Tilt */
.eve-2d-figure {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    animation: eve3DFloat 4.5s ease-in-out infinite alternate;
}

@keyframes eve3DFloat {
    0% {
        transform: translateY(10px) rotateX(2deg) rotateY(-3deg) rotateZ(-1deg);
    }
    50% {
        transform: translateY(-18px) rotateX(-3deg) rotateY(3deg) rotateZ(1deg);
    }
    100% {
        transform: translateY(10px) rotateX(2deg) rotateY(-3deg) rotateZ(-1deg);
    }
}

/* Head: Full 3D Spherical White Dome */
.eve-2d-head {
    width: 220px;
    height: 172px;
    background: radial-gradient(circle at 35% 25%, #ffffff 0%, #f4f7fa 35%, #d0dce7 72%, #8ba0b5 100%);
    border: 2.5px solid #000000;
    border-radius: 50% 50% 46% 46% / 65% 65% 35% 35%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 
        inset 6px 10px 22px rgba(255, 255, 255, 1),
        inset -8px -12px 24px rgba(15, 23, 42, 0.28),
        0 14px 28px rgba(15, 23, 42, 0.16);
    animation: eve3DHeadTilt 5s ease-in-out infinite alternate;
}

/* 3D Specular Highlight Arc on Head Dome */
.eve-2d-head::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 32px;
    width: 70px;
    height: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    transform: rotate(-18deg);
    filter: blur(1px);
    pointer-events: none;
}

@keyframes eve3DHeadTilt {
    0% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(3.5deg) translateY(-4px); }
    100% { transform: rotate(-3deg) translateY(0); }
}

/* Visor: 3D Recessed Dark Curved Glass Screen (Clean Face) */
.eve-2d-visor {
    width: 176px;
    height: 118px;
    background: radial-gradient(ellipse at 45% 35%, #222c42 0%, #0f1422 55%, #03050a 100%);
    border: 2px solid #000000;
    border-radius: 50% 50% 46% 46% / 58% 58% 42% 42%;
    box-shadow: 
        inset 0 6px 20px rgba(0, 0, 0, 0.98),
        inset 0 -3px 10px rgba(255, 255, 255, 0.15),
        0 0 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    position: relative;
    overflow: hidden;
}

/* 3D Curved Glass Glare Sheen across Visor */
.eve-2d-visor::after {
    content: '';
    position: absolute;
    top: -24px;
    left: -24px;
    width: 220px;
    height: 70px;
    background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.02) 80%, transparent 100%);
    border-radius: 50%;
    transform: rotate(-14deg);
    pointer-events: none;
    z-index: 3;
}

/* Eyes: 3D Glowing Cyan Scanlines with Ambient Visor Reflection */
.eve-2d-eye {
    width: 50px;
    height: 28px;
    background: repeating-linear-gradient(
        to bottom,
        #00e5ff 0px,
        #00e5ff 3.5px,
        #060810 3.5px,
        #060810 6px
    );
    border-radius: 50px 50px 0 0;
    box-shadow: 
        0 0 24px #00e5ff,
        0 0 8px #38bdf8,
        inset 0 0 6px rgba(0, 229, 255, 0.8);
    position: relative;
    z-index: 2;
    animation: eve2DEyeBlink 4.5s infinite;
}

.eve-2d-eye.left {
    transform: rotate(-3deg);
}

.eve-2d-eye.right {
    transform: rotate(3deg);
}

/* NPC สลักบนอก - ใช้เงาแบบนูนต่ำให้ดูเป็นตัวอักษรบนตัวถังเซรามิก */
.eve-2d-brand {
    margin-top: 12px;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #6b7f93;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95),
        0 -1px 1px rgba(15, 23, 42, 0.28);
    z-index: 3;
    pointer-events: none;
}

@keyframes eve2DEyeBlink {
    0%, 90%, 100% { transform: scaleY(1); opacity: 1; }
    94% { transform: scaleY(0.06); opacity: 0.5; }
}

/* Body: 3D Volumetric Ceramic Ellipsoid Chassis */
.eve-2d-body {
    width: 182px;
    height: 228px;
    background: radial-gradient(ellipse at 35% 24%, #ffffff 0%, #f0f4f8 38%, #c5d4e2 74%, #788d9f 100%);
    border: 2.5px solid #000000;
    border-radius: 48px 48px 115px 115px / 36px 36px 175px 175px;
    margin-top: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    box-shadow: 
        inset 6px 10px 24px rgba(255, 255, 255, 1),
        inset -10px -14px 28px rgba(15, 23, 42, 0.28),
        0 14px 30px rgba(15, 23, 42, 0.16);
}

/* 3D Highlight Sheen on Torso */
.eve-2d-body::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 24px;
    width: 55px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    transform: rotate(-10deg);
    filter: blur(2px);
    pointer-events: none;
}

/* Centered Chest Indicator: Glowing Arc + 3 LED Dots + Scanning Projector Beam */
.eve-2d-chest-indicator {
    margin-top: 6px;
    width: 48px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.eve-2d-indicator-arc {
    width: 34px;
    height: 17px;
    border: 2px solid transparent;
    border-top-color: #fde047;
    border-radius: 34px 34px 0 0;
    box-shadow: 0 -3px 10px rgba(250, 204, 21, 0.85);
    animation: eveIndicatorPulse 2s infinite alternate;
}

.eve-2d-indicator-dots {
    display: flex;
    gap: 4px;
    margin-top: 2px;
    align-items: center;
}

.eve-2d-dot {
    width: 5.5px;
    height: 5.5px;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
    /* คาบ 7s เท่ากับ ragScanHit จึงกระพริบตรงจังหวะที่ถังเปลี่ยนสีพอดี */
    animation: eveDotScanBlink 7s steps(1, end) infinite;
}

/* กระพริบถี่เฉพาะช่วง 22-28% และ 72-78% ของรอบ
   ช่วงละ 6% ของ 7s = 0.42s สลับติด-ดับทุก 1% = 70ms ได้ประมาณ 6 ครั้ง */
@keyframes eveDotScanBlink {
    0%, 21% { opacity: 1; filter: brightness(1); }

    22% { opacity: 0.15; filter: brightness(1); }
    23% { opacity: 1; filter: brightness(2.2); }
    24% { opacity: 0.15; filter: brightness(1); }
    25% { opacity: 1; filter: brightness(2.2); }
    26% { opacity: 0.15; filter: brightness(1); }
    27% { opacity: 1; filter: brightness(2.2); }
    28% { opacity: 0.15; filter: brightness(1); }

    29%, 71% { opacity: 1; filter: brightness(1); }

    72% { opacity: 0.15; filter: brightness(1); }
    73% { opacity: 1; filter: brightness(2.2); }
    74% { opacity: 0.15; filter: brightness(1); }
    75% { opacity: 1; filter: brightness(2.2); }
    76% { opacity: 0.15; filter: brightness(1); }
    77% { opacity: 1; filter: brightness(2.2); }
    78% { opacity: 0.15; filter: brightness(1); }

    79%, 100% { opacity: 1; filter: brightness(1); }
}
.eve-2d-dot.cyan { background: #38bdf8; color: #38bdf8; }
.eve-2d-dot.yellow { background: #facc15; color: #facc15; }
.eve-2d-dot.pink { background: #f43f5e; color: #f43f5e; }

@keyframes eveIndicatorPulse {
    from { opacity: 0.5; filter: brightness(1); }
    to { opacity: 1; filter: brightness(1.4); }
}

/* Translucent Indigo/Blue Triangular Scanning Projector Beam Cone */
/* ==========================================
   จำลองการสแกนเจอคำว่า RAG
   ==========================================
   ลำแสง .eve-scan-projector-beam หมุน -32deg -> +32deg ด้วย
   eveBeamScanSweep 3.5s ... alternate  =>  ครบรอบไป-กลับ 7s

   ในระบบพิกัด CSS ค่าบวกคือหมุนตามเข็ม ปลายลำแสงที่ชี้ลง
   จึงเบนไป "ทางซ้าย" เมื่อ rotate เป็นบวก แปลว่า
       0%  ของรอบ 7s = -32deg = ชี้ขวา
       50% ของรอบ 7s = +32deg = ชี้ซ้าย  <-- ฝั่งที่ข้อความอยู่
       100%          = -32deg = ชี้ขวา

   คำว่า RAG วางไว้กึ่งกลางใต้หุ่น ลำแสงจึงผ่านตอนชี้ตรงลง (มุม 0deg)
   ซึ่งเกิดที่ 25% กับ 75% ของรอบ = ติดสีสองครั้งต่อรอบ ไป-กลับ
   ถ้าปรับ 3.5s ของลำแสงเมื่อไหร่ ต้องแก้ 7s ตรงนี้เป็นสองเท่าเสมอ */
/* วางคำไว้ในกรวยแสง z-index สูงกว่าลำแสง (10) เพื่อให้เห็นทะลุ */
.eve-scan-target {
    position: absolute;
    bottom: -62px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    pointer-events: none;
}

/* ไอคอนถัง database เส้นขอบใช้ currentColor จึงเปลี่ยนสีได้ด้วย color เดียว */
.rag-scan-label {
    font-family: var(--font-main);
}

.rag-scan-icon {
    display: block;
    width: 100px;
    height: auto;
    color: #000000;
    animation: ragScanHit 7s ease-in-out infinite;
}

@keyframes ragScanHit {
    0%, 18% {
        color: #000000;
        filter: none;
    }
    23%, 27% {
        color: #00e5ff;
        filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.95));
    }
    32%, 68% {
        color: #000000;
        filter: none;
    }
    73%, 77% {
        color: #00e5ff;
        filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.95));
    }
    82%, 100% {
        color: #000000;
        filter: none;
    }
}

/* ปิด effect ให้คนที่ตั้งค่าลดการเคลื่อนไหว */
@media (prefers-reduced-motion: reduce) {
    .rag-scan-icon,
    .eve-2d-dot {
        animation: none;
    }
}

.eve-scan-projector-beam {
    position: absolute;
    top: 18px;
    left: calc(50% - 110px);
    width: 220px;
    height: 300px;
    background: linear-gradient(
        to bottom,
        rgba(0, 229, 255, 0.9) 0%,
        rgba(99, 102, 241, 0.45) 45%,
        rgba(165, 180, 252, 0.1) 85%,
        transparent 100%
    );
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform-origin: 50% 0%;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.8));
    animation: eveBeamScanSweep 3.5s ease-in-out infinite alternate;
}

@keyframes eveBeamScanSweep {
    0% {
        transform: rotate(-32deg);
        opacity: 0.55;
    }
    50% {
        transform: rotate(0deg);
        opacity: 0.95;
    }
    100% {
        transform: rotate(32deg);
        opacity: 0.55;
    }
}

/* Arms: Anatomical EVE Egg-Shell Fins (Conforms 100% Flush to Torso Curvature when Folded) */
.eve-2d-arm {
    position: absolute;
    width: 54px;
    height: 180px;
    top: 20px;
    z-index: 3;
    transition: transform 0.3s ease;
}

.eve-arm-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.eve-2d-arm.left {
    left: -48px;
    transform-origin: 75% 15%;
    animation: eveArmHoverL 4.5s ease-in-out infinite alternate;
}

.eve-2d-arm.right {
    right: -48px;
    transform-origin: 25% 15%;
    animation: eveArmHoverR 4.5s ease-in-out infinite alternate;
}

/* Upper part has narrower gap (~6px) with zero overlap, lower part has wider clearance (~16px) */
@keyframes eveArmHoverL {
    0% {
        transform: rotate(-4deg) translateY(0);
    }
    50% {
        transform: rotate(-6.5deg) translateY(-3px);
    }
    100% {
        transform: rotate(-5deg) translateY(-1px);
    }
}

@keyframes eveArmHoverR {
    0% {
        transform: rotate(4deg) translateY(0);
    }
    50% {
        transform: rotate(6.5deg) translateY(-3px);
    }
    100% {
        transform: rotate(5deg) translateY(-1px);
    }
}

/* Floor Shadow: 3D Volumetric Soft Diffused Shadow */
/* เงาบนพื้น ตรึงตำแหน่งไว้กับที่ ไม่ลอยตามหุ่น
   หุ่นลอยสูง เงาหด+จาง / หุ่นลงต่ำ เงาแผ่+เข้ม
   คาบ 4.5s เท่ากับ eve3DFloat จึงขยับพร้อมกันพอดี */
.eve-2d-shadow {
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 170px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.28) 0%, rgba(15, 23, 42, 0.12) 50%, transparent 75%);
    border-radius: 50%;
    z-index: 1;
    animation: eve3DShadowScale 4.5s ease-in-out infinite alternate;
}

/* ต้องคง translateX(-50%) ไว้ทุก keyframe ไม่งั้น transform ตัวใหม่จะลบการจัดกึ่งกลางทิ้ง */
@keyframes eve3DShadowScale {
    0% { transform: translateX(-50%) scale(1.15); opacity: 0.85; }
    50% { transform: translateX(-50%) scale(0.8); opacity: 0.45; }
    100% { transform: translateX(-50%) scale(1.15); opacity: 0.85; }
}

/* Queue System Showcase Cards with Pure CSS Mockups */
.queue-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.queue-card {
    background: #ffffff;
    border: var(--border-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-solid);
    overflow: hidden;
    transition: all 0.15s ease;
}

.queue-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-solid-lg);
}

.css-mock-display-wrap {
    height: 195px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom: var(--border-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

/* 1. Pure CSS Smart TV Calling Display */
.css-tv-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tv-screen-bezel {
    width: 250px;
    background: #000000;
    border: 2.5px solid #334155;
    border-radius: 6px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.tv-screen-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    background: #0284c7;
    border-radius: 4px;
    overflow: hidden;
    height: 110px;
}

.tv-media-pane {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6px;
    color: #ffffff;
}

.tv-live-pill {
    font-size: 7px;
    font-weight: 900;
    background: #ef4444;
    color: #ffffff;
    padding: 1px 5px;
    border-radius: 3px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.tv-media-center {
    text-align: center;
}

.tv-sound-wave {
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: flex-end;
    height: 16px;
    margin-bottom: 4px;
}

.tv-sound-wave span {
    width: 3px;
    background: var(--gm-mint);
    border-radius: 2px;
    animation: eqPulse 1s ease-in-out infinite alternate;
}

.tv-sound-wave span:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.tv-sound-wave span:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.tv-sound-wave span:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.tv-sound-wave span:nth-child(4) { height: 16px; animation-delay: 0.4s; }
.tv-sound-wave span:nth-child(5) { height: 8px; animation-delay: 0.15s; }

@keyframes eqPulse {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1.1); }
}

.tv-media-text {
    font-size: 8.5px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.tv-ticker-bar {
    font-size: 7px;
    color: var(--gm-yellow);
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px dashed rgba(255,255,255,0.2);
    padding-top: 3px;
}

.tv-board-pane {
    background: #0369a1;
    padding: 5px 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #ffffff;
    font-family: var(--font-mono);
}

.tv-board-header {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    font-weight: 900;
    color: #bae6fd;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
}

.tv-board-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9.5px;
    font-weight: 900;
    background: rgba(0,0,0,0.3);
    padding: 2px 4px;
    border-radius: 2px;
}

.tv-board-row.active {
    background: var(--gm-yellow);
    color: #000000;
    border: 1px solid #000;
    box-shadow: 0 0 6px rgba(255, 201, 0, 0.6);
}

.tv-neck {
    width: 22px;
    height: 8px;
    background: #475569;
}

.tv-base-stand {
    width: 75px;
    height: 4px;
    background: #64748b;
    border-radius: 2px;
}

/* 2. Pure CSS Real-Time Analytics Dashboard */
.css-dash-unit {
    width: 250px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 6px;
    box-shadow: 3px 3px 0px #000000;
    overflow: hidden;
}

.dash-window-header {
    background: #1e293b;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    font-size: 8px;
    font-weight: 900;
}

.dash-dots {
    display: flex;
    gap: 3px;
}

.dash-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dash-dots .dot.red { background: #ef4444; }
.dash-dots .dot.yellow { background: #eab308; }
.dash-dots .dot.green { background: #22c55e; }

.dash-status-pill {
    background: var(--gm-mint);
    color: #000000;
    font-size: 7px;
    padding: 1px 5px;
    border-radius: 2px;
    font-weight: 900;
}

.dash-window-body {
    padding: 6px 8px;
    background: #fafaf9;
}

.dash-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 6px;
}

.dash-mini-stat {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 3px 4px;
    text-align: center;
}

.dash-mini-stat span {
    display: block;
    font-size: 7px;
    color: #64748b;
    font-weight: 800;
}

.dash-mini-stat strong {
    font-size: 9px;
    font-weight: 900;
    color: #000000;
}

.dash-chart-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 52px;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 4px 6px;
    gap: 4px;
}

.chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    flex: 1;
}

.chart-bar {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 2px 2px 0 0;
    min-height: 4px;
    transition: height 0.3s ease;
}

.chart-col span {
    font-size: 6px;
    font-weight: 800;
    margin-top: 2px;
    color: #64748b;
}

/* 3. Pure CSS Calling Terminal UI */
.css-caller-unit {
    width: 250px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 6px;
    box-shadow: 3px 3px 0px #000000;
    overflow: hidden;
}

.caller-header {
    background: #0284c7;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;
    font-size: 8px;
    font-weight: 900;
}

.caller-win-controls {
    font-size: 8px;
    letter-spacing: 2px;
}

.caller-body {
    padding: 6px 8px;
    background: #f8fafc;
}

.caller-counter-banner {
    background: #16a34a;
    color: #ffffff;
    text-align: center;
    font-size: 8.5px;
    font-weight: 900;
    padding: 2px 4px;
    border-radius: 3px;
    border: 1px solid #000000;
    margin-bottom: 5px;
}

.caller-current-q {
    background: #000000;
    color: #ffffff;
    border-radius: 4px;
    padding: 4px;
    text-align: center;
    margin-bottom: 6px;
    border: 1px solid #334155;
}

.caller-q-lbl {
    display: block;
    font-size: 7px;
    color: #94a3b8;
    font-weight: 800;
}

.caller-current-q strong {
    font-size: 16px;
    font-family: var(--font-mono);
    color: var(--gm-yellow);
    font-weight: 900;
}

.caller-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.caller-btn {
    border: 1.5px solid #000000;
    border-radius: 4px;
    padding: 4px;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 1.5px 1.5px 0px #000000;
    transition: all 0.1s ease;
    user-select: none;
    font-family: var(--font-main);
}

.caller-btn.btn-call { background: var(--gm-yellow); color: #000000; }
.caller-btn.btn-repeat { background: var(--gm-cyan); color: #000000; }
.caller-btn.btn-transfer { background: var(--gm-purple); color: #000000; }
.caller-btn.btn-end { background: var(--gm-mint); color: #000000; }

.caller-btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 2.5px 2.5px 0px #000000;
}

.caller-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 0px 0px 0px #000000;
}

.queue-card-body {
    padding: 20px;
}

.queue-card-title {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.queue-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.5;
}

/* Modern AI & Enterprise Tech Stack Grid */
.ai-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ai-tech-card {
    background: #ffffff;
    border: var(--border-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-solid);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    position: relative;
}

.ai-tech-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-solid-lg);
}

.ai-tech-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.ai-tech-icon-box {
    width: 52px;
    height: 52px;
    border: 2px solid #000000;
    border-radius: var(--radius-md);
    box-shadow: 2.5px 2.5px 0px #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-tech-badge {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1.5px solid #000000;
    text-transform: uppercase;
    background: #ffffff;
}

.ai-tech-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ai-tech-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 16px;
}

.ai-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1.5px dashed #E2E8F0;
}

.ai-pill {
    background: #F8FAFC;
    border: 1.5px solid #000000;
    color: #000000;
    font-size: 11.5px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
}

/* Training Roadmap Accordion */
.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: flex-start;
}

.course-curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.curriculum-card {
    background: #ffffff;
    border: var(--border-main);
    box-shadow: var(--shadow-solid-sm);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.curriculum-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-solid);
}

.curriculum-card.active {
    border-left: 10px solid var(--gm-pink);
    background: #FFFBF9;
}

.curriculum-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.curriculum-day-badge {
    font-size: 13px;
    font-weight: 900;
    background: var(--gm-yellow);
    border: 1.5px solid #000;
    padding: 3px 10px;
    border-radius: 4px;
}

.curriculum-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000;
}

.curriculum-desc {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.55;
}

.video-preview-wrapper {
    background: #000000;
    border: var(--border-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-solid-lg);
    padding: 16px;
}

.video-frame-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1.5px solid #333;
}

.video-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Why Us / Value Proposition Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.why-card {
    background: #ffffff;
    border: var(--border-main);
    box-shadow: var(--shadow-solid);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: all 0.15s ease;
}

.why-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-solid-lg);
}

.why-badge {
    width: 48px;
    height: 48px;
    border: var(--border-main);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 18px;
    box-shadow: 2px 2px 0px #000;
}

.why-title {
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.why-desc {
    font-size: 1.08rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.65;
}

/* Testimonial Quotes Carousel */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.testi-card {
    background: #ffffff;
    border: var(--border-main);
    box-shadow: var(--shadow-solid);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.15s ease;
}

.testi-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-solid-lg);
}

.testi-quote {
    font-size: 1.12rem;
    font-weight: 600;
    color: #222;
    line-height: 1.7;
    margin-bottom: 22px;
}

.testi-client-info {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1.5px solid #E0E0DC;
    padding-top: 16px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    background: var(--gm-yellow);
    border: 1.5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
}

.testi-name {
    font-size: 1.05rem;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
}

.testi-org {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Contact & Quotation Section */
.contact-section-wrap {
    background: #ffffff;
    border: var(--border-main);
    box-shadow: var(--shadow-solid-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
}

.contact-info-panel {
    background: #000000;
    color: #ffffff;
    padding: 48px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-top h3 {
    font-size: 2.35rem;
    font-weight: 900;
    margin-bottom: 14px;
    color: #ffffff;
}

.contact-info-top p {
    color: #C0C0BA;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.65;
    margin-bottom: 32px;
}

.contact-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-badge {
    width: 42px;
    height: 42px;
    background: var(--gm-yellow);
    color: #000;
    border: 1.5px solid #ffffff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

.contact-item-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #A0A09A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-value {
    font-size: 1.12rem;
    font-weight: 800;
    color: #ffffff;
}

.contact-item-value a {
    color: #ffffff;
    transition: color 0.15s ease;
}

.contact-item-value a:hover {
    color: var(--gm-yellow);
    text-decoration: underline;
}

.contact-form-panel {
    padding: 48px 42px;
    background: #ffffff;
}

.form-title {
    font-size: 1.95rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #000;
}

.form-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hr-form-group {
    margin-bottom: 20px;
}

.hr-label {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.hr-input,
.hr-select,
.hr-textarea {
    width: 100%;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    background: #ffffff;
    border: var(--border-main);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    outline: none;
    box-shadow: var(--shadow-solid-sm);
    transition: all 0.15s ease;
}

.hr-input:focus,
.hr-select:focus,
.hr-textarea:focus {
    transform: translate(-1px, -1px);
    box-shadow: var(--shadow-solid);
    border-color: #000;
    background: #FFFDF8;
}

.hr-textarea {
    min-height: 120px;
    resize: vertical;
}

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

.faq-card {
    background: #ffffff;
    border: var(--border-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-solid-sm);
    overflow: hidden;
    transition: all 0.15s ease;
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 900;
    user-select: none;
}

.faq-header:hover {
    background: var(--gm-surface-subtle);
}

.faq-icon-toggle {
    width: 30px;
    height: 30px;
    background: var(--gm-yellow);
    border: 1.5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    transition: transform 0.2s ease;
}

.faq-card.open .faq-icon-toggle {
    transform: rotate(45deg);
    background: var(--gm-pink);
}

.faq-content {
    display: none;
    padding: 0 24px 22px;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1.5px dashed #E0E0DC;
    margin-top: 8px;
    padding-top: 16px;
}

.faq-card.open .faq-content {
    display: block;
}

/* Global Footer */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    border-top: var(--border-main);
    padding: 65px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 35px;
    margin-bottom: 45px;
}

.footer-col-title {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--gm-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    text-decoration: none;
    color: #B8B8B0;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.15s ease;
}

.footer-link:hover {
    color: var(--gm-yellow);
    transform: translateX(3px);
    display: inline-block;
}

.footer-contact-info {
    font-size: 1.05rem;
    color: #C0C0B8;
    line-height: 1.65;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-newsletter-box {
    background: #181818;
    border: 1.5px solid #333333;
    padding: 18px;
    border-radius: var(--radius-md);
}

.footer-bottom {
    padding-top: 26px;
    border-top: 1.5px solid #282828;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.98rem;
    color: #888880;
    font-weight: 700;
    flex-wrap: wrap;
    gap: 14px;
}

/* Floating Action / Quick Contact */
.floating-quote-btn {
    position: fixed;
    bottom: 92px;
    right: 24px;
    z-index: 990;
}

.floating-quote-btn .btn-neo {
    box-shadow: var(--shadow-solid-lg);
}

.footer-login-link {
    color: #8a8a84;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 4px 10px;
    transition: all 0.15s ease;
}

.footer-login-link:hover {
    color: var(--gm-yellow);
    border-color: var(--gm-yellow);
}

/* Contact form flash messages */
.form-flash {
    border: var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-weight: 800;
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.form-flash-ok {
    background: var(--gm-mint);
    color: #000;
}

.form-flash-error {
    background: #FFE1E1;
    color: #a11;
    border-color: #a11;
}

/* reCAPTCHA v3 */
/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .nav-links {
        gap: 14px;
    }
    .nav-link {
        font-size: 15px;
        padding: 6px 8px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-cta-group,
    .hero-stats-row {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .spotlight-box {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .queue-gallery-grid {
        grid-template-columns: 1fr;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .spotlight-features {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .contact-form-panel {
        padding: 30px 20px;
    }
    .contact-info-panel {
        padding: 30px 20px;
    }
    .css-kiosk-body {
        width: 300px;
    }
    .kiosk-bottom-base {
        width: 320px;
    }
}
