/* ================================================
   WorkForce ERP 360 - Premium Stylesheet
   Version: 1.0.0
   ================================================ */

/* ==================== CSS Variables ==================== */
:root {
    --primary-50: #EFF6FF;
    --primary-100: #DBEAFE;
    --primary-200: #BFDBFE;
    --primary-300: #93C5FD;
    --primary-400: #60A5FA;
    --primary-500: #2563EB;
    --primary-600: #1D4ED8;
    --primary-700: #1E40AF;

    --secondary-400: #22D3EE;
    --secondary-500: #06B6D4;
    --secondary-600: #0891B2;

    --accent-500: #0EA5E9;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #dddddd;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --gray-950: #030712;

    --white: #FFFFFF;
    --black: #000000;

    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #06B6D4 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-border-light: rgba(255, 255, 255, 0.5);

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.06);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-max: 1280px;
    --nav-height: 72px;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

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

ul, ol {
    list-style: none;
}

/* ==================== Preloader ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-950);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    position: absolute;
    animation: loaderSpin 1.2s linear infinite;
}

.loader-ring:nth-child(1) {
    border-top-color: #2563EB;
    animation-delay: 0s;
}

.loader-ring:nth-child(2) {
    width: 48px;
    height: 48px;
    border-right-color: #0EA5E9;
    animation-delay: 0.15s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    width: 36px;
    height: 36px;
    border-bottom-color: #06B6D4;
    animation-delay: 0.3s;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
}

.loader-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* ==================== Container ==================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Gradient Text ==================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--primary-50);
    color: var(--primary-500);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid var(--primary-100);
}

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

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

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--primary-300);
    color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    color: var(--gray-600);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--primary-500);
}

.btn-white {
    background: var(--white);
    color: var(--primary-500);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-500);
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 1000;
    transition: all var(--transition-base);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(4,14,36,0.92);
    border-bottom-color: rgba(255,255,255,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    z-index: 1001;
}

.logo-text {
    font-size: 18px;
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 12px;
    min-width: 280px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

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

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

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

.dropdown-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.dropdown-item strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.dropdown-item span {
    font-size: 12px;
    color: var(--gray-500);
}

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

.btn-nav-secondary {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}

.btn-nav-secondary:hover {
    color: #fff;
}

.btn-nav-primary {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: all var(--transition-base);
}

.btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: #2563EB;
    top: -200px;
    right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #06B6D4;
    bottom: -100px;
    left: -100px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: #0EA5E9;
    top: 50%;
    left: 50%;
    animation: orbFloat 15s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

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

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar-more {
    background: var(--gray-100) !important;
    color: var(--gray-600) !important;
    font-size: 10px;
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stars {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 2px;
}

.trust-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Hero Visual / Dashboard Mockup */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.mockup-browser {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

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

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

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
}

.mockup-content {
    display: flex;
    min-height: 360px;
}

.mock-sidebar {
    width: 56px;
    background: var(--gray-900);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.mock-sidebar-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    transition: background var(--transition-fast);
}

.mock-sidebar-item.active {
    background: rgba(37, 99, 235, 0.5);
}

.mock-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--gray-50);
}

.mock-header-bar {
    height: 12px;
    width: 200px;
    background: var(--gray-200);
    border-radius: 6px;
}

.mock-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mock-stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.mock-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mock-stat-info {
    display: flex;
    flex-direction: column;
}

.mock-stat-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
}

.mock-stat-label {
    font-size: 10px;
    color: var(--gray-400);
}

.mock-stat-trend {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
}

.mock-stat-trend.up {
    color: #10B981;
}

.mock-charts-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
    flex: 1;
}

.mock-chart-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.mock-chart-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.mock-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    padding-top: 8px;
}

.mock-bar {
    flex: 1;
    height: var(--height);
    background: var(--color);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.mock-bar:hover {
    opacity: 1;
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.mock-donut-chart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.mock-donut-chart svg {
    width: 90px;
    height: 90px;
    transform: rotate(-90deg);
}

.donut-center {
    position: absolute;
    text-align: center;
}

.donut-number {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
}

.donut-label {
    font-size: 9px;
    color: var(--gray-400);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    z-index: 10;
    animation: floatCard 6s ease-in-out infinite;
}

.float-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 2s;
}

.float-card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 4s;
}

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

.float-card-icon {
    font-size: 24px;
}

.float-card-text strong {
    display: block;
    font-size: 13px;
    color: var(--gray-900);
}

.float-card-text span {
    font-size: 11px;
    color: var(--gray-400);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: fadeInUp 1s ease 2s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    border-radius: 2px;
    background: var(--gray-400);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== Trusted By ==================== */
.trusted-by {
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.logo-scroll {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 48px;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.logo-item {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
    letter-spacing: -0.01em;
    padding: 8px 0;
}

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

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

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

.feature-icon-wrap {
    margin-bottom: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

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

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==================== Dashboards Section ==================== */
.dashboards {
    padding: 120px 0;
    background: var(--gray-50);
}

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

.dash-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.dash-tab:hover {
    border-color: var(--primary-300);
    color: var(--primary-500);
}

.dash-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.dash-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.dash-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.dash-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-50);
    color: var(--primary-600);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.dash-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.dash-info p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dash-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ddd;
}

.check {
    width: 20px;
    height: 20px;
    background: var(--primary-50);
    color: var(--primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Dashboard Mock Previews */
.dash-preview {
    perspective: 1000px;
}

.dash-mock {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform var(--transition-slow);
}

.dash-mock:hover {
    transform: rotateY(-3deg) rotateX(2deg);
}

.dash-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
}

.mock-date {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    background: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
}

.dash-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 20px;
}

.dm-stat {
    text-align: center;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.dm-stat-val {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
}

.dm-stat-label {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 2px;
}

.dm-trend {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
    margin-top: 4px;
}

.dm-trend.up {
    color: #10B981;
}

.dm-trend.warning {
    color: #F59E0B;
}

.dash-mock-chart {
    padding: 0 20px 20px;
}

.line-chart-svg {
    width: 100%;
    height: 80px;
}

.chart-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

.dash-mock-list {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dm-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--gray-600);
}

.dm-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
}

.dm-status.success { background: #10B981; }
.dm-status.warning { background: #F59E0B; }
.dm-status.pending { background: #2563EB; }

/* Dashboard Journey */
.dash-mock-journey {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 0;
    overflow-x: auto;
}

.dm-journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    position: relative;
    padding: 0 12px;
}

.dm-journey-step::after {
    content: '';
    position: absolute;
    top: 8px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--gray-200);
}

.dm-journey-step:last-child::after {
    display: none;
}

.dm-journey-step.completed::after {
    background: #10B981;
}

.dm-journey-step.active::after {
    background: linear-gradient(to right, #2563EB, var(--gray-200));
}

.dm-journey-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gray-200);
    border: 2px solid var(--gray-200);
}

.dm-journey-step.completed .dm-journey-dot {
    background: #10B981;
    border-color: #10B981;
}

.dm-journey-step.active .dm-journey-dot {
    background: var(--white);
    border-color: #2563EB;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.dm-journey-step span {
    font-size: 10px;
    color: var(--gray-400);
    white-space: nowrap;
}

.dm-journey-step.completed span {
    color: #10B981;
}

.dm-journey-step.active span {
    color: #2563EB;
    font-weight: 600;
}

/* Dashboard Progress */
.dash-mock-progress {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dm-progress-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dm-progress-item span {
    font-size: 12px;
    color: var(--gray-600);
}

.dm-progress-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.dm-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1.5s ease;
}

/* ==================== Process Timeline ==================== */
.process {
    padding: 120px 0;
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process .section-badge {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-300);
    border-color: rgba(37, 99, 235, 0.2);
}

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

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

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-progress {
    position: absolute;
    left: 32px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.15);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.timeline-number {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-500);
}

