@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Healthcare SaaS Palette */
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    --secondary: #60a5fa;
    --accent: #10b981;
    --accent-pink: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Neutrals */
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #f0fdf4 100%);
    --gradient-warm: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 50%, #d1fae5 100%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, rgba(30, 58, 138, 0.12) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(96, 165, 250, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(16, 185, 129, 0.1) 0px, transparent 50%);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(30, 58, 138, 0.25);
    --shadow-glow-cyan: 0 0 40px rgba(59, 130, 246, 0.25);
    
    /* Radius */
    --radius-sm: 0.5rem;
    --radius: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-full: 9999px;
    
    /* Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html.lenis, html.lenis body {
    height: auto;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   BUTTONS - Modern with hover effects
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: var(--shadow-md), 0 4px 20px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(30, 58, 138, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(16, 185, 129, 0.4);
}

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

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

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

.btn-block {
    width: 100%;
}

/* ============================================
   HEADER - Glassmorphism
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.header .logo-img {
    height: 44px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.08);
}

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

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-link-dropdown svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link-dropdown svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 340px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out-expo);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--gray-50);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.dropdown-icon.purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    color: var(--primary);
}

.dropdown-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
    color: var(--secondary);
}

.dropdown-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--success);
}

.dropdown-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: var(--accent);
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.dropdown-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.dropdown-desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.4;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .dropdown-menu { display: none; }
}

/* Mobile Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   MOBILE NAVIGATION OVERLAY
   ============================================ */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-container {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-nav-header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav-header .logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.mobile-nav-header .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-nav-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.2s ease;
}

.mobile-nav-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.mobile-nav-links {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link svg {
    color: var(--gray-400);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.08) 0%, transparent 100%);
    color: var(--primary);
    border-left-color: var(--primary);
    text-decoration: none;
}

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

.mobile-nav-section {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-section-title {
    display: block;
    padding: 0.5rem 1.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
}

.mobile-nav-sublink {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-size: 0.9375rem;
}

.mobile-nav-sublink svg {
    width: 18px;
    height: 18px;
}

.mobile-nav-cta {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.mobile-nav-cta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.mobile-nav-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.mobile-nav-footer {
    padding: 1rem 1.5rem 2rem;
    text-align: center;
}

.mobile-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-social-link:hover {
    color: #0077b5;
    text-decoration: none;
}

.mobile-social-link svg {
    color: #0077b5;
}

/* Animation delays for menu items */
.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) { animation: slideInRight 0.3s ease 0.1s both; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) { animation: slideInRight 0.3s ease 0.15s both; }
.mobile-nav-overlay.active .mobile-nav-section { animation: slideInRight 0.3s ease 0.2s both; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) { animation: slideInRight 0.3s ease 0.25s both; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) { animation: slideInRight 0.3s ease 0.3s both; }

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

/* ============================================
   HERO - Animated mesh background
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    animation: mesh-float 20s ease-in-out infinite;
}

@keyframes mesh-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(2%, 2%) scale(1.02); }
    50% { transform: translate(-1%, 3%) scale(1.01); }
    75% { transform: translate(1%, -2%) scale(1.03); }
}

.hero .container {
    position: relative;
    z-index: 1;
    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.5rem 1rem 0.5rem 0.625rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    animation: fade-in-up 0.8s var(--ease-out-expo) both;
}

.hero-badge svg {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.1s both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.3s both;
}

.hero-image,
.hero-visual {
    position: relative;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.4s both;
}

.dashboard-preview {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.dashboard-preview img {
    display: block;
    width: 100%;
    border-radius: var(--radius-xl);
}

/* Enterprise Dashboard Hero */
.hero-visual {
    position: relative;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.4s both;
}

.dashboard-scene {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

/* Main Dashboard Window */
.dash-main {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(30, 58, 138, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

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

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

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

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

.dash-dots span:first-child { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28ca41; }

.dash-title {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
}

.dash-actions {
    display: flex;
    gap: 8px;
}

.dash-actions span {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.dash-body {
    display: flex;
    min-height: 280px;
}

.dash-sidebar {
    width: 50px;
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    width: 30px;
    height: 30px;
    background: var(--gray-200);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sidebar-item.active {
    background: var(--primary);
}

.dash-content {
    flex: 1;
    padding: 20px;
    background: var(--gray-50);
}

.content-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
}

.stat-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

.stat-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.stat-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stat-label {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.chart-area {
    background: white;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.chart-header span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
}

.chart-tabs {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 3px;
    border-radius: 6px;
}

.chart-tabs span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-500);
}

.chart-tabs span.active {
    background: white;
    color: var(--gray-800);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.chart-graph {
    height: 80px;
}

.chart-graph svg {
    width: 100%;
    height: 100%;
}

/* Floating Panels */
.float-panel {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.18), 0 5px 15px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.panel-agent {
    top: -20px;
    right: -30px;
    animation: floatPanel1 5s ease-in-out infinite;
}

.panel-optimize {
    bottom: 60px;
    left: -40px;
    animation: floatPanel2 6s ease-in-out infinite;
}

.panel-notify {
    bottom: -15px;
    right: 40px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 500;
    animation: floatPanel3 4s ease-in-out infinite;
}

.panel-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.panel-text {
    display: flex;
    flex-direction: column;
}

.panel-text strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-900);
}

.panel-text span {
    font-size: 11px;
    color: var(--gray-500);
}

.panel-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: auto;
}

.panel-status.online {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: pulse-status 2s ease-in-out infinite;
}

.optimize-ring {
    position: relative;
    width: 44px;
    height: 44px;
}

.optimize-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.optimize-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
}

.notify-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

/* Panel Animations */
@keyframes floatPanel1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, -12px); }
}

