/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --primary-50: #eff6ff;
    --secondary: #0f172a;
    --accent: #10b981;
    --accent-light: #d1fae5;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #6b7a90;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --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);
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip navigation link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-full {
    max-width: 100%;
    padding: 0 60px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    line-height: 1.2;
    font-weight: 700;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary-50);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}
.btn-ghost:hover {
    background: var(--gray-100);
}

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

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gray-900);
}

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

.logo-lucide { width: 22px; height: 22px; }

.logo-img,
.logo-img-white {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-50);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-cta {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 120px 0 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 40%, #f8fafc 100%);
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(37,99,235,0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(124,58,237,0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(16,185,129,0.05) 0%, transparent 50%);
}

.hero-particles-css {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle, rgba(37,99,235,0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(37,99,235,0.1) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: particleDrift 20s linear infinite;
}

@keyframes particleDrift {
    0% { background-position: 0 0, 30px 30px; }
    100% { background-position: 40px 40px, 70px 70px; }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(37,99,235,0.15);
    top: -100px;
    right: -100px;
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(124,58,237,0.12);
    bottom: 0;
    left: -50px;
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(37,99,235,0.08);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37,99,235,0.15);
}

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

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

.hero-badge svg { width: 16px; height: 16px; }

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(37,99,235,0.3), 0 4px 12px rgba(37,99,235,0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(37,99,235,0.4), 0 6px 20px rgba(37,99,235,0.3);
}

/* Trust row */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.hero-trust-row strong { color: var(--gray-700); }

.hero-trust-avatars {
    display: flex;
}

.avatar-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: -8px;
}

.avatar-circle:first-child { margin-left: 0; }
.avatar-circle:nth-child(1) { background: var(--primary); }
.avatar-circle:nth-child(2) { background: #7c3aed; }
.avatar-circle:nth-child(3) { background: var(--accent); }
.avatar-circle:nth-child(4) { background: #f59e0b; }
.avatar-more { background: var(--gray-400) !important; font-size: 0.6rem; }

/* Dashboard Mockup */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.6);
    overflow: hidden;
    transform: rotateY(-2deg) rotateX(1deg);
    transition: transform 0.5s ease;
    animation: mockupFloat 6s ease-in-out infinite;
}

.dashboard-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

@keyframes mockupFloat {
    0%, 100% { transform: rotateY(-2deg) rotateX(1deg) translateY(0); }
    50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-8px); }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.mockup-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

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

.status-dot.live {
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

.mockup-body { padding: 20px; }

.mockup-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.mockup-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
}

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

.mockup-stat-icon svg { width: 18px; height: 18px; }
.mockup-stat-icon.green { background: var(--accent-light); color: #059669; }
.mockup-stat-icon.blue { background: var(--primary-light); color: var(--primary); }

.ms-val { display: block; font-size: 1.1rem; font-weight: 800; color: var(--gray-900); }
.ms-lbl { font-size: 0.7rem; color: var(--gray-400); }

/* Chart */
.mockup-chart {
    margin-bottom: 16px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
}

.chart-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 8px;
}

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

.chart-bar-group span {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--gray-400);
}

.chart-bar {
    flex: 1;
    height: var(--h);
    border-radius: 3px 3px 0 0;
    background: var(--gray-300);
    transition: height 1s ease;
}

.chart-bar.ai {
    background: linear-gradient(180deg, var(--primary) 0%, #7c3aed 100%);
}

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

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: var(--gray-500);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-dot.manual { background: var(--gray-300); }
.legend-dot.ai-dot { background: var(--primary); }

/* Activity Feed */
.mockup-activity {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-100);
    animation: slideInActivity 0.5s ease both;
}

.activity-item:nth-child(2) { animation-delay: 0.15s; }
.activity-item:nth-child(3) { animation-delay: 0.3s; }

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

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

.activity-dot.green { background: var(--accent); }
.activity-dot.blue { background: var(--primary); }
.activity-dot.yellow { background: var(--warning); }

.activity-time {
    margin-left: auto;
    color: var(--gray-400);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-100);
    z-index: 5;
    animation: floatBounce 4s ease-in-out infinite;
}