.timeline-content {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-content {
    background: rgba(255,255,255,0.08);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(8px);
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.timeline-content p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ==================== Modules Section ==================== */
.modules {
    padding: 120px 0;
    background: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.module-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.module-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-6px);
}

.module-icon-wrap {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.module-icon-wrap svg {
    transition: transform var(--transition-base);
}

.module-card:hover .module-icon-wrap svg {
    transform: scale(1.15);
}

.module-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.module-card p {
    font-size: 12px;
    color: var(--gray-400);
}

/* ==================== Industries ==================== */
.industries {
    padding: 120px 0;
    background: var(--gray-50);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
    text-align: center;
}

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

.industry-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.industry-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ==================== Stats Section ==================== */
.stats-section {
    padding: 120px 0;
    background: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 12px;
    color: var(--gray-400);
}

/* ==================== Screenshots ==================== */
.screenshots {
    padding: 120px 0;
    background: var(--gray-50);
}

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

.ss-tab {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.ss-tab:hover {
    border-color: var(--primary-300);
    color: var(--primary-500);
}

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

.ss-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.ss-mockup {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    max-width: 1000px;
    margin: 0 auto;
}

.ss-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

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

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

.ss-dots span:nth-child(1) { background: #EF4444; }
.ss-dots span:nth-child(2) { background: #F59E0B; }
.ss-dots span:nth-child(3) { background: #10B981; }

.ss-url {
    flex: 1;
    background: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
}

.ss-content {
    display: flex;
    min-height: 400px;
}

.ss-sidebar {
    width: 180px;
    background: var(--gray-900);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.ss-sidebar-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
}

.ss-nav-item {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.ss-nav-item.active {
    background: rgba(37, 99, 235, 0.3);
    color: var(--white);
}

.ss-nav-item:hover {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
}

.ss-main {
    flex: 1;
    padding: 20px;
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ss-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-top-bar h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.ss-notification-bell {
    font-size: 12px;
    color: var(--gray-500);
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    position: relative;
}

.ss-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ss-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ss-mini-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px;
    border: 1px solid var(--gray-100);
}

.ss-mini-card.blue { border-left: 3px solid #2563EB; }
.ss-mini-card.green { border-left: 3px solid #10B981; }
.ss-mini-card.orange { border-left: 3px solid #F59E0B; }
.ss-mini-card.purple { border-left: 3px solid #8B5CF6; }

.ss-card-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
}

.ss-card-lbl {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 2px;
}

/* Screenshot Journey */
.ss-journey-tracker {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid var(--gray-100);
}

.ss-journey-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.ss-journey-steps {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
}

.ss-step {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-300);
    padding: 0 8px;
    flex-shrink: 0;
}

.ss-step small {
    display: block;
    font-weight: 500;
    font-size: 10px;
    margin-top: 4px;
}

.ss-step.done {
    color: #10B981;
}

.ss-step.active {
    color: #2563EB;
}

.ss-step-line {
    height: 2px;
    width: 24px;
    background: var(--gray-200);
    flex-shrink: 0;
}

.ss-step-line.done {
    background: #10B981;
}

.ss-step-line.active {
    background: linear-gradient(to right, #2563EB, var(--gray-200));
}

/* Screenshot Table */
.ss-table-area {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid var(--gray-100);
}

.ss-table-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.ss-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 8px;
    padding: 8px 0;
    font-size: 12px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.ss-table-row.header {
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
}

.ss-table-row:last-child {
    border-bottom: none;
}

.ss-status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
}

.ss-status-badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.ss-status-badge.orange {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.ss-status-badge.blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

/* Screenshot Pipeline */
.ss-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    flex: 1;
}

.ss-pipe-col {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px;
    border: 1px solid var(--gray-100);
}

.ss-pipe-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-pipe-count {
    background: var(--primary-50);
    color: var(--primary-500);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
}

.ss-pipe-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 6px;
    padding: 10px;
    font-size: 11px;
    color: var(--gray-600);
    margin-bottom: 8px;
    border-left: 3px solid var(--primary-400);
}

/* Screenshot Chart */
.ss-chart-area {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid var(--gray-100);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ss-chart-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    flex: 1;
    justify-content: center;
    padding: 16px 0;
}

.ss-chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ss-bar {
    width: 40px;
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    transition: height 1s ease;
}

.ss-chart-col small {
    font-size: 11px;
    color: var(--gray-400);
}

.ss-chart-label {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 8px;
}

.analytics-charts {
    flex: 1;
}

.ss-analytics-chart {
    flex: 1;
}

.ss-line-svg {
    width: 100%;
    height: 100px;
}

/* ==================== About Section ==================== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.ah-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.about-highlight strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
}

.about-highlight span {
    font-size: 13px;
    color: var(--gray-500);
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 400px;
}

.about-img-card {
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.about-img-card:hover {
    transform: scale(1.03);
}

.about-img-card.card-1 {
    grid-row: span 2;
    background: var(--gradient-primary);
}

.about-img-card.card-2 {
    background: linear-gradient(135deg, #1E293B, #334155);
}

.about-img-card.card-3 {
    background: linear-gradient(135deg, #059669, #10B981);
}

.about-img-content {
    text-align: center;
}

.about-metric-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.about-metric-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* ==================== Testimonials ==================== */
.testimonials {
    padding: 120px 0;
    background: var(--gray-50);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(100% - 48px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
}

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

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.test-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.test-btn:hover {
    border-color: var(--primary-300);
    color: var(--primary-500);
    box-shadow: var(--shadow-md);
}

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

.test-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.test-dot.active {
    background: var(--primary-500);
    width: 24px;
    border-radius: 4px;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
    color: var(--primary-500);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon span {
    position: absolute;
    background: var(--gray-400);
    border-radius: 1px;
    transition: all var(--transition-base);
}

.faq-icon span:first-child {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon span {
    background: var(--primary-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -200px;
    right: -100px;
    filter: blur(60px);
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: -150px;
    left: -100px;
    filter: blur(60px);
}

.cta-card h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ==================== Contact ==================== */
.contact {
    padding: 120px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info > p {
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cd-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
}

.contact-detail span {
    font-size: 16px;
    color: #fff;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-form > p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all var(--transition-fast);
    outline: none;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 12px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

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

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

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links li{
    display: block;
    font-size: 14px;
    padding: 6px 0;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

/* ==================== Video Modal ==================== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background var(--transition-fast);
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.video-placeholder {
    text-align: center;
    color: var(--gray-400);
}

.video-play-large {
    margin-bottom: 16px;
    cursor: pointer;
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.video-placeholder span {
    font-size: 13px;
}

/* ==================== Back to Top ==================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

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

/* Fade In Up keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Responsive ==================== */

/* Laptop */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .footer-grid > :last-child {
        grid-column: span 1;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .dash-panel-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info .section-title {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-social {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: calc(var(--nav-height) + 20px) 24px 24px;
        transition: right var(--transition-base);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        pointer-events: all;
        display: none;
    }
    
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .mock-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mock-charts-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ss-content {
        flex-direction: column;
    }
    
    .ss-sidebar {
        width: 100%;
        flex-direction: row;
        padding: 12px;
        overflow-x: auto;
    }
    
    .ss-sidebar-avatar {
        margin-bottom: 0;
        margin-right: 8px;
    }
    
    .ss-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ss-pipeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ss-table-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 11px;
    }
    
    .timeline-line,
    .timeline-progress {
        left: 24px;
    }
    
    .timeline-marker {
        width: 48px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .modules-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: calc(var(--nav-height) + 20px);
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-lg {
        padding: 14px 20px;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
    }
    
    .mockup-content {
        flex-direction: column;
    }
    
    .mock-sidebar {
        flex-direction: row;
        width: 100%;
        padding: 8px;
    }
    
    .mock-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .mock-stat-number {
        font-size: 14px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .features,
    .dashboards,
    .process,
    .modules,
    .industries,
    .stats-section,
    .screenshots,
    .about,
    .testimonials,
    .faq,
    .contact {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-tabs,
    .screenshot-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        flex-wrap: nowrap;
    }
    
    .dash-tab,
    .ss-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr 1fr;
        height: 300px;
    }
    
    .about-metric-num {
        font-size: 1.75rem;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .ss-cards-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .ss-pipeline {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .timeline-content {
        padding: 14px 16px;
    }
    
    .timeline-item {
        gap: 12px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-bg-effects,
    .floating-card,
    .hero-scroll-indicator,
    .back-to-top,
    .video-modal,
    #preloader {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding-top: 40px;
    }
    
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ================================================================
   FULL-WIDTH REDESIGN - ALL SECTIONS
   ================================================================ */

/* Container full-width for all sections */
.features .container,
.dashboards .container,
.process .container,
.modules .container,
.industries .container,
.stats-section .container,
.testimonials .container,
.about .container,
.contact .container,
.trusted-by .container {
    max-width: 100% !important;
    padding: 0 6vw !important;
}

/* ── HERO SECTION - DARK FULL-WIDTH ── */
.hero {
    position: relative !important;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #040E24 !important;
    padding: 0 !important;
}

#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.5;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1800&q=80&fit=crop&crop=center'), linear-gradient(135deg, #040E24 0%, #0A1628 100%);
    background-size: cover; background-position: center right; opacity: 0.12;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(37,99,235,0.25) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 100% 80%, rgba(6,182,212,0.15) 0%, transparent 60%),
                linear-gradient(180deg, rgba(4,14,36,0.4) 0%, rgba(4,14,36,0.8) 100%);
}
.hero-noise { position: absolute; inset: 0; opacity: 0.3; }
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.orb-1 { width: 700px; height: 700px; background: rgba(37,99,235,0.22); top: -200px; left: -150px; animation: orbDrift 22s ease-in-out infinite; }
.orb-2 { width: 500px; height: 500px; background: rgba(6,182,212,0.16); bottom: -150px; right: -100px; animation: orbDrift 18s ease-in-out infinite reverse; }
.orb-3 { width: 350px; height: 350px; background: rgba(124,58,237,0.14); top: 40%; left: 40%; animation: orbDrift 14s ease-in-out infinite 4s; }
.orb-4 { width: 250px; height: 250px; background: rgba(14,165,233,0.12); top: 10%; right: 25%; animation: orbDrift 25s ease-in-out infinite 2s; }
@keyframes orbDrift {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px,-50px) scale(1.08); }
    66% { transform: translate(-30px,30px) scale(0.94); }
}

.hero-wrapper {
    position: relative; z-index: 2;
    display: grid !important;
    grid-template-columns: 1fr 1.15fr;
    min-height: 100vh;
    padding-top: var(--nav-height);
    width: 100%;
}

.hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 60px 80px 7vw;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px; font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.75); margin-bottom: 32px; width: fit-content;
    backdrop-filter: blur(8px);
}
.eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10B981; box-shadow: 0 0 8px #10B981;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.6; transform:scale(1.3); }
}

.hero-headline {
    display: flex; flex-direction: column;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 900; line-height: 1.05;
    letter-spacing: -0.04em; color: #fff; margin-bottom: 28px;
}
.headline-line { display: block; }
.hero-typed-wrap {
    font-style: normal;
    background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 50%, #67E8F9 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.typed-cursor { -webkit-text-fill-color: #60A5FA; animation: blink 0.8s step-end infinite; font-weight: 300; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 40px; max-width: 500px; }

.hero-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.cta-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    color: #fff; font-size: 15px; font-weight: 700; border-radius: 12px;
    box-shadow: 0 8px 30px rgba(37,99,235,0.45); transition: all 0.3s ease;
}
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,99,235,0.55); }

.cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600;
    border-radius: 12px; transition: all 0.3s ease; backdrop-filter: blur(8px);
}
.cta-secondary:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }

.cta-video {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px; color: rgba(255,255,255,0.65);
    font-size: 14px; font-weight: 500; background: transparent; border: none; cursor: pointer; transition: color 0.3s;
}
.cta-video:hover { color: #fff; }
.video-play-ring {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s;
}
.cta-video:hover .video-play-ring { background: rgba(37,99,235,0.5); border-color: #2563EB; }

.hero-social-proof { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.proof-avatars { display: flex; align-items: center; }
.proof-img { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,0.2); margin-left: -10px; object-fit: cover; }
.proof-img:first-child { margin-left: 0; }
.proof-more {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.15);
    margin-left: -10px; display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7);
}
.proof-stars { color: #F59E0B; font-size: 13px; margin-bottom: 4px; letter-spacing: 1px; }
.proof-stars span { color: rgba(255,255,255,0.7); font-size: 12px; margin-left: 4px; }
.proof-text p { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.proof-text strong { color: rgba(255,255,255,0.8); }

.hero-metrics {
    display: flex; align-items: center;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; width: fit-content; backdrop-filter: blur(10px);
}
.metric-item { display: flex; flex-direction: column; gap: 3px; padding: 0 24px; }
.metric-num {
    font-size: 1.7rem; font-weight: 900;
    background: linear-gradient(135deg, #60A5FA, #38BDF8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.metric-label { font-size: 11.5px; color: rgba(255,255,255,0.4); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.metric-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

.hero-right {
    position: relative; display: flex; align-items: center;
    justify-content: center; padding: 80px 7vw 80px 20px; overflow: visible;
}

/* Dashboard mockup */
.hero-dashboard {
    width: 100%; max-width: 680px;
    background: rgba(255,255,255,0.96);
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(37,99,235,0.15);
    overflow: hidden; position: relative; z-index: 3;
}
.dash-topbar {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0;
}
.dash-dots { display: flex; gap: 6px; }
.dd { width: 11px; height: 11px; border-radius: 50%; }
.dd.red { background: #EF4444; } .dd.yellow { background: #F59E0B; } .dd.green { background: #10B981; }
.dash-url { flex: 1; background: #fff; padding: 5px 12px; border-radius: 6px; font-size: 11.5px; color: #94A3B8; border: 1px solid #E2E8F0; font-family: monospace; }
.dash-actions { display: flex; align-items: center; gap: 8px; }
.dash-avatar img { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #E2E8F0; object-fit: cover; }
.dash-body { display: flex; min-height: 400px; }
.dash-sidebar { width: 52px; background: #0F172A; padding: 16px 8px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.dsb-logo { margin-bottom: 8px; }
.dsb-nav { display: flex; flex-direction: column; gap: 6px; }
.dsb-item { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.2s; }
.dsb-item.active { background: rgba(37,99,235,0.4); color: #60A5FA; }
.dash-main { flex: 1; background: #F1F5F9; padding: 16px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.dash-greeting { display: flex; align-items: center; justify-content: space-between; }
.dash-welcome { font-size: 13px; font-weight: 700; color: #1E293B; }
.dash-date { font-size: 10.5px; color: #94A3B8; margin-top: 2px; }
.dash-notif { position: relative; width: 30px; height: 30px; border-radius: 8px; background: #fff; border: 1px solid #E2E8F0; display: flex; align-items: center; justify-content: center; color: #64748B; }
.notif-badge { position: absolute; top: -4px; right: -4px; width: 14px; height: 14px; border-radius: 50%; background: #EF4444; color: #fff; font-size: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 1.5px solid #F1F5F9; }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi-card { background: #fff; border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 6px; border: 1px solid #F1F5F9; box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: relative; overflow: hidden; }
.kpi-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; border-radius: 3px 0 0 3px; }
.kpi-blue::before { background: #2563EB; } .kpi-green::before { background: #10B981; } .kpi-amber::before { background: #F59E0B; } .kpi-purple::before { background: #8B5CF6; }
.kpi-icon { font-size: 16px; }
.kpi-data { display: flex; flex-direction: column; gap: 1px; }
.kpi-num { font-size: 17px; font-weight: 800; color: #1E293B; line-height: 1; }
.kpi-label { font-size: 9.5px; color: #94A3B8; }
.kpi-trend { font-size: 9.5px; font-weight: 700; color: #10B981; }
.dash-charts { display: grid; grid-template-columns: 1.6fr 1fr; gap: 10px; flex: 1; }
.chart-card { background: #fff; border-radius: 10px; padding: 12px; border: 1px solid #F1F5F9; box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.chart-title { font-size: 11px; font-weight: 700; color: #374151; }
.chart-period { font-size: 9.5px; color: #9CA3AF; }
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 90px; flex: 1; }
.bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.bar-fill { width: 100%; border-radius: 4px 4px 0 0; transform-origin: bottom; animation: growBar 1.2s cubic-bezier(0.34,1.56,0.64,1) forwards; transform: scaleY(0); }
@keyframes growBar { to { transform: scaleY(1); } }
.bar-wrap:nth-child(1) .bar-fill { animation-delay: 0.1s; }
.bar-wrap:nth-child(2) .bar-fill { animation-delay: 0.2s; }
.bar-wrap:nth-child(3) .bar-fill { animation-delay: 0.3s; }
.bar-wrap:nth-child(4) .bar-fill { animation-delay: 0.4s; }
.bar-wrap:nth-child(5) .bar-fill { animation-delay: 0.5s; }
.bar-wrap:nth-child(6) .bar-fill { animation-delay: 0.6s; }
.bar-wrap span { font-size: 8.5px; color: #9CA3AF; }
.donut-wrap { position: relative; width: 80px; height: 80px; margin: 8px auto; }
.donut-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donut-inner strong { font-size: 14px; font-weight: 800; color: #1E293B; }
.donut-inner span { font-size: 8px; color: #9CA3AF; }
.donut-legend { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.legend-row { display: flex; align-items: center; gap: 6px; font-size: 9.5px; color: #374151; }
.legend-row .leg-pct { margin-left: auto; font-weight: 700; color: #1E293B; }
.leg-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* Floating cards */
.hero-float-card {
    position: absolute;
    background: rgba(15,23,42,0.85);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 14px; padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    z-index: 10; box-shadow: 0 20px 60px rgba(0,0,0,0.4); white-space: nowrap;
}
.hfc-1 { top: 10%; right: calc(7vw - 30px); animation: hfcFloat 7s ease-in-out infinite; }
.hfc-2 { bottom: 28%; left: -20px; animation: hfcFloat 9s ease-in-out infinite 2s; }
.hfc-3 { bottom: 10%; right: calc(7vw + 20px); animation: hfcFloat 6s ease-in-out infinite 4s; }
@keyframes hfcFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hfc-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hfc-body strong { display: block; font-size: 12.5px; color: #fff; font-weight: 700; margin-bottom: 2px; }
.hfc-body span { font-size: 11px; color: rgba(255,255,255,0.5); }
.hfc-time { font-size: 10.5px; color: #10B981; font-weight: 600; margin-left: auto; padding-left: 12px; }
.hfc-avatar-row { display: flex; align-items: center; }
.hfc-avatar-row img { width: 26px; height: 26px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); margin-left: -6px; object-fit: cover; }
.hfc-avatar-row img:first-child { margin-left: 0; }

.hero-globe-accent { position: absolute; bottom: 40px; left: 10px; width: 220px; opacity: 0.2; pointer-events: none; z-index: 1; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0.4; z-index: 10;
}
.scroll-mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.4); border-radius: 11px; display: flex; justify-content: center; padding-top: 7px; }
.scroll-wheel { width: 3px; height: 7px; border-radius: 2px; background: rgba(255,255,255,0.6); animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
.hero-scroll-indicator span { font-size: 9.5px; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; }

/* ── TRUSTED BY ── */
.trusted-by { background: #F8FAFF; padding: 56px 0; border-bottom: 1px solid #E8EFFE; overflow: hidden; }
.trusted-label { text-align: center; font-size: 11px; color: #9CA3AF; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; }

/* ── FEATURES - GRID WITH IMAGES ── */
.features { padding: 120px 0; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.feature-card {
    background: #fff; border: 1px solid #E8F0FE;
    border-radius: 20px; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 2px 12px rgba(37,99,235,0.04);
}
.feature-card:hover { transform: translateY(-6px); border-color: #BFDBFE; box-shadow: 0 20px 60px rgba(37,99,235,0.1); }
.feature-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.feature-card-body { padding: 24px; }
.feature-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #EFF6FF, #E0F2FE); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon { font-size: 22px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #6B7280; line-height: 1.65; }

/* ── INDUSTRIES - IMAGE BACKGROUND CARDS ── */
.industries { padding: 120px 0; background: #F1F5FF; position: relative; overflow: hidden; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.industry-card { position: relative; border-radius: 20px; overflow: hidden; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.industry-card::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; z-index: 0; }
.industry-card:nth-child(1)::before { background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=600&q=80&fit=crop'); }
.industry-card:nth-child(2)::before { background-image: url('https://images.unsplash.com/photo-1611273426858-450d8e3c9fce?w=600&q=80&fit=crop'); }
.industry-card:nth-child(3)::before { background-image: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=600&q=80&fit=crop'); }
.industry-card:nth-child(4)::before { background-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=600&q=80&fit=crop'); }
.industry-card:nth-child(5)::before { background-image: url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?w=600&q=80&fit=crop'); }
.industry-card:nth-child(6)::before { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=600&q=80&fit=crop'); }
.industry-card:nth-child(7)::before { background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=600&q=80&fit=crop'); }
.industry-card:nth-child(8)::before { background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=600&q=80&fit=crop'); }
.industry-card:nth-child(9)::before { background-image: url('https://images.unsplash.com/photo-1557597774-9d273605dfa9?w=600&q=80&fit=crop'); }
.industry-card:nth-child(10)::before { background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=600&q=80&fit=crop'); }
.industry-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,16,40,0.92) 0%, rgba(7,16,40,0.4) 50%, rgba(7,16,40,0.1) 100%); z-index: 1; transition: background 0.4s; }
.industry-card:hover::before { transform: scale(1.08); }
.industry-card:hover::after { background: linear-gradient(to top, rgba(37,99,235,0.9) 0%, rgba(7,16,40,0.5) 60%, rgba(7,16,40,0.1) 100%); }
.industry-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(37,99,235,0.25); }
.industry-card-content { position: relative; z-index: 2; padding: 24px; }
.industry-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.industry-card h4 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.industry-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.55; }

/* ── STATS SECTION - DARK ── */
.stats-section { padding: 120px 0; background: #040E24; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1800&q=60&fit=crop') center/cover no-repeat; opacity: 0.04; }
.stats-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,0.15), transparent); }
.stats-section .section-header { position: relative; z-index: 1; }
.stats-section .section-title { color: #fff; }
.stats-section .section-subtitle { color: rgba(255,255,255,0.5); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: rgba(255,255,255,0.06); border-radius: 24px; overflow: hidden; position: relative; z-index: 1; border: 1px solid rgba(255,255,255,0.08); }
.stat-card { background: rgba(4,14,36,0.95); padding: 48px 32px; text-align: center; transition: background 0.3s; }
.stat-card:hover { background: rgba(37,99,235,0.15); }
.stat-number { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; background: linear-gradient(135deg, #60A5FA, #38BDF8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── PROCESS SECTION - DARK ── */
.process { padding: 120px 0; background: linear-gradient(135deg, #040E24 0%, #0A1628 100%); position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1800&q=60&fit=crop') center/cover; opacity: 0.05; }
.process .section-title { color: #fff; }
.process .section-subtitle { color: rgba(255,255,255,0.5); }
.process .section-badge { background: rgba(37,99,235,0.2); color: #60A5FA; border-color: rgba(37,99,235,0.3); }

/* ── MODULES ── */
.modules { padding: 120px 0; background: #fff; }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.module-card { background: #F8FAFF; border: 1px solid #E8F0FE; border-radius: 16px; padding: 28px 20px; text-align: center; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); cursor: pointer; }
.module-card:hover { background: linear-gradient(135deg, #EFF6FF, #E0F2FE); border-color: #BFDBFE; transform: translateY(-6px); box-shadow: 0 16px 40px rgba(37,99,235,0.1); }
.module-icon-wrap { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, #EFF6FF, #E0F2FE); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: background 0.3s; }
.module-card:hover .module-icon-wrap { background: linear-gradient(135deg, #2563EB, #06B6D4); }
.module-card:hover .module-icon-wrap svg { filter: brightness(10); }
.module-card h4 { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 4px; }
.module-card p { font-size: 12px; color: #9CA3AF; }

/* ── DASHBOARDS ── */
.dashboards { padding: 120px 0; background: #F8FAFF; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 120px 0; background: #F8FAFF; overflow: hidden; }
.testimonial-card { background: #fff; border-radius: 20px; padding: 36px; border: 1px solid #E8F0FE; box-shadow: 0 4px 24px rgba(37,99,235,0.05); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-size: 80px; line-height: 1; color: #EFF6FF; font-family: Georgia, serif; }
.testimonial-author-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid #EFF6FF; }

/* ── CONTACT - DARK ── */
.contact { padding: 120px 0; background: linear-gradient(135deg, #040E24 0%, #0A1628 100%); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=60&fit=crop') center/cover; opacity: 0.06; }

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,99,235,0.4); cursor: pointer;
    opacity: 0; transform: translateY(20px);
    transition: all 0.3s ease; z-index: 999; border: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,99,235,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-wrapper { grid-template-columns: 1fr !important; }
    .hero-left { padding: 60px 24px 40px; align-items: center; text-align: center; }
    .hero-right { padding: 0 24px 60px; }
    .hfc-2 { display: none; }
}
@media (max-width: 768px) {
    .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .features-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-kpis { grid-template-columns: repeat(2, 1fr); }
    .features .container, .industries .container, .stats-section .container,
    .testimonials .container, .modules .container, .process .container,
    .dashboards .container, .about .container, .contact .container { padding: 0 20px !important; }
}

/* ================================================================
   MODULE CARDS - TRANSPARENT IMAGE BACKGROUND
   ================================================================ */

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.module-card {
    position: relative;
    background: #F8FAFF;
    border: 1px solid #E8F0FE;
    border-radius: 20px;
    padding: 32px 20px 24px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Background image - transparent overlay */
.module-card .module-bg {
    position: absolute;
    inset: 0;
    background-image: var(--mod-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(1.05);
    border-radius: 20px;
}

/* Dark gradient overlay on top of image */
.module-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.0) 0%,
        rgba(6, 182, 212, 0.0) 100%
    );
    transition: background 0.4s ease;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

/* Hover state - show image with blue tint */
.module-card:hover .module-bg {
    opacity: 0.18;
    transform: scale(1);
}

.module-card:hover::after {
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.08) 0%,
        rgba(6, 182, 212, 0.06) 100%
    );
}

.module-card:hover {
    border-color: #93C5FD;
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(37, 99, 235, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.08);
    background: #fff;
}

/* Icon wrap - above image */
.module-card .module-icon-wrap {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.module-card:hover .module-icon-wrap {
    background: linear-gradient(135deg, #2563EB, #0EA5E9);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transform: scale(1.1) translateY(-2px);
}

.module-card:hover .module-icon-wrap svg {
    filter: brightness(10) drop-shadow(0 0 4px rgba(255,255,255,0.5));
}

/* Text - above image */
.module-card h4 {
    position: relative;
    z-index: 2;
    font-size: 14.5px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.module-card p {
    position: relative;
    z-index: 2;
    font-size: 12px;
    color: #9CA3AF;
    line-height: 1.5;
    transition: color 0.3s;
}

.module-card:hover h4 { color: #1D4ED8; }
.module-card:hover p { color: #6B7280; }

/* Shine effect on hover */
.module-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 3;
    pointer-events: none;
    border-radius: 20px;
}

.module-card:hover::before {
    transform: translateX(100%) rotate(45deg);
}


/* ================================================================
   LANGUAGE SELECTOR
   ================================================================ */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    letter-spacing: 0.02em;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
}

.lang-flag { font-size: 15px; line-height: 1; }
.lang-label { font-size: 12px; font-weight: 700; }

.lang-chevron {
    color: rgba(255,255,255,0.5);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.lang-selector.open .lang-chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 210px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(37,99,235,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(37,99,235,0.06);
    padding: 8px;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 9999;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.lang-dropdown-header {
    font-size: 10.5px;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 10px 8px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.18s;
    text-align: left;
}

.lang-option:hover {
    background: #F0F7FF;
}

.lang-option.active {
    background: #EFF6FF;
}

.lang-option > span:first-child {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.lang-option div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lang-option div strong {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.lang-option div span {
    font-size: 10.5px;
    color: #9CA3AF;
    font-weight: 600;
}

.lang-check {
    flex-shrink: 0;
    opacity: 0;
}

.lang-option.active .lang-check {
    opacity: 1;
}

/* ================================================================
   THEME TOGGLE - Day / Night
   ================================================================ */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.theme-track {
    width: 56px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.theme-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    box-shadow: 0 2px 8px rgba(245,158,11,0.5);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.theme-icon {
    position: absolute;
    font-size: 11px;
    line-height: 1;
    transition: all 0.3s ease;
}

.theme-icon-sun  { opacity: 1; transform: scale(1) rotate(0deg); }
.theme-icon-moon { opacity: 0; transform: scale(0) rotate(-90deg); }

/* Dark mode active state */
body.dark-mode .theme-track {
    background: rgba(37,99,235,0.3);
    border-color: rgba(96,165,250,0.4);
}

body.dark-mode .theme-thumb {
    left: 31px;
    background: linear-gradient(135deg, #1E40AF, #3B82F6);
    box-shadow: 0 2px 8px rgba(59,130,246,0.6);
}

body.dark-mode .theme-icon-sun  { opacity: 0; transform: scale(0) rotate(90deg); }
body.dark-mode .theme-icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }

/* ================================================================
   DARK MODE - Full site
   ================================================================ */
body.dark-mode {
    background: #0D1117;
    color: #E2E8F0;
}

/* Sections */
body.dark-mode .features        { background: #0D1117; }
body.dark-mode .modules         { background: #0D1117; }
body.dark-mode .dashboards      { background: #111827; }
body.dark-mode .testimonials    { background: #111827; }
body.dark-mode .trusted-by      { background: #111827; border-color: rgba(255,255,255,0.05); }
body.dark-mode .about           { background: #0D1117; }
body.dark-mode .industries      { background: #111827; }

/* Text */
body.dark-mode .section-title   { color: #0d1118; }
body.dark-mode .section-subtitle{ color: rgba(255,255,255,0.5); }
body.dark-mode .gradient-text   { background: linear-gradient(135deg,#60A5FA,#38BDF8); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* Feature cards */
body.dark-mode .feature-card {
    background: #161D2E;
    border-color: rgba(255,255,255,0.07);
}
body.dark-mode .feature-card h3 { color: #F1F5F9; }
body.dark-mode .feature-card p  { color: rgba(255,255,255,0.5); }
body.dark-mode .feature-card:hover { border-color: rgba(37,99,235,0.4); box-shadow: 0 20px 60px rgba(37,99,235,0.15); }
body.dark-mode .feature-icon-wrap { background: rgba(37,99,235,0.15); }

/* Module cards */
body.dark-mode .module-card {
    background: #161D2E;
    border-color: rgba(255,255,255,0.07);
}
body.dark-mode .module-card h4  { color: #F1F5F9; }
body.dark-mode .module-card p   { color: rgba(255,255,255,0.4); }
body.dark-mode .module-card:hover { background: #1E2A3E; border-color: rgba(37,99,235,0.4); }
body.dark-mode .module-card .module-icon-wrap { background: rgba(37,99,235,0.2); }
body.dark-mode .module-card:hover .module-bg { opacity: 0.25; }

/* Testimonials */
body.dark-mode .testimonial-card {
    background: #161D2E;
    border-color: rgba(255,255,255,0.07);
}
body.dark-mode .testimonial-card::before { color: rgba(255,255,255,0.04); }
body.dark-mode .testimonial-card p { color: rgba(255,255,255,0.6) !important; }
body.dark-mode .testimonial-card strong { color: #F1F5F9 !important; }
body.dark-mode .testimonial-card span { color: rgba(255,255,255,0.4) !important; }

/* Trusted logos */
body.dark-mode .logo-item { color: rgba(255,255,255,0.2); }
body.dark-mode .logo-item:hover { color: #60A5FA; }
body.dark-mode .trusted-label { color: rgba(255,255,255,0.3); }

/* Navbar in dark mode scrolled */
body.dark-mode .navbar.scrolled {
    background: rgba(13,17,23,0.95) !important;
    border-bottom-color: rgba(255,255,255,0.06) !important;
}

/* Lang dropdown in dark mode */
body.dark-mode .lang-dropdown {
    background: #1E293B;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
body.dark-mode .lang-dropdown-header { color: rgba(255,255,255,0.3); }
body.dark-mode .lang-option:hover { background: rgba(37,99,235,0.15); }
body.dark-mode .lang-option.active { background: rgba(37,99,235,0.2); }
body.dark-mode .lang-option div strong { color: #F1F5F9; }
body.dark-mode .lang-option div span { color: rgba(255,255,255,0.4); }

/* Dashboard mockup in dark mode */
body.dark-mode .hero-dashboard { background: #1E293B; }
body.dark-mode .dash-topbar { background: #0F172A; border-color: rgba(255,255,255,0.06); }
body.dark-mode .dash-url { background: #1E293B; border-color: rgba(255,255,255,0.06); color: #475569; }
body.dark-mode .dash-main { background: #1a2235; }
body.dark-mode .kpi-card { background: #1E293B; border-color: rgba(255,255,255,0.05); }
body.dark-mode .kpi-num { color: #F1F5F9; }
body.dark-mode .chart-card { background: #1E293B; border-color: rgba(255,255,255,0.05); }
body.dark-mode .chart-title { color: #CBD5E1; }
body.dark-mode .bar-wrap span { color: #64748B; }
body.dark-mode .donut-inner strong { color: #F1F5F9; }
body.dark-mode .dash-welcome { color: #F1F5F9; }
body.dark-mode .legend-row { color: #94A3B8; }
body.dark-mode .legend-row .leg-pct { color: #F1F5F9; }

/* Smooth dark mode transition */
body,
body .feature-card,
body .module-card,
body .testimonial-card,
body .lang-dropdown,
body .kpi-card,
body .chart-card,
body section {
    transition: background 0.35s ease, border-color 0.35s ease, color 0.3s ease;
}

/* ================================================================
   RESPONSIVE - navbar controls
   ================================================================ */
@media (max-width: 768px) {
    .lang-selector { display: none; }
    .theme-toggle  { display: flex; }
}


/* ================================================================
   INNER PAGES - Shared styles (Product/Industry/About/Contact/Pricing)
   ================================================================ */

/* Page Hero - smaller than homepage hero */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: #040E24;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.page-hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 20% 30%, rgba(37,99,235,0.28) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 90% 80%, rgba(6,182,212,0.18) 0%, transparent 60%),
                linear-gradient(180deg, rgba(4,14,36,0.5) 0%, rgba(4,14,36,0.85) 100%);
}
.page-hero-bg img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; opacity: 0.15;
}

.page-hero-content {
    position: relative; z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 24px 100px;
}

.page-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px; font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.8); margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -0.03em; color: #fff; margin-bottom: 20px;
}

.page-hero-title .gradient-text {
    background: linear-gradient(135deg, #60A5FA, #38BDF8, #67E8F9);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 36px;
}

.page-hero-cta {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap;
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.4);
    margin-bottom: 28px; justify-content: center;
}
.page-breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.page-breadcrumb a:hover { color: #60A5FA; }

/* Generic inner section */
.inner-section { padding: 100px 0; }
.inner-section.bg-light { background: #F8FAFF; }
.inner-section.bg-white { background: #fff; }
.inner-section.bg-dark {
    background: linear-gradient(135deg, #040E24 0%, #0A1628 100%);
    color: #fff;
}
.inner-section.bg-dark .section-title { color: #fff; }
.inner-section.bg-dark .section-subtitle { color: rgba(255,255,255,0.5); }

.inner-section .container { max-width: 100%; padding: 0 6vw; }

/* Two column feature row */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }

.split-text .split-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: #EFF6FF;
    color: #2563EB;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.split-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.split-text p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.75;
    margin-bottom: 28px;
}

.split-checklist {
    display: flex; flex-direction: column; gap: 14px;
}
.split-checklist-item {
    display: flex; align-items: flex-start; gap: 12px;
}
.split-checklist-item .check-icon {
    width: 24px; height: 24px; border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.split-checklist-item span { color: #374151; font-size: 14.5px; line-height: 1.6; }

.split-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(37,99,235,0.15);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 380px; }

/* Mini stat cards for product pages */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 56px 0;
}
.mini-stat-card {
    background: #fff;
    border: 1px solid #E8F0FE;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(37,99,235,0.04);
}
.mini-stat-card .ms-num {
    font-size: 2.2rem; font-weight: 900;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 6px;
}
.mini-stat-card .ms-label { font-size: 13px; color: #6B7280; font-weight: 600; }

/* Capability grid (icon + text cards) */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.capability-card {
    background: #fff;
    border: 1px solid #E8F0FE;
    border-radius: 18px;
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.capability-card:hover {
    transform: translateY(-5px);
    border-color: #BFDBFE;
    box-shadow: 0 16px 40px rgba(37,99,235,0.1);
}
.capability-card .cap-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #EFF6FF, #E0F2FE);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
}
.capability-card h4 { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.capability-card p { font-size: 13.5px; color: #6B7280; line-height: 1.6; }

/* CTA Band */
.cta-band {
    background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #06B6D4 100%);
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 6vw;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 50%);
}
.cta-band h2 {
    position: relative; z-index: 1;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900; color: #fff; margin-bottom: 14px;
}
.cta-band p {
    position: relative; z-index: 1;
    font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 32px;
    max-width: 550px; margin-left: auto; margin-right: auto;
}
.cta-band-actions { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-white {
    padding: 15px 32px; background: #fff; color: #2563EB;
    font-weight: 700; border-radius: 12px; font-size: 15px;
    transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cta-band .btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.cta-band .btn-outline-white {
    padding: 15px 32px; background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4); font-weight: 700;
    border-radius: 12px; font-size: 15px; transition: all 0.3s;
}
.cta-band .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: start;
}
.pricing-card {
    background: #fff;
    border: 2px solid #E8F0FE;
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.35s ease;
    position: relative;
}
.pricing-card.featured {
    border-color: #2563EB;
    box-shadow: 0 20px 60px rgba(37,99,235,0.18);
    transform: scale(1.03);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 6px 18px; border-radius: 100px; letter-spacing: 0.05em;
    text-transform: uppercase; white-space: nowrap;
}
.pricing-plan-name { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.pricing-plan-desc { font-size: 13.5px; color: #9CA3AF; margin-bottom: 24px; }
.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.pricing-amount .currency { font-size: 22px; font-weight: 700; color: #111827; }
.pricing-amount .value { font-size: 48px; font-weight: 900; color: #111827; line-height: 1; }
.pricing-amount .period { font-size: 14px; color: #9CA3AF; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features .pf-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #374151; }
.pricing-features .pf-item svg { flex-shrink: 0; color: #10B981; }
.pricing-cta-btn {
    display: block; width: 100%; text-align: center;
    padding: 14px; border-radius: 12px; font-weight: 700; font-size: 14.5px;
    transition: all 0.3s;
}
.pricing-cta-btn.primary { background: linear-gradient(135deg, #2563EB, #06B6D4); color: #fff; }
.pricing-cta-btn.primary:hover { box-shadow: 0 12px 28px rgba(37,99,235,0.35); transform: translateY(-2px); }
.pricing-cta-btn.outline { background: #F8FAFF; color: #2563EB; border: 1.5px solid #E8F0FE; }
.pricing-cta-btn.outline:hover { background: #EFF6FF; }

/* Pricing toggle */
.pricing-toggle-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-bottom: 48px;
}
.pricing-toggle-label { font-size: 14px; font-weight: 600; color: #6B7280; }
.pricing-toggle-label.active { color: #111827; }
.pricing-switch {
    width: 52px; height: 28px; background: #E5E7EB;
    border-radius: 100px; position: relative; cursor: pointer;
    border: none; transition: background 0.3s;
}
.pricing-switch.on { background: #2563EB; }
.pricing-switch-thumb {
    position: absolute; top: 3px; left: 3px;
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.pricing-switch.on .pricing-switch-thumb { transform: translateX(24px); }
.save-badge {
    background: #DCFCE7; color: #16A34A;
    font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: #fff; border: 1px solid #E8F0FE; border-radius: 14px;
    overflow: hidden; transition: border-color 0.3s;
}
.faq-item.active { border-color: #93C5FD; }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 15px; color: #111827;
}
.faq-question .faq-arrow { transition: transform 0.3s; color: #2563EB; flex-shrink: 0; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 14px; color: #6B7280; line-height: 1.7; }

/* Contact page specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
}
.contact-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    margin-bottom: 16px;
}
.contact-info-card .ci-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(37,99,235,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 18px;
}
.contact-info-card h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { color: rgba(255,255,255,0.55); font-size: 13.5px; line-height: 1.6; }

.contact-form-card {
    background: #fff; border-radius: 24px; padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: #111827; margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; color: #9CA3AF; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid #E5E7EB;
    border-radius: 10px; font-size: 14px; font-family: inherit;
    transition: border-color 0.2s; background: #FAFBFF;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: #2563EB; background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.input-error { border-color: #EF4444 !important; }

.form-submit-btn {
    width: 100%; padding: 15px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, #2563EB, #06B6D4); color: #fff;
    font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit-btn:hover { box-shadow: 0 12px 30px rgba(37,99,235,0.35); transform: translateY(-2px); }

/* Map embed placeholder */
.map-embed {
    border-radius: 20px; overflow: hidden; height: 320px;
    background: #1E293B; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.map-embed img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.map-embed-pin {
    position: absolute; width: 44px; height: 44px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,99,235,0.5);
}
.map-embed-pin svg { transform: rotate(45deg); }

/* Office cards */
.office-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.office-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.office-card {
    background: #fff; border: 1px solid #E8F0FE; border-radius: 18px;
    overflow: hidden; transition: all 0.3s;
}
.office-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(37,99,235,0.1); }
.office-card img { width: 100%; height: 140px; object-fit: cover; }
.office-card-body { padding: 20px; }
.office-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}
.office-card p {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    margin: 5px 0;
}

/* Team grid (about page) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card { text-align: center; }
.team-card img {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 18px; margin-bottom: 16px;
    filter: grayscale(20%); transition: filter 0.3s;
}
.team-card:hover img { filter: grayscale(0%); }
.team-card h4 { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 2px; }
.team-card span { font-size: 12.5px; color: #2563EB; font-weight: 600; }

/* Timeline (about page) */
.about-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.about-timeline::before {
    content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, #2563EB, #06B6D4);
}
.timeline-row { position: relative; padding-left: 56px; margin-bottom: 36px; }
.timeline-row::before {
    content: ''; position: absolute; left: 12px; top: 4px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; border: 3px solid #2563EB;
}
.timeline-row .tl-year { font-size: 13px; font-weight: 700; color: #2563EB; margin-bottom: 4px; }
.timeline-row h4 { font-size: 17px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.timeline-row p { font-size: 14px; color: #6B7280; line-height: 1.65; }

/* Value cards (about page) */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card { text-align: center; padding: 8px; }
.value-icon {
    width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 18px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.value-card h4 { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: #6B7280; line-height: 1.6; }

/* Industry detail page - hero list */
.industry-stats-row {
    display: flex; flex-wrap: wrap; gap: 32px; justify-content: center;
    margin-top: 32px;
}
.industry-stats-row .isr-item { text-align: center; }
.industry-stats-row .isr-num { font-size: 1.8rem; font-weight: 900; color: #60A5FA; }
.industry-stats-row .isr-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }

/* Dark mode for inner pages */
body.dark-mode .inner-section.bg-light { background: #111827; }
body.dark-mode .inner-section.bg-white { background: #0D1117; }
body.dark-mode .split-text h2 { color: #F1F5F9; }
body.dark-mode .split-text p { color: rgba(255,255,255,0.55); }
body.dark-mode .split-checklist-item span { color: rgba(255,255,255,0.7); }
body.dark-mode .mini-stat-card { background: #161D2E; border-color: rgba(255,255,255,0.07); }
body.dark-mode .mini-stat-card .ms-label { color: rgba(255,255,255,0.5); }
body.dark-mode .capability-card { background: #161D2E; border-color: rgba(255,255,255,0.07); }
body.dark-mode .capability-card h4 { color: #F1F5F9; }
body.dark-mode .capability-card p { color: rgba(255,255,255,0.5); }
body.dark-mode .pricing-card { background: #161D2E; border-color: rgba(255,255,255,0.08); }
body.dark-mode .pricing-plan-name, body.dark-mode .pricing-amount .currency, body.dark-mode .pricing-amount .value { color: #F1F5F9; }
body.dark-mode .pricing-features .pf-item { color: rgba(255,255,255,0.7); }
body.dark-mode .pricing-cta-btn.outline { background: rgba(255,255,255,0.05); color: #60A5FA; border-color: rgba(255,255,255,0.1); }
body.dark-mode .faq-item { background: #161D2E; border-color: rgba(255,255,255,0.07); }
body.dark-mode .faq-question { color: #F1F5F9; }
body.dark-mode .faq-answer-inner { color: rgba(255,255,255,0.5); }
body.dark-mode .contact-form-card { background: #161D2E; }
body.dark-mode .contact-form-card h3 { color: #F1F5F9; }
body.dark-mode .form-group label { color: rgba(255,255,255,0.7); }
body.dark-mode .form-group input, body.dark-mode .form-group select, body.dark-mode .form-group textarea {
    background: #0D1117; border-color: rgba(255,255,255,0.1); color: #F1F5F9;
}
body.dark-mode .office-card { background: #161D2E; border-color: rgba(255,255,255,0.07); }
body.dark-mode .office-card h4 { color: #F1F5F9; }
body.dark-mode .team-card h4 { color: #F1F5F9; }
body.dark-mode .timeline-row h4 { color: #F1F5F9; }
body.dark-mode .timeline-row p { color: rgba(255,255,255,0.55); }
body.dark-mode .value-card h4 { color: #F1F5F9; }
body.dark-mode .value-card p { color: rgba(255,255,255,0.55); }

/* Responsive */
@media (max-width: 900px) {
    .split-row { grid-template-columns: 1fr; gap: 36px; }
    .split-row.reverse { direction: ltr; }
    .split-row.reverse .split-image { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .cta-band { margin: 0 20px; padding: 48px 28px; }
}


/* ================================================================
   LOGO ICON - was missing, used in navbar + footer
   ================================================================ */
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.logo-highlight {
    background: linear-gradient(135deg, #60A5FA, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
}


/* ================================================================
   PARTNERS DROPDOWN - Simple text-only style (no icons)
   ================================================================ */
.nav-dropdown-menu.simple {
    min-width: 200px;
    left: 0;
    transform: translateX(0) translateY(8px);
}

.nav-dropdown:hover .nav-dropdown-menu.simple {
    transform: translateX(0) translateY(0);
}

.dropdown-item-simple {
    display: block;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.dropdown-item-simple:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

body.dark-mode .nav-dropdown-menu.simple {
    background: #1E293B;
    border-color: rgba(255,255,255,0.08);
}
body.dark-mode .dropdown-item-simple {
    color: rgba(255,255,255,0.75);
}
body.dark-mode .dropdown-item-simple:hover {
    background: rgba(37,99,235,0.15);
    color: #60A5FA;
}



.nav-link.active,
.nav-link.active, .nav-dropdown-trigger.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}





.app-download-section{
    padding:120px 0;
    position:relative;
}

.download-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:32px;
    padding:70px 50px;
    backdrop-filter:blur(20px);
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.app-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:45px;
    margin-bottom:45px;
}

.app-btn{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 30px;
    min-width:260px;
    border-radius:20px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg,#2563EB,#06B6D4);
    transition:all .35s ease;
    box-shadow:0 15px 35px rgba(37,99,235,.25);
}

.app-btn:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(37,99,235,.35);
}

.ios-btn{
    background:linear-gradient(135deg,#7C3AED,#A855F7);
}

.app-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.app-text{
    text-align:left;
}

.app-text small{
    display:block;
    opacity:.8;
    font-size:13px;
}

.app-text strong{
    display:block;
    font-size:22px;
    font-weight:700;
    margin-top:4px;
}

.download-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:20px;
}

.feature-item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:16px;
    font-size:15px;
}

@media(max-width:768px){

    .download-box{
        padding:50px 25px;
    }

    .app-btn{
        min-width:100%;
    }

    .download-features{
        grid-template-columns:1fr;
    }
}





/* =========================
   Sitemap Section
========================= */
.sitemap-section{
    padding:100px 0;
    position:relative;
}

.sitemap-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.sitemap-card{
    position:relative;
    background:var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:28px;
    padding:35px;
    overflow:hidden;
    backdrop-filter:blur(20px);
    transition:all .4s ease;
}

.sitemap-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--gradient-1);
}

.sitemap-card:hover{
    transform:translateY(-10px);
    border-color:rgba(37,99,235,.35);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.sitemap-card h3{
    margin-bottom:25px;
    font-size:24px;
    font-weight:700;
    color:var(--text-primary);
}

.sitemap-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sitemap-card ul li{
    margin-bottom:14px;
}

.sitemap-card ul li:last-child{
    margin-bottom:0;
}

.sitemap-card ul li a{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--text-secondary);
    text-decoration:none;
    font-size:15px;
    padding:10px 0;
    transition:all .3s ease;
}

.sitemap-card ul li a::before{
    content:"→";
    color:var(--primary-blue);
    font-size:16px;
    font-weight:700;
    transition:all .3s ease;
}

.sitemap-card ul li a:hover{
    color:var(--text-primary);
    padding-left:10px;
}

.sitemap-card ul li a:hover::before{
    transform:translateX(5px);
    color:var(--primary-indigo);
}

/* Optional Glow Effect */
.sitemap-card::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    top:-50px;
    right:-50px;
    background:rgba(37,99,235,.08);
    border-radius:50%;
    pointer-events:none;
}

/* =========================
   Responsive
========================= */
@media (max-width:991px){

    .sitemap-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }
}

@media (max-width:767px){

    .sitemap-section{
        padding:70px 0;
    }

    .sitemap-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .sitemap-card{
        padding:28px 24px;
        border-radius:22px;
    }

    .sitemap-card h3{
        font-size:22px;
        margin-bottom:20px;
    }

    .sitemap-card ul li a{
        font-size:14px;
    }
}

/* Day Mode */
.office-card p,
.office-card p b,
.office-card p strong {
    color: #111827;
}

/* Light Mode */
.office-card p,
.office-card p b,
.office-card p strong {
    color: #111827;
}

/* Dark Mode */
body.dark-mode .office-card p,
body.dark-mode .office-card p b,
body.dark-mode .office-card p strong {
    color: rgba(255,255,255,0.85);
}



/* Light Mode */
.section-title{
    color: #111827;
}

/* Dark Mode */
body.dark-mode .section-title{
    color: #ffffff;
}

/* Dark Theme */
[data-theme="dark"] .section-title{
    color:#fff;
}

.office-title{
    color:#111827;
}

body.dark-mode .office-title,
[data-theme="dark"] .office-title{
    color:#fff;
}