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

:root {
    --color-bg: #FFFFFF;
    --color-bg-secondary: #DDE2EE;
    --color-bg-tertiary: #F5F6F8;
    --color-text-primary: #0f172a;
    --color-text-secondary: #1e293b;
    --color-text-muted: #334155;
    --color-text-light: #475569;
    --color-border: #E8E8EC;
    --color-border-light: rgba(255, 255, 255, 0.5);
    --color-brand: #1e3a5f;
    --color-brand-light: #2a5080;
    --color-accent-green: #10b981;
    --color-accent-red: #ef4444;
    --color-accent-orange: #f59e0b;
    --color-accent-blue: #3b82f6;
    --color-accent-purple: #8b5cf6;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== Global Mountain Background ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('mountain_nobg.png') center center / cover no-repeat;
    opacity: 0.8;
    transform: scale(1.1) translateY(calc(var(--scroll-y, 0px) * -0.1));
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}

/* ===== Glassmorphism Utility ===== */
.glass {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

ul {
    list-style: none;
}

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

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
    transition: box-shadow 0.3s, background 0.3s;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-text-primary);
}

.brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-badge {
    font-size: 10px;
    font-weight: 600;
    background: var(--color-brand);
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-brand-light);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--color-text-primary);
    color: white;
}

.btn-dark:hover {
    background: #2a2a30;
    transform: translateY(-1px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.05);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.08);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

/* ===== Advanced Animations & Reveals ===== */
.reveal-hidden {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(60px) rotateX(-10deg) scale(0.95);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, filter;
}

.reveal-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotateX(0) scale(1);
}

/* Stagger delay classes */
.delay-1 {
    transition-delay: 0.1s;
}

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

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

.delay-4 {
    transition-delay: 0.4s;
}

/* 3D Glass Tilt Support */
.glass-tilt {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.glass-tilt>* {
    transform: translateZ(20px);
}

/* Liquid Glass Glow Effect */
.feature-card,
.step-card,
.plan-card,
.pricing-card,
.mock-kpi {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.step-card::before,
.plan-card::before,
.pricing-card::before,
.mock-kpi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, -100%) var(--mouse-y, -100%),
            rgba(30, 58, 95, 0.08),
            transparent 40%);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
}

.feature-card:hover::before,
.step-card:hover::before,
.plan-card:hover::before,
.pricing-card:hover::before,
.mock-kpi:hover::before {
    opacity: 1;
}

/* Magnetic Button Wrapper */
.btn-magnetic {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Background Parallax optimization */
body::before {
    will-change: transform;
}

/* ===== Hero Section ===== */
.hero {
    padding-top: 130px;
    padding-bottom: 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 56px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-brand);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
    margin-bottom: 24px;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-green);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2.5px;
    background: linear-gradient(180deg, #19191D 20%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 28px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-stats-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
    padding: 16px 36px;
    border-radius: 16px;
}

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

.hero-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--color-border);
}

