/* ===================================
   Inventorygram - OFFICIAL DESIGN SYSTEM
   Built for the street, not just offices
   =================================== */

/* ===================================
   1. COLOR SYSTEM
   =================================== */
:root {
    /* Primary Colors */
    --primary: #1E3A8A;           /* Deep Blue - Trust & Reliability */
    --primary-light: #3B82F6;
    --primary-dark: #1E40AF;
    
    /* Secondary Colors */
    --secondary: #10B981;          /* Emerald Green - Growth & Profit */
    --secondary-light: #34D399;
    --secondary-dark: #059669;
    
    /* Accent Colors */
    --accent: #fef3c7; /* #F59E0B; Orange - Action & CTAs */
    --accent-light:  #f8f3e1;/* #FBBF24; */
    --accent-dark: #fef3c7d0; /* #D97706 */ 

    /* Pastel Color Variants */
    --skyblue-normal: #dbeafe;
    --skyblue-light: #eff6ff;
    --skyblue-dark: #93c5fd;

    --green-normal: #dcfce7;
    --green-light: #ecfdf5;
    --green-dark: #86efac;

    --yellow-normal: #fef3c7;
    --yellow-light: #fffbeb;
    --yellow-dark: #fcd34d;

    --pink-normal: #fce7f3;
    --pink-light: #fdf2f8;
    --pink-dark: #f9a8d4;

    --purple-normal: #ede9fe;
    --purple-light: #f5f3ff;
    --purple-dark: #c4b5fd;

    --cyan-normal: #cffafe;
    --cyan-light: #ecfeff;
    --cyan-dark: #67e8f9;
    
    /* Neutral Colors */
    --neutral-50: #F9FAFB;
    --neutral-100: #F3F4F6;        /* Light Gray - Clean UI */
    --neutral-200: #E5E7EB;
    --neutral-300: #D1D5DB;
    --neutral-400: #9CA3AF;
    --neutral-500: #6B7280;
    --neutral-600: #4B5563;
    --neutral-700: #374151;
    --neutral-800: #1F2937;
    --neutral-900: #111827;        /* Charcoal - Text & Headers */
    --black: #000000;
    --black-850: #0f172a;
    --black-800: #111827;
    --black-soft: rgba(255, 255, 255, 0.08);
    
    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    
    /* Sidebar */
    --sidebar-width: 260px;
    --sidebar-bg: #F9FAFB;
    --sidebar-border: #E5E7EB;
    --gradient-dark: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

/* ===================================
   2. RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}


body {
    font-family: var(--font-primary);
    color: var(--neutral-900);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    transition: filter 0.3s ease;
}

/* Blur main content when mobile menu is active */
body.menu-open {
    overflow: hidden;
}

body.menu-open > *:not(.navbar) {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure smooth blur transition */
body > * {
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   3. TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); }
h5 { font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem); }
h6 { font-size: clamp(1rem, 1vw + 0.5rem, 1rem); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--neutral-600);
    line-height: 1.7;
    font-size: clamp(1rem, 1.25vw + 0.25rem, 1.1rem);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-light);
}

/* ===================================
   4. CONTAINER & LAYOUT
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.container-fluid {
    width: 100%;
    padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* Responsive spacing adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-xs: 0.2rem;
        --spacing-sm: 0.4rem;
        --spacing-md: 0.75rem;
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-2xl: 2rem;
        --spacing-3xl: 2.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.15rem;
        --spacing-sm: 0.35rem;
        --spacing-md: 0.65rem;
        --spacing-lg: 0.85rem;
        --spacing-xl: 1.25rem;
        --spacing-2xl: 1.75rem;
        --spacing-3xl: 2rem;
    }
}

.section {
    padding: clamp(3rem, 8vw, 4rem) 0;
}

.section-sm {
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.section-lg {
    padding: clamp(3.5rem, 10vw, 5rem) 0;
}

/* ===================================
   5. NAVIGATION
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(30, 58, 138, 0.04);
    border-bottom: 1px solid rgba(30, 58, 138, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05), 0 4px 24px rgba(30, 58, 138, 0.08);
    border-bottom-color: rgba(30, 58, 138, 0.1);
}

.navbar-main {
    padding: 0.875rem 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .navbar-main {
    padding: 0.625rem 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Ensure navbar reaches edges on mobile */
@media (max-width: 992px) {
    .navbar .container {
        padding-left: clamp(0.75rem, 2vw, 1.5rem);
        padding-right: clamp(0.75rem, 2vw, 1.5rem);
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-logo {
        margin-left: 0;
    }
}

/* Logo Styles */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.2875rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.25rem 0.5rem;
    margin-left: -0.5rem;
    border-radius: var(--radius-lg);
}

.navbar-logo:hover {
    transform: translateY(-1px);
    background: rgba(30, 58, 138, 0.02);
}

