/* ==========================================================================
   FoodTab Landing Page Styles
   SEO-Optimized, Accessible, Performance-First CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Primary (FoodTab Red) */
    --color-primary: #E53935;
    --color-primary-dark: #C62828;
    --color-primary-light: #EF5350;
    --color-primary-lighter: #FFEBEE;
    
    /* Colors - Secondary */
    --color-secondary: #1E293B;
    --color-secondary-dark: #0F172A;
    
    /* Colors - Neutral */
    --color-white: #FFFFFF;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    
    /* Colors - Semantic */
    --color-success: #22C55E;
    --color-warning: #F59E0B;
    --color-error: #DC2626;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
    --transition-slow: 300ms ease;
    
    /* Z-index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: var(--space-6);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-gray-700);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

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

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-gray-900);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    z-index: var(--z-tooltip);
    padding: var(--space-3) var(--space-4);
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-4);
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* Performance: Content visibility for below-fold sections */
.features,
.solutions,
.benefits,
.infrastructure,
.how-it-works,
.testimonials,
.pricing,
.faq,
.cta {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* Focus Visible for better keyboard accessibility */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

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

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

.btn--secondary {
    background: transparent;
    color: var(--color-gray-700);
    border-color: var(--color-gray-300);
}

.btn--secondary:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-400);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn--block {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-100);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--color-gray-900);
}

.logo svg {
    width: 140px;
    height: 32px;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    border-radius: 1px;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    border-radius: 1px;
    transition: transform var(--transition-fast);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
}

.nav-menu.is-active {
    display: block;
}

.nav-menu li {
    margin-bottom: var(--space-2);
}

.nav-link {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-600);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
    background: var(--color-gray-50);
}

.nav-link--cta {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    margin-top: var(--space-4);
}

.nav-link--cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        align-items: center;
        gap: var(--space-2);
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-menu li {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: var(--space-2) var(--space-4);
    }
    
    .nav-link--cta {
        margin-top: 0;
        margin-left: var(--space-4);
    }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    padding-top: calc(72px + var(--space-16));
    padding-bottom: var(--space-16);
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

.hero .container {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary-lighter);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
    margin-bottom: var(--space-8);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.hero-visual {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--color-gray-200);
    aspect-ratio: 3/2;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(72px + var(--space-24));
        padding-bottom: var(--space-24);
    }
    
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: var(--font-size-6xl);
    }
}

/* --------------------------------------------------------------------------
   Social Proof Bar
   -------------------------------------------------------------------------- */
.social-proof {
    padding: var(--space-8) 0;
    border-top: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
    background: var(--color-white);
}

.social-proof .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.social-proof-text {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-proof-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
}

.logo-placeholder {
    padding: var(--space-3) var(--space-6);
    background: var(--color-gray-100);
    color: var(--color-gray-400);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-12);
}

.section-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--color-gray-100);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-4xl);
    }
}

/* --------------------------------------------------------------------------
   Problems Section
   -------------------------------------------------------------------------- */
.problems {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.problems-grid {
    display: grid;
    gap: var(--space-6);
}

.problem-card {
    padding: var(--space-6);
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-100);
}

.problem-icon {
    margin-bottom: var(--space-4);
}

.problem-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
}