/* Hero Screenshot */
.hero-image {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.hero-screenshot {
    background: rgba(25, 25, 29, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.screenshot-header {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #FF5F57;
}

.dot-yellow {
    background: #FEBC2E;
}

.dot-green {
    background: #28C840;
}

.window-title {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.screenshot-body {
    padding: 0 16px 16px;
}

/* Mock Dashboard */
.mock-dashboard {
    background: #111318;
    border-radius: var(--radius-md);
    display: flex;
    min-height: 340px;
    overflow: hidden;
}

.mock-sidebar {
    width: 52px;
    background: #0C0E12;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ms-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--color-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.ms-item {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.ms-item.active {
    background: rgba(30, 58, 95, 0.4);
    border: 1px solid rgba(30, 58, 95, 0.6);
}

.ms-divider {
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0;
}

.mock-main {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mock-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mock-kpi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mk-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mk-value {
    font-size: 18px;
    font-weight: 700;
    color: #E5E7EB;
}

.mk-trend {
    font-size: 11px;
    font-weight: 600;
}

.mk-trend.up {
    color: var(--color-accent-green);
}

.mk-trend.down {
    color: var(--color-accent-red);
}

.mock-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 14px 16px;
    flex: 1;
}

.chart-title {
    font-size: 11px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
}

.chart-bar {
    flex: 1;
    background: rgba(30, 58, 95, 0.5);
    border-radius: 3px 3px 0 0;
    transition: background 0.3s;
}

.chart-bar.highlight {
    background: var(--color-brand);
}

.mock-alerts-row {
    display: flex;
    gap: 10px;
}

.mock-alert {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D1D5DB;
}

.mock-alert.critical {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.mock-alert.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.ma-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-alert.critical .ma-dot {
    background: var(--color-accent-red);
}

.mock-alert.warning .ma-dot {
    background: var(--color-accent-orange);
}

.hero-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    border-radius: var(--radius-xl);
}

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

    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ===== Logos Section ===== */
.logos-section {
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.logos-label {
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-item span {
    font-size: 11px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ===== Feature Sections ===== */
.feature-section {
    padding: 100px 0;
    background: transparent;
}

.feature-alt {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse>* {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    background: rgba(30, 58, 95, 0.08);
    color: var(--color-brand);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(30, 58, 95, 0.1);
}

.feature-badge.accent {
    background: rgba(139, 92, 246, 0.08);
    color: var(--color-accent-purple);
    border-color: rgba(139, 92, 246, 0.12);
}

.feature-badge.warm {
    background: rgba(245, 158, 11, 0.08);
    color: var(--color-accent-orange);
    border-color: rgba(245, 158, 11, 0.12);
}

.feature-badge.success {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-accent-green);
    border-color: rgba(16, 185, 129, 0.12);
}

.feature-badge.danger {
    background: rgba(239, 68, 68, 0.08);
    color: var(--color-accent-red);
    border-color: rgba(239, 68, 68, 0.12);
}

.feature-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.feature-description {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.feature-metrics {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.fm-item {
    display: flex;
    flex-direction: column;
}

.fm-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.fm-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 58, 95, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card.dark-card {
    background: rgba(17, 19, 24, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card.dark-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fc-header {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-header.dark {
    border-color: rgba(255, 255, 255, 0.08);
    color: #D1D5DB;
}

.fc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.fc-dot.green {
    background: var(--color-accent-green);
    animation: pulse 2s infinite;
}

.fc-dot.orange {
    background: var(--color-accent-orange);
    animation: pulse 1.5s infinite;
}

.fc-dot.red {
    background: var(--color-accent-red);
    animation: pulse 1s infinite;
}

.fc-dot.blue {
    background: var(--color-accent-blue);
}

.fc-dot.purple {
    background: var(--color-accent-purple);
}

.fc-body {
    padding: 20px;
}

.fc-body.dark {
    padding: 20px;
}

/* Zone List */
.zone-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zone-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.zone-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.zone-name {
    font-weight: 500;
    color: var(--color-text-primary);
}

.zone-visitors {
    color: var(--color-text-muted);
}

.zone-bar {
    height: 6px;
    background: var(--color-bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.zone-fill {
    height: 100%;
    background: var(--color-brand);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Insight List */
.insight-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.insight-item {
    padding: 14px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(30, 58, 95, 0.03);
    transition: all 0.2s ease;
}

.insight-item:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

.insight-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.insight-tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
}

.insight-tag.high {
    background: rgba(239, 68, 68, 0.08);
    color: var(--color-accent-red);
}

.insight-tag.medium {
    background: rgba(245, 158, 11, 0.08);
    color: var(--color-accent-orange);
}

.insight-lift {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent-green);
}

.insight-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.insight-item p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Mock Heatmap */
.mock-heatmap {
    position: relative;
    height: 280px;
    background: #0C0E12;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.hm-zone {
    position: absolute;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.hm-zone:hover {
    transform: scale(1.03);
}

.hm-zone span {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.hm-zone small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.hm-hot {
    background: rgba(239, 68, 68, 0.35);
    border: 1px solid rgba(239, 68, 68, 0.5);
}

.hm-warm {
    background: rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.hm-cool {
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.35);
}

.hm-cold {
    background: rgba(30, 58, 95, 0.25);
    border: 1px solid rgba(30, 58, 95, 0.35);
}

.hm-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.hm-leg-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #9CA3AF;
}

.hm-leg-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.hm-leg-dot.cold {
    background: rgba(30, 58, 95, 0.5);
}

.hm-leg-dot.cool {
    background: rgba(59, 130, 246, 0.5);
}

.hm-leg-dot.warm {
    background: rgba(245, 158, 11, 0.5);
}

.hm-leg-dot.hot {
    background: rgba(239, 68, 68, 0.5);
}

/* Shelf Monitor */
.shelf-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shelf-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shelf-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shelf-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.shelf-cam {
    font-size: 11px;
    color: var(--color-text-light);
    font-weight: 500;
    font-family: monospace;
}

.shelf-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shelf-bar {
    flex: 1;
    height: 8px;
    background: var(--color-bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.shelf-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.shelf-fill.full {
    background: var(--color-accent-green);
}

.shelf-fill.half {
    background: var(--color-accent-orange);
}

.shelf-fill.low {
    background: #f97316;
}

.shelf-fill.empty {
    background: var(--color-accent-red);
}

.shelf-pct {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 32px;
    text-align: right;
}

.shelf-pct.warn {
    color: var(--color-accent-orange);
}

.shelf-pct.danger {
    color: var(--color-accent-red);
}

.shelf-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.shelf-action-text {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Alert List (dark) */
.alert-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.alert-critical {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.15);
}

.alert-high {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.15);
}

.alert-warning {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.15);
}

.alert-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-content {
    flex: 1;
}

.alert-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.alert-title {
    font-size: 13px;
    font-weight: 600;
    color: #E5E7EB;
}

.alert-time {
    font-size: 11px;
    color: #666;
}

.alert-content p {
    font-size: 12px;
    color: #9CA3AF;
    line-height: 1.5;
}

/* Market Share */
.market-share {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ms-chart {
    flex-shrink: 0;
}

.ms-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.ms-ring svg {
    width: 100%;
    height: 100%;
}

.ms-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-brand);
}

.ms-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ms-leg-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.ms-leg-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* ===== Steps Section ===== */
.steps-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 72px;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-visual {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-bg-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 800;
    color: rgba(30, 58, 95, 0.04);
    line-height: 1;
    z-index: -1;
    font-family: inherit;
    user-select: none;
}

.step-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.step:hover .step-icon-wrapper {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--color-brand);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15), 0 0 20px rgba(30, 58, 95, 0.1);
}

.step-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--color-brand);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.3s;
}

.step:hover .step-icon-wrapper::after {
    opacity: 0.3;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.step p {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.6;
    max-width: 240px;
}

.step-arrow {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 58px;
    opacity: 0.4;
}

.step-arrow svg {
    width: 40px;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

.stats-section::before {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #19191D 0%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===== Localization Section ===== */
.localization-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.1);
}

.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.local-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.local-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.local-card:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lc-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.local-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.local-card p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: rgba(245, 246, 248, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-align: left;
}

.faq-question:hover {
    color: var(--color-text-secondary);
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding-bottom: 20px;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 40px rgba(30, 58, 95, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.cta-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cta-note {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ===== Footer ===== */
.footer {
    background: rgba(25, 25, 29, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 60px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    display: none;
}

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

.footer-brand .nav-logo {
    margin-bottom: 12px;
}

.footer-brand .nav-logo span {
    color: white;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-green);
    animation: pulse 2s infinite;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.security-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-copyright {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }

    .feature-grid {
        gap: 48px;
    }

    .feature-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

    .cta-title {
        font-size: 32px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 48px;
    }

    .hero-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-row {
        gap: 20px;
    }

    .hero-stat-num {
        font-size: 16px;
    }

    .feature-section {
        padding: 60px 0;
    }

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

    .feature-reverse {
        direction: ltr;
    }

    .feature-metrics {
        gap: 20px;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding-bottom: 0;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .mock-sidebar {
        display: none;
    }

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

    .market-share {
        flex-direction: column;
    }

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

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .logos-grid {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .feature-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 26px;
    }

    .stat-number {
        font-size: 40px;
    }

    .cta-title {
        font-size: 26px;
    }

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

    .nav-links .nav-link {
        display: none;
    }

    .mock-alerts-row {
        flex-direction: column;
    }
}