.navbar-logo-icon {
    width: 48px;
    height: 48px;
    /* background: var(--gradient-primary); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.375rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.18), 0 2px 8px rgba(30, 58, 138, 0.12);
    position: relative;
}

.navbar-logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar-logo:hover .navbar-logo-icon {
    transform: rotate(-3deg) scale(1.05);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25), 0 4px 12px rgba(30, 58, 138, 0.15);
}

.navbar-logo:hover .navbar-logo-icon::before {
    opacity: 1;
}

.navbar.scrolled .navbar-logo-icon {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
}

.navbar-logo-text {
    background: linear-gradient(135deg, var(--primary) 0%, #2847a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
}

/* Desktop Menu */
.navbar-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu .nav-link {
    color: var(--neutral-700);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    border-radius: var(--radius-md);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.01em;
}

.navbar-menu .nav-link:hover {
    color: var(--primary);
    background: rgba(30, 58, 138, 0.04);
    transform: translateY(-1px);
}

.navbar-menu .nav-link:active {
    transform: translateY(0);
}

/* Animated Underline */
.navbar-menu .nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-menu .nav-link:hover::before,
.navbar-menu .nav-link.active::before {
    width: calc(100% - 2rem);
    opacity: 1;
}

/* Animated Underline */
.navbar-menu .nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-menu .nav-link:hover::before,
.navbar-menu .nav-link.active::before {
    width: calc(100% - 2rem);
    opacity: 1;
}

.navbar-menu .nav-link.active {
    color: var(--primary);
    background: rgba(30, 58, 138, 0.04);
}

/* Desktop Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile Only Actions (hidden on desktop) */
.mobile-only-actions {
    display: none;
}

/* Hamburger Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    background: rgba(30, 58, 138, 0.05);
    border: 2px solid rgba(30, 58, 138, 0.08);
    cursor: pointer;
    padding: 8px 10px;
    position: relative;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.08);
}

.mobile-toggle:hover {
    background: rgba(30, 58, 138, 0.1);
    border-color: rgba(30, 58, 138, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.15);
}

.mobile-toggle:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(30, 58, 138, 0.1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hamburger-line:not(:last-child) {
    margin-bottom: 6px;
}

/* Hamburger Animation when Active */
.mobile-toggle.active {
    background: linear-gradient(135deg, var(--primary) 0%, #2847a8 100%);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.35);
}

.mobile-toggle.active .hamburger-line:nth-child(1),
.mobile-toggle.active .hamburger-line:nth-child(2),
.mobile-toggle.active .hamburger-line:nth-child(3) {
    background: white !important;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Overlay */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.3);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

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

/* ===================================
   TABLET & MOBILE NAVIGATION
   =================================== */
@media (max-width: 1024px) {
    .navbar-menu {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 420px;
        height: 100vh;
        background: linear-gradient(165deg, #ffffff 0%, #f8f9fb 100%);
        flex-direction: column;
        gap: 0;
        padding: 5.5rem 1.75rem 2rem;
        box-shadow: -8px 0 32px rgba(30, 58, 138, 0.12), -4px 0 16px rgba(0, 0, 0, 0.06);
        overflow-y: auto;
        overflow-x: hidden;
        transition: right 0.5s cubic-bezier(0.32, 0.72, 0, 1);
        z-index: 1001;
        align-items: stretch;
        border-left: 1px solid rgba(30, 58, 138, 0.08);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-100px);
        transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    /* When item is visible (controlled by JS) */
    .navbar-menu li.menu-item-visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* When item is sliding out (controlled by JS) */
    .navbar-menu li.menu-item-hiding {
        opacity: 0;
        transform: translateX(100px);
        transition: opacity 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335),
                    transform 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    }
    
    .navbar-menu .nav-link {
        display: block;
        padding: 1.125rem 1.5rem;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--neutral-800);
        border-radius: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .navbar-menu .nav-link::after {
        content: '';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%) translateX(-10px);
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-menu .nav-link:hover,
    .navbar-menu .nav-link.active {
        background: var(--gradient-primary);
        color: white;
        transform: translateX(6px);
        box-shadow: 0 4px 16px rgba(30, 58, 138, 0.25);
    }
    
    .navbar-menu .nav-link:hover::after,
    .navbar-menu .nav-link.active::after {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    
    .navbar-menu .nav-link:active {
        transform: translateX(4px) scale(0.98);
    }
    
    .navbar-menu .nav-link::before {
        display: none;
    }
    
    /* Mobile Only Actions */
    .mobile-only-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: .5rem;
        padding: 2rem 1.5rem 2rem;
    }
    
    .navbar-logo-text {
        font-size: 1.3rem;
    }
    
    .navbar-logo-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    
    .mobile-toggle {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .hamburger-line {
        width: 22px;
    }
    
    .navbar-menu .nav-link {
        padding: 1rem 1.25rem;
        font-size: 1.06 14px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
    }
    
    .mobile-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
    }
}

@media (max-width: 480px) {
    .navbar-menu {
        width: 100%;
        max-width: 100%;
        left: -15px;
        right: auto;
        padding: clamp(4rem, 8vw, 5rem) clamp(1rem, 3vw, 1.5rem) 2rem;
    }
    
    .navbar-logo-text {
        font-size: clamp(1.125rem, 3vw, 1.25rem);
    }
    
    .navbar-logo-icon {
        width: clamp(36px, 8vw, 40px);
        height: clamp(36px, 8vw, 40px);
        font-size: clamp(1rem, 2.5vw, 1.125rem);
    }
    
    .mobile-toggle {
        width: clamp(44px, 10vw, 48px);
        height: clamp(44px, 10vw, 48px);
        border-radius: 12px;
    }
    
    .hamburger-line {
        width: clamp(20px, 5vw, 22px);
    }
    
    .navbar-menu .nav-link {
        padding: clamp(0.875rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
        font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
    }
}

/* ===================================
   6. BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: var(--black-800);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-light {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-lg {
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.btn-sm {
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.8125rem, 1vw, 0.875rem);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: clamp(0.925rem, 1.5vw, 0.75rem) clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    font-size: clamp(0.875rem, 1.25vw, 1rem);
    line-height: 1;
}

/* ===================================
   7. HERO SECTION
   =================================== */
.hero {
    /* background: linear-gradient(135deg, var(--black) 0%, #111827 30%, #1E3A8A 100%); */
    background-color: var(--primary);
    color: white;
    padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
    margin-top: clamp(64px, 10vw, 72px);
    position: relative;
    overflow: hidden;
}
.hero .hero-badge {
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.875rem, 2vw, 1.5rem);
    border-radius: 2rem;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    overflow: visible;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 3px solid transparent;
    border-radius: 2rem;
    animation: borderLight 1s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.hero-badge > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.animated-text {
    display: inline-block;
    overflow: hidden;
    line-height: 1.1;
    opacity: 1;
}

.animated-text span {
    display: inline-block;
    white-space: pre;
    will-change: transform, opacity, color;
    opacity: 1;
    /* Animation engine applies inline styles directly */
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}
.hero-stat-flex {
    display: flex;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   8. FEATURES SECTION
   =================================== */
.features {
    background: var(--neutral-50);
}

.section-black {
    background: #05060a;
    color: white;
}

.section-black .container {
    position: relative;
    z-index: 1;
}

.section-black .section-header h2,
.section-black .section-header p,
.section-black .feature-card h3,
.section-black .feature-card p,
.section-black .hero-stat-value,
.section-black .hero-stat-label {
    color: white;
}

.section-black .section-badge {
    background: white;
    color: #111827;
}

.section-black .feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.pos-kit-section .pos-kit-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 4vw, 3rem);
    position: relative;
    align-items: center;
    margin-top: clamp(2rem, 3vw, 3rem);
}

.pos-kit-section .pos-kit-devices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pos-kit-section .pos-device-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    animation: floatUpDown 5s ease-in-out infinite alternate;
}

.pos-kit-section .pos-device-card:nth-child(2) {
    animation-delay: 0.4s;
}

.pos-kit-section .pos-device-card:nth-child(3) {
    animation-delay: 0.6s;
}

.pos-kit-section .pos-device-card:nth-child(4) {
    animation-delay: 0.2s;
}

.pos-kit-section .pos-device-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 0.95rem;
    margin-bottom: 0.9rem;
    display: block;
}