.float-card svg { width: 20px; height: 20px; }
.float-card strong { display: block; font-size: 1rem; color: var(--gray-900); }
.float-card span { font-size: 0.7rem; color: var(--gray-400); }

.float-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}
.float-card-1 svg { color: var(--accent); }

.float-card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1.5s;
}
.float-card-2 svg { color: var(--primary); }

.float-card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 3s;
}
.float-card-3 svg { color: #7c3aed; }

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

/* Stats Bar */
.hero-stats-bar {
    position: relative;
    z-index: 3;
    margin-top: 40px;
    padding: 0 0 40px;
}

.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 0;
    padding: 28px 20px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.8);
    width: 100%;
}

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

.hero-stat-value {
    display: inline;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-suffix {
    display: inline;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 2px;
}

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

/* ===== Social Proof ===== */
.social-proof {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
    background: linear-gradient(90deg, var(--gray-50) 0%, var(--white) 20%, var(--white) 80%, var(--gray-50) 100%);
}

.social-proof-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.logo-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== Value Props ===== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (min-width: 1200px) {
    .value-grid.four-col { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

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

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== Products ===== */
.products-section {
    background: var(--gray-50);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.product-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    background: var(--white);
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
}

.product-tab svg { width: 18px; height: 18px; }

.product-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.product-panel.active { display: block; }

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

.product-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.product-info > p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.product-features li > svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-features strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.product-features span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.product-metrics {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.metric-chip {
    padding: 6px 14px;
    background: var(--accent-light);
    color: var(--gray-700);
    border-radius: 100px;
    font-size: 0.8rem;
}

.metric-chip strong {
    color: var(--accent);
}

/* Product Visuals */
.visual-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

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

.visual-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.visual-dots span:nth-child(1) { background: #ef4444; }
.visual-dots span:nth-child(2) { background: #f59e0b; }
.visual-dots span:nth-child(3) { background: #10b981; }

.visual-body {
    padding: 24px;
}

.visual-stat-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.visual-mini-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.visual-mini-stat svg { width: 20px; height: 20px; color: var(--gray-400); }
.visual-mini-stat.healthy svg { color: var(--accent); }
.visual-mini-stat.warning svg { color: var(--warning); }

.vms-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.vms-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visual-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
}

.vbar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 0.5s ease;
}

.vbar span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* AI Studio Flow */
.ai-studio-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.flow-node {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.flow-node svg { width: 18px; height: 18px; }

.flow-node.input {
    background: var(--primary-light);
    color: var(--primary);
}

.flow-node.process {
    background: #f3e8ff;
    color: #7c3aed;
}

.flow-node.action {
    background: var(--accent-light);
    color: #059669;
}

.flow-arrow {
    color: var(--gray-300);
}

.flow-arrow svg { width: 20px; height: 20px; }

.ai-model-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.model-badge {
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* Chat Visual */
.chat-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 85%;
}

.user-msg {
    background: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ai-msg {
    background: var(--gray-100);
    color: var(--gray-700);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.success-msg {
    background: var(--accent-light);
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-msg svg { width: 18px; height: 18px; flex-shrink: 0; }

/* FinOps Visual */
.finops-savings {
    display: flex;
    align-items: center;
    gap: 24px;
}

.savings-circle {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.savings-circle svg { width: 100%; height: 100%; }

.savings-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.savings-pct {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}

.savings-lbl {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.savings-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.savings-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

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

.dot.green { background: var(--accent); }
.dot.yellow { background: var(--warning); }
.dot.red { background: var(--danger); }

/* Wave animation placeholder */
.visual-wave {
    height: 60px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent-light) 50%, var(--primary-light) 100%);
    border-radius: var(--radius-sm);
    opacity: 0.5;
}

/* ===== AI Agents ===== */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.agent-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.agent-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.agent-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.agent-icon svg { width: 22px; height: 22px; }

.agent-card h4,
.agent-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.agent-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 12px;
}

.agent-metric {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-light);
    color: #059669;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Integrations ===== */
.integrations-section {
    background: var(--gray-50);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.integration-category {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.integration-category h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    color: var(--gray-700);
}

.integration-category h4 svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.integration-tags span {
    padding: 5px 12px;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== Use Cases ===== */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.usecase-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.usecase-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.usecase-icon svg { width: 22px; height: 22px; }

.usecase-card h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.usecase-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.usecase-card li {
    font-size: 0.85rem;
    color: var(--gray-500);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.usecase-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ===== Industries ===== */
.industries-section {
    background: var(--gray-50);
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.industry-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition);
}

.industry-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.industry-chip svg { width: 18px; height: 18px; }

/* ===== Competitive ===== */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.compare-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.compare-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.compare-sub {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.compare-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compare-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.compare-card li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.advantages-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--primary-50) 0%, #f5f3ff 50%, var(--primary-50) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-light);
}

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

.advantage-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.advantage-item strong {
    font-size: 0.9rem;
    color: var(--gray-800);
}

.advantage-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== Case Studies ===== */
.casestudies-section {
    background: var(--gray-50);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

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

.case-industry {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-industry svg { width: 14px; height: 14px; }

.case-card h4,
.case-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.case-challenge {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.5;
}

.case-results {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-stat {
    padding: 6px 12px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: #065f46;
}

.case-stat span {
    font-weight: 700;
}

/* ===== ROI ===== */
.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.roi-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

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

.roi-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

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

/* ===== Pricing ===== */
.pricing-section {
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    position: relative;
}

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

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

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

.pricing-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    padding: 20px;
    background: var(--primary-50);
    border-radius: var(--radius);
    border: 1px solid var(--primary-light);
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===== Security ===== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.security-block {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.security-block h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.security-block h4 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.security-block ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-block li {
    font-size: 0.85rem;
    color: var(--gray-500);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.security-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.security-block p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.compliance-badge {
    padding: 8px 18px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ===== Implementation ===== */
.implementation-section {
    background: var(--gray-50);
}

.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    overflow-x: auto;
    padding: 20px 0;
}

.timeline-step {
    text-align: center;
    min-width: 160px;
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 auto 12px;
}

.timeline-step h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.timeline-step p {
    font-size: 0.8rem;
    color: var(--gray-500);
    max-width: 160px;
    margin: 0 auto;
    line-height: 1.5;
}

.timeline-connector {
    width: 40px;
    height: 2px;
    background: var(--primary-light);
    margin-top: 20px;
    flex-shrink: 0;
}

.deploy-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.deploy-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.deploy-option svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.deploy-option strong {
    font-size: 0.9rem;
    color: var(--gray-800);
}

.deploy-option span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== Tech Stack ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tech-item {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.tech-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.tech-item span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 50%, var(--primary-dark) 100%);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.cta-trust svg { width: 16px; height: 16px; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.contact-form-wrapper {
    padding: 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray-800);
    transition: all var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.input-error {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.field-error {
    display: block;
    font-size: 0.78rem;
    color: var(--danger);
    margin-top: 4px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-800);
}

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

.footer-brand .logo-text {
    color: var(--white);
}

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

.footer-links h5 {
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    padding: 4px 0;
    transition: color var(--transition);
}

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

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

.footer-bottom p { font-size: 0.8rem; }

.footer-legal {
    display: flex;
    gap: 20px;
}

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

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

/* ===== Page Hero (Sub-pages) ===== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.page-hero .breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.page-hero .breadcrumb svg {
    width: 14px;
    height: 14px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

/* ===== Product Overview Cards (Homepage) ===== */
.products-overview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.product-overview-card {
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.product-overview-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.poc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.poc-icon svg { width: 22px; height: 22px; }
.poc-icon.purple { background: #f3e8ff; color: #7c3aed; }
.poc-icon.green { background: var(--accent-light); color: #059669; }
.poc-icon.orange { background: #fef3c7; color: #d97706; }
.poc-icon.teal { background: #ccfbf1; color: #0d9488; }
.poc-icon.pink { background: #fce7f3; color: #db2777; }

.product-overview-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.product-overview-card > p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}

.poc-metrics {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.poc-metrics span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.poc-metrics strong {
    color: var(--accent);
}

.poc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
}

.poc-link svg { width: 14px; height: 14px; }

.product-overview-card:hover .poc-link {
    gap: 10px;
}

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

.nav-chevron {
    width: 14px !important;
    height: 14px !important;
    transition: transform 0.2s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-600);
    transition: all var(--transition);
}

.dropdown-menu a:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.dropdown-menu a svg {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
}

.dropdown-menu a:hover svg {
    color: var(--primary);
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* ===== Integration Marquee ===== */
.integration-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.integration-marquee::before,
.integration-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.integration-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--gray-50) 0%, transparent 100%);
}

.integration-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--gray-50) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.int-badge {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    white-space: nowrap;
}

/* ===== Section CTA ===== */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== Footer Social ===== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-sm);
    color: var(--gray-400);
    transition: all var(--transition);
}

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

.footer-social svg { width: 18px; height: 18px; }

/* ===== Product Detail Pages ===== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

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

.feature-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 8px;
}

.feature-item h4 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.feature-item p,
.feature-item ul {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.feature-item li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.feature-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

/* Metrics Banner */
.metrics-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 32px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-light);
}

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

.metric-item .metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.metric-item .metric-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Solution Cards */
.solution-detail {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
}

.solution-detail:last-child {
    border-bottom: none;
}

.solution-detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.solution-detail-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

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

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.faq-item h4,
.faq-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
}

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

/* Case Study Detail Cards */
.case-detail-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.case-detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.case-solution {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Roadmap */
.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.roadmap-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.roadmap-card h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.roadmap-card h4 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.roadmap-card li {
    font-size: 0.85rem;
    color: var(--gray-500);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.5;
}

.roadmap-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

/* Multi-page responsive additions */
@media (max-width: 1024px) {
    .products-overview-grid { grid-template-columns: repeat(3, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
    .solution-detail-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .roadmap-grid { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
    .hero-visual { max-width: 600px; margin: 0 auto; }
    .hero-title { font-size: 3rem; }
    .hero { min-height: auto; padding-bottom: 0; }
    .hiw-flow { flex-direction: column; align-items: center; }
    .hiw-connector { width: auto; padding-top: 0; height: 40px; flex-direction: column; }
    .hiw-connector-line { width: 2px; height: 100%; }
    .hiw-step { max-width: 400px; width: 100%; }
    .ba-grid { grid-template-columns: 1fr; gap: 20px; }
    .ba-arrow { padding: 10px 0; transform: rotate(90deg); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .numbers-grid { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .number-item { min-width: 140px; }
    .arch-items { gap: 8px; }
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 40px; }
    .page-hero h1 { font-size: 2rem; }
    .products-overview-grid { grid-template-columns: repeat(2, 1fr); }
    /* dropdown handled by .nav-dropdown.open in 768px breakpoint */
    .metrics-banner { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.4rem; }
    .float-card { display: none; }
    .hiw-step { padding: 32px 24px; }
    .ba-card { padding: 28px 24px; }
    .numbers-grid { flex-direction: column; gap: 24px; }
    .number-value { font-size: 2rem; }
    .arch-items { flex-direction: column; }
    .container-wide, .container-full { padding: 0 20px; }
    .side-accents::before, .side-accents::after,
    .side-dots::before, .side-dots::after,
    .side-brackets::before, .side-brackets::after,
    .edge-gradients::before, .edge-gradients::after,
    .side-glow::before, .side-glow::after { display: none; }
}

/* ===== Platform Architecture ===== */
.platform-arch-section {
    background: var(--white);
    overflow: hidden;
}

.arch-visual {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.arch-layer {
    width: 100%;
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    position: relative;
}

.arch-layer-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.arch-layer-top {
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    border: 1px solid var(--primary-light);
}

.arch-layer-top .arch-layer-label { color: var(--primary); }

.arch-layer-mid {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.arch-layer-mid .arch-layer-label { color: var(--gray-500); }

.arch-layer-bottom {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.arch-layer-bottom .arch-layer-label { color: var(--gray-400); }

.arch-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.arch-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.arch-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.arch-item svg { width: 16px; height: 16px; }

.arch-item.highlight {
    background: var(--white);
    border-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.arch-item.highlight svg { color: var(--primary); }

.arch-item.small {
    padding: 6px 14px;
    font-size: 0.78rem;
    color: var(--gray-500);
}

.arch-connector-v {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--gray-200) 100%);
    position: relative;
}

.arch-connector-v::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--gray-200);
    border-radius: 50%;
}

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

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

.hiw-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s ease;
}

.hiw-step:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(37,99,235,0.1);
    transform: translateY(-6px);
}

.hiw-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.hiw-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius);
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.hiw-icon-wrap svg { width: 28px; height: 28px; }
.hiw-icon-wrap.purple { background: #f3e8ff; color: #7c3aed; }
.hiw-icon-wrap.green { background: var(--accent-light); color: #059669; }

.hiw-step:hover .hiw-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37,99,235,0.15);
}

.hiw-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.hiw-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 18px;
}

.hiw-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hiw-detail span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.hiw-detail svg { width: 14px; height: 14px; color: var(--accent); }

.hiw-connector {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 80px;
    color: var(--gray-300);
    flex-shrink: 0;
    width: 60px;
}

.hiw-connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
}

.hiw-connector svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); }

/* ===== Before / After ===== */
.before-after-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.ba-card {
    padding: 40px 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

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

.ba-card.before:hover {
    border-color: var(--gray-400);
}

.ba-card.after {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.ba-card.after:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
}

.ba-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.ba-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-800);
}

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

.ba-icon svg { width: 22px; height: 22px; }

.ba-icon.before-icon {
    background: #fef2f2;
    color: #ef4444;
}

.ba-icon.after-icon {
    background: var(--primary-light);
    color: var(--primary);
}

.ba-card ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ba-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.ba-card.before li {
    color: var(--gray-500);
}

.ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.ba-dot.before-dot {
    background: var(--gray-300);
}

.ba-card.after li {
    color: var(--gray-700);
    font-weight: 500;
}

.ba-card.after li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
}

.ba-arrow svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    animation: ba-pulse 2s ease-in-out infinite;
}

@keyframes ba-pulse {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}

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

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

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(37,99,235,0.1);
    transform: translateY(-4px);
}

.testimonial-card.featured-testimonial {
    border-color: var(--primary);
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    box-shadow: 0 8px 30px rgba(37,99,235,0.08);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    fill: #f59e0b;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== Numbers Banner ===== */
.numbers-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 50%, var(--primary-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.numbers-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37,99,235,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(124,58,237,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.numbers-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}

.number-item {
    text-align: center;
    padding: 0 20px;
}

.number-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

.number-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ===== FAQ Preview ===== */
.faq-preview-section {
    background: var(--gray-50);
}

/* ===== Rich Visual Effects ===== */

/* Gradient border on value cards hover */
.value-card {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #7c3aed, var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Agent card gradient border */
.agent-card {
    position: relative;
    overflow: hidden;
}

.agent-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.agent-card:hover::before {
    transform: scaleX(1);
}

/* Product overview card shine effect */
.product-overview-card {
    position: relative;
    overflow: hidden;
}

.product-overview-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(37,99,235,0.03) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-overview-card:hover::after {
    transform: translateX(100%);
}

/* ROI card pulse glow */
.roi-card:hover {
    box-shadow: 0 0 0 1px var(--primary), 0 8px 25px rgba(37,99,235,0.15);
}

/* Case card top accent */
.case-card {
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Animated gradient background on section tags */
.section-tag {
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-light) 0%, #f3e8ff 50%, var(--primary-light) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
    border-radius: inherit;
}

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

/* ===== Animations ===== */

/* No-JS fallback: show all content if JS fails to load */
.no-js .fade-in,
.no-js .fade-in-stagger > *,
.no-js .slide-in-left,
.no-js .slide-in-right,
.no-js .scale-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* Stagger animation for grid children */
.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(8) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

/* Slide in from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Side Decorations ===== */
/* Vertical accent lines on sides */
.side-accents {
    position: relative;
}

.side-accents::before,
.side-accents::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--gray-200) 20%, var(--gray-200) 80%, transparent 100%);
    pointer-events: none;
}

.side-accents::before { left: 40px; }
.side-accents::after { right: 40px; }

/* Side gradient fade */
.side-glow {
    position: relative;
}

.side-glow::before,
.side-glow::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    pointer-events: none;
    z-index: 0;
}

.side-glow::before {
    left: 0;
    background: radial-gradient(ellipse at left center, rgba(37,99,235,0.04) 0%, transparent 70%);
}

.side-glow::after {
    right: 0;
    background: radial-gradient(ellipse at right center, rgba(124,58,237,0.03) 0%, transparent 70%);
}

/* Side dot pattern */
.side-dots {
    position: relative;
}

.side-dots::before,
.side-dots::after {
    content: '';
    position: absolute;
    top: 60px;
    width: 80px;
    height: 200px;
    pointer-events: none;
    opacity: 0.25;
    background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px);
    background-size: 16px 16px;
}

.side-dots::before { left: 20px; }
.side-dots::after { right: 20px; top: auto; bottom: 60px; }

/* Side bracket decoration */
.side-brackets {
    position: relative;
}

.side-brackets::before,
.side-brackets::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 120px;
    border: 2px solid var(--gray-200);
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
}

.side-brackets::before {
    left: 20px;
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.side-brackets::after {
    right: 20px;
    border-left: none;
    border-radius: 0 8px 8px 0;
}

/* Edge gradient strips */
.edge-gradients {
    position: relative;
}

.edge-gradients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 50%, #7c3aed 100%);
    opacity: 0.15;
}

.edge-gradients::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #7c3aed 0%, var(--accent) 50%, var(--primary) 100%);
    opacity: 0.15;
}

/* ===== Floating Decorative Shapes ===== */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.float-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: -5%;
    animation: floatShape1 20s ease-in-out infinite;
}

