/* ===== CSS Variables - Carion Professional Design ===== */
:root {
    /* Primary Colors - Indigo */
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #eef2ff;
    --secondary: #0f172a;
    --secondary-light: #1e293b;

    /* Accent Colors - Cyan */
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --accent-light: #ecfeff;

    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-on-dark: #ffffff;
    --text-on-dark-muted: rgba(255, 255, 255, 0.7);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.2);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 60px;
    --container-max: 1280px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

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

ul, ol {
    list-style: none;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(6, 182, 212, 0.25);
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}

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

.btn-dark:hover {
    background: var(--dark-light);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 14px 20px;
}

.btn-ghost:hover {
    background: var(--primary-light);
}

/* ===== Badge / Tag ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 14px;
}

.section-tag-dark {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-lg);
}

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

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

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

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px !important;
    border-radius: var(--radius);
    transition: var(--transition);
}

.navbar .nav-link:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar .btn-primary {
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    padding: 10px 20px;
}

.navbar .btn-primary:hover {
    background: var(--gray-100);
    color: var(--dark);
    transform: none;
    box-shadow: none;
}

/* Dropdown */
.navbar .dropdown-menu {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 8px;
    min-width: 240px;
    box-shadow: var(--shadow-xl);
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.navbar .dropdown-item i {
    color: var(--accent);
    font-size: 16px;
}

.navbar .dropdown-toggle::after {
    margin-left: 6px;
    border-top-color: rgba(255, 255, 255, 0.7);
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .logo-img {
        height: 32px;
    }

    .navbar-collapse {
        background: rgba(10, 22, 40, 0.98);
        margin-top: 16px;
        padding: 16px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .navbar .dropdown-menu {
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        margin-top: 0;
    }

    .navbar .btn-primary {
        margin-top: 16px;
        width: 100%;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content h1 {
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-content h1 .highlight {
    color: var(--accent);
    position: relative;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.hero-visual #morphCanvas {
    width: 100%;
    max-width: 550px;
    height: 450px;
    border-radius: var(--radius-xl);
    background: var(--dark);
    box-shadow: var(--shadow-2xl);
}

/* Hero with Image */
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

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

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Hero Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-indicator i {
    color: var(--accent);
    font-size: 1rem;
}

/* Trust Bar */
.trust-bar {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge i {
    color: var(--accent);
    font-size: 1rem;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.trust-logos img {
    height: 28px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== Trusted Companies Section ===== */
.trusted-companies {
    background: #f8f9fa;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trusted-label {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    font-weight: 500;
}

.logo-carousel {
    position: relative;
    width: 100%;
    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: 80px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.company-logo:hover {
    color: #374151;
}

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

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--dark);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-on-dark-muted);
    font-weight: 500;
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list li i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

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

.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
    position: relative;
}

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

.step-number {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Platform Section ===== */
.platform-section {
    padding: var(--section-padding) 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.platform-section .section-header h2 {
    color: var(--white);
}

.platform-section .section-header p {
    color: var(--text-on-dark-muted);
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.platform-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.platform-icon i {
    font-size: 28px;
    color: var(--accent);
}

.platform-card h3 {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 12px;
}

.platform-card p {
    font-size: 15px;
    color: var(--text-on-dark-muted);
    margin-bottom: 24px;
}

.platform-card .platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-card .platform-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.platform-card .platform-features li i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== Results Section ===== */
.results {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.results .section-header h2 {
    color: var(--white);
}

.results .section-header p {
    color: var(--text-on-dark-muted);
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
}

.result-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.result-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-item:last-child {
    border-bottom: none;
}

.result-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.result-text {
    font-size: 14px;
    color: var(--text-on-dark-muted);
}

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

.industry-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.industry-icon i {
    font-size: 28px;
    color: var(--accent);
}

.industry-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.industry-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== CTA Section ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-on-dark-muted);
    font-size: 14px;
    max-width: 300px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-on-dark-muted);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-bottom {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-on-dark-muted);
    font-size: 14px;
    margin: 0;
}

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

.footer-social a {
    color: var(--text-on-dark-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

/* ===== Page Header ===== */
.page-header {
    padding: 160px 0 80px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(79, 70, 229, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header .lead {
    color: var(--text-on-dark-muted);
    max-width: 640px;
    margin: 0 auto;
}

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

.feature-section.alt {
    background: var(--gray-50);
}

.feature-content {
    padding-right: 48px;
}

.feature-content .section-tag {
    margin-bottom: 16px;
}

.feature-content h2 {
    margin-bottom: 16px;
}

.feature-content .lead {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-content p {
    margin-bottom: 16px;
}

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

.feature-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-highlight i {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-highlight h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feature-highlight p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.feature-image {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.feature-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.stat-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-box .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-box .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Sector List */
.sector-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.sector-list li i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

/* Content Types */
.content-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.content-type {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.content-icon i {
    font-size: 20px;
    color: var(--primary);
}

.content-type h5 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.content-type p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Results Showcase */
.results-showcase {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.results-showcase .section-header h2 {
    color: var(--white);
}

.result-case {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.result-stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.result-case h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.result-case p {
    font-size: 15px;
    color: var(--text-on-dark-muted);
    margin: 0;
}

/* ===== Landing Page Styles ===== */
.landing-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.landing-hero .section-tag {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent);
}

.landing-hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.landing-hero h1 .highlight {
    color: var(--accent);
}

.landing-hero p {
    color: var(--text-on-dark-muted);
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 560px;
}

.landing-hero .btn-accent {
    padding: 18px 36px;
    font-size: 16px;
}

.landing-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-2xl);
}

.landing-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.landing-form-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.landing-form-card .form-control {
    border: 2px solid var(--gray-200);
    padding: 14px 16px;
    font-size: 15px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
}

.landing-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
    outline: none;
}

.landing-form-card .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Value Props */
.value-props {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.value-prop-card {
    text-align: center;
    padding: 32px 24px;
}

.value-prop-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-prop-icon i {
    font-size: 32px;
    color: var(--primary);
}

.value-prop-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-prop-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

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

.proof-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.proof-stat .label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* How It Works Landing */
.landing-how-it-works {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.process-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: var(--section-padding) 0;
    background: var(--dark);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--text-on-dark-muted);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Platform Page Styles ===== */
.platform-hero {
    padding: 160px 0 100px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(79, 70, 229, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.platform-hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.platform-hero h1 .highlight {
    background: linear-gradient(90deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-hero p {
    color: var(--text-on-dark-muted);
    font-size: 1.25rem;
    max-width: 640px;
    margin: 0 auto 32px;
}

/* Pillar Section */
.pillar-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.pillar-section.alt {
    background: var(--gray-50);
}

.pillar-section.dark {
    background: var(--dark);
}

.pillar-content {
    padding-right: 48px;
}

.pillar-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pillar-content h2 {
    margin-bottom: 16px;
}

.pillar-content .lead {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.pillar-content p {
    margin-bottom: 24px;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.pillar-features li i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pillar-features li strong {
    color: var(--text-primary);
}

.pillar-features li span {
    color: var(--text-secondary);
    font-size: 15px;
}

.pillar-image {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.pillar-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
}

/* Dark Pillar */
.pillar-section.dark .pillar-number {
    background: var(--accent);
}

.pillar-section.dark h2 {
    color: var(--white);
}

.pillar-section.dark .lead {
    color: var(--accent);
}

.pillar-section.dark p {
    color: var(--text-on-dark-muted);
}

.pillar-section.dark .pillar-features li {
    border-color: rgba(255, 255, 255, 0.1);
}

.pillar-section.dark .pillar-features li strong {
    color: var(--white);
}

.pillar-section.dark .pillar-features li span {
    color: var(--text-on-dark-muted);
}

.pillar-section.dark .pillar-image {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Flow Visualization */
.flow-section {
    padding: 80px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.flow-step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.flow-step-icon i {
    font-size: 24px;
    color: var(--primary);
}

.flow-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.flow-arrow {
    font-size: 24px;
    color: var(--gray-400);
}

@media (max-width: 991.98px) {
    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-steps {
        flex-direction: column;
    }

    .flow-step {
        max-width: 100%;
        width: 100%;
    }
}

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

.contact-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 48px;
    height: 100%;
}

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

.contact-info-card > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.consultation-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.consultation-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.consultation-step .step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consultation-step .step-icon i {
    font-size: 20px;
    color: var(--primary);
}

.consultation-step h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.consultation-step p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.calendly-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.calendly-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.calendly-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.calendly-inline-widget {
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ===== About Page ===== */
.company-overview {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.overview-content h2 {
    margin-bottom: 24px;
}

.overview-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Values */
.values {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.values .section-header h2 {
    color: var(--white);
}

.values .section-header p {
    color: var(--text-on-dark-muted);
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: var(--accent);
}

.value-card h3 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-on-dark-muted);
    margin: 0;
}

/* Team */
.team {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

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

.team-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--gray-100);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder i {
    font-size: 48px;
    color: var(--gray-500);
}

.team-card h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== Industry Pages ===== */
.industry-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
}

.industry-challenge {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.challenge-content h2 {
    margin-bottom: 16px;
}

.challenge-content p {
    margin-bottom: 16px;
}

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

.challenge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: var(--radius);
    border-left: 3px solid #ef4444;
}

.challenge-item i {
    color: #ef4444;
    font-size: 18px;
}

.challenge-item span {
    color: var(--text-primary);
    font-size: 15px;
}

.industry-solution {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

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

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.solution-icon i {
    font-size: 28px;
    color: var(--primary);
}

.solution-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.industry-results {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.industry-results .section-header h2 {
    color: var(--white);
}

.result-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 15px;
    color: var(--text-on-dark-muted);
}

/* ===== Legal Pages ===== */
.legal-content {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.legal-section {
    background: var(--gray-50);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.legal-section h2:first-of-type {
    margin-top: 0;
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-section a {
    color: var(--primary);
}

.legal-section a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-visual {
        min-height: 320px;
        margin-top: 48px;
    }

    .feature-content,
    .pillar-content {
        padding-right: 0;
        margin-bottom: 48px;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .landing-hero {
        padding: 120px 0 60px;
    }

    .landing-form-card {
        margin-top: 48px;
    }

    .platform-hero {
        padding: 140px 0 80px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }

    h1 { font-size: clamp(2rem, 6vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-bar {
        margin-top: 32px;
        padding-top: 24px;
    }

    .trust-logos {
        gap: 24px;
    }

    .hero-trust-indicators {
        gap: 16px;
        margin-top: 24px;
    }

    .trust-indicator {
        font-size: 0.8rem;
    }

    .trusted-companies {
        padding: 40px 0;
    }

    .trusted-label {
        font-size: 0.75rem;
        margin-bottom: 24px;
    }

    .logo-track {
        gap: 40px;
    }

    .company-logo {
        font-size: 1.125rem;
    }

    .stats-bar {
        padding: 32px 0;
    }

    .feature-card,
    .step-card,
    .industry-card,
    .value-card,
    .team-card,
    .solution-card {
        padding: 24px 20px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer {
        padding: 60px 0 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .proof-stats {
        gap: 32px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-info-card {
        padding: 32px 24px;
    }

    .calendly-card {
        padding: 24px;
    }

    .legal-section {
        padding: 32px 24px;
    }
}

@media (max-width: 575.98px) {
    .landing-form-card {
        padding: 24px;
    }

    .result-case {
        padding: 24px;
    }

    .pillar-image {
        padding: 16px;
    }

    .feature-image {
        padding: 16px;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

.feature-card,
.step-card,
.industry-card,
.platform-card,
.value-card,
.team-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }

/* Ensure visibility for non-JS users */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .step-card,
    .industry-card,
    .platform-card,
    .value-card,
    .team-card {
        opacity: 1;
        animation: none;
    }
}

/* ===== Additional Landing Page Styles ===== */
.landing-page {
    background: var(--dark);
}

.landing-nav {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
}

.landing-lead {
    color: var(--text-on-dark-muted);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.landing-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.landing-checklist li i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.landing-form .form-control,
.landing-form .form-select {
    border: 2px solid var(--gray-200);
    padding: 14px 16px;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
    color: var(--text-primary);
}

.landing-form .form-control:focus,
.landing-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
    outline: none;
}

.landing-form .form-control::placeholder {
    color: var(--text-muted);
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 0;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

/* Social Proof Bar */
.social-proof-bar {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.proof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.proof-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin: 0;
}

.proof-items {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.proof-items span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.proof-items span i {
    color: var(--primary);
    font-size: 18px;
}

/* Value Cards (Landing) */
.value-props .value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.value-props .value-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-props .value-icon i {
    font-size: 32px;
    color: var(--primary);
}

.value-props .value-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-props .value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Landing Stats */
.landing-stats {
    padding: 60px 0;
    background: var(--dark);
}

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

.stat-block {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-on-dark-muted);
}

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

    .stat-value {
        font-size: 2rem;
    }
}

/* Features Preview */
.features-preview {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.features-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    width: 100%;
    height: auto;
}

.features-preview .feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-preview .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.features-preview .feature-item i {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.features-preview .feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.features-preview .feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Testimonial */
.testimonial-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content i.bi-quote {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
    display: block;
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Landing CTA */
.landing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
}

.landing-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.landing-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.landing-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Landing Footer */
.landing-footer {
    padding: 32px 0;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo-small {
    height: 28px;
    width: auto;
}

.landing-footer p {
    color: var(--text-on-dark-muted);
    font-size: 14px;
    margin: 0;
}

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

.footer-links-inline a {
    color: var(--text-on-dark-muted);
    font-size: 14px;
    transition: var(--transition);
}

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

@media (max-width: 767.98px) {
    .landing-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-inline {
        gap: 16px;
    }
}

/* ===== Platform Page Additional Styles ===== */

/* Flow Diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.flow-diagram .flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    min-width: 160px;
    flex: 1;
    max-width: 200px;
}

.flow-diagram .flow-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.flow-diagram .flow-icon i {
    font-size: 24px;
    color: var(--primary);
}

.flow-diagram .flow-content h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.flow-diagram .flow-content p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.flow-diagram .flow-arrow {
    font-size: 20px;
    color: var(--gray-400);
}

.flow-diagram .flow-result {
    border-color: var(--accent);
    background: var(--accent-light);
}

.flow-diagram .flow-result .flow-icon {
    background: var(--accent);
}

.flow-diagram .flow-result .flow-icon i {
    color: var(--white);
}

@media (max-width: 991.98px) {
    .flow-diagram {
        flex-direction: column;
    }

    .flow-diagram .flow-step {
        max-width: 100%;
        width: 100%;
    }

    .flow-diagram .flow-arrow {
        transform: rotate(90deg);
    }
}

/* Pillar Badge */
.pillar-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

/* Pillar Alt (alternate background) */
.pillar-alt {
    background: var(--gray-50);
}

/* Pillar Features (detailed) */
.pillar-features {
    margin-top: 24px;
}

.pillar-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.pillar-feature:last-child {
    border-bottom: none;
}

.pillar-feature .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-feature .feature-icon i {
    font-size: 20px;
    color: var(--primary);
}

.pillar-feature .feature-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.pillar-feature .feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.pillar-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Integration Section */
.integration-section {
    padding: 80px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.integration-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    min-width: 140px;
}

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

.integration-item i {
    font-size: 32px;
    color: var(--primary);
}

.integration-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Use Cases Section */
.use-cases {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.use-case-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
}

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

.use-case-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.use-case-icon i {
    font-size: 24px;
    color: var(--accent);
}

.use-case-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.use-case-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.use-case-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.use-case-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* Process Steps (Landing How It Works) */
.process-steps {
    max-width: 640px;
    margin: 48px auto 0;
}

/* ===== Platform Visual Dashboard ===== */
.features-visual {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.visual-dashboard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 0;
    max-width: 700px;
    width: 100%;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.dashboard-dots span:first-child {
    background: #ef4444;
}

.dashboard-dots span:nth-child(2) {
    background: #eab308;
}

.dashboard-dots span:last-child {
    background: #22c55e;
}

.dashboard-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 48px 32px;
}

.pillar-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    min-width: 100px;
    transition: var(--transition);
}

.pillar-node:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.pillar-node i {
    font-size: 28px;
    color: var(--accent);
}

.pillar-node span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.pillar-insights i { color: #818cf8; }
.pillar-marketing i { color: var(--accent); }
.pillar-sales i { color: #22c55e; }

.connection-flow {
    position: relative;
    width: 60px;
    height: 2px;
    display: flex;
    align-items: center;
}

.flow-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.3), rgba(6, 182, 212, 0.5), rgba(34, 197, 94, 0.3));
}

.flow-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: flowPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes flowPulse {
    0%, 100% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% - 8px);
        opacity: 0;
    }
}

.connection-flow:nth-of-type(2) .flow-pulse {
    animation-delay: 1s;
}

.dashboard-footer {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.data-flow-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive adjustments for visual dashboard */
@media (max-width: 767.98px) {
    .dashboard-content {
        flex-direction: column;
        gap: 0;
        padding: 32px 24px;
    }

    .connection-flow {
        width: 2px;
        height: 40px;
        flex-direction: column;
    }

    .flow-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(79, 70, 229, 0.3), rgba(6, 182, 212, 0.5), rgba(34, 197, 94, 0.3));
    }

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

    @keyframes flowPulseVertical {
        0%, 100% {
            top: 0;
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            top: calc(100% - 8px);
            opacity: 0;
        }
    }

    .pillar-node {
        min-width: 140px;
    }
}

/* ===== Visual Analytics (Pillar 1 - Market Insights) ===== */
.visual-analytics {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.visual-analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(79, 70, 229, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.analytics-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.analytics-card.full-width {
    grid-column: 1 / -1;
}

.analytics-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.analytics-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-icon i {
    font-size: 16px;
    color: var(--white);
}

.analytics-icon.primary { background: var(--primary); }
.analytics-icon.accent { background: var(--accent); }
.analytics-icon.success { background: #10b981; }

.analytics-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.analytics-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

/* Trend indicators */
.trend-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trend-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.trend-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.trend-badge.up {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.trend-badge.down {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Mini bar chart */
.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 70px;
    margin-top: 12px;
}

.mini-bar-chart .bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), rgba(79, 70, 229, 0.6));
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.mini-bar-chart .bar:nth-child(1) { height: 50%; }
.mini-bar-chart .bar:nth-child(2) { height: 75%; }
.mini-bar-chart .bar:nth-child(3) { height: 60%; }
.mini-bar-chart .bar:nth-child(4) { height: 90%; }
.mini-bar-chart .bar:nth-child(5) { height: 70%; }
.mini-bar-chart .bar:nth-child(6) { height: 85%; }

/* Metrics row */
.metrics-display {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.metric-box {
    flex: 1;
    text-align: center;
    padding: 14px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.metric-box .value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.metric-box .value i {
    font-size: 14px;
    color: #10b981;
}

.metric-box .label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Pulse dot */
.pulse-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #10b981;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ===== Visual Automation (Pillar 2 - Marketing Automation) ===== */
.visual-automation {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.visual-automation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(79, 70, 229, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.automation-content {
    position: relative;
    z-index: 1;
}

/* Workflow container */
.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
}

.workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 2px solid transparent;
    min-width: 80px;
    transition: var(--transition);
}

.workflow-node:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.workflow-node.active {
    border-color: var(--accent);
    background: var(--accent-light);
}

.workflow-node-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-node-icon i {
    font-size: 16px;
}

.workflow-node-icon.ai {
    background: var(--primary-light);
}
.workflow-node-icon.ai i { color: var(--primary); }

.workflow-node-icon.linkedin {
    background: #0a66c2;
}
.workflow-node-icon.linkedin i { color: var(--white); }

.workflow-node-icon.email {
    background: rgba(239, 68, 68, 0.1);
}
.workflow-node-icon.email i { color: #ef4444; }

.workflow-node-icon.web {
    background: rgba(16, 185, 129, 0.1);
}
.workflow-node-icon.web i { color: #10b981; }

.workflow-node-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Flow arrow */
.flow-arrow {
    color: var(--gray-400);
    font-size: 18px;
    flex-shrink: 0;
}

/* Platform icons */
.platform-targets {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
}

.platform-target {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px;
}

.platform-target i {
    font-size: 24px;
}

.platform-target span {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.platform-target.linkedin i { color: #0a66c2; }
.platform-target.email i { color: #ef4444; }
.platform-target.web i { color: #10b981; }
.platform-target.twitter i { color: #1da1f2; }

/* Progress indicators */
.progress-indicators {
    display: flex;
    gap: 12px;
}

.progress-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

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

.progress-dot.active { background: #10b981; }
.progress-dot.pending { background: var(--primary); }
.progress-dot.queued { background: #f59e0b; }

.progress-info {
    flex: 1;
    min-width: 0;
}

.progress-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.progress-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== Visual Conversation (Pillar 3 - Sales Automation) ===== */
.visual-conversation {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.visual-conversation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(79, 70, 229, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.conversation-content {
    position: relative;
    z-index: 1;
}

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

.conversation-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.panel-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-icon i {
    font-size: 14px;
    color: var(--white);
}

.panel-icon.chat { background: var(--primary); }
.panel-icon.calendar { background: var(--accent); }
.panel-icon.leads { background: #f59e0b; }
.panel-icon.success { background: #10b981; }

.panel-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.panel-body {
    padding: 16px;
}

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

.chat-message {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

.chat-message.ai .chat-avatar {
    background: var(--primary);
    color: var(--white);
}

.chat-message.user .chat-avatar {
    background: var(--gray-200);
    color: var(--text-secondary);
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: var(--radius-lg);
    font-size: 12px;
    line-height: 1.5;
    max-width: 85%;
}

.chat-message.ai .chat-bubble {
    background: var(--primary-light);
    color: var(--text-primary);
}

.chat-message.user .chat-bubble {
    background: var(--gray-100);
    color: var(--text-primary);
}

/* Calendar widget */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calendar-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.calendar-nav {
    display: flex;
    gap: 4px;
}

.calendar-nav button {
    width: 24px;
    height: 24px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.calendar-nav button:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.time-slot:hover {
    background: var(--primary-light);
}

.time-slot.selected {
    background: var(--primary);
    color: var(--white);
}

.slot-time {
    font-weight: 600;
}

/* Lead cards */
.lead-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lead-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid transparent;
}

.lead-item.hot { border-left-color: #ef4444; }
.lead-item.warm { border-left-color: #f59e0b; }
.lead-item.qualified { border-left-color: #10b981; }

.lead-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.lead-details {
    flex: 1;
    min-width: 0;
}

.lead-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.lead-company {
    font-size: 10px;
    color: var(--text-muted);
}

.lead-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.lead-badge.hot { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.lead-badge.warm { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.lead-badge.qualified { background: rgba(16, 185, 129, 0.1); color: #10b981; }

/* Booked meeting confirmation */
.booked-confirmation {
    text-align: center;
    padding: 8px 0;
}

.booked-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.booked-icon i {
    font-size: 24px;
    color: #10b981;
}

.booked-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.booked-details {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.booked-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

/* Responsive for pillar visuals */
@media (max-width: 767.98px) {
    .analytics-grid,
    .conversation-grid {
        grid-template-columns: 1fr;
    }

    .analytics-card.full-width {
        grid-column: auto;
    }

    .workflow-visual {
        flex-direction: column;
        gap: 8px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .workflow-node {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        text-align: left;
    }

    .platform-targets {
        flex-wrap: wrap;
        gap: 16px;
    }

    .progress-indicators {
        flex-direction: column;
    }

    .mini-bar-chart {
        height: 50px;
    }
}

/* =====================================================================
   PREMIUM FEATURES VISUAL COMPONENTS
   Pure CSS-based visual mockups for feature sections
   ===================================================================== */

/* ===== Base Container - Features Visual ===== */
.features-visual-premium {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 50%, var(--secondary-light) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        var(--shadow-2xl),
        0 0 60px rgba(79, 70, 229, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-slow);
}

.features-visual-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(79, 70, 229, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.features-visual-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    animation: premiumGridFloat 20s linear infinite;
}

@keyframes premiumGridFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 24px); }
}

.features-visual-premium:hover {
    box-shadow:
        var(--shadow-2xl),
        0 0 80px rgba(79, 70, 229, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Floating decorative dots */
.visual-floating-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.visual-floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.4;
    animation: premiumFloatDot 8s ease-in-out infinite;
}

.visual-floating-dot:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.visual-floating-dot:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; background: var(--primary); }
.visual-floating-dot:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; }
.visual-floating-dot:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 3s; background: #a5b4fc; }
.visual-floating-dot:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; background: var(--primary); }
.visual-floating-dot:nth-child(6) { top: 60%; right: 8%; animation-delay: 5s; }
.visual-floating-dot:nth-child(7) { top: 10%; left: 50%; animation-delay: 6s; width: 4px; height: 4px; }
.visual-floating-dot:nth-child(8) { bottom: 15%; right: 30%; animation-delay: 7s; width: 8px; height: 8px; background: var(--primary); }

@keyframes premiumFloatDot {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}

/* Glass card base */
.visual-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition-slow);
}

.visual-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ===== Visual Dashboard Premium ===== */
.visual-dashboard-premium {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.visual-dashboard-premium .dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-dashboard-premium .dash-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.visual-dashboard-premium .dash-logo::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 4px;
    opacity: 0.9;
}

.visual-dashboard-premium .dash-title-group {
    flex: 1;
}

.visual-dashboard-premium .dash-title {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.visual-dashboard-premium .dash-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.visual-dashboard-premium .dash-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.visual-dashboard-premium .dash-status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
    animation: premiumStatusPulse 2s ease-in-out infinite;
}

@keyframes premiumStatusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

.visual-dashboard-premium .dash-status-text {
    color: #22c55e;
    font-size: 11px;
    font-weight: 500;
}

.visual-dashboard-premium .dash-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.visual-dashboard-premium .dash-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: var(--transition);
}

.visual-dashboard-premium .dash-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.visual-dashboard-premium .dash-card.accent {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.08);
}

.visual-dashboard-premium .dash-card.primary {
    border-color: rgba(79, 70, 229, 0.3);
    background: rgba(79, 70, 229, 0.08);
}

.visual-dashboard-premium .dash-card.success {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
}

.visual-dashboard-premium .dash-card-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-dashboard-premium .dash-card-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 4px;
    opacity: 0.8;
}

.visual-dashboard-premium .dash-card.primary .dash-card-icon::before {
    background: var(--primary);
}

.visual-dashboard-premium .dash-card.success .dash-card-icon::before {
    background: #22c55e;
    border-radius: 50%;
}

.visual-dashboard-premium .dash-card-value {
    display: block;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.visual-dashboard-premium .dash-card-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visual-dashboard-premium .dash-card-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 4px 8px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
    color: #22c55e;
}

.visual-dashboard-premium .dash-card-trend::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 5px solid #22c55e;
}

.visual-dashboard-premium .dash-card-full {
    grid-column: span 2;
}

.visual-dashboard-premium .dash-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.visual-dashboard-premium .dash-progress {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.visual-dashboard-premium .dash-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    width: 0;
    animation: premiumProgressGrow 2s ease-out 0.5s forwards;
}

@keyframes premiumProgressGrow {
    0% { width: 0%; }
    100% { width: 78%; }
}

.visual-dashboard-premium .dash-progress-value {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    min-width: 40px;
}

/* Floating card elements */
.visual-dashboard-premium .dash-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    animation: premiumFloatCard 6s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.visual-dashboard-premium .dash-floating-card.top-right {
    top: -25px;
    right: -35px;
    animation-delay: 0s;
}

.visual-dashboard-premium .dash-floating-card.bottom-left {
    bottom: -20px;
    left: -30px;
    animation-delay: 3s;
}

@keyframes premiumFloatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.visual-dashboard-premium .floating-stat {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.visual-dashboard-premium .floating-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ===== Visual Analytics Premium ===== */
.visual-analytics-premium {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.visual-analytics-premium .analytics-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.visual-analytics-premium .analytics-title {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.visual-analytics-premium .analytics-period {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
}

.visual-analytics-premium .analytics-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 160px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    gap: 8px;
    position: relative;
}

/* Grid lines */
.visual-analytics-premium .analytics-chart::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.05) 39px, rgba(255, 255, 255, 0.05) 40px);
    pointer-events: none;
}

.visual-analytics-premium .chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(79, 70, 229, 0.3) 100%);
    border-radius: 4px 4px 0 0;
    min-width: 24px;
    max-width: 40px;
    transition: var(--transition);
    position: relative;
    animation: premiumBarGrow 1s ease-out backwards;
}

.visual-analytics-premium .chart-bar:nth-child(1) { height: 45%; animation-delay: 0.1s; }
.visual-analytics-premium .chart-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.visual-analytics-premium .chart-bar:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.visual-analytics-premium .chart-bar:nth-child(4) {
    height: 80%;
    animation-delay: 0.4s;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(6, 182, 212, 0.3) 100%);
}
.visual-analytics-premium .chart-bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
.visual-analytics-premium .chart-bar:nth-child(6) {
    height: 90%;
    animation-delay: 0.6s;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(6, 182, 212, 0.3) 100%);
}
.visual-analytics-premium .chart-bar:nth-child(7) { height: 75%; animation-delay: 0.7s; }
.visual-analytics-premium .chart-bar:nth-child(8) { height: 85%; animation-delay: 0.8s; }

@keyframes premiumBarGrow {
    0% { height: 0% !important; opacity: 0; }
    100% { opacity: 1; }
}

.visual-analytics-premium .chart-bar:hover {
    filter: brightness(1.2);
    transform: scaleY(1.05);
    transform-origin: bottom;
}

.visual-analytics-premium .chart-bar:hover::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--white);
}

.visual-analytics-premium .analytics-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.visual-analytics-premium .metric {
    text-align: center;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.visual-analytics-premium .metric:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.visual-analytics-premium .metric-value {
    display: block;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.visual-analytics-premium .metric-value.accent {
    color: var(--accent);
}

.visual-analytics-premium .metric-value.success {
    color: #22c55e;
}

.visual-analytics-premium .metric-value.primary {
    color: #a5b4fc;
}

.visual-analytics-premium .metric-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating metric badges */
.visual-analytics-premium .analytics-floating {
    position: absolute;
    background: rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: premiumFloatMetric 5s ease-in-out infinite;
    z-index: 3;
}

.visual-analytics-premium .analytics-floating.top-right {
    top: 10px;
    right: -25px;
}

.visual-analytics-premium .analytics-floating.bottom-left {
    bottom: 50px;
    left: -20px;
    animation-delay: 2.5s;
    background: rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

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

.visual-analytics-premium .floating-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #22c55e;
}

.visual-analytics-premium .analytics-floating.bottom-left .floating-arrow {
    border-bottom-color: var(--primary);
}

.visual-analytics-premium .floating-value {
    font-weight: 700;
    font-size: 12px;
    color: #22c55e;
}

.visual-analytics-premium .analytics-floating.bottom-left .floating-value {
    color: #a5b4fc;
}

/* ===== Visual Automation Premium ===== */
.visual-automation-premium {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.visual-automation-premium .automation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-automation-premium .automation-title {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.visual-automation-premium .automation-badge {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visual-automation-premium .automation-flow {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visual-automation-premium .flow-node {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.visual-automation-premium .flow-node:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.visual-automation-premium .flow-node.active {
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.1);
}

.visual-automation-premium .flow-node.active .node-icon {
    background: var(--accent);
    animation: premiumNodeGlow 2s ease-in-out infinite;
}

@keyframes premiumNodeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(6, 182, 212, 0.3); }
}

.visual-automation-premium .flow-node.completed {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.visual-automation-premium .flow-node.completed .node-icon {
    background: rgba(34, 197, 94, 0.2);
}

.visual-automation-premium .node-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.visual-automation-premium .node-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--white);
    opacity: 0.8;
}

.visual-automation-premium .flow-node:nth-child(1) .node-icon::before {
    border-radius: 50%;
}

.visual-automation-premium .flow-node:nth-child(2) .node-icon::before {
    border-radius: 4px;
    transform: rotate(45deg);
    width: 16px;
    height: 16px;
}

.visual-automation-premium .flow-node:nth-child(3) .node-icon::before {
    border-radius: 2px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.visual-automation-premium .flow-node:nth-child(4) .node-icon::before {
    width: 16px;
    height: 16px;
    border: 3px solid var(--white);
    background: transparent;
    border-radius: 50%;
}

.visual-automation-premium .node-content {
    flex: 1;
}

.visual-automation-premium .node-title {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.visual-automation-premium .node-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.visual-automation-premium .node-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.visual-automation-premium .flow-node.active .node-status {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: premiumStatusPulse 2s ease-in-out infinite;
}

.visual-automation-premium .flow-node.completed .node-status {
    background: var(--accent);
}

/* Connection lines */
.visual-automation-premium .flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    margin-left: 42px;
    position: relative;
}

.visual-automation-premium .connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.5) 0%, rgba(79, 70, 229, 0.5) 100%);
    position: relative;
}

.visual-automation-premium .connector-dot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: premiumConnectorPulse 1.5s ease-in-out infinite;
}

@keyframes premiumConnectorPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(0.7); }
}

/* Side floating elements */
.visual-automation-premium .automation-sidebar {
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visual-automation-premium .sidebar-item {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: premiumSidebarFloat 4s ease-in-out infinite;
}

.visual-automation-premium .sidebar-item:nth-child(1) { animation-delay: 0s; }
.visual-automation-premium .sidebar-item:nth-child(2) { animation-delay: 0.5s; }
.visual-automation-premium .sidebar-item:nth-child(3) { animation-delay: 1s; }

@keyframes premiumSidebarFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.visual-automation-premium .sidebar-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent);
    opacity: 0.6;
    border-radius: 2px;
}

.visual-automation-premium .sidebar-item:nth-child(2)::before {
    background: var(--primary);
    border-radius: 50%;
}

.visual-automation-premium .sidebar-item:nth-child(3)::before {
    background: #22c55e;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

/* ===== Visual Conversation Premium ===== */
.visual-conversation-premium {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    padding: 20px;
}

.visual-conversation-premium .chat-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.visual-conversation-premium .chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-conversation-premium .chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.visual-conversation-premium .chat-avatar::before {
    content: 'AI';
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
}

.visual-conversation-premium .chat-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--dark);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.visual-conversation-premium .chat-info {
    flex: 1;
}

.visual-conversation-premium .chat-name {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.visual-conversation-premium .chat-status {
    color: #22c55e;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.visual-conversation-premium .chat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: premiumStatusPulse 2s ease-in-out infinite;
}

.visual-conversation-premium .chat-options {
    display: flex;
    gap: 4px;
}

.visual-conversation-premium .chat-option-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.visual-conversation-premium .chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
}

.visual-conversation-premium .chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 13px;
    line-height: 1.5;
    animation: premiumMessageSlide 0.4s ease-out backwards;
}

.visual-conversation-premium .chat-message.ai {
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.3);
    color: rgba(255, 255, 255, 0.9);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.visual-conversation-premium .chat-message.user {
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: rgba(255, 255, 255, 0.9);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    animation-delay: 0.3s;
}

.visual-conversation-premium .chat-message:nth-child(3) {
    animation-delay: 0.6s;
}

.visual-conversation-premium .chat-message:nth-child(4) {
    animation-delay: 0.9s;
}

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

.visual-conversation-premium .chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-bottom-left-radius: 4px;
    max-width: 70px;
    align-self: flex-start;
}

.visual-conversation-premium .typing-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: premiumTypingBounce 1.4s ease-in-out infinite;
}

.visual-conversation-premium .typing-dot:nth-child(1) { animation-delay: 0s; }
.visual-conversation-premium .typing-dot:nth-child(2) { animation-delay: 0.2s; }
.visual-conversation-premium .typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes premiumTypingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.visual-conversation-premium .chat-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-conversation-premium .input-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    transition: var(--transition);
}

.visual-conversation-premium .input-field:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.visual-conversation-premium .input-send {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.visual-conversation-premium .input-send:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

.visual-conversation-premium .input-send::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--white);
    margin-left: 2px;
}

/* Floating notification */
.visual-conversation-premium .chat-notification {
    position: absolute;
    top: -15px;
    right: 30px;
    background: rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: premiumNotificationFloat 4s ease-in-out infinite;
    z-index: 3;
}

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

.visual-conversation-premium .notification-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: premiumStatusPulse 2s ease-in-out infinite;
}

.visual-conversation-premium .notification-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 500;
}

/* Floating response time badge */
.visual-conversation-premium .response-badge {
    position: absolute;
    bottom: -10px;
    left: 30px;
    background: rgba(79, 70, 229, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: premiumNotificationFloat 4s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 3;
}

.visual-conversation-premium .response-badge-icon {
    width: 12px;
    height: 12px;
    border: 2px solid #a5b4fc;
    border-radius: 50%;
    position: relative;
}

.visual-conversation-premium .response-badge-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 2px;
    background: #a5b4fc;
    transform-origin: left center;
    transform: translateY(-50%);
}

.visual-conversation-premium .response-badge-text {
    color: #a5b4fc;
    font-size: 11px;
    font-weight: 500;
}

/* ===== Responsive Styles for Premium Feature Visuals ===== */
@media (max-width: 991.98px) {
    .features-visual-premium {
        min-height: 380px;
        padding: 24px;
    }

    .visual-dashboard-premium,
    .visual-analytics-premium,
    .visual-automation-premium,
    .visual-conversation-premium {
        max-width: 100%;
    }

    .visual-dashboard-premium .dash-floating-card {
        display: none;
    }

    .visual-analytics-premium .analytics-floating {
        display: none;
    }

    .visual-automation-premium .automation-sidebar {
        display: none;
    }

    .visual-conversation-premium .chat-notification,
    .visual-conversation-premium .response-badge {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .features-visual-premium {
        min-height: 340px;
        padding: 20px;
    }

    .visual-dashboard-premium .dash-cards {
        grid-template-columns: 1fr;
    }

    .visual-dashboard-premium .dash-card-full {
        grid-column: span 1;
    }

    .visual-analytics-premium .analytics-chart {
        height: 120px;
    }

    .visual-analytics-premium .analytics-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .visual-automation-premium .flow-node {
        padding: 12px 16px;
    }

    .visual-automation-premium .node-icon {
        width: 36px;
        height: 36px;
    }

    .visual-conversation-premium .chat-messages {
        min-height: 180px;
        padding: 16px;
    }

    .visual-conversation-premium .chat-message {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .features-visual-premium {
        min-height: 320px;
        padding: 16px;
        border-radius: var(--radius-lg);
    }

    .visual-dashboard-premium,
    .visual-analytics-premium,
    .visual-automation-premium {
        padding: 16px;
    }

    .visual-analytics-premium .analytics-metrics {
        gap: 8px;
    }

    .visual-analytics-premium .metric {
        padding: 10px 8px;
    }

    .visual-analytics-premium .metric-value {
        font-size: 1rem;
    }
}

/* ===== Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {
    .features-visual-premium::after,
    .visual-floating-dot,
    .dash-floating-card,
    .analytics-floating,
    .visual-analytics-premium .chart-bar,
    .visual-dashboard-premium .dash-progress-bar,
    .connector-dot,
    .sidebar-item,
    .visual-conversation-premium .chat-message,
    .typing-dot,
    .chat-notification,
    .response-badge,
    .visual-automation-premium .node-icon,
    .visual-dashboard-premium .dash-status-dot {
        animation: none !important;
    }

    .visual-dashboard-premium .dash-progress-bar {
        width: 78%;
    }

    .visual-analytics-premium .chart-bar:nth-child(1) { height: 45%; }
    .visual-analytics-premium .chart-bar:nth-child(2) { height: 65%; }
    .visual-analytics-premium .chart-bar:nth-child(3) { height: 55%; }
    .visual-analytics-premium .chart-bar:nth-child(4) { height: 80%; }
    .visual-analytics-premium .chart-bar:nth-child(5) { height: 70%; }
    .visual-analytics-premium .chart-bar:nth-child(6) { height: 90%; }
    .visual-analytics-premium .chart-bar:nth-child(7) { height: 75%; }
    .visual-analytics-premium .chart-bar:nth-child(8) { height: 85%; }
}

/* ===== Gradient Overlay Variants ===== */
.features-visual-premium.gradient-primary {
    background: linear-gradient(135deg, #1e1b4b 0%, var(--dark) 50%, #0f172a 100%);
}

.features-visual-premium.gradient-accent {
    background: linear-gradient(135deg, #164e63 0%, var(--dark) 50%, #0f172a 100%);
}

.features-visual-premium.gradient-mixed {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 40%, #164e63 100%);
}

/* ============================================================
   PREMIUM VISUAL STYLES
   Enhanced visual elements with animations and effects
   ============================================================ */

/* ===== Keyframe Animations ===== */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(79, 70, 229, 0.8), 0 0 60px rgba(6, 182, 212, 0.4);
    }
}

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

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

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

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(10px, -15px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(20px, 0) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translate(10px, 15px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes nodeConnect {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* ===== 1. Enhanced Hero Section ===== */
.hero-enhanced {
    position: relative;
    min-height: 85vh;
    background: var(--dark);
    overflow: hidden;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

.hero-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, transparent 40%, rgba(79, 70, 229, 0.1) 50%, transparent 60%),
        linear-gradient(225deg, transparent 40%, rgba(6, 182, 212, 0.1) 50%, transparent 60%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite reverse;
    z-index: 1;
}

.hero-enhanced .container {
    position: relative;
    z-index: 3;
}

/* Floating Geometric Shapes */
.hero-enhanced-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    opacity: 0.15;
}

.hero-shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    top: 10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.2));
    top: 60%;
    right: 5%;
    animation: float 10s ease-in-out infinite 2s;
}

.hero-shape-square {
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent);
    transform: rotate(45deg);
    top: 20%;
    right: 15%;
    animation: floatReverse 9s ease-in-out infinite 1s;
}

.hero-shape-square-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(16, 185, 129, 0.15));
    transform: rotate(30deg);
    bottom: 20%;
    left: 10%;
    animation: float 7s ease-in-out infinite 3s;
}

.hero-shape-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
}

.hero-shape-dot-1 { top: 25%; left: 20%; animation: float 5s ease-in-out infinite; }
.hero-shape-dot-2 { top: 45%; left: 80%; animation: float 6s ease-in-out infinite 1s; }
.hero-shape-dot-3 { top: 70%; left: 30%; animation: float 7s ease-in-out infinite 2s; }
.hero-shape-dot-4 { top: 15%; right: 25%; animation: float 5.5s ease-in-out infinite 0.5s; }
.hero-shape-dot-5 { bottom: 25%; right: 35%; animation: float 6.5s ease-in-out infinite 1.5s; }

/* Glowing Accent Elements */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(79, 70, 229, 0.3);
    top: -10%;
    left: 20%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.25);
    bottom: 10%;
    right: 10%;
    animation: pulse 10s ease-in-out infinite 2s;
}

.hero-glow-3 {
    width: 200px;
    height: 200px;
    background: rgba(16, 185, 129, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 12s ease-in-out infinite 4s;
}

/* ===== 2. Premium Stats Bar ===== */
.stats-bar-premium {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.stats-bar-premium .stat-card {
    position: relative;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    min-width: 180px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stats-bar-premium .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-bar-premium .stat-card:hover::before {
    opacity: 1;
    animation: borderGradient 3s ease infinite;
}

.stats-bar-premium .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats-bar-premium .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
    animation: pulse 3s ease-in-out infinite;
}

.stats-bar-premium .stat-label {
    font-size: 0.95rem;
    color: var(--text-on-dark-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-bar-premium .stat-card:nth-child(2) .stat-number {
    animation-delay: 0.5s;
}

.stats-bar-premium .stat-card:nth-child(3) .stat-number {
    animation-delay: 1s;
}

.stats-bar-premium .stat-card:nth-child(4) .stat-number {
    animation-delay: 1.5s;
}

/* ===== 3. Visual Step Cards ===== */
.step-cards-visual {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 40px 0;
}

.step-card-visual {
    position: relative;
    flex: 1;
    max-width: 320px;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    z-index: 2;
}

/* Connection Lines - Desktop */
.step-card-visual::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -60px;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.5;
    z-index: 1;
}

.step-card-visual:last-child::after {
    display: none;
}

.step-card-visual:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.3);
}

.step-card-visual:hover .step-number-visual {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    animation: pulseGlow 2s ease-in-out infinite;
}

.step-number-visual {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.15);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    animation: pulse 3s ease-in-out infinite;
}

.step-card-visual:nth-child(2) .step-number-visual {
    animation-delay: 0.5s;
}

.step-card-visual:nth-child(3) .step-number-visual {
    animation-delay: 1s;
}

.step-card-visual .step-icon-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(6, 182, 212, 0.15));
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.step-card-visual:hover .step-icon-visual {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.5);
}

.step-card-visual h4 {
    color: var(--text-on-dark);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step-card-visual p {
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Step Cards on Light Background Override */
.how-it-works .step-card-visual {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.how-it-works .step-card-visual:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.how-it-works .step-card-visual h4 {
    color: var(--dark);
}

.how-it-works .step-card-visual p {
    color: var(--gray-600);
}

.how-it-works .step-card-visual .step-number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
}

/* ===== 4. Premium Result Cards ===== */
.result-cards-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.result-card-premium {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Animated Gradient Border */
.result-card-premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--success), var(--primary));
    background-size: 300% 300%;
    animation: borderGradient 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.result-card-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    background: rgba(15, 23, 42, 0.95);
    z-index: -1;
}

.result-card-premium:hover::before {
    opacity: 1;
}

.result-card-premium:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(79, 70, 229, 0.2);
}

.result-card-premium .result-stat {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.result-card-premium .result-label {
    font-size: 1.125rem;
    color: var(--text-on-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.result-card-premium .result-description {
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
}

.result-card-premium .result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.4s ease;
}

.result-card-premium:hover .result-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    animation: pulseGlow 2s ease-in-out infinite;
}

/* ===== 5. Enhanced Industry Cards ===== */
.industry-cards-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.industry-card-premium {
    position: relative;
    padding: 40px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.industry-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(79, 70, 229, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card-premium:hover::before {
    opacity: 1;
}

.industry-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(79, 70, 229, 0.15),
        inset 0 0 20px rgba(79, 70, 229, 0.05);
}

.industry-card-premium .industry-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(6, 182, 212, 0.15));
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s ease;
    z-index: 1;
}

.industry-card-premium .industry-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.industry-card-premium:hover .industry-icon {
    color: var(--white);
    animation: pulseGlow 2s ease-in-out infinite;
}

.industry-card-premium:hover .industry-icon::after {
    transform: translate(-50%, -50%) scale(1);
}

.industry-card-premium h4 {
    color: var(--text-on-dark);
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.industry-card-premium p {
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Industry Cards on Light Background Override */
.industries .industry-card-premium {
    background: var(--white);
    border: 1px solid var(--gray-200);
    backdrop-filter: none;
}

.industries .industry-card-premium:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.industries .industry-card-premium h3,
.industries .industry-card-premium h4 {
    color: var(--dark);
}

.industries .industry-card-premium p {
    color: var(--gray-600);
}

.industries .industry-card-premium .industry-icon {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
}

.industries .industry-card-premium:hover .industry-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
}

/* ===== 6. Premium CTA Section ===== */
.cta-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 50%, var(--dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(79, 70, 229, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    z-index: 1;
}

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

/* Floating Particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    animation: floatParticle 15s linear infinite;
}

.cta-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cta-particle:nth-child(2) { top: 40%; left: 25%; animation-delay: 2s; background: var(--accent); }
.cta-particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.cta-particle:nth-child(4) { top: 30%; right: 20%; animation-delay: 1s; background: var(--accent); }
.cta-particle:nth-child(5) { top: 70%; right: 10%; animation-delay: 3s; }
.cta-particle:nth-child(6) { top: 50%; right: 30%; animation-delay: 5s; background: var(--success); }

.cta-shape {
    position: absolute;
    opacity: 0.1;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite;
}

.cta-shape-2 {
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent);
    transform: rotate(45deg);
    bottom: 10%;
    right: 5%;
    animation: floatReverse 8s ease-in-out infinite;
}

/* Glass Morphism Button */
.btn-glass {
    position: relative;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-glass:hover::before {
    left: 100%;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-glass-primary {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(6, 182, 212, 0.3));
    border-color: rgba(79, 70, 229, 0.4);
}

.btn-glass-primary:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.5), rgba(6, 182, 212, 0.5));
    border-color: rgba(79, 70, 229, 0.6);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(79, 70, 229, 0.3);
}

/* ===== 7. Feature Page Hero Visual ===== */
.features-hero-visual {
    position: relative;
    min-height: 70vh;
    background: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.features-hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    z-index: 1;
}

/* Gradient Mesh Overlay */
.features-hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, transparent 25%, rgba(79, 70, 229, 0.05) 25%, rgba(79, 70, 229, 0.05) 50%, transparent 50%, transparent 75%, rgba(6, 182, 212, 0.05) 75%);
    background-size: 60px 60px;
    opacity: 0.5;
    z-index: 1;
}

.features-hero-visual .container {
    position: relative;
    z-index: 3;
}

/* Abstract Connected Nodes Background */
.features-nodes-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.feature-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

.feature-node::before,
.feature-node::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
    animation: nodeConnect 3s ease-in-out infinite;
}

.feature-node-1 { top: 20%; left: 15%; }
.feature-node-1::before { width: 150px; height: 1px; top: 50%; left: 100%; transform: rotate(30deg); }

.feature-node-2 { top: 35%; left: 30%; }
.feature-node-2::before { width: 120px; height: 1px; top: 50%; left: 100%; transform: rotate(-15deg); }
.feature-node-2::after { width: 100px; height: 1px; top: 50%; right: 100%; transform: rotate(-30deg); animation-delay: 1s; }

.feature-node-3 { top: 25%; right: 25%; }
.feature-node-3::before { width: 180px; height: 1px; top: 50%; right: 100%; transform: rotate(20deg); animation-delay: 0.5s; }

.feature-node-4 { top: 60%; left: 20%; }
.feature-node-4::before { width: 140px; height: 1px; top: 50%; left: 100%; transform: rotate(-25deg); animation-delay: 1.5s; }

.feature-node-5 { top: 70%; right: 15%; }
.feature-node-5::before { width: 160px; height: 1px; top: 50%; right: 100%; transform: rotate(15deg); animation-delay: 2s; }

/* Floating Feature Icons */
.features-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-feature-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.7;
}

.floating-feature-icon-1 { top: 15%; left: 8%; animation: float 8s ease-in-out infinite; }
.floating-feature-icon-2 { top: 25%; right: 10%; animation: float 10s ease-in-out infinite 1s; }
.floating-feature-icon-3 { top: 60%; left: 5%; animation: floatReverse 9s ease-in-out infinite 2s; }
.floating-feature-icon-4 { bottom: 20%; right: 8%; animation: float 7s ease-in-out infinite 0.5s; }

/* ===== 8. Feature Cards Grid Premium ===== */
.feature-cards-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card-premium {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Animated Border Gradient */
.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--success), var(--primary));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-premium:hover::before {
    opacity: 1;
    animation: borderGradient 3s ease infinite;
}

.feature-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(79, 70, 229, 0.15);
}

.feature-card-premium .feature-icon-premium {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(6, 182, 212, 0.15));
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.feature-card-premium .feature-icon-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.feature-card-premium:hover .feature-icon-premium {
    color: var(--white);
    animation: pulseGlow 2s ease-in-out infinite;
}

.feature-card-premium:hover .feature-icon-premium::before {
    transform: translate(-50%, -50%) scale(1);
}

.feature-card-premium h4 {
    color: var(--text-on-dark);
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.feature-card-premium p {
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-card-premium .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card-premium .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-on-dark-muted);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card-premium .feature-list li:last-child {
    border-bottom: none;
}

.feature-card-premium .feature-list li i {
    color: var(--success);
    font-size: 0.75rem;
}

/* Feature Card Premium - Light Background Override */
.features .feature-card-premium {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.features .feature-card-premium:hover {
    background: var(--white);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(79, 70, 229, 0.1);
}

.features .feature-card-premium h3 {
    color: var(--dark);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.features .feature-card-premium p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features .feature-card-premium .feature-list li {
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.features .feature-card-premium .feature-list li:last-child {
    border-bottom: none;
}

.features .feature-card-premium .feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.features .feature-card-premium:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.3);
}

.features .feature-card-premium .feature-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.features .feature-card-premium:hover .feature-card-glow {
    opacity: 1;
}

/* ===== Premium Visual Responsive Styles ===== */

/* Tablet - 991px */
@media (max-width: 991.98px) {
    .hero-enhanced {
        min-height: 90vh;
    }

    .hero-shape-circle {
        width: 200px;
        height: 200px;
    }

    .hero-shape-circle-2 {
        width: 150px;
        height: 150px;
    }

    .hero-shape-square {
        width: 100px;
        height: 100px;
    }

    .hero-glow-1 {
        width: 300px;
        height: 300px;
    }

    .hero-glow-2 {
        width: 200px;
        height: 200px;
    }

    .stats-bar-premium {
        gap: 16px;
    }

    .stats-bar-premium .stat-card {
        padding: 24px 32px;
        min-width: 150px;
    }

    .stats-bar-premium .stat-number {
        font-size: 2.5rem;
    }

    .step-cards-visual {
        flex-wrap: wrap;
        gap: 24px;
    }

    .step-card-visual {
        max-width: 100%;
        flex: 1 1 280px;
    }

    .step-card-visual::after {
        display: none;
    }

    .result-card-premium .result-stat {
        font-size: 3rem;
    }

    .feature-cards-premium {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .features-hero-visual {
        min-height: 60vh;
    }

    .floating-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .cta-premium {
        padding: 80px 0;
    }
}

/* Mobile Landscape - 767px */
@media (max-width: 767.98px) {
    .hero-enhanced {
        min-height: 80vh;
    }

    .hero-enhanced-shapes .hero-shape {
        opacity: 0.1;
    }

    .hero-shape-circle {
        width: 150px;
        height: 150px;
    }

    .hero-shape-square {
        width: 80px;
        height: 80px;
    }

    .hero-glow {
        filter: blur(40px);
    }

    .hero-glow-1,
    .hero-glow-2,
    .hero-glow-3 {
        width: 150px;
        height: 150px;
    }

    .stats-bar-premium {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .stats-bar-premium .stat-card {
        width: 100%;
        max-width: 300px;
        padding: 24px;
    }

    .stats-bar-premium .stat-number {
        font-size: 2.25rem;
    }

    .step-cards-visual {
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-left: 30px;
    }

    /* Vertical Connection Line - Mobile */
    .step-cards-visual::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 14px;
        width: 2px;
        height: calc(100% - 120px);
        background: linear-gradient(180deg, var(--primary), var(--accent));
        opacity: 0.5;
    }

    .step-card-visual {
        width: 100%;
        max-width: 100%;
        padding: 32px 24px;
    }

    .step-card-visual::after {
        display: none;
    }

    .step-number-visual {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .result-cards-premium {
        grid-template-columns: 1fr;
    }

    .result-card-premium {
        padding: 32px 24px;
    }

    .result-card-premium .result-stat {
        font-size: 2.5rem;
    }

    .industry-cards-premium {
        grid-template-columns: 1fr;
    }

    .industry-card-premium {
        padding: 32px 24px;
    }

    .industry-card-premium .industry-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

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

    .feature-card-premium {
        padding: 32px 24px;
    }

    .feature-card-premium .feature-icon-premium {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .features-hero-visual {
        min-height: 50vh;
    }

    .features-nodes-bg {
        opacity: 0.5;
    }

    .features-floating-icons {
        display: none;
    }

    .cta-premium {
        padding: 60px 0;
    }

    .cta-particles {
        opacity: 0.5;
    }

    .btn-glass {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
}

/* Mobile Portrait - 575px */
@media (max-width: 575.98px) {
    .hero-enhanced {
        min-height: 70vh;
    }

    .hero-enhanced-shapes {
        opacity: 0.5;
    }

    .hero-shape-circle,
    .hero-shape-circle-2,
    .hero-shape-square,
    .hero-shape-square-2 {
        display: none;
    }

    .hero-shape-dot {
        width: 6px;
        height: 6px;
    }

    .stats-bar-premium .stat-card {
        padding: 20px;
    }

    .stats-bar-premium .stat-number {
        font-size: 2rem;
    }

    .stats-bar-premium .stat-label {
        font-size: 0.85rem;
    }

    .step-cards-visual {
        padding-left: 24px;
    }

    .step-cards-visual::before {
        left: 10px;
    }

    .step-card-visual {
        padding: 24px 20px;
    }

    .step-card-visual .step-icon-visual {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .step-number-visual {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .result-card-premium {
        padding: 24px 20px;
    }

    .result-card-premium .result-stat {
        font-size: 2.25rem;
    }

    .result-card-premium .result-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .industry-card-premium {
        padding: 24px 20px;
    }

    .industry-card-premium .industry-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .feature-card-premium {
        padding: 24px 20px;
    }

    .feature-card-premium .feature-icon-premium {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .feature-card-premium h4 {
        font-size: 1.125rem;
    }

    .features-hero-visual {
        min-height: 45vh;
    }

    .cta-premium {
        padding: 50px 0;
    }

    .cta-shape-1,
    .cta-shape-2 {
        display: none;
    }

    .btn-glass {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}

/* ===== About Page Premium Styles ===== */

/* About Page Header */
.about-header {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1f35 100%);
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-header-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234f46e5' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.about-header .section-tag {
    color: var(--accent);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mission-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 1.25rem;
    color: #ffffff !important;
    opacity: 0.95;
    max-width: 700px;
    line-height: 1.7;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Company Overview Premium */
.overview-premium {
    padding: 100px 0;
    background: var(--light);
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.overview-content p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Stats Grid Premium */
.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card-premium {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.stat-card-premium .stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-card-premium .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-premium .stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Entity Cards Premium */
.entities-premium {
    padding: 100px 0;
    background: var(--dark);
}

.entity-card-premium {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.entity-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.entity-card-premium:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.entity-card-premium:hover::before {
    opacity: 1;
}

.entity-card-premium .entity-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.entity-card-premium h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.entity-card-premium .entity-region {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.entity-card-premium p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.entity-card-premium .entity-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.entity-card-premium .entity-address i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Values Section Premium */
.values-premium {
    padding: 100px 0;
    background: var(--white);
}

.value-card-premium {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.value-card-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    transition: width 0.4s ease;
}

.value-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.value-card-premium:hover::after {
    width: 80%;
}

.value-card-premium .value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.value-card-premium:hover .value-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.1);
}

.value-card-premium h3 {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card-premium p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Section Premium */
.team-premium {
    padding: 100px 0;
    background: var(--light);
}

.team-card-premium {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    height: 100%;
}

.team-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.team-card-premium .team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.team-card-premium .team-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.team-card-premium:hover .team-avatar::before {
    left: 100%;
}

.team-card-premium .team-initials {
    font-size: 2.5rem;
    font-weight: 700;
}

.team-card-premium h3 {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card-premium .team-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

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

.team-card-premium .team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.team-card-premium .team-social a {
    width: 36px;
    height: 36px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

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

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--light);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 350px;
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-content .timeline-date {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.timeline-content h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* About Page Responsive */
@media (max-width: 991.98px) {
    .about-header {
        padding: 140px 0 80px;
    }

    .mission-card {
        padding: 40px;
    }

    .mission-card h2 {
        font-size: 2rem;
    }

    .stats-grid-premium {
        gap: 16px;
    }

    .stat-card-premium {
        padding: 24px;
    }

    .stat-card-premium .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-header {
        padding: 120px 0 60px;
    }

    .mission-card {
        padding: 32px 24px;
    }

    .mission-card h2 {
        font-size: 1.75rem;
    }

    .mission-card p {
        font-size: 1rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-item::before {
        left: 20px;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .mission-card {
        padding: 24px 20px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-card-premium .stat-number {
        font-size: 1.75rem;
    }

    .entity-card-premium {
        padding: 32px 24px;
    }

    .value-card-premium {
        padding: 32px 24px;
    }

    .team-card-premium .team-avatar {
        width: 100px;
        height: 100px;
    }
}

/* ===== Industries Page Premium Styles ===== */

/* Industries Page Header */
.industries-header {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1f35 100%);
    overflow: hidden;
}

.industries-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.industries-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.industries-header .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.industries-header .section-tag {
    color: var(--accent);
}

/* Industries Overview Section */
.industries-overview-premium {
    padding: 100px 0;
    background: var(--light);
}

/* Industry Detail Card Premium */
.industry-detail-card-premium {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    height: 100%;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.industry-detail-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industry-detail-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.industry-detail-card-premium:hover::before {
    transform: scaleX(1);
}

.industry-detail-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.industry-detail-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.industry-detail-card-premium .industry-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.industry-detail-header h2 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.industry-detail-header .industry-tagline {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

.industry-detail-body {
    padding: 40px;
}

.industry-detail-body > p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Industry Stats Premium */
.industry-stats-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.industry-stat-premium {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-stat-premium:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
}

.industry-stat-premium .stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.industry-stat-premium .stat-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* Industry Features Premium */
.industry-features-premium {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.industry-features-premium li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-size: 0.95rem;
}

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

.industry-features-premium li i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Why Industry Section Premium */
.why-industry-premium {
    padding: 100px 0;
    background: var(--dark);
}

.why-industry-premium .section-header h2 {
    color: #ffffff;
}

.why-industry-premium .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.why-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.why-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(79, 70, 229, 0.3);
}

.why-card-premium .why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.4s ease;
}

.why-card-premium:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    transform: scale(1.1);
}

.why-card-premium h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card-premium p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Stats Banner Premium */
.stats-banner-premium {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.stats-banner-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-banner-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.banner-stat-premium {
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-stat-premium .banner-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.banner-stat-premium .banner-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Industries Page Responsive */
@media (max-width: 991.98px) {
    .industries-header {
        padding: 140px 0 80px;
    }

    .industries-header h1 {
        font-size: 2.5rem;
    }

    .industry-detail-header {
        padding: 32px;
    }

    .industry-detail-body {
        padding: 32px;
    }

    .industry-stats-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stats-banner-premium {
        padding: 40px 24px;
    }

    .banner-stat-premium .banner-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .industries-header {
        padding: 120px 0 60px;
    }

    .industries-header h1 {
        font-size: 2rem;
    }

    .industry-detail-header {
        padding: 24px;
    }

    .industry-detail-body {
        padding: 24px;
    }

    .industry-detail-card-premium .industry-icon-large {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .industry-stats-premium {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .industry-stat-premium {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 16px;
    }

    .industry-stat-premium .stat-value {
        font-size: 1.5rem;
    }

    .why-card-premium {
        padding: 32px 24px;
    }

    .why-card-premium .why-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .banner-stat-premium .banner-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .industries-header h1 {
        font-size: 1.75rem;
    }

    .industry-detail-header h2 {
        font-size: 1.5rem;
    }

    .stats-banner-premium {
        padding: 32px 20px;
    }

    .banner-stat-premium .banner-number {
        font-size: 1.75rem;
    }
}

/* ===== Reduced Motion Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    /* Disable all keyframe animations */
    .hero-enhanced::before,
    .hero-enhanced::after,
    .hero-shape,
    .hero-shape-circle,
    .hero-shape-circle-2,
    .hero-shape-square,
    .hero-shape-square-2,
    .hero-shape-dot,
    .hero-glow,
    .hero-glow-1,
    .hero-glow-2,
    .hero-glow-3,
    .stats-bar-premium .stat-number,
    .stats-bar-premium .stat-card::before,
    .step-number-visual,
    .step-card-visual .step-icon-visual,
    .result-card-premium::before,
    .result-card-premium .result-icon,
    .industry-card-premium .industry-icon,
    .cta-premium,
    .cta-particle,
    .cta-shape-1,
    .cta-shape-2,
    .btn-glass::before,
    .features-hero-visual::before,
    .feature-node::before,
    .feature-node::after,
    .floating-feature-icon,
    .feature-card-premium::before,
    .feature-card-premium .feature-icon-premium {
        animation: none !important;
    }

    /* Simplify transitions */
    .stats-bar-premium .stat-card,
    .step-card-visual,
    .result-card-premium,
    .industry-card-premium,
    .feature-card-premium,
    .btn-glass {
        transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    /* Keep hover effects but without animations */
    .stats-bar-premium .stat-card:hover::before,
    .result-card-premium:hover::before,
    .feature-card-premium:hover::before {
        opacity: 1;
        animation: none;
        background-position: 0% 50%;
    }

    /* Static glow effects */
    .step-card-visual:hover .step-number-visual,
    .result-card-premium:hover .result-icon,
    .industry-card-premium:hover .industry-icon,
    .feature-card-premium:hover .feature-icon-premium {
        animation: none;
        box-shadow: 0 0 30px rgba(79, 70, 229, 0.5);
    }

    /* Static background positions */
    .hero-enhanced::before,
    .hero-enhanced::after,
    .cta-premium {
        background-size: 100% 100%;
        background-position: center;
    }

    /* Hide floating elements that rely on animation */
    .hero-enhanced-shapes,
    .cta-particles,
    .features-floating-icons,
    .features-nodes-bg {
        opacity: 0.3;
    }
}
