/* ===== CSS Variables ===== */
:root {
    /* Colors - Sophisticated Charcoal Palette (matching dashboard) */
    --primary: #374151;
    --primary-dark: #1F2937;
    --primary-light: #4B5563;
    --secondary: #6B7280;
    --secondary-dark: #4B5563;
    
    /* Accent - Black to Blue gradient accent */
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --gray-950: #030712;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 200ms ease;
    --transition-slow: 300ms ease;
}

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

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

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--gray-50);
    overflow-x: hidden;
}

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

img, svg {
    max-width: 100%;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Utility Classes ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #000000 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Light gradient for dark backgrounds (white to dark blue) */
.hero .gradient-text,
.demo-video .gradient-text,
.cta .gradient-text,
.testimonials .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

/* Hero-specific button variants */
.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000, #2563eb);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--gray-900);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    filter: brightness(0.3) saturate(0.8);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(31, 41, 55, 0.85) 50%, rgba(37, 99, 235, 0.2) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(96, 165, 250, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(37, 99, 235, 0.12), transparent);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black, transparent);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.25s both;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.pill img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pill-icon svg {
    width: 20px;
    height: 20px;
}

.pill-icon--nfc {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.pill-icon--qr {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.pill-icon--ai {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

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

/* Dashboard Preview */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-float img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.float-icon svg {
    width: 16px;
    height: 16px;
}

.hero-float--nfc .float-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.hero-float--qr .float-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.hero-float--ai .float-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
}

.hero-float--nfc {
    top: -18px;
    left: -18px;
}

.hero-float--qr {
    bottom: -18px;
    left: 14%;
}

.hero-float--ai {
    top: 18%;
    right: -22px;
}

.dashboard-preview {
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
}

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

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}

.preview-dots span:first-child { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:last-child { background: #10B981; }

.preview-title {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.preview-content {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 280px;
}

.preview-sidebar {
    padding: 1rem;
    background: var(--gray-800);
    border-right: 1px solid var(--gray-700);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
    transition: all var(--transition);
}

.sidebar-item.active {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
}

.sidebar-icon {
    width: 16px;
    height: 16px;
    background: currentColor;
    border-radius: 3px;
    opacity: 0.6;
}

.preview-main {
    padding: 1rem;
}

.preview-card {
    background: var(--gray-800);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-300);
}

.status-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.online {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
}

.door-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.door-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-700);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--gray-300);
}

.door-icon {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.door-item.locked .door-icon { background: var(--success); }
.door-item.unlocked .door-icon { background: var(--warning); }

.preview-events {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-800);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--gray-400);
}

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

.event-dot.success { background: var(--success); }
.event-dot.warning { background: var(--warning); }

.event-time {
    margin-left: auto;
    opacity: 0.6;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.6s ease 0.6s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ===== Demo Video Section ===== */
.demo-video {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.demo-video .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #60a5fa;
}

.demo-video .section-title {
    color: white;
}

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

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--gray-800);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Coming Soon placeholder */
.video-wrapper.video-coming-soon {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
    border: 2px dashed var(--gray-600);
}

.coming-soon-content {
    text-align: center;
    padding: 2rem;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--gray-500);
    opacity: 0.8;
}

.coming-soon-icon svg {
    width: 100%;
    height: 100%;
}

.coming-soon-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.coming-soon-content p {
    color: var(--gray-400);
    font-size: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .video-wrapper {
        border-radius: var(--radius-lg);
    }
    
    .video-wrapper.video-coming-soon {
        min-height: 250px;
    }
    
    .coming-soon-icon {
        width: 60px;
        height: 60px;
    }
    
    .coming-soon-content h3 {
        font-size: 1.25rem;
    }
    
    .coming-soon-content p {
        font-size: 0.875rem;
    }
}

/* ===== Trusted By Section ===== */
.trusted-by {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid var(--gray-100);
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.logo-carousel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
}