.float-shape-2 {
    width: 200px;
    height: 200px;
    background: #7c3aed;
    top: 60%;
    right: -3%;
    animation: floatShape2 25s ease-in-out infinite;
}

.float-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    bottom: 10%;
    left: 20%;
    animation: floatShape3 18s ease-in-out infinite;
}

.float-shape-4 {
    width: 100px;
    height: 100px;
    background: var(--primary);
    top: 30%;
    right: 15%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: floatShape4 22s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(20px, 10px) rotate(2deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 15px) scale(1.05); }
    66% { transform: translate(15px, -10px) scale(0.95); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25px, -15px); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { transform: translate(-15px, 20px) rotate(180deg); border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

/* Animated gradient line */
.animated-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #7c3aed, var(--accent), var(--primary));
    background-size: 300% 100%;
    animation: gradientLine 4s linear infinite;
}

@keyframes gradientLine {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* Pulse ring animation */
.pulse-ring {
    position: relative;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--primary);
    border-radius: inherit;
    animation: pulseRing 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0; }
}

/* Orbit animation for icons */
.orbit-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    z-index: 2;
}

.orbit-center svg { width: 28px; height: 28px; }

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed var(--gray-200);
    border-radius: 50%;
    animation: orbitSpin 30s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    animation: orbitCounterSpin 30s linear infinite;
}