.pos-kit-section .pos-device-copy h4 {
    margin: 0 0 0.4rem;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: white;
}

.pos-kit-section .pos-device-copy p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.pos-kit-section .pos-kit-copy {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 2.5vw, 2rem);
}

.pos-kit-section .pos-kit-copy h3 {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 2.7vw, 2.4rem);
    color: white;
}

.pos-kit-section .pos-kit-copy p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.82);
}

.pos-kit-section .pos-kit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.pos-kit-section .pos-kit-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.6;
}

.pos-kit-section .pos-kit-list li::before {
    content: "•";
    color: var(--accent);
    display: inline-block;
    width: 1.2rem;
}

.pos-kit-section .pos-kit-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0.95rem 1.6rem;
    box-shadow: var(--shadow-xl);
}

@keyframes floatUpDown {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-10px);
    }
}

.section-black .btn-light {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.section-black .btn-light:hover {
    background: rgba(255, 255, 255, 0.18);
}

.section-black .wave-line {
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.45), rgba(255,255,255,0.15));
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(2rem, 5vw, 4rem);
}

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.75rem, 2vw, 1rem);
    border-radius: 2rem;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.help-search-panel {
    background: var(--neutral-50);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    padding: clamp(1.75rem, 2.5vw, 2.25rem);
    display: grid;
    gap: var(--spacing-lg);
}

.help-search-panel h2 {
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.help-search-panel p {
    color: var(--neutral-600);
    margin-bottom: 0;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper input[type="search"],
.search-input-wrapper input[type="text"] {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--radius-xl);
    background: white;
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.search-input-wrapper .search-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-400);
    font-size: 1.2rem;
}

.search-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.help-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(30, 58, 138, 0.08);
    color: var(--neutral-800);
    font-size: 0.95rem;
    font-weight: 700;
    transition: all var(--transition-base);
    cursor: pointer;
}

.help-chip:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.help-detail-grid {
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.help-detail-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-sm);
}

.help-detail-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--neutral-900);
}

.help-detail-card p {
    color: var(--neutral-600);
    line-height: 1.8;
}

.help-tutorials .feature-card {
    background: var(--neutral-100);
    border: none;
    border-radius: var(--radius-xl);
}

.help-tutorials .feature-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

@media (max-width: 768px) {
    .help-search-panel {
        padding: 1.5rem;
    }

    .search-suggestions {
        grid-template-columns: 1fr 1fr;
    }
}