.company-logo {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
}

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

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(55, 65, 81, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

/* ===== Features Section ===== */
.features {
    padding: var(--section-padding) 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    background: white;
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    border-color: var(--gray-700);
    color: white;
}

.feature-card.featured:hover {
    background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
}

.feature-card.featured h3 {
    color: white;
}

.feature-card.featured p {
    color: var(--gray-300);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.feature-card.featured .feature-icon {
    color: #60a5fa;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-300);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ===== Access Methods ===== */
.access-methods {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.access-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.access-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.access-media {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.access-media img {
    width: 56px;
    height: 56px;
}

/* Photo-style access media */
.access-media.access-media--photo {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
}

.access-media.access-media--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.access-card:hover .access-media--photo img {
    transform: scale(1.05);
}

/* Icon-style access cards */
.access-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}

.access-icon svg {
    width: 40px;
    height: 40px;
    transition: transform var(--transition);
}

.access-card:hover .access-icon svg {
    transform: scale(1.1);
}

.access-icon--nfc {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1d4ed8;
}

.access-icon--qr {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #047857;
}

.access-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.access-card p {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.access-steps {
    margin-left: 1.25rem;
    color: var(--gray-700);
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
}

.access-note {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.access-note-card {
    width: 100%;
    max-width: 860px;
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(31, 41, 55, 0.12);
}

.access-note-card strong {
    color: var(--gray-900);
    font-weight: 800;
    white-space: nowrap;
}

.access-note-card span {
    color: var(--gray-600);
    font-weight: 600;
}

/* ===== AI Reporting ===== */
.ai-reports {
    padding: var(--section-padding) 0;
    background: white;
}

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

.ai-copy .section-badge {
    margin-bottom: 1rem;
}

.ai-copy .section-title,
.ai-copy .section-subtitle {
    text-align: left;
}

.ai-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.75rem 0 2rem;
}

.ai-prompt {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-weight: 700;
    font-size: 0.875rem;
}

.ai-bullets {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.ai-bullet {
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.05), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(55, 65, 81, 0.12);
}

.ai-bullet strong {
    color: var(--gray-900);
    font-weight: 800;
}

.ai-bullet span {
    color: var(--gray-600);
    font-weight: 600;
}

.report-preview {
    border-radius: var(--radius-xl);
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
}

.report-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(37, 99, 235, 0.18);
    color: #93c5fd;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.report-meta {
    color: var(--gray-400);
    font-weight: 700;
    font-size: 0.8125rem;
}

.report-body {
    padding: 1.25rem;
    display: grid;
    gap: 1rem;
}

.report-chat {
    display: grid;
    gap: 0.75rem;
}

.chat-row {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.55;
}

.chat-row--user {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gray-300);
}

.chat-row--ai {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.35);
    color: #e5e7eb;
}

.report-chart {
    height: 110px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gray-700);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: end;
    gap: 0.5rem;
    padding: 0.75rem;
}

.report-chart .bar {
    height: var(--h, 40%);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.95), rgba(37, 99, 235, 0.85));
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.report-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.report-chip {
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--gray-700);
    color: var(--gray-300);
    font-weight: 700;
    font-size: 0.75rem;
}

/* ===== Why Us ===== */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.why-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
}

.why-points {
    display: grid;
    gap: 1.25rem;
}

.why-point {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.why-point h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.why-point p {
    color: var(--gray-600);
    font-weight: 600;
}

.comparison {
    display: flex;
    justify-content: center;
}

.comparison-card {
    width: 100%;
    max-width: 980px;
    padding: 2rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 0.5rem 1rem;
    align-items: center;
}

.comparison-col--head {
    padding: 0.75rem 0.75rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.comparison-row-title {
    padding: 0.9rem 0.75rem;
    border-top: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-weight: 700;
}

.comparison-cell {
    padding: 0.9rem 0.75rem;
    border-top: 1px solid var(--gray-100);
    border-radius: 12px;
    font-weight: 800;
}

.comparison-cell.yes {
    background: rgba(16, 185, 129, 0.12);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.22);
}

.comparison-cell.no {
    background: rgba(239, 68, 68, 0.08);
    color: #7f1d1d;
    border: 1px solid rgba(239, 68, 68, 0.16);
}

.comparison-footnote {
    margin-top: 1.25rem;
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.step-visual {
    margin-top: 1.5rem;
    color: var(--gray-400);
}

.step-visual svg {
    width: 80px;
    height: 80px;
}

.step-connector {
    width: 100px;
    flex-shrink: 0;
    color: var(--gray-300);
}

/* ===== Industries Section ===== */
.industries {
    padding: var(--section-padding) 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    padding: 2rem;
    text-align: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.industry-card:hover {
    background: white;
    border-color: var(--gray-700);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.industry-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--gray-700);
}

.industry-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* ===== Pricing Section ===== */
.pricing {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: color var(--transition);
}

.toggle-label.active {
    color: var(--gray-900);
}

.save-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-left: 0.25rem;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    background: var(--gray-200);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition);
}

.toggle-switch.active {
    background: var(--gray-700);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Simple 2-column pricing layout */
.pricing-grid.pricing-simple {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.pricing-card.popular {
    border-color: var(--gray-700);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--gray-700);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.pricing-header p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-500);
}

.pricing-price .amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    transition: all 0.15s ease;
}

.pricing-price .amount.custom {
    font-size: 2.25rem;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    flex-shrink: 0;
    color: var(--success);
}

/* Hardware Pricing */
.hardware-pricing {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hardware-card {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    border-radius: var(--radius-xl);
    color: white;
    align-items: center;
}

.hardware-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    color: #60a5fa;
}

.hardware-icon svg {
    width: 100%;
    height: 100%;
}