.orbit-item svg { width: 16px; height: 16px; color: var(--primary); }
.orbit-item:nth-child(2) { top: -18px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(3) { top: 50%; right: -18px; transform: translateY(-50%); }
.orbit-item:nth-child(4) { bottom: -18px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(5) { top: 50%; left: -18px; transform: translateY(-50%); }

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

/* Moving dots background */
.dots-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    animation: dotsBgMove 60s linear infinite;
}

@keyframes dotsBgMove {
    0% { background-position: 0 0; }
    100% { background-position: 240px 240px; }
}

/* Marquee for integrations - already exists, enhance */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Animated border card */
.animated-border-card {
    position: relative;
    overflow: hidden;
}

.animated-border-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg,
        var(--primary) 60deg,
        transparent 120deg
    );
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
}

.animated-border-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--white);
    border-radius: calc(var(--radius) - 2px);
    z-index: -1;
}

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

/* Typewriter cursor */
.typewriter-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--primary);
    font-weight: 300;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Loading bar animation */
.loading-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: loadingBar 2s ease-in-out infinite;
}

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

/* Breathing glow */
.breathing-glow {
    animation: breathingGlow 3s ease-in-out infinite;
}

@keyframes breathingGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(37,99,235,0.1); }
    50% { box-shadow: 0 0 40px rgba(37,99,235,0.25); }
}