.problem-description {
    color: var(--color-gray-600);
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problems {
        padding: var(--space-24) 0;
    }
    
    .problems-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features {
    padding: var(--space-16) 0;
    background: var(--color-gray-50);
}

.features-grid {
    display: grid;
    gap: var(--space-6);
}

.feature-card {
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.feature-card--highlight {
    border-color: var(--color-primary);
    border-width: 2px;
}

.feature-icon {
    margin-bottom: var(--space-4);
}

.feature-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
}

.feature-description {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-list li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.333 4L6 11.333L2.667 8' stroke='%2322C55E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features {
        padding: var(--space-24) 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .feature-card--highlight {
        grid-column: span 2;
    }
}

/* --------------------------------------------------------------------------
   Solutions Section
   -------------------------------------------------------------------------- */
.solutions {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.solutions-grid {
    display: grid;
    gap: var(--space-8);
}

.solution-card {
    display: flex;
    flex-direction: column;
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-normal);
}

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

.solution-image {
    aspect-ratio: 16/10;
    background: var(--color-gray-200);
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content {
    padding: var(--space-6);
}

.solution-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
}

.solution-description {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.solution-features li {
    position: relative;
    padding-left: var(--space-5);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.solution-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solutions {
        padding: var(--space-24) 0;
    }
}

/* --------------------------------------------------------------------------
   Benefits Section
   -------------------------------------------------------------------------- */
.benefits {
    padding: var(--space-16) 0;
    background: var(--color-gray-900);
    color: var(--color-white);
}

.benefits .section-title {
    color: var(--color-white);
}

.benefits .section-subtitle {
    color: var(--color-gray-400);
}

.benefits-grid {
    display: grid;
    gap: var(--space-8);
}

.benefit-card {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-stat {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.benefit-title {
    font-size: var(--font-size-xl);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.benefit-description {
    color: var(--color-gray-400);
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits {
        padding: var(--space-24) 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Infrastructure Section
   -------------------------------------------------------------------------- */
.infrastructure {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--color-white);
    overflow: hidden;
}

.infrastructure-layout {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

.infrastructure .section-header--left {
    text-align: left;
}

.infrastructure .section-header--left .section-title {
    color: var(--color-white);
}

.infrastructure .section-header--left .section-subtitle {
    color: var(--color-gray-300);
    max-width: 540px;
}

.infrastructure .section-badge {
    background: rgba(255, 153, 0, 0.15);
    color: #FF9900;
    border-color: rgba(255, 153, 0, 0.3);
}

.infrastructure-features {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.infra-feature {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.infra-feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.infra-feature-icon--uptime {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.infra-feature-icon--speed {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
}

.infra-feature-icon--security {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.infra-feature-icon--backup {
    background: rgba(168, 85, 247, 0.15);
    color: #A855F7;
}

.infra-feature-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.infra-feature-desc {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
}

/* Infrastructure Visual / Graphic */
.infrastructure-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.infra-graphic {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Cloud Container */
.infra-cloud {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    backdrop-filter: blur(10px);
}

.infra-cloud-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-4);
}

.infra-cloud-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-300);
}

/* Server Rack */
.infra-servers {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.infra-server {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    text-align: center;
}

.infra-server-lights {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-2);
}

.infra-light {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.infra-light--green {
    background: #22C55E;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulse-light 2s ease-in-out infinite;
}

.infra-light--amber {
    background: #FBBF24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
    animation: pulse-light 2.5s ease-in-out infinite;
}

.infra-light--red {
    background: #EF4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

@keyframes pulse-light {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.infra-server-label {
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status Monitor */
.infra-monitor {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-3);
}

.infra-monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
}

.infra-monitor-title {
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.infra-monitor-status {
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    color: #22C55E;
    display: flex;
    align-items: center;
    gap: 4px;
}

.infra-monitor-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse-light 2s ease-in-out infinite;
}

.infra-monitor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
}

.infra-stat-item {
    text-align: center;
    padding: var(--space-2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.infra-stat-label {
    display: block;
    font-size: 9px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.infra-stat-value {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

/* Floating Badges */
.infra-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-700);
    white-space: nowrap;
}

.infra-badge--security {
    top: 10%;
    right: 0;
    animation: float-badge 3s ease-in-out infinite;
}

.infra-badge--uptime {
    bottom: 15%;
    left: 0;
    animation: float-badge 3s ease-in-out infinite 0.5s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.infra-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Connection Lines */
.infra-connections {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.infra-connection {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    height: 2px;
    animation: data-flow 2s linear infinite;
}

.infra-connection--1 {
    top: 30%;
    left: -20%;
    width: 25%;
    animation-delay: 0s;
}

.infra-connection--2 {
    top: 50%;
    right: -20%;
    width: 25%;
    animation-delay: 0.7s;
}

.infra-connection--3 {
    bottom: 35%;
    left: -15%;
    width: 20%;
    animation-delay: 1.4s;
}

@keyframes data-flow {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(200%); }
}

/* Globe/Regions */
.infra-globe {
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 60px;
    height: 60px;
}

.infra-globe-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: rotate-globe 20s linear infinite;
}

.infra-globe-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
}

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

.infra-globe-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #3B82F6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.infra-globe-dot--eu {
    top: 15%;
    right: 20%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.infra-globe-dot--us {
    top: 40%;
    left: 5%;
    animation: pulse-dot 2s ease-in-out infinite 0.5s;
}

.infra-globe-dot--ap {
    bottom: 20%;
    right: 10%;
    animation: pulse-dot 2s ease-in-out infinite 1s;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Infrastructure Responsive */
@media (min-width: 1024px) {
    .infrastructure-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
    
    .infrastructure-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .infrastructure {
        padding: var(--space-12) 0;
    }
    
    .infra-cloud {
        max-width: 280px;
    }
    
    .infra-badge {
        font-size: 10px;
        padding: var(--space-1) var(--space-2);
    }
    
    .infra-badge--security {
        top: 5%;
        right: -5%;
    }
    
    .infra-badge--uptime {
        bottom: 10%;
        left: -5%;
    }
    
    .infra-globe {
        display: none;
    }
    
    .infra-connections {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .infra-light,
    .infra-badge,
    .infra-connection,
    .infra-globe-ring,
    .infra-globe-dot {
        animation: none;
    }
    
    .infra-connection {
        opacity: 0.5;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   How It Works Section
   -------------------------------------------------------------------------- */
.how-it-works {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.steps {
    display: grid;
    gap: var(--space-8);
    counter-reset: step;
}

.step {
    display: flex;
    gap: var(--space-6);
}

.step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
}

.step-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
}

.step-description {
    color: var(--color-gray-600);
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .how-it-works {
        padding: var(--space-24) 0;
    }
    
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto var(--space-4);
    }
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials {
    padding: var(--space-16) 0;
    background: var(--color-gray-50);
}

.testimonials-grid {
    display: grid;
    gap: var(--space-8);
}

.testimonial-card {
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-200);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial-text {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-gray-700);
    margin-bottom: var(--space-6);
    line-height: var(--line-height-relaxed);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.testimonial-name {
    font-style: normal;
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-900);
}

.testimonial-role {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

@media (min-width: 1024px) {
    .testimonials {
        padding: var(--space-24) 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.pricing-grid {
    display: grid;
    gap: var(--space-8);
    max-width: 1024px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-gray-200);
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--color-gray-300);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
    border-color: var(--color-primary);
}

.pricing-card--popular:hover {
    border-color: var(--color-primary);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
}

.pricing-header {
    margin-bottom: var(--space-6);
}

.pricing-name {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
}

.pricing-description {
    color: var(--color-gray-500);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
    margin-bottom: var(--space-8);
}

.pricing-currency {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
}

.pricing-amount {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-gray-900);
    line-height: 1;
}

.pricing-period {
    font-size: var(--font-size-base);
    color: var(--color-gray-500);
}

.pricing-custom {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-900);
}

.pricing-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-gray-600);
}

.pricing-features svg {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing {
        padding: var(--space-24) 0;
    }
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq {
    padding: var(--space-16) 0;
    background: var(--color-gray-50);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-5) var(--space-6);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-900);
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span {
    text-align: left;
    padding-right: var(--space-4);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
}

@media (min-width: 1024px) {
    .faq {
        padding: var(--space-24) 0;
    }
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, #1a1a2e 100%);
    color: var(--color-white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: var(--font-size-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    margin-bottom: var(--space-10);
}

.cta-form {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-8);
}

.cta-form-row {
    display: grid;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.cta-form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--font-size-base);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.cta-disclaimer {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin-top: var(--space-4);
}

.cta-disclaimer a {
    color: var(--color-gray-400);
    text-decoration: underline;
}

.cta-disclaimer a:hover {
    color: var(--color-white);
}

.cta-contact {
    color: var(--color-gray-400);
}

.cta-contact p {
    margin-bottom: var(--space-2);
}

.cta-phone {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.cta-phone:hover {
    color: var(--color-primary);
}

.cta-hours {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

@media (min-width: 768px) {
    .cta-form-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-title {
        font-size: var(--font-size-4xl);
    }
}

@media (min-width: 1024px) {
    .cta {
        padding: var(--space-24) 0;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    padding: var(--space-16) 0 var(--space-8);
    background: var(--color-gray-900);
    color: var(--color-gray-400);
}

.footer-grid {
    display: grid;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-4);
    color: var(--color-white);
}

.footer-tagline {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-nav-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-nav-list a {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-sm);
}

.footer-copyright {
    color: var(--color-gray-500);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-gray-500);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: var(--space-20) 0 var(--space-8);
    }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .cta,
    .footer-social {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .hero {
        padding-top: 0;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
    }
}

/* ==========================================================================
   Hero Graphic - CSS-Only Animated Dashboard Mockup
   ========================================================================== */

/* Main Container */
.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 4/3;
    perspective: 1200px;
    margin: 0 auto;
}

/* Floating Background Elements */
.hero-graphic::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite;
    z-index: -1;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 6s ease-in-out infinite reverse;
    z-index: -1;
}

/* Main Dashboard Card */
.dashboard-main {
    position: absolute;
    top: 5%;
    left: 0;
    width: 85%;
    height: 90%;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 
        0 25px 80px -20px rgba(0, 0, 0, 0.25),
        0 10px 40px -15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(2deg);
    animation: dashboard-float 6s ease-in-out infinite;
    z-index: 2;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-logo-icon::before {
    content: '';
    width: 16px;
    height: 12px;
    background: 
        linear-gradient(white, white) 0 0 / 100% 2px no-repeat,
        linear-gradient(white, white) 0 5px / 75% 2px no-repeat,
        linear-gradient(white, white) 0 10px / 50% 2px no-repeat;
}

.dashboard-logo-text {
    font-weight: 700;
    font-size: 14px;
    color: #1f2937;
}

.dashboard-nav {
    display: flex;
    gap: 6px;
}

.dashboard-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}

.dashboard-nav-dot:nth-child(1) { background: #ef4444; }
.dashboard-nav-dot:nth-child(2) { background: #f59e0b; }
.dashboard-nav-dot:nth-child(3) { background: #22c55e; }

/* Dashboard Content */
.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    height: calc(100% - 65px);
}

/* Stat Cards */
.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

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

.stat-card-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon--red { background: #fef2f2; }
.stat-card-icon--green { background: #f0fdf4; }
.stat-card-icon--blue { background: #eff6ff; }
.stat-card-icon--purple { background: #faf5ff; }

.stat-card-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.stat-card-icon--red::after { background: var(--color-primary); }
.stat-card-icon--green::after { background: #22c55e; }
.stat-card-icon--blue::after { background: #3b82f6; }
.stat-card-icon--purple::after { background: #8b5cf6; }

.stat-card-value {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card-change {
    font-size: 11px;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 2px;
}

.stat-card-change::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 5px solid #22c55e;
}

/* Chart Card */
.chart-card {
    grid-column: span 2;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-title {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.chart-legend {
    display: flex;
    gap: 12px;
}

.chart-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #6b7280;
}

.chart-legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.chart-legend-dot--primary { background: var(--color-primary); }
.chart-legend-dot--secondary { background: #e5e7eb; }

/* Animated Chart Bars */
.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    gap: 8px;
}

.chart-bar-group {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    flex: 1;
}

.chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    animation: bar-grow 1.5s ease-out forwards;
    transform-origin: bottom;
}

.chart-bar--primary { background: var(--color-primary); }
.chart-bar--secondary { background: #e5e7eb; }

.chart-bar-group:nth-child(1) .chart-bar--primary { height: 45px; animation-delay: 0.1s; }
.chart-bar-group:nth-child(1) .chart-bar--secondary { height: 30px; animation-delay: 0.15s; }
.chart-bar-group:nth-child(2) .chart-bar--primary { height: 60px; animation-delay: 0.2s; }
.chart-bar-group:nth-child(2) .chart-bar--secondary { height: 40px; animation-delay: 0.25s; }
.chart-bar-group:nth-child(3) .chart-bar--primary { height: 50px; animation-delay: 0.3s; }
.chart-bar-group:nth-child(3) .chart-bar--secondary { height: 35px; animation-delay: 0.35s; }
.chart-bar-group:nth-child(4) .chart-bar--primary { height: 75px; animation-delay: 0.4s; }
.chart-bar-group:nth-child(4) .chart-bar--secondary { height: 50px; animation-delay: 0.45s; }
.chart-bar-group:nth-child(5) .chart-bar--primary { height: 65px; animation-delay: 0.5s; }
.chart-bar-group:nth-child(5) .chart-bar--secondary { height: 45px; animation-delay: 0.55s; }
.chart-bar-group:nth-child(6) .chart-bar--primary { height: 80px; animation-delay: 0.6s; }
.chart-bar-group:nth-child(6) .chart-bar--secondary { height: 55px; animation-delay: 0.65s; }
.chart-bar-group:nth-child(7) .chart-bar--primary { height: 70px; animation-delay: 0.7s; }
.chart-bar-group:nth-child(7) .chart-bar--secondary { height: 48px; animation-delay: 0.75s; }

/* Orders Panel (Floating) */
.orders-panel {
    position: absolute;
    top: 15%;
    right: 0;
    width: 55%;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.2),
        0 15px 30px -10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transform: rotateY(5deg) rotateX(-2deg) translateZ(30px);
    animation: panel-float 5s ease-in-out infinite 0.5s;
    z-index: 3;
}

.orders-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}

.orders-title {
    font-size: 13px;
    font-weight: 600;
}

.orders-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    animation: pulse-badge 2s ease-in-out infinite;
}

.orders-list {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    animation: order-slide-in 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(20px);
}

.order-item:nth-child(1) { animation-delay: 0.8s; }
.order-item:nth-child(2) { animation-delay: 1s; }
.order-item:nth-child(3) { animation-delay: 1.2s; }

.order-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.order-avatar--1 { background: linear-gradient(135deg, #f97316, #ea580c); }
.order-avatar--2 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.order-avatar--3 { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.order-details {
    flex: 1;
    min-width: 0;
}

.order-id {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.order-items {
    font-size: 10px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.order-status--preparing {
    background: #fef3c7;
    color: #d97706;
}

.order-status--ready {
    background: #dcfce7;
    color: #16a34a;
}

.order-status--new {
    background: #fef2f2;
    color: var(--color-primary);
    animation: status-pulse 1.5s ease-in-out infinite;
}

/* Notification Bubble */
.notification-bubble {
    position: absolute;
    bottom: 25%;
    left: 5%;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 10px 20px -5px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: notification-pop 0.5s ease-out 1.5s forwards, notification-float 4s ease-in-out 2s infinite;
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    z-index: 4;
}

.notification-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon::after {
    content: '';
    width: 14px;
    height: 14px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(-45deg) translateY(-2px);
}

.notification-content {
    line-height: 1.3;
}

.notification-title {
    font-size: 11px;
    font-weight: 600;
    color: #111827;
}

.notification-text {
    font-size: 10px;
    color: #6b7280;
}

/* Floating Elements */
.float-element {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.float-element--1 {
    top: 0;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    animation: float-element 5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-element--1::after {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    border-radius: 6px;
    opacity: 0.8;
}

.float-element--2 {
    bottom: 5%;
    right: 25%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    animation: float-element 4s ease-in-out infinite 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-element--2::after {
    content: '';
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    opacity: 0.8;
}

.float-element--3 {
    top: 40%;
    left: -5%;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    animation: float-element 6s ease-in-out infinite 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-element--3::after {
    content: '';
    width: 18px;
    height: 18px;
    background: #3b82f6;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    opacity: 0.8;
}

/* Animations */
@keyframes dashboard-float {
    0%, 100% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0);
    }
    50% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-8px);
    }
}

@keyframes panel-float {
    0%, 100% {
        transform: rotateY(5deg) rotateX(-2deg) translateZ(30px) translateY(0);
    }
    50% {
        transform: rotateY(5deg) rotateX(-2deg) translateZ(30px) translateY(-6px);
    }
}

@keyframes bar-grow {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes order-slide-in {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes status-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(229, 57, 53, 0);
    }
}

@keyframes notification-pop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes notification-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Responsive Adjustments for Hero Graphic */
@media (max-width: 768px) {
    .hero-graphic {
        max-width: 100%;
        aspect-ratio: 1/1;
    }
    
    .dashboard-main {
        width: 100%;
        transform: none;
        animation: none;
    }
    
    .orders-panel {
        display: none;
    }
    
    .notification-bubble {
        display: none;
    }
    
    .float-element {
        display: none;
    }
    
    .stat-card-value {
        font-size: 18px;
    }
    
    .chart-bars {
        height: 60px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-graphic {
        max-width: 550px;
    }
    
    .orders-panel {
        width: 50%;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .dashboard-main,
    .orders-panel,
    .notification-bubble,
    .float-element,
    .chart-bar,
    .order-item {
        animation: none;
        transform: none;
        opacity: 1;
    }
}

/* ==========================================================================
   Social Proof Stats Section
   ========================================================================== */

.social-proof-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

.sp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-4);
}

.sp-stat-number {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-primary);
    line-height: 1;
}

.sp-stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.sp-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-200);
}

@media (max-width: 768px) {
    .social-proof-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .sp-divider {
        display: none;
    }
    
    .sp-stat {
        padding: var(--space-3);
    }
    
    .sp-stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .sp-stat-label {
        font-size: var(--font-size-xs);
    }
}

/* ==========================================================================
   Solution Graphics - CSS Only Illustrations
   ========================================================================== */

.solution-graphic {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    position: relative;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Restaurant - Table Management Graphic
   -------------------------------------------------------------------------- */

.solution-graphic--restaurant {
    background: linear-gradient(135deg, #fafafa 0%, #f3f4f6 100%);
}

.sg-floor-plan {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.sg-table {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.sg-table--round {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.sg-table--rect {
    width: 60px;
    height: 40px;
    border-radius: 6px;
}

.sg-table--large {
    width: 80px;
    height: 45px;
}

.sg-table--available {
    background: #f0fdf4;
    border-color: #22c55e;
}

.sg-table--occupied {
    background: #fef2f2;
    border-color: var(--color-primary);
}

.sg-table--reserved {
    background: #fefce8;
    border-color: #f59e0b;
}

.sg-table-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gray-700);
}

.sg-table-seats {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sg-table-seats span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-gray-300);
    border-radius: 50%;
}

.sg-table--round .sg-table-seats span:nth-child(1) { top: -12px; left: 50%; transform: translateX(-50%); }
.sg-table--round .sg-table-seats span:nth-child(2) { bottom: -12px; left: 50%; transform: translateX(-50%); }
.sg-table--round .sg-table-seats span:nth-child(3) { left: -12px; top: 50%; transform: translateY(-50%); }
.sg-table--round .sg-table-seats span:nth-child(4) { right: -12px; top: 50%; transform: translateY(-50%); }

.sg-table--rect .sg-table-seats span:nth-child(1) { top: -10px; left: 25%; }
.sg-table--rect .sg-table-seats span:nth-child(2) { top: -10px; right: 25%; }
.sg-table--rect .sg-table-seats span:nth-child(3) { bottom: -10px; left: 25%; }
.sg-table--rect .sg-table-seats span:nth-child(4) { bottom: -10px; right: 25%; }
.sg-table--rect .sg-table-seats span:nth-child(5) { left: -10px; top: 50%; transform: translateY(-50%); }
.sg-table--rect .sg-table-seats span:nth-child(6) { right: -10px; top: 50%; transform: translateY(-50%); }

.sg-reservation-popup {
    position: absolute;
    top: 10%;
    right: 5%;
    background: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 130px;
    z-index: 2;
    animation: popup-slide 0.5s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes popup-slide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sg-popup-header {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sg-popup-row {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin-bottom: 4px;
}

.sg-popup-row span:first-child {
    color: var(--color-gray-400);
}

.sg-popup-row span:last-child {
    color: var(--color-gray-700);
    font-weight: 600;
}

.sg-popup-btn {
    margin-top: 10px;
    padding: 6px 10px;
    background: var(--color-primary);
    color: white;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Takeaway - Kitchen Display Graphic
   -------------------------------------------------------------------------- */

.solution-graphic--takeaway {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.sg-kds {
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sg-kds-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #334155;
}

.sg-kds-title {
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.sg-kds-time {
    font-size: 10px;
    color: #94a3b8;
}

.sg-kds-orders {
    display: flex;
    gap: 10px;
    padding: 12px;
}

.sg-kds-order {
    flex: 1;
    background: #334155;
    border-radius: 8px;
    padding: 10px;
    border-left: 3px solid;
}

.sg-kds-order--urgent {
    border-left-color: var(--color-primary);
}

.sg-kds-order--normal {
    border-left-color: #22c55e;
}

.sg-kds-order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.sg-kds-order-id {
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.sg-kds-order-time {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.sg-kds-order--urgent .sg-kds-order-time {
    background: rgba(229, 57, 53, 0.2);
    color: #ef4444;
}

.sg-kds-order--normal .sg-kds-order-time {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.sg-kds-order-type {
    font-size: 8px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.sg-kds-items {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
}

.sg-kds-item {
    font-size: 9px;
    color: #cbd5e1;
}

.sg-kds-bump {
    padding: 5px 8px;
    background: #475569;
    color: white;
    font-size: 8px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.sg-phone-ring {
    position: absolute;
    bottom: 15%;
    right: 8%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: phone-ring 1s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-3deg); }
    20%, 40% { transform: rotate(3deg); }
    50% { transform: rotate(0deg); }
}

.sg-phone-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 8px;
    position: relative;
}

.sg-phone-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: white;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 100%, 80% 100%, 80% 40%, 60% 40%, 60% 60%, 40% 60%, 40% 40%, 20% 40%, 20% 100%, 0% 100%, 0% 20%);
    transform: translate(-50%, -50%);
}

.sg-phone-info {
    display: flex;
    flex-direction: column;
}

.sg-phone-caller {
    font-size: 10px;
    font-weight: 600;
    color: #111827;
}

.sg-phone-number {
    font-size: 9px;
    color: #6b7280;
}

/* --------------------------------------------------------------------------
   Cafe - POS Graphic
   -------------------------------------------------------------------------- */

.solution-graphic--cafe {
    background: linear-gradient(135deg, #fef7ed 0%, #fde5d4 100%);
}

.sg-pos {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 180px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.sg-pos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-100);
}

.sg-pos-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-gray-700);
}

.sg-pos-table {
    font-size: 9px;
    color: var(--color-gray-400);
}

.sg-pos-items {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sg-pos-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--color-gray-100);
}

.sg-pos-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sg-pos-item-qty {
    font-size: 9px;
    font-weight: 600;
    color: var(--color-gray-400);
    min-width: 20px;
}

.sg-pos-item-name {
    flex: 1;
    font-size: 10px;
    font-weight: 500;
    color: var(--color-gray-700);
}

.sg-pos-item-price {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-gray-900);
}

.sg-pos-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--color-gray-50);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray-900);
}

.sg-pos-pay {
    padding: 10px;
    background: var(--color-primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.sg-coffee-cup {
    position: absolute;
    right: 10%;
    bottom: 20%;
    width: 45px;
    height: 50px;
}

.sg-cup-body {
    width: 40px;
    height: 35px;
    background: linear-gradient(135deg, #78350f, #92400e);
    border-radius: 3px 3px 12px 12px;
    position: relative;
}

.sg-cup-body::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -3px;
    right: -3px;
    height: 8px;
    background: linear-gradient(135deg, #a16207, #ca8a04);
    border-radius: 3px 3px 0 0;
}

.sg-cup-handle {
    position: absolute;
    right: -10px;
    top: 8px;
    width: 12px;
    height: 18px;
    border: 3px solid #78350f;
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.sg-cup-steam {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.sg-cup-steam span {
    width: 3px;
    height: 15px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    animation: steam-rise 1.5s ease-in-out infinite;
}

.sg-cup-steam span:nth-child(1) { animation-delay: 0s; height: 12px; }
.sg-cup-steam span:nth-child(2) { animation-delay: 0.3s; height: 18px; }
.sg-cup-steam span:nth-child(3) { animation-delay: 0.6s; height: 14px; }

@keyframes steam-rise {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0) scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-5px) scaleY(1.2);
    }
}

/* --------------------------------------------------------------------------
   Chain - Multi-location Dashboard Graphic
   -------------------------------------------------------------------------- */

.solution-graphic--chain {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sg-multi {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 220px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.sg-multi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--color-gray-900);
}

.sg-multi-title {
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.sg-multi-badge {
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    background: #22c55e;
    color: white;
    border-radius: 20px;
}

.sg-locations {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sg-location {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--color-gray-50);
    border-radius: 8px;
}

.sg-location-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sg-location-status--good {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.sg-location-status--busy {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.sg-location-info {
    flex: 1;
    min-width: 0;
}

.sg-location-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sg-location-stats {
    font-size: 9px;
    color: var(--color-gray-500);
}

.sg-location-orders {
    font-size: 9px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.sg-total-revenue {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: white;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    animation: revenue-pop 0.5s ease-out 0.3s forwards;
    opacity: 0;
    transform: scale(0.9);
}

@keyframes revenue-pop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.sg-total-label {
    font-size: 9px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sg-total-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1;
    margin-bottom: 4px;
}

.sg-total-change {
    font-size: 10px;
    font-weight: 600;
    color: #22c55e;
}

/* --------------------------------------------------------------------------
   Solution Graphics Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
    .solution-graphic {
        min-height: 180px;
        padding: var(--space-4);
    }
    
    .sg-reservation-popup,
    .sg-phone-ring,
    .sg-coffee-cup,
    .sg-total-revenue {
        display: none;
    }
    
    .sg-floor-plan {
        gap: 10px;
        padding: 12px;
    }
    
    .sg-table--round {
        width: 40px;
        height: 40px;
    }
    
    .sg-table--rect {
        width: 50px;
        height: 35px;
    }
    
    .sg-kds {
        max-width: 240px;
    }
    
    .sg-pos {
        max-width: 160px;
    }
    
    .sg-multi {
        max-width: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sg-reservation-popup,
    .sg-phone-ring,
    .sg-cup-steam span,
    .sg-total-revenue {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   GDPR Cookie Consent Banner
   -------------------------------------------------------------------------- */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-gray-200);
    padding: var(--space-4) var(--space-6);
    transform: translateY(0);
    transition: transform 0.3s ease-out;
}

.cookie-banner[hidden] {
    display: block;
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-1);
}

.cookie-description {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: var(--color-primary-dark);
}

.cookie-actions {
    display: flex;
    gap: var(--space-2);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--space-4);
    margin-top: var(--space-4);
    border-top: 1px solid var(--color-gray-200);
}

.cookie-settings-panel[hidden] {
    display: none;
}

.cookie-settings-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-4);
}

.cookie-category {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.cookie-category-info {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.cookie-category-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-900);
}

.cookie-category-status {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    background: var(--color-gray-100);
    padding: 2px 8px;
    border-radius: 100px;
}

.cookie-category-desc {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    margin: var(--space-2) 0 0 52px;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-300);
    transition: 0.2s;
    border-radius: 22px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: var(--space-4);
}

/* Cookie Banner Mobile */
@media (max-width: 768px) {
    .cookie-banner {
        padding: var(--space-4);
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-4);
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-category-desc {
        margin-left: 52px;
    }
}
