/* ManageLab - Modern Marketing Site Styles */

:root {
    /* Primary Colors */
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #8B5CF6;
    --accent: #A855F7;
    
    /* People Management Colors */
    --people-primary: #06B6D4;
    --people-light: #22D3EE;
    --people-bg: #ECFEFF;
    
    /* Performance Management Colors */
    --perf-primary: #8B5CF6;
    --perf-light: #A78BFA;
    --perf-bg: #F5F3FF;
    
    /* Neutrals */
    --dark: #0F172A;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;
    
    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-people: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    --gradient-performance: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    --gradient-hero: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 50%, #F8FAFC 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link i {
    font-size: 0.875rem;
}

.navbar-cta {
    display: flex;
    gap: 0.75rem;
}

/* Mega Menu */
.dropdown-menu.mega-menu {
    width: 480px;
    padding: 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.mega-menu-content {
    display: flex;
    gap: 2rem;
}

.mega-column {
    flex: 1;
}

.mega-column h6 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.mega-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.mega-menu .dropdown-item i {
    width: 20px;
    color: var(--gray-500);
}

.mega-menu .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mega-menu .dropdown-item:hover i {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.play-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.btn-ghost:hover .play-icon {
    background: var(--primary);
    color: var(--white);
}

/* Section Styles */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-header {
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--gray-300) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.typewriter-container {
    display: block;
    min-height: 1.2em;
}

.typewriter {
    color: var(--primary);
    border-right: 3px solid var(--primary);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { border-color: var(--primary); }
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.floating-card.card-1 {
    top: 50px;
    left: -20px;
}

.floating-card.card-2 {
    top: 150px;
    right: -20px;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.card-icon.people {
    background: var(--people-bg);
    color: var(--people-primary);
}

.card-icon.performance {
    background: var(--perf-bg);
    color: var(--perf-primary);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.dashboard-preview {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.preview-dots {
    display: flex;
    gap: 0.375rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
}

.preview-dots span:nth-child(1) { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:nth-child(3) { background: #10B981; }

.preview-title {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.preview-content {
    display: flex;
    min-height: 320px;
}

.preview-sidebar {
    width: 60px;
    background: var(--gray-900);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.sidebar-item.active {
    background: var(--primary);
    color: var(--white);
}

.preview-main {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-widget-row {
    display: flex;
    gap: 1rem;
}

.preview-widget {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.preview-widget.small {
    flex: 1;
    text-align: center;
}

.preview-widget.large {
    flex: 1;
}

.widget-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.widget-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.widget-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.mini-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.matrix-cell {
    height: 30px;
    border-radius: var(--radius-sm);
}

.matrix-cell.high { background: var(--success); opacity: 0.7; }
.matrix-cell.mid { background: var(--warning); opacity: 0.7; }
.matrix-cell.low { background: var(--error); opacity: 0.7; }

.floating-notification {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-size: 0.875rem;
    color: var(--gray-700);
    border-left: 4px solid var(--primary);
}

.floating-notification i {
    color: var(--primary);
}

/* Logos Bar */
.logos-bar {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.logos-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.logos-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.logos-slide {
    display: flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
    white-space: nowrap;
}

/* Pillars Section */
.pillars-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.pillar-header {
    padding: 2rem;
    color: var(--white);
}

.pillar-header.people {
    background: var(--gradient-people);
}

.pillar-header.performance {
    background: var(--gradient-performance);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pillar-header p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.pillar-features {
    padding: 1.5rem 2rem;
}

.feature-row {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row .feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    flex-shrink: 0;
}

.feature-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.feature-info p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
}

.pillar-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border-top: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.pillar-cta:hover {
    background: var(--gray-50);
    color: var(--primary-dark);
}

.pillar-cta i {
    transition: var(--transition-fast);
}

.pillar-cta:hover i {
    transform: translateX(4px);
}

/* Feature Deep Dive Sections */
.feature-deep-dive {
    padding: 6rem 0;
}

.people-section {
    background: var(--white);
}

.performance-section {
    background: var(--gray-100);
}

/* Feature Tabs */
.feature-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-fast);
}

.feature-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.feature-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.feature-tab i {
    font-size: 0.9rem;
}

.feature-tab-content {
    display: none;
}

.feature-tab-content.active {
    display: block;
}

.feature-tab-content h4 {
    margin-bottom: 0.75rem;
}

.feature-tab-content > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
}

.feature-list i {
    color: var(--success);
    margin-top: 0.25rem;
}

/* People Visual */
.people-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.visual-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-badge {
    display: inline-flex;
    padding: 0.375rem 0.75rem;
    background: var(--people-bg);
    color: var(--people-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.coaching-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coaching-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.coaching-step.active {
    background: var(--people-bg);
    border: 2px solid var(--people-primary);
}

.step-letter {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--people-primary);
}

.step-info {
    display: flex;
    flex-direction: column;
}

.step-name {
    font-weight: 600;
    color: var(--dark);
}

.step-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Readiness Grid */
.readiness-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.grid-row {
    display: flex;
    gap: 0.5rem;
}

.grid-cell {
    flex: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
}

.grid-cell.star {
    background: var(--success);
    color: var(--white);
    font-size: 1.25rem;
}

.grid-cell.high {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--success);
}

.grid-cell.mid {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--warning);
}

.grid-cell.low {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--error);
}

.grid-cell .avatar {
    width: 24px;
    height: 24px;
    background: var(--gray-400);
    border-radius: var(--radius-full);
    border: 2px solid var(--white);
}

.grid-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.grid-labels span {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Performance Features */
.perf-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.perf-feature {
    display: flex;
    gap: 1rem;
}

.perf-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.perf-icon.template { background: #DBEAFE; color: #2563EB; }
.perf-icon.feedback { background: #FCE7F3; color: #DB2777; }
.perf-icon.discussion { background: #FEF3C7; color: #D97706; }
.perf-icon.cycle { background: #D1FAE5; color: #059669; }
.perf-icon.scoring { background: #EDE9FE; color: #7C3AED; }

.perf-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.perf-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Performance Visual */
.performance-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-flow-card,
.scoring-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.review-flow-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-flow-card .card-badge {
    background: var(--perf-bg);
    color: var(--perf-primary);
}

.cycle-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
}

.review-flow {
    display: flex;
    flex-direction: column;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    position: relative;
}

.step-marker {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    flex-shrink: 0;
}

.flow-step.completed .step-marker {
    background: var(--success);
    color: var(--white);
}

.flow-step.active .step-marker {
    background: var(--primary);
    color: var(--white);
}

.step-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.step-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.875rem;
}

.step-status {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.flow-step.completed .step-status { color: var(--success); }
.flow-step.active .step-status { color: var(--primary); }

.notification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-top: 0.5rem;
}

.flow-connector {
    width: 2px;
    height: 20px;
    background: var(--gray-200);
    margin-left: 15px;
}

.flow-connector.completed {
    background: var(--success);
}

/* Scoring Card */
.scoring-card .card-header {
    margin-bottom: 1rem;
}

.scoring-card .card-badge {
    background: var(--perf-bg);
    color: var(--perf-primary);
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.score-row {
    display: grid;
    grid-template-columns: 100px 50px 1fr 40px;
    gap: 0.75rem;
    align-items: center;
}

.score-label {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.score-weight {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.score-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.score-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.score-total {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
}

.score-total > span:first-child {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.total-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.verdict-badge {
    padding: 0.375rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-left: auto;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-icon-wrapper.people {
    background: var(--people-bg);
    color: var(--people-primary);
}

.feature-icon-wrapper.performance {
    background: var(--perf-bg);
    color: var(--perf-primary);
}

.feature-icon-wrapper.shared {
    background: var(--gray-200);
    color: var(--gray-700);
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    background: var(--people-bg);
    color: var(--people-primary);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.feature-tag.perf {
    background: var(--perf-bg);
    color: var(--perf-primary);
}

.feature-tag.shared {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* How It Works */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}

.step-card {
    flex: 1;
    max-width: 340px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.step-card h4 {
    margin-bottom: 0.5rem;
}

.step-card > p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.step-visual {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.csv-preview {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    text-align: left;
}

.csv-row {
    padding: 0.25rem 0;
    color: var(--gray-600);
}

.csv-row.header {
    font-weight: 600;
    color: var(--dark);
}

.template-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.template-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.template-item.active {
    color: var(--success);
}

.template-item i {
    font-size: 0.875rem;
}

.launch-preview {
    display: flex;
    gap: 1rem;
}

.metric-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.metric-label {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-300);
    margin-top: 80px;
}

@media (max-width: 992px) {
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-title {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.cta-card {
    position: relative;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 4rem;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    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='%23ffffff' fill-opacity='0.05'%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");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.cta-features i {
    color: var(--white);
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: var(--white);
}

.demo-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-2xl);
}

.demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-header h3 {
    margin-bottom: 0.5rem;
}

.demo-header p {
    color: var(--gray-600);
}

.demo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .demo-form .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group.full {
    margin-bottom: 1.5rem;
}

.interest-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.interest-tag {
    cursor: pointer;
}

.interest-tag input {
    display: none;
}

.interest-tag span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.interest-tag input:checked + span {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.interest-tag:hover span {
    border-color: var(--primary);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-desc {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-column h6 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Video Modal */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.modal-body {
    padding: 0;
    position: relative;
}

.modal-body .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-full);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.video-placeholder p {
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-visual {
        display: none;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card {
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-2 {
    animation-delay: 1s;
}

.floating-notification {
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}