@keyframes floatPanel2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -8px); }
}

@keyframes floatPanel3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-6px, 8px); }
}

@keyframes pulse-status {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1); }
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-scene {
        max-width: 100%;
        padding: 0 10px;
    }

    .dash-main {
        transform: none;
    }

    .float-panel {
        display: none;
    }

    .content-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .stat-card {
        padding: 12px;
    }

    .dash-body {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .dash-sidebar {
        width: 40px;
        padding: 12px 6px;
    }

    .sidebar-item {
        width: 26px;
        height: 26px;
    }

    .dash-content {
        padding: 12px;
    }

    .stat-value {
        font-size: 14px;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content { max-width: none; }
    .hero-buttons { justify-content: center; }
    .hero-image, .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
}

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

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

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

/* ============================================
   FEATURES - Glassmorphism cards
   ============================================ */
.features {
    padding: 7rem 0;
    background: var(--white);
    position: relative;
}

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

.feature-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    color: var(--primary);
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: var(--accent);
}

.feature-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
    color: var(--secondary);
}

.feature-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--success);
}

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

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

.feature-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

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

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

/* ============================================
   INDUSTRIES - Modern cards with icons
   ============================================ */
.industries {
    padding: 7rem 0;
    background: var(--gradient-warm);
    position: relative;
}

.industries::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

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

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

.industry-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid transparent;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.industry-icon-svg {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-lg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-expo);
}