.section-apps {
    background: linear-gradient(180deg, rgba(245, 247, 250, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.platform-access-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.platform-description {
    padding: 2rem 2rem 1.5rem;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.platform-chip {
    display: inline-flex;
    margin-bottom: var(--spacing-md);
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.platform-visual {
    display: grid;
    gap: 1.5rem;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.platform-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1rem;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: var(--shadow-sm);
    color: var(--neutral-800);
    font-weight: 600;
}

.platform-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 2rem;
    text-align: center;
}

@media (max-width: 900px) {
    .platform-access-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .platform-description,
    .platform-preview-card,
    .platform-icon {
        padding: 1.1rem;
    }

    .icon-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.intro-breakdown {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.intro-breakdown::before,
.intro-breakdown::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(50px);
}

.intro-breakdown::before {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -120px;
}

.intro-breakdown::after {
    width: 380px;
    height: 380px;
    bottom: -100px;
    left: -40px;
}

.intro-breakdown .section-header {
    color: white;
}

.intro-breakdown .section-header h2,
.intro-breakdown .section-header p {
    color: white;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.breakdown-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.breakdown-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.breakdown-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.breakdown-card.secondary .breakdown-icon {
    color: var(--secondary);
}

.breakdown-card.accent .breakdown-icon {
    color: var(--accent);
}

.breakdown-card h3 {
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
}

.breakdown-card p {
    color: var(--neutral-600);
}

.feature-highlight {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2.5rem;
}

.feature-highlight .highlight-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.feature-highlight .highlight-copy {
    max-width: 560px;
}

.feature-highlight .highlight-copy ul {
    list-style: none;
    margin: var(--spacing-lg) 0 0;
    padding: 0;
}

.feature-highlight .highlight-copy li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--neutral-700);
}

.feature-highlight .highlight-copy li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.intro-audience {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    overflow: hidden;
}

.intro-audience::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.audience-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
}

.audience-card h4 {
    margin-bottom: var(--spacing-sm);
}

.audience-card p {
    color: var(--neutral-600);
}

.intro-beyond {
    background: #f9f9f9;
}

.beyond-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.beyond-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.beyond-copy .section-badge {
    background: var(--primary);
    color: white;
}

.beyond-copy ul {
    list-style: none;
    margin: var(--spacing-lg) 0 0;
    padding: 0;
}

.beyond-copy li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #eee;
    color: var(--neutral-700);
}

.beyond-copy li:last-child {
    border-bottom: none;
}

.beyond-copy li i {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.intro-agent .agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intro-agent .agent-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.agent-copy {
    max-width: 600px;
}

.agent-list {
    list-style: none;
    margin: var(--spacing-lg) 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.agent-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: var(--neutral-700);
}

.agent-list li i {
    margin-top: 0.2rem;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.agent-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

.agent-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.agent-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.agent-card.secondary i {
    color: var(--secondary);
}

.agent-card.accent i {
    color: var(--accent);
}

.agent-card h4 {
    margin-bottom: var(--spacing-sm);
}

.agent-card p {
    color: var(--neutral-600);
}

.intro-store {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
}

.intro-store::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -90px;
    right: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.store-copy .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.store-copy h2,
.store-copy p,
.store-copy li {
    color: white;
}

.store-copy ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.store-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(1rem, 1.2vw, 1.05rem);
    padding: 0.9rem 0;
}

.store-list i {
    color: #ffeb3b;
    font-size: 1rem;
    flex-shrink: 0;
}

.store-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.intro-howto {
    background: var(--gradient-accent);
    position: relative;
    overflow: hidden;
}

.intro-howto::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    top: -60px;
    left: -60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.intro-howto-bg-shape {
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    filter: blur(10px);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
}

.step-card h4 {
    margin: var(--spacing-3xl) 0 var(--spacing-sm);
}

.step-card p {
    color: var(--neutral-600);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.pulse-anim {
    animation: pulse 2s ease-in-out infinite;
}

.manager-showcase {
    position: relative;
    z-index: 1;
}

.manager-snapshot {
    width: min(100%, 520px);
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
}

.snapshot-label {
    display: inline-flex;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.manager-snapshot strong {
    display: block;
    margin-bottom: 1rem;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.snapshot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.snapshot-row span {
    color: rgba(255, 255, 255, 0.84);
}

.snapshot-row b {
    font-size: 1.2rem;
}

.feature-highlight .highlight-copy li::before {
    content: '';
    top: 0.65rem;
    width: 0.45rem;
    height: 0.45rem;
    background: var(--primary);
    border-radius: 50%;
}

.feature-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.feature-pill-grid span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    color: var(--neutral-800);
    font-weight: 700;
}

.feature-pill-grid i {
    color: var(--secondary);
}

.audience-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.audience-card:hover,
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.audience-card i {
    color: var(--primary);
}

.audience-card.secondary i {
    color: var(--secondary);
}

.audience-card.accent i {
    color: var(--accent);
}

.agent-visual {
    position: relative;
}

.agent-visual img {
    display: block;
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.agent-message {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    color: var(--neutral-800);
    font-weight: 800;
    animation: floatUp 4s ease-in-out infinite;
}

.agent-message i {
    color: var(--secondary);
}

.agent-message-one {
    top: 1.25rem;
    left: -1rem;
}

.agent-message-two {
    right: -1rem;
    bottom: 1.5rem;
    animation-delay: 1s;
}

.store-visual {
    position: relative;
}

.store-card-preview {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.store-card-preview span {
    color: var(--neutral-500);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-card-preview strong {
    color: var(--neutral-900);
}

.feature-chip-cloud,
.business-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin: 2.25rem auto 0;
    max-width: 1040px;
}

.feature-chip-cloud span,
.business-chip-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    color: var(--neutral-900);
    font-weight: 800;
    line-height: 1;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
    animation: chipFloat 7s ease-in-out infinite;
}

.feature-chip-cloud span:nth-child(6n + 1),
.business-chip-cloud span:nth-child(6n + 1) {
    background: #dbeafe;
}

.feature-chip-cloud span:nth-child(6n + 2),
.business-chip-cloud span:nth-child(6n + 2) {
    background: #dcfce7;
    animation-delay: 0.5s;
}

.feature-chip-cloud span:nth-child(6n + 3),
.business-chip-cloud span:nth-child(6n + 3) {
    background: #fef3c7;
    animation-delay: 1s;
}

.feature-chip-cloud span:nth-child(6n + 4),
.business-chip-cloud span:nth-child(6n + 4) {
    background: #fce7f3;
    animation-delay: 1.5s;
}

.feature-chip-cloud span:nth-child(6n + 5),
.business-chip-cloud span:nth-child(6n + 5) {
    background: #ede9fe;
    animation-delay: 2s;
}

.feature-chip-cloud span:nth-child(6n),
.business-chip-cloud span:nth-child(6n) {
    background: #cffafe;
    animation-delay: 2.5s;
}

.feature-chip-cloud span:nth-child(odd),
.business-chip-cloud span:nth-child(odd) {
    transform: translateY(4px);
}

@media (max-width: 768px) {
    .feature-chip-cloud,
    .business-chip-cloud {/* 
        flex-wrap: nowrap;
        overflow-x: auto; */
        justify-content: flex-start;
        padding: 0 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0.6rem;
        margin: 1.5rem auto 0;
    }

    .feature-chip-cloud::-webkit-scrollbar,
    .business-chip-cloud::-webkit-scrollbar {
        display: none;
    }

    .feature-chip-cloud span,
    .business-chip-cloud span {
        min-height: 36px;
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .feature-chip-cloud,
    .business-chip-cloud {
        gap: 0.5rem;
        margin: 1.25rem auto 0;
    }

    .feature-chip-cloud span,
    .business-chip-cloud span {
        min-height: 32px;
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .pos-kit-section .pos-kit-devices {
        grid-template-columns: 1fr;
    }

    .pos-kit-section .pos-device-card {
        min-height: 200px;
    }

    .pos-kit-section .pos-kit-button {
        width: 100%;
        justify-content: center;
    }
}

.features .section-header {
    margin-bottom: 1.5rem;
}

.step-card {
    animation: slideUpFade 0.8s ease-out;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.delay-one {
    animation-delay: 0.1s;
}

.delay-two {
    animation-delay: 0.2s;
}

.delay-three {
    animation-delay: 0.3s;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes chipFloat {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -8px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 100%;
}

.feature-card {
    background: white;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--neutral-200);
    max-width: 350px;
    justify-self: start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: white;
    margin-bottom: var(--spacing-lg);
}

.feature-card.secondary .feature-icon {
    background: var(--gradient-secondary);
}

.feature-card.accent .feature-icon {
    background: var(--gradient-accent);
}

.feature-card h3 {
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.policy-block {
    background: white;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
    margin-bottom: 2rem;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h3 {
    margin-bottom: var(--spacing-sm);
}

.policy-block p {
    margin-top: 0.75rem;
    line-height: 1.85;
}

.policy-block ul,
.policy-links {
    margin-left: 1.5rem;
    color: var(--neutral-600);
    margin-top: 0.75rem;
}

/* ===================================
   DPA SIDEBAR NAVIGATION
   =================================== */
.dpa-sidebar {
    display: none;
    position: relative;
    width: 100%;
    background: transparent;
    padding: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 24px;
    padding: 1rem 1.5rem;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    border-radius: 0.5rem;
}

.sidebar-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neutral-700);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 0.5rem 0;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--neutral-600);
    text-decoration: none;
    font-size: 0.9375rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.sidebar-nav a:hover {
    color: var(--primary);
    background: rgba(30, 58, 138, 0.08);
    border-left-color: var(--primary);
    padding-left: 1.25rem;
}

.sidebar-nav a:active,
.sidebar-nav a.active {
    color: var(--primary);
    background: rgba(30, 58, 138, 0.1);
    border-left-color: var(--primary);
    font-weight: 600;
}

/* Adjust container and content for sidebar on desktop */
@media (min-width: 1024px) {
    .dpa-sidebar {
        display: block;
    }

    /* Layout only for the DPA page */
    .dpa-page {
        display: grid;
        grid-template-columns: var(--sidebar-width) 1fr;
        gap: 2rem;
        align-items: start;
    }

    .dpa-page .container {
        max-width: 100%;
        padding-left: 0;
    }

    .dpa-page .dpa-sidebar {
        width: var(--sidebar-width);
        padding-right: 1rem;
    }
    
    /* Make sidebar sticky within viewport and allow internal scrolling if long */
    .dpa-page .dpa-sidebar {
        position: sticky;
        top: 120px;
        align-self: start;
        height: calc(100vh - 140px);
        overflow: auto;
    }

    .dpa-page .sidebar-sticky {
        position: relative;
        top: 0;
        background: transparent;
        padding: 0 0.5rem;
    }
}

.hero-content .meta-text {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: var(--spacing-sm);
}

.feature-card p {
    color: var(--neutral-600);
    margin-bottom: 0;
    font-size: clamp(0.875rem, 1.25vw, 1rem);
}

.team-avatar {
    width: 100%;
    max-height: 300px;
    /* border-radius: 50%; */
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: 0 auto var(--spacing-lg);
    border: 3px solid var(--neutral-100);
    flex-shrink: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   9. VALUE PROPOSITION
   =================================== */
.value-prop {
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.value-content h2 {
    margin-bottom: var(--spacing-lg);
}

.value-list {
    list-style: none;
    margin-top: var(--spacing-xl);
}

.value-list li {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.value-list-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.value-list-content h4 {
    color: var(--neutral-900);
    margin-bottom: var(--spacing-xs);
}

.value-list-content p {
    margin: 0;
}

.value-image {
    background: var(--neutral-100);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.value-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transform: rotate(45deg);
}

.value-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   10. CTA SECTIONS
   =================================== */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions.cta-center {
    justify-content: center;
    margin-top: 2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.value-icon {
    font-size: 10rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.pos-image {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* ===================================
   11. PRICING
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: clamp(2rem, 5vw, 4rem);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--neutral-200);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: var(--spacing-lg);
    background: var(--accent);
    color: white;
    padding: clamp(0.2rem, 0.5vw, 0.25rem) clamp(0.75rem, 2vw, 1rem);
    border-radius: 2rem;
    font-size: clamp(0.6875rem, 0.9vw, 0.75rem);
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.pricing-price {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin: var(--spacing-lg) 0;
}

.pricing-price span {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--neutral-500);
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-xl) 0;
}

.pricing-features li {
    padding: clamp(0.375rem, 1vw, 0.5rem) 0;
    display: flex;
    gap: var(--spacing-sm);
    color: var(--neutral-600);
    font-size: clamp(0.875rem, 1.25vw, 1rem);
}

.pricing-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

.pricing-faq-section {
    background: linear-gradient(180deg, var(--neutral-50) 0%, #ffffff 100%);
}

.pricing-faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.pricing-faq-copy {
    position: sticky;
    top: 110px;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.pricing-faq-copy h2 {
    margin: 0 0 var(--spacing-md);
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.pricing-faq-copy p {
    margin-bottom: var(--spacing-lg);
}

.pricing-faq-support {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(30, 58, 138, 0.06);
    border: 1px solid rgba(30, 58, 138, 0.12);
    border-radius: var(--radius-lg);
}

.pricing-faq-support i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
}

.pricing-faq-support span,
.pricing-faq-support strong {
    display: block;
}

.pricing-faq-support span {
    color: var(--neutral-500);
    font-size: 0.86rem;
}

.pricing-faq-support strong {
    color: var(--neutral-900);
    font-size: 0.98rem;
}

.pricing-faq-button {
    width: 100%;
    justify-content: center;
}

.pricing-faq-list {
    display: grid;
    gap: 1rem;
}

.pricing-faq-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: clamp(1.1rem, 2.5vw, 1.45rem);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.pricing-faq-card:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 58, 138, 0.35);
    box-shadow: var(--shadow-lg);
}

.pricing-faq-card > i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.pricing-faq-card:nth-child(even) > i {
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
}

.pricing-faq-card h4 {
    margin-bottom: 0.45rem;
    color: var(--neutral-900);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.pricing-faq-card p {
    margin: 0;
    color: var(--neutral-600);
    line-height: 1.65;
}

/* ===================================
   12. TESTIMONIALS
   =================================== */
.testimonials {
    background: var(--neutral-50);
}

.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.testimonial-slider {
    display: flex;
}

.testimonial-slide {
    min-width: 100%;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.testimonial-progress {
    position: absolute;
    top: 0;
    left: auto;
    right: auto;
    width: 70%;
    height: 5px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
    z-index: 2;
}

.testimonial-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--accent);
}

.testimonial-progress.active span {
    animation: progressFill 6000ms linear forwards;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

.testimonial-card {
    background: white;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 760px;
    width: 100%;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--neutral-900);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.testimonial-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: white;
}

.testimonial-prev {
    left: 0.75rem;
}

.testimonial-next {
    right: 0.75rem;
}

.testimonial-quote {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--neutral-700);
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.testimonial-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-info p {
    margin: 0;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 540px) {
    .testimonial-prev,
    .testimonial-next {
        width: 36px;
        height: 36px;
    }
}

/* ===================================
   13. FOOTER
   =================================== */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-400);
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1rem, 2vw, 1.5rem);
}

.footer-cta {
    background: var(--gradient-primary);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    margin-bottom: clamp(2rem, 5vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}

.footer-cta h3 {
    color: white;
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.footer-column h4 {
    color: white;
    margin-bottom: var(--spacing-lg);
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column ul li a, footer p {
    color: var(--neutral-400);
    transition: color var(--transition-base);
    /* font-size: clamp(0.875rem, 1.25vw, 0.9375rem); */
    font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    font-size: clamp(0.8125rem, 1vw, 0.875rem);
}

.footer-social {
    display: flex;
    gap: clamp(0.5rem, 1.5vw, 1rem);
}

.footer-social a {
    width: clamp(36px, 8vw, 40px);
    height: clamp(36px, 8vw, 40px);
    background: var(--neutral-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    transition: all var(--transition-base);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

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

/* ===================================
   14. RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 118%; /* because of navbar height */
        left: -15px;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg);
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }

    .feature-highlight,
    .beyond-grid,
    .intro-agent .agent-split,
    .store-grid {
        grid-template-columns: 1fr;
    }

    .agent-message-one,
    .agent-message-two {
        left: 1rem;
        right: auto;
    }
    
    .footer-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .feature-pill-grid {
        grid-template-columns: 1fr;
    }

    .agent-visual img {
        min-height: 320px;
    }

    .store-card-preview {
        position: static;
        margin-top: 1rem;
    }

    .pos-kit-section .pos-kit-grid {
        grid-template-columns: 1fr;
    }

    .pos-kit-section .pos-kit-button {
        position: static;
        transform: none;
        margin: 1.75rem auto 0;
        display: inline-flex;
    }

    .pos-kit-section .pos-kit-devices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pos-kit-section .pos-kit-copy {
        padding: 1.5rem 1.25rem;
    }

    .pricing-faq-layout {
        grid-template-columns: 1fr;
    }

    .pricing-faq-copy {
        position: static;
    }
    
    /* .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    } */
}

/* ===================================
   15. UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-white { color: white; }

.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-accent { background: var(--accent); }
.bg-light { background: var(--neutral-100); }
.bg-dark { background: var(--neutral-900); }

/* ===================================
   16. ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spinIn {
    from {
        opacity: 0;
        transform: rotate(-24deg) scale(0.72);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sketchGlow {
    0%, 100% {
        opacity: 0.55;
        transform: translateX(-2px) rotate(-1deg);
    }
    50% {
        opacity: 0.9;
        transform: translateX(2px) rotate(1deg);
    }
}

/* ===================================
   17. FAQ ACCORDION
   =================================== */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.faq-column h2 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--spacing-md);
}

.accordion-item {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.accordion-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.accordion-item.open {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
}

.accordion-trigger {
    width: 100%;
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: clamp(0.9375rem, 1.25vw, 1rem);
    font-weight: 600;
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    transition: all var(--transition-base);
}

.accordion-trigger:hover {
    color: var(--primary);
}

.accordion-trigger:active {
    transform: scale(0.98);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), opacity var(--transition-base);
    opacity: 0;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
    opacity: 1;
}

.accordion-inner {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.accordion-text {
    color: var(--neutral-600);
    line-height: 1.75;
    font-size: clamp(0.8875rem, 1vw, 0.9375rem);
    margin: 0;
}

.accordion-text a {
    color: var(--primary);
    font-weight: 600;
    transition: color var(--transition-base);
}

.accordion-text a:hover {
    color: var(--primary-light);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 2vw, 1.5rem);
    }
    
    .accordion-trigger {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 0.9375rem;
    }
    
    .accordion-inner {
        padding: 0 var(--spacing-lg) var(--spacing-md);
    }
    
    .faq-column h2 {
        font-size: clamp(1.375rem, 2.5vw, 1.5rem);
    }
}

@keyframes waveMove {
    0% {
        transform: scaleX(0.95) translateX(-10px);
        opacity: 0.4;
    }
    50% {
        transform: scaleX(1) translateX(0px);
        opacity: 1;
    }
    100% {
        transform: scaleX(0.95) translateX(10px);
        opacity: 0.4;
    }
}

@keyframes borderRotate {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 300% 0%;
    }
}

@keyframes borderLight {
    0% {
        border-color: #3B82F6 rgba(59, 130, 246, 0.35) transparent transparent;
        box-shadow: 0 -2px 10px rgba(59, 130, 246, 0.45);
    }
    12.5% {
        border-color: rgba(59, 130, 246, 0.35) #3B82F6 rgba(59, 130, 246, 0.18) transparent;
        box-shadow: 2px 0 10px rgba(59, 130, 246, 0.45);
    }
    25% {
        border-color: transparent #3B82F6 rgba(59, 130, 246, 0.35) transparent;
        box-shadow: 2px 0 10px rgba(59, 130, 246, 0.45);
    }
    37.5% {
        border-color: transparent rgba(59, 130, 246, 0.35) #3B82F6 rgba(59, 130, 246, 0.18);
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.45);
    }
    50% {
        border-color: transparent transparent #3B82F6 rgba(59, 130, 246, 0.35);
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.45);
    }
    62.5% {
        border-color: rgba(59, 130, 246, 0.18) transparent rgba(59, 130, 246, 0.35) #3B82F6;
        box-shadow: -2px 0 10px rgba(59, 130, 246, 0.45);
    }
    75% {
        border-color: rgba(59, 130, 246, 0.35) transparent transparent #3B82F6;
        box-shadow: -2px 0 10px rgba(59, 130, 246, 0.45);
    }
    87.5% {
        border-color: #3B82F6 rgba(59, 130, 246, 0.18) transparent rgba(59, 130, 246, 0.35);
        box-shadow: 0 -2px 10px rgba(59, 130, 246, 0.45);
    }
    100% {
        border-color: #3B82F6 rgba(59, 130, 246, 0.35) transparent transparent;
        box-shadow: 0 -2px 10px rgba(59, 130, 246, 0.45);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
}

/* Custom animation engine will handle animations via requestAnimationFrame */

.slide-left {
    opacity: 1;
    transform: translateX(0);
    will-change: opacity, transform;
}

.slide-right {
    opacity: 1;
    transform: translateX(0);
    will-change: opacity, transform;
}

.rotate-on-load {
    display: inline-block;
    will-change: transform;
}

.wave-line {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.55), rgba(255,255,255,0.15));
    border-radius: 999px;
    margin-top: 1rem;
    opacity: 0;
}

.wave-line.wave-line-animate {
    animation: waveMove 2.2s ease-in-out infinite;
    opacity: 1;
}

.hero .hero-badge {
    border: 1px solid rgba(255,255,255,0.18);
}

.hero .hero-actions .btn {
    min-width: 190px;
}

.hero .hero-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 24px 100px rgba(17, 24, 39, 0.12);
}

.hero .hero-card h3,
.hero .hero-card p {
    color: white;
}

.app-kit-grid {
    display: grid;
    gap: var(--spacing-xl);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.app-kit-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.app-kit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.app-kit-card .app-kit-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: white;
    font-size: 1.5rem;
}

.app-kit-card[data-variant="desktop"] .app-kit-icon {
    background: var(--gradient-secondary);
}

.app-kit-card[data-variant="mobile"] .app-kit-icon {
    background: var(--gradient-primary);
}

.app-kit-card[data-variant="web"] .app-kit-icon {
    background: var(--gradient-accent);
}

.app-kit-card h3 {
    margin-bottom: var(--spacing-sm);
}

.app-kit-card p {
    margin-bottom: 0;
    color: var(--neutral-600);
}

/* ===================================
   HOMEPAGE INTRO SECTIONS - CLEAN RESET
   =================================== */
.intro-breakdown,
.intro-manual,
.intro-features,
.intro-audience,
.intro-beyond,
.intro-agent,
.intro-store,
.intro-howto {
    position: relative;
    overflow: hidden;
}

.intro-breakdown::before,
.intro-breakdown::after,
.intro-audience::before,
.intro-store::before,
.intro-howto::before,
.intro-howto-bg-shape {
    display: none;
}

.intro-breakdown {
    background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
}

.intro-features,
.intro-beyond,
.intro-howto {
    background: #ffffff;
}

.intro-audience,
.intro-agent {
    background: var(--neutral-50);
}

.intro-manual {
    background: #ffffff;
}

.intro-store {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.intro-breakdown .section-header,
.intro-breakdown .section-header h2,
.intro-breakdown .section-header p,
.intro-audience .section-header,
.intro-audience .section-header h2,
.intro-audience .section-header p,
.intro-howto .section-header,
.intro-howto .section-header h2,
.intro-howto .section-header p {
    color: var(--neutral-900);
}

.intro-store .section-header h2,
.intro-store .section-header p,
.store-copy h2,
.store-copy p,
.store-copy li {
    color: white;
}

.manager-showcase {
    display: grid;
    gap: 2rem;
}

.manager-snapshot {
    width: 100%;
    max-width: 760px;
    background: white;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-900);
    box-shadow: var(--shadow-lg);
    backdrop-filter: none;
}

.snapshot-label,
.snapshot-row span {
    color: var(--neutral-500);
}

.snapshot-row {
    border-top-color: var(--neutral-200);
}

.breakdown-grid,
.audience-grid,
.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.breakdown-card,
.audience-card,
.step-card {
    min-height: 100%;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.breakdown-card:hover,
.audience-card:hover,
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.breakdown-icon,
.audience-card i {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    font-size: 1.35rem;
}

.breakdown-card.secondary .breakdown-icon,
.audience-card.secondary i {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.breakdown-card.accent .breakdown-icon,
.audience-card.accent i {
    background: var(--black-800)/* rgba(245, 158, 11, 0.12) */;
    color: var(--accent);
}

.feature-highlight,
.beyond-grid,
.intro-agent .agent-split,
.store-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.feature-highlight .highlight-image,
.beyond-image,
.agent-visual img,
.store-image {
    width: 100%;
    height: clamp(280px, 34vw, 430px);
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.highlight-copy,
.agent-copy,
.store-copy {
    max-width: 620px;
}

.feature-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agent-visual,
.store-visual {
    display: grid;
    gap: 0.75rem;
}

.agent-message,
.store-card-preview {
    position: static;
    width: fit-content;
    max-width: 100%;
    animation: none;
    transform: none;
}

.agent-message {
    border: 1px solid var(--neutral-200);
}

.store-card-preview {
    background: rgba(255, 255, 255, 0.96);
}

.step-card h4 {
    margin: 2.25rem 0 var(--spacing-sm);
}

.step-number {
    top: -18px;
}

.manual-work-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.manual-work-copy {
    max-width: 680px;
}

.manual-work-copy h2 {
    margin-bottom: var(--spacing-md);
}

.manual-work-copy p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.manual-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.manual-list {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    background: var(--neutral-50);
}

.manual-list.new-way {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.22);
}

.manual-list-label {
    display: block;
    color: var(--neutral-900);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.manual-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.manual-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--neutral-700);
    line-height: 1.5;
}

.manual-list i {
    margin-top: 0.2rem;
}

.manual-list.old-way i {
    color: #ef4444;
}

.manual-list.new-way i {
    color: var(--secondary);
}

.manual-work-visual {
    position: relative;
}

.manual-work-visual img {
    width: 100%;
    height: clamp(300px, 36vw, 440px);
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.manual-status-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: calc(100% - 2rem);
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.manual-status-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
}

.manual-status-card span,
.manual-status-card strong {
    display: block;
}

.manual-status-card span {
    color: var(--neutral-500);
    font-size: 0.82rem;
}

.manual-status-card strong {
    color: var(--neutral-900);
    font-size: 0.98rem;
}

.manual-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.manual-benefit-card {
    min-height: 100%;
    padding: clamp(1.2rem, 2.5vw, 1.6rem);
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.manual-benefit-card > i {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    font-size: 1.25rem;
}

.manual-benefit-card.secondary > i {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.manual-benefit-card.accent > i {
    background: var(--black-800);
    color: var(--accent);
}

.manual-benefit-card h3 {
    margin-bottom: 0.6rem;
    color: var(--neutral-900);
}

.manual-benefit-card p {
    margin: 0;
    color: var(--neutral-600);
}

@media (max-width: 992px) {
    .feature-highlight,
    .beyond-grid,
    .intro-agent .agent-split,
    .store-grid,
    .manual-work-grid {
        grid-template-columns: 1fr;
    }

    .feature-highlight .highlight-image,
    .beyond-image,
    .agent-visual img,
    .store-image {
        height: clamp(240px, 48vw, 360px);
    }

    .manual-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    p {
        line-height: 1.5;
    }
}

@media (max-width: 640px) {
    .feature-pill-grid {
        grid-template-columns: 1fr;
    }

    .manual-comparison,
    .manual-benefit-grid {
        grid-template-columns: 1fr;
    }

    .manual-status-card {
        position: static;
        margin-top: 0.75rem;
    }

    .manager-snapshot {
        padding: 1.1rem;
    }
    .team-avatar {
        max-height: 280px;
    }
}

@media (max-width: 520px) {
    .pricing-faq-card {
        grid-template-columns: 1fr;
    }

    .pricing-faq-card > i {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 82px;
    }
}