.hardware-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hardware-content > p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hardware-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hardware-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.hardware-period {
    font-size: 1rem;
    color: var(--gray-400);
}

.hardware-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.hardware-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.hardware-features svg {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    flex-shrink: 0;
    color: var(--success);
}

.pricing-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
    gap: 1rem;
}

.pricing-divider::before,
.pricing-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
    max-width: 200px;
}

.pricing-divider span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Responsive Hardware Card */
@media (max-width: 768px) {
    .hardware-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .hardware-icon {
        width: 80px;
        height: 80px;
    }
    
    .hardware-price {
        justify-content: center;
    }
    
    .hardware-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .hardware-content > p {
        font-size: 0.9375rem;
    }
}

/* Pricing Includes Badge */
.pricing-includes {
    text-align: center;
    margin-bottom: 1.5rem;
}

.includes-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: #065f46;
}

.includes-badge.secondary {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.08), rgba(55, 65, 81, 0.15));
    border-color: rgba(55, 65, 81, 0.25);
    color: var(--gray-700);
}

/* Add-on Card Styling */
.pricing-card.addon-card {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.pricing-card.addon-card:hover {
    background: white;
    border-color: var(--gray-300);
}

/* Pricing Calculator */
.pricing-calculator {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.pricing-calculator h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.calculator-examples {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.calc-example {
    padding: 1.25rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.calc-example:hover {
    background: white;
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.calc-doors {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.calc-breakdown {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.calc-total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-800);
    background: linear-gradient(135deg, var(--gray-900), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enterprise Option */
.enterprise-option {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.enterprise-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.enterprise-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.enterprise-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

/* Responsive pricing additions */
@media (max-width: 1024px) {
    .calculator-examples {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid.pricing-simple {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .calculator-examples {
        grid-template-columns: 1fr 1fr;
    }
    
    .enterprise-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .enterprise-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .calculator-examples {
        grid-template-columns: 1fr;
    }
    
    .pricing-calculator {
        padding: 1.5rem;
    }
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.testimonials .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #60a5fa;
}

.testimonials .section-title {
    color: white;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gray-600);
    transform: translateY(-4px);
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: #2563eb;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-700), #2563eb);
    color: white;
    font-weight: 700;
    border-radius: 50%;
}

.author-info strong {
    display: block;
    color: white;
    font-weight: 600;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== CTA Section ===== */
.cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
}

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

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta > .container > .cta-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--gray-900);
    transition: all var(--transition);
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--gray-700);
    box-shadow: 0 0 0 3px rgba(55, 65, 81, 0.1);
}

.cta-form input::placeholder {
    color: var(--gray-400);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-note a {
    color: white;
    text-decoration: underline;
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding) 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-700);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.contact-item a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-600);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gray-700);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    padding: 2.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--gray-900);
    transition: all var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gray-700);
    box-shadow: 0 0 0 3px rgba(55, 65, 81, 0.1);
}

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

/* ===== Footer ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

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

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badges .badge {
    padding: 0.375rem 0.75rem;
    background: var(--gray-800);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--gray-900);
    color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-slow);
    z-index: 2000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    color: var(--success);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-pills {
        justify-content: center;
    }

    .hero-visual {
        display: block;
        max-width: 600px;
        margin: 2rem auto 0;
    }

    .dashboard-preview {
        transform: none;
    }
    
    .preview-content {
        min-height: 220px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card.featured {
        grid-row: auto;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-connector {
        transform: rotate(90deg);
        width: 50px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        padding: 0.75rem 0;
    }
    
    .nav-cta {
        margin: 1rem 0 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero {
        padding: 5rem 0 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .dashboard-preview {
        transform: none;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
    }
    
    .preview-sidebar {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .access-card {
        padding: 2rem;
    }

    .access-note-card {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .ai-copy .section-title,
    .ai-copy .section-subtitle {
        text-align: center;
    }

    .ai-prompts {
        justify-content: center;
    }

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

    .comparison-card {
        padding: 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .comparison-col--head:first-child {
        display: none;
    }

    .comparison-row-title {
        grid-column: 1 / -1;
        border-top: 1px solid var(--gray-100);
        margin-top: 0.25rem;
    }

    .comparison-cell {
        border-top: none;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4.5rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .hero-visual {
        margin-top: 1.5rem;
    }
    
    .preview-main {
        padding: 0.75rem;
    }
    
    .door-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .cta-form {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ===== Animations on Scroll ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.feature-card,
.industry-card,
.pricing-card,
.testimonial-card,
.access-card,
.why-point,
.comparison-card,
.report-preview {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.visible,
.industry-card.visible,
.pricing-card.visible,
.testimonial-card.visible,
.access-card.visible,
.why-point.visible,
.comparison-card.visible,
.report-preview.visible {
    opacity: 1;
    transform: translateY(0);
}