.industry-card:hover .industry-icon-svg {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

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

.industry-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================
   STATS - Animated counters
   ============================================ */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(at 20% 50%, rgba(124, 58, 237, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(6, 182, 212, 0.2) 0px, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ============================================
   SERVICES - Professional grid
   ============================================ */
.services-section {
    padding: 7rem 0;
    background: var(--gray-50);
}

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

.service-item {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

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

.service-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.services-cta {
    text-align: center;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .service-icon {
        margin: 0 auto;
    }
}

/* ============================================
   BLOG - Modern cards
   ============================================ */
.blog-section {
    padding: 7rem 0;
    background: var(--gray-50);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid var(--gray-100);
}

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

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-image .placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    color: var(--gray-300);
}

.blog-card-content {
    padding: 1.75rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.blog-card-category {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--primary);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.blog-card-link svg {
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================
   CTA - Gradient with floating elements
   ============================================ */
.cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

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

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

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-accent {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.cta .btn-accent:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

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

.footer-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-img {
    height: 44px;
    width: auto;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-contact {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.7;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

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

.page-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.contact-info-panel > * {
    position: relative;
    z-index: 1;
}

.contact-info-panel h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-info-panel > p {
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

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

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.contact-item span {
    font-size: 0.9375rem;
}

.contact-social {
    margin-top: auto;
    padding-top: 2rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

.contact-form-panel {
    background: var(--white);
    padding: 3rem;
}

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

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

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

.contact-form label .required {
    color: var(--accent);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

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

.form-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    border-left: 4px solid var(--danger);
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

.success-card {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: var(--radius-full);
    color: var(--success);
    margin-bottom: 1.5rem;
}

.success-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.success-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SINGLE POST / BLOG ARTICLE
   ============================================ */
.blog-article {
    background: var(--white);
}

.article-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}

.back-to-blog:hover {
    color: var(--primary);
}

.article-category {
    margin-bottom: 1.5rem;
}

.article-category span {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.article-date {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.article-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.article-featured-image {
    margin-bottom: 3rem;
}

.featured-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    padding: 0 0 4rem;
}

.article-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.article-content p {
    margin-bottom: 1.75rem;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.625rem;
    padding-left: 0.5rem;
}

.article-content li::marker {
    color: var(--primary);
}

.article-content blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-700);
}

.article-content blockquote p:last-child {
    margin-bottom: 0;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--primary-dark);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.article-content pre,
.article-content code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
}

.article-content code {
    background: var(--gray-100);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    color: var(--primary-dark);
}

.article-content pre {
    background: var(--gray-900);
    color: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 2rem 0;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.article-content strong {
    font-weight: 600;
    color: var(--gray-900);
}

.article-footer {
    max-width: 700px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tags .tag {
    padding: 0.375rem 0.875rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s ease;
}

.article-tags .tag:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.article-nav {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
}

@media (max-width: 768px) {
    .article-header {
        padding: 7rem 0 3rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Legacy post styles for compatibility */
.post-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.post-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0 4rem;
}

.post-body {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.post-body p {
    margin-bottom: 1.75rem;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    color: var(--gray-900);
    font-weight: 700;
}

.post-body h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

.post-body h3 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.625rem;
}

.post-body strong {
    font-weight: 600;
    color: var(--gray-900);
}

/* ============================================
   ANIMATIONS - Scroll triggered
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

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

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.py-4 { padding: 2rem 0; }

/* ============================================
   SERVICE PAGES
   ============================================ */
.service-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 5rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    animation: mesh-float 20s ease-in-out infinite;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

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

.service-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.service-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.service-hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.service-hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.service-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Service Problems Section */
.service-problems {
    padding: 6rem 0;
    background: var(--white);
}

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

.problem-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

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

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: var(--danger);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
}

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

.problem-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

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

/* Service Solution Section */
.service-solution {
    padding: 6rem 0;
    background: var(--gray-50);
}

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

.solution-text .section-label {
    margin-bottom: 1rem;
}

.solution-text .section-title {
    text-align: left;
    margin-bottom: 1.25rem;
}

.solution-text p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.solution-features li svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--success);
}

.solution-visual {
    position: relative;
}

/* Conversation Demo */
.conversation-demo, .chatbot-demo {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.demo-header, .preview-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

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

.demo-dot.red, .preview-dot.red { background: #ff5f57; }
.demo-dot.yellow, .preview-dot.yellow { background: #febc2e; }
.demo-dot.green, .preview-dot.green { background: #28c840; }

.demo-header span, .preview-header span {
    margin-left: auto;
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
}

.demo-content {
    padding: 1.5rem;
}

.chat-message {
    margin-bottom: 1rem;
}

.chat-message:last-child {
    margin-bottom: 0;
}

.chat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.375rem;
}

.chat-message.ai .chat-label {
    color: var(--primary);
}

.chat-message.caller .chat-label {
    color: var(--accent);
}

.chat-message p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.chat-message.ai p {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
}

/* Chat Style for Chatbot */
.chat-style {
    max-height: 350px;
    overflow-y: auto;
}

.chat-bubble {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.chat-bubble.user {
    flex-direction: row-reverse;
}

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

.chat-bubble p {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 80%;
}

.chat-bubble.bot p {
    background: var(--gray-100);
    color: var(--gray-700);
}

.chat-bubble.user p {
    background: var(--primary);
    color: var(--white);
}

/* Dashboard Preview Box */
.dashboard-preview-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.preview-content {
    padding: 1.5rem;
}

.preview-stat-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.preview-stat {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.stat-value.positive {
    color: var(--success);
}

.stat-name {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.preview-chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.mini-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px;
    min-height: 10px;
}

.preview-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--accent);
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Integration Diagram */
.integration-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    min-height: 300px;
    position: relative;
}

.integration-center {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.integration-center .integration-logo {
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
}

.integration-orbit {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px dashed var(--gray-200);
    border-radius: 50%;
}

.integration-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow);
}

.integration-item:nth-child(1) { top: -30px; left: 50%; transform: translateX(-50%); }
.integration-item:nth-child(2) { top: 20%; right: -30px; }
.integration-item:nth-child(3) { bottom: 20%; right: -30px; }
.integration-item:nth-child(4) { bottom: -30px; left: 50%; transform: translateX(-50%); }
.integration-item:nth-child(5) { bottom: 20%; left: -30px; }
.integration-item:nth-child(6) { top: 20%; left: -30px; }

/* Optimization Chart */
.optimization-chart {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.chart-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 200px;
    padding-bottom: 2rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 8px 8px 0 0;
    height: var(--height);
    position: relative;
    transition: all 0.3s ease;
}

.chart-bar.highlighted {
    background: linear-gradient(180deg, var(--success) 0%, #34d399 100%);
}

.chart-bar:hover {
    transform: scaleY(1.05);
}

.bar-label {
    position: absolute;
    bottom: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
}

.chart-legend {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* Hiring Funnel */
.hiring-funnel {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.funnel-stage {
    text-align: center;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    position: relative;
}

.funnel-stage.ai-stage {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 2px solid var(--primary);
}

.funnel-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.funnel-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

.funnel-arrow {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funnel-arrow::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--gray-300);
}

/* Integrations Categories */
.integrations-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.integration-category h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.integration-logo-item {
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
}

.service-integrations {
    padding: 6rem 0;
    background: var(--gray-50);
}

@media (max-width: 768px) {
    .integrations-categories { grid-template-columns: 1fr; }
}

/* Case Studies */
.service-case-studies {
    padding: 6rem 0;
    background: var(--white);
}

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

.case-study-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-bottom: 1px solid var(--gray-100);
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.case-study-company h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.case-study-company span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.case-study-results {
    border-bottom: none;
    background: var(--gray-50);
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.case-study-challenge p,
.case-study-solution p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.75rem;
}

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

.result-number {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--success);
}

.result-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

@media (max-width: 968px) {
    .case-studies-grid { grid-template-columns: 1fr; }
    .results-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .results-stats { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* Pricing CTA */
.service-pricing {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.pricing-cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* FAQ Grid */
.service-faq {
    padding: 6rem 0;
    background: var(--white);
}

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

.faq-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

/* Responsive */
@media (max-width: 968px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .solution-text .section-title {
        text-align: center;
    }
    
    .solution-text {
        text-align: center;
    }
    
    .solution-features li {
        justify-content: center;
    }
    
    .service-hero-stats {
        gap: 2rem;
    }
}