/* Section decorative elements */
.section-deco {
    position: relative;
}

.section-deco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Wave separator */
.wave-separator {
    height: 60px;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.wave-separator svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
}

/* Marquee second row - reverse */
.marquee-track-reverse {
    display: flex;
    gap: 16px;
    animation: marqueeReverse 35s linear infinite;
    width: max-content;
    margin-top: 12px;
}

@keyframes marqueeReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Page hero enhanced */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero .dots-bg {
    opacity: 0.3;
}

/* Animated stats counter for sub-pages */
.stat-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-counter .count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .agents-grid { grid-template-columns: repeat(2, 1fr); }
    .integrations-grid { grid-template-columns: repeat(2, 1fr); }
    .usecases-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid { grid-template-columns: 1fr; }
    .case-studies-grid { grid-template-columns: repeat(2, 1fr); }
    .roi-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: none; }
    .security-grid { grid-template-columns: 1fr; }
    .deploy-options { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-strip { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions { display: none; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px 20px 12px;
        box-shadow: none;
        border-bottom: none;
    }

    .mobile-nav-cta {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        padding-top: 16px;
        margin-top: 8px;
        border-top: 1px solid var(--gray-200);
    }

    .btn-mobile-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Mobile dropdown toggle */
    .nav-dropdown .dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 4px 0 4px 20px;
        background: transparent;
    }

    .nav-dropdown > a .nav-chevron {
        transition: transform 0.2s ease;
    }

    .nav-dropdown.open > a .nav-chevron {
        transform: rotate(180deg);
    }

    .nav-toggle { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; }
    .hero-stat-value { font-size: 1.6rem; }
    .hero-stat-suffix { font-size: 1.2rem; }
    .hero-stat-label { font-size: 0.7rem; }

    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }

    .value-grid { grid-template-columns: 1fr; }
    .product-panel-grid { grid-template-columns: 1fr; }
    .agents-grid { grid-template-columns: 1fr; }
    .integrations-grid { grid-template-columns: 1fr; }
    .usecases-grid { grid-template-columns: 1fr; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .roi-grid { grid-template-columns: 1fr; }
    .deploy-options { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .advantages-strip { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .product-tabs { gap: 4px; }
    .product-tab span { display: none; }

    .timeline {
        flex-direction: column;
        align-items: center;
    }
    .timeline-connector {
        width: 2px;
        height: 24px;
        margin-top: 0;
    }

    .cta-content h2 { font-size: 1.8rem; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-trust { flex-direction: column; align-items: center; }

    .form-row { grid-template-columns: 1fr; }
}

/* Small phones */
@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .container-wide, .container-full { padding: 0 16px; }

    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.9rem; }

    .hero-stats { padding: 16px 8px; }
    .hero-stat-value { font-size: 1.2rem; }
    .hero-stat-suffix { font-size: 0.9rem; }
    .hero-stat-label { font-size: 0.65rem; }
    .hero-stat-divider { height: 24px; }

    .pricing-card { padding: 24px 20px; }
    .products-overview-grid { grid-template-columns: 1fr; }
    .ba-card { padding: 28px 20px; }
    .ba-header h3 { font-size: 1rem; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-section { padding: 48px 0; }

    .page-hero-title { font-size: 2rem; }
    .page-hero-subtitle { font-size: 0.95rem; }

    .footer-grid { gap: 24px; }
    .footer-brand p { font-size: 0.85rem; }
}
