/* Custom CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    --secondary-color: #f8fafc;
    --accent-color: #10b981;
    --accent-secondary: #f59e0b;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --dark-bg: #0a0f1c;
    --dark-surface: #1a1f2e;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: var(--dark-bg) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Modern Navigation */
.modern-nav {
    background: rgba(10, 15, 28, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.modern-nav.scrolled {
    background: rgba(10, 15, 28, 0.98) !important;
    box-shadow: var(--shadow-xl);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-glow);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: -0.025em;
}

.brand-ai {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.375rem;
    margin-left: 0.25rem;
}

.modern-nav .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    position: relative;
}

.modern-nav .nav-link:hover {
    color: var(--white) !important;
}

.modern-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.modern-nav .nav-link:hover::after {
    width: 100%;
}

.btn-gradient {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: var(--white) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    color: var(--white) !important;
}

/* Modern Hero Section */
.modern-hero {
    background: var(--dark-bg) !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 70px 0 30px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--dark-bg);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.node-1 { top: 20%; left: 20%; animation-delay: 0s; }
.node-2 { top: 30%; right: 25%; animation-delay: 0.5s; }
.node-3 { bottom: 40%; left: 30%; animation-delay: 1s; }
.node-4 { bottom: 25%; right: 20%; animation-delay: 1.5s; }

.neural-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: connectionFlow 3s infinite;
}

.connection-1 {
    top: 25%;
    left: 20%;
    width: 200px;
    transform: rotate(15deg);
}

.connection-2 {
    bottom: 35%;
    left: 25%;
    width: 150px;
    transform: rotate(-30deg);
}

.connection-3 {
    top: 50%;
    right: 20%;
    width: 180px;
    transform: rotate(45deg);
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

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

.badge-modern {
    background: rgba(99, 102, 241, 0.1) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white) !important;
    letter-spacing: -0.025em;
}

.title-line {
    display: block;
}

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

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-cta-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary-modern {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: var(--white) !important;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    color: var(--white) !important;
}

.btn-content {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary-modern:hover .btn-glow {
    transform: translateX(100%);
}

.btn-outline-modern {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

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

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white) !important;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0;
}

/* AI Dashboard Visualization */
.hero-visual {
    position: relative;
    z-index: 2;
}

.ai-dashboard-container {
    perspective: 1000px;
}

.ai-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.ai-dashboard:hover {
    transform: rotateY(-2deg) rotateX(2deg);
}

.dashboard-header-modern {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

.status-text {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.875rem;
}

.processing-indicator {
    display: flex;
    gap: 0.25rem;
}

.processing-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: processingPulse 1.5s infinite;
}

.processing-dot:nth-child(2) { animation-delay: 0.2s; }
.processing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes processingPulse {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

.dashboard-content-modern {
    padding: 1.5rem;
}

.ai-metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ai-metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 0.5rem;
}

.metric-trend {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.metric-trend.positive {
    color: var(--accent-color);
}

.ai-visualization {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
}

.viz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.viz-controls {
    display: flex;
    gap: 0.25rem;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.control-dot.active {
    background: var(--primary-color);
}

.neural-viz {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.neural-layer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.neuron {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.neuron.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    animation: neuronPulse 2s infinite;
}

@keyframes neuronPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.brain-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.connection-line {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.6;
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-line.line-1 {
    top: 20px;
    left: 20px;
    width: 25px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.connection-line.line-2 {
    top: 20px;
    right: 20px;
    width: 25px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.connection-line.line-3 {
    bottom: 20px;
    left: 20px;
    width: 25px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.connection-line.line-4 {
    bottom: 20px;
    right: 20px;
    width: 25px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.brain-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.brain-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    animation: nodeActivation 4s ease-in-out infinite;
}

.brain-node.node-1 { top: 10px; left: 10px; animation-delay: 0s; }
.brain-node.node-2 { top: 10px; right: 10px; animation-delay: 1s; }
.brain-node.node-3 { bottom: 10px; left: 10px; animation-delay: 2s; }
.brain-node.node-4 { bottom: 10px; right: 10px; animation-delay: 3s; }

@keyframes nodeActivation {
    0%, 90%, 100% { transform: scale(1); opacity: 0.5; }
    10% { transform: scale(1.5); opacity: 1; }
}

/* Analytics Chart */
.analytics-chart {
    position: relative;
    width: 120px;
    height: 60px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 100%;
    padding-bottom: 10px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    animation: chartGrow 3s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes chartGrow {
    0%, 100% { transform: scaleY(0.7); }
    50% { transform: scaleY(1); }
}

.chart-trend {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 2px;
}

.trend-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color) 50%, transparent 100%);
    animation: trendMove 2s ease-in-out infinite;
}

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

/* Candidate Flow */
.candidate-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.candidate-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: avatarRing 3s ease-in-out infinite;
}

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

.flow-arrows {
    display: flex;
    gap: 4px;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--primary-color);
    animation: arrowBounce 2s ease-in-out infinite;
}

.arrow.arrow-1 { animation-delay: 0s; }
.arrow.arrow-2 { animation-delay: 0.3s; }
.arrow.arrow-3 { animation-delay: 0.6s; }

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-4px); opacity: 1; }
}

.status-indicators {
    display: flex;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.status-dot.active {
    background: var(--primary-color);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Security Shield */
.security-shield {
    position: relative;
    width: 60px;
    height: 70px;
}

.shield-layers {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.shield-layer {
    width: 40px;
    height: 50px;
    border-radius: 20px 20px 0 50%;
    border: 2px solid;
    position: absolute;
    top: 0;
    left: 0;
}

.shield-layer.layer-1 {
    border-color: var(--primary-color);
    opacity: 0.8;
    animation: shieldPulse 3s ease-in-out infinite;
}

.shield-layer.layer-2 {
    border-color: var(--primary-light);
    opacity: 0.6;
    animation: shieldPulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.shield-layer.layer-3 {
    border-color: rgba(236, 72, 153, 0.8);
    opacity: 0.4;
    animation: shieldPulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.security-scan {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 40px;
    overflow: hidden;
}

.scan-line {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    animation: securityScan 2s ease-in-out infinite;
}

@keyframes securityScan {
    0% { transform: translateY(-2px); }
    100% { transform: translateY(40px); }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ec4899, #f97316);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

.cta-visual {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.transformation-visualization {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transform-before,
.transform-after {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-process,
.new-process {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: stepPulse 2s ease-in-out infinite;
}

.step-slow {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    animation-delay: 0s;
}

.step-manual {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    animation-delay: 0.3s;
}

.step-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    animation-delay: 0.6s;
}

.step-fast {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    animation-delay: 0s;
}

.step-ai {
    background: linear-gradient(135deg, var(--primary-gradient));
    color: white;
    animation-delay: 0.3s;
}

.step-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    animation-delay: 0.6s;
}

.transform-arrow {
    display: flex;
    align-items: center;
    position: relative;
}

.arrow-body {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gradient));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.arrow-flow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.arrow-head {
    margin-left: -2px;
    color: #8b5cf6;
    font-size: 1.5rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gradient));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

@keyframes stepPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes arrowFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Contact Section */
.contact-section {
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 60% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-visual {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.communication-visualization {
    position: relative;
    width: 200px;
    height: 80px;
}

.message-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.message-bubble {
    position: relative;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-content {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gradient));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.bubble-tail {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #8b5cf6;
}

.bubble-1 {
    animation-delay: 0s;
}

.bubble-2 {
    animation-delay: 1s;
}

.bubble-3 {
    animation-delay: 2s;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
}

.connection-line {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gradient));
    opacity: 0.3;
    animation: connectionPulse 3s ease-in-out infinite;
}

.line-1 {
    left: 15%;
    width: 25%;
    animation-delay: 0.5s;
}

.line-2 {
    left: 45%;
    width: 25%;
    animation-delay: 1.5s;
}

.line-3 {
    left: 75%;
    width: 10%;
    animation-delay: 2.5s;
}

.form-group-modern {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-modern {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control-modern:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.input-glow {
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-gradient));
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.form-control-modern:focus + .input-glow {
    opacity: 0.3;
}

.btn-modern {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glow {
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-gradient));
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-modern:hover .btn-glow {
    opacity: 0.5;
}

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

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Dual Service Container */
.dual-service-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.service-header h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.service-features .feature-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Services Overview Section */
.services-section {
    background: var(--dark-bg);
}

.service-overview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.service-overview-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-overview-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.service-overview-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

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

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-benefits li:last-child {
    border-bottom: none;
}

.service-benefits li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Internal Hiring Section */
.internal-hiring-section {
    background: var(--dark-surface);
}

.internal-hiring-section .section-title,
.internal-hiring-section h4 {
    color: var(--text-dark) !important;
}

.internal-hiring-section .section-subtitle,
.internal-hiring-section p {
    color: var(--text-light) !important;
}

.feature-item-detailed {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-item-detailed:hover {
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.feature-item-detailed .feature-icon-container {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-detailed .feature-icon {
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Assessment Dashboard */
.assessment-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}

.dashboard-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dashboard-title h5 {
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.status-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.metric-card {
    text-align: center;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 0.75rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.code-preview {
    background: var(--gray-900);
    border-radius: 0.75rem;
    overflow: hidden;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.file-name {
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.code-content {
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.code-line {
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

/* Staff Augmentation Section */
.staff-augmentation-section {
    background: var(--dark-bg);
}

.talent-showcase {
    max-width: 500px;
}

.talent-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.talent-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.talent-card:hover {
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

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

.talent-info h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.talent-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.skill-tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.talent-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.talent-rating i {
    color: var(--accent-secondary);
    font-size: 0.875rem;
}

.talent-rating span {
    color: var(--white);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Augmentation Benefits */
.augmentation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dual-service-container {
        max-width: 100%;
    }
    
    .hero-cta-group .row {
        flex-direction: column;
    }
    
    .assessment-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .talent-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item-detailed {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* Platform Dashboard */
.platform-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding-bottom: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #6b7280 !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-dashboard .nav-item:not(.active) {
    color: #374151 !important;
}

.platform-dashboard .nav-item.active {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

.nav-item i {
    font-size: 1rem;
}

.nav-item:not(.active) {
    color: #374151 !important;
}

.job-card {
    background-color: var(--dark-bg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.job-status {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: #0a0f1c;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.metric-label {
    display: block !important;
    font-size: 0.75rem !important;
    color: var(--text-light) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    margin-top: 0.25rem;
}

.candidate-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.candidate-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.candidate-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.candidate-info {
    flex: 1;
}

.candidate-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.candidate-match {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 500;
}

.candidate-status {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    color: var(--white);
    font-size: 2rem;
}

.feature-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.feature-list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Workflow Section */
.workflow-section {
    background: var(--dark-bg);
}

.workflow-section .section-title,
.workflow-section h5 {
    color: var(--text-dark) !important;
}

.workflow-section .section-subtitle,
.workflow-section p {
    color: var(--text-light) !important;
}

.workflow-steps {
    position: relative;
}

.workflow-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.workflow-step h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.workflow-step p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Assessment Features */
.assessments-section {
    background: var(--dark-bg);
}

.assessment-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.assessment-feature {
    position: relative;
}

.feature-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.assessment-feature h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.assessment-feature p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.assessment-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.assessment-stages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stage {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.stage.completed {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.stage.active {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.stage.pending {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stage.completed .stage-icon {
    color: var(--accent-color);
}

.stage.active .stage-icon {
    color: var(--primary-color);
}

.stage.pending .stage-icon {
    color: var(--text-muted);
}

.stage-info {
    flex: 1;
}

.stage-info h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stage-status {
    font-size: 0.75rem;
    color: var(--text-light);
}

.stage-score {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

/* Analytics Section */
.analytics-section {
    background: var(--dark-bg);
}

.analytics-section .section-title,
.analytics-section h5,
.analytics-section h6 {
    color: var(--text-dark) !important;
}

.analytics-section .section-subtitle,
.analytics-section p {
    color: var(--text-light) !important;
}

.analytics-dashboard {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
}

.analytics-dashboard .dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.analytics-dashboard h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

.time-filter {
    display: flex;
    gap: 0.5rem;
}

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

.analytics-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.analytics-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.analytics-data h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.analytics-data p {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trend {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.trend.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
}

.team-performance {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
}

.team-performance h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.recruiter-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recruiter-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

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

.recruiter-info {
    flex: 1;
}

.recruiter-info h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.recruiter-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.recruiter-score {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats .row {
        text-align: center;
    }
    
    .platform-dashboard {
        max-width: 100%;
    }
    
    .dashboard-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .candidate-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .workflow-steps .row {
        flex-direction: column;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .analytics-card {
        flex-direction: column;
        text-align: center;
    }
    
    .recruiter-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .platform-dashboard {
        padding: 1rem;
    }
    
    .job-card {
        padding: 1rem;
    }
    
    .analytics-dashboard,
    .team-performance {
        padding: 1.5rem;
    }
    
    .assessment-preview {
        padding: 1.5rem;
    }
}

/* Text Readability Improvements */
.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
}

.hero-description {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.section-title {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.section-subtitle {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.badge-modern {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card h4 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.feature-card p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.feature-list li {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.assessment-feature h4 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.assessment-feature p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.stage-info h6 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.stage-status {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.stage-score {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.stat-number {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
}

.stat-label {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

/* Improve card backgrounds for better contrast */
.hero-stats {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
    background: rgba(0, 0, 0, 0.6) !important;
}

.assessment-preview {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stage.completed {
    background: rgba(16, 185, 129, 0.25) !important;
    border: 1px solid rgba(16, 185, 129, 0.5);
}

.stage.active {
    background: rgba(99, 102, 241, 0.25) !important;
    border: 1px solid rgba(99, 102, 241, 0.5);
}

.stage.pending {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navigation text improvements */
.brand-text {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.navbar-nav .nav-link {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

/* Workflow section text (on light background) */
.workflow-section .section-title,
.workflow-section h5 {
    color: var(--text-dark) !important;
    text-shadow: none !important;
}

.workflow-section .section-subtitle,
.workflow-section p {
    color: var(--text-light) !important;
    text-shadow: none !important;
}

/* Analytics section text (on light background) */
.analytics-section .section-title,
.analytics-section h5,
.analytics-section h6 {
    color: var(--text-dark) !important;
    text-shadow: none !important;
}

.analytics-section .section-subtitle,
.analytics-section p {
    color: var(--text-light) !important;
    text-shadow: none !important;
}

.analytics-data h4 {
    color: var(--text-dark) !important;
}

.analytics-data p {
    color: var(--text-light) !important;
}

.recruiter-info h6 {
    color: var(--text-dark) !important;
}

.recruiter-info p {
    color: var(--text-light) !important;
}

.performance-score {
    font-weight: 700 !important;
    font-size: 1.25rem !important;
}

/* Fix job metrics visibility in platform dashboard */
.metric-value {
    display: block !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.metric-label {
    display: block !important;
    font-size: 0.75rem !important;
    color: var(--text-light) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    margin-top: 0.25rem;
}

/* Fix workflow section text visibility */
.workflow-step h5 {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
    font-weight: 600 !important;
}

.workflow-step p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

.workflow-step .step-number {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Improve analytics dashboard text */
.analytics-data h4 {
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.analytics-data p {
    color: var(--text-light) !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

.analytics-data .text-success {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}

/* Fix team performance section */
.recruiter-info h6 {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

.recruiter-info p {
    color: var(--text-light) !important;
    text-shadow: none !important;
}

.performance-score {
    font-weight: 700 !important;
    font-size: 1.25rem !important;
}

/* Fix call-to-action section text */
.cta-section h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
    font-weight: 600 !important;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

/* Enhance button visibility */
.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    font-weight: 600 !important;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    font-weight: 600 !important;
}

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

/* COMPREHENSIVE TEXT VISIBILITY FIXES */

/* Override workflow section to use white text */
.workflow-section .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
    font-weight: 700 !important;
}

.workflow-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.workflow-step h5 {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
    font-weight: 700 !important;
}

.workflow-step p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) !important;
    font-weight: 500 !important;
}

/* Analytics section - force dark theme */
.analytics-section .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
}

.analytics-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.analytics-dashboard,
.team-performance {
    background: rgba(15, 23, 42, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.analytics-data h4 {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    font-weight: 700 !important;
}

.analytics-data p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.recruiter-info h6 {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    font-weight: 600 !important;
}

.recruiter-info p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

/* Enhanced icon visibility */
.feature-card i {
    color: var(--primary-color) !important;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)) !important;
    font-size: 2.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.workflow-step i {
    color: var(--primary-color) !important;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)) !important;
    font-size: 2.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.assessment-feature i {
    color: var(--primary-color) !important;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)) !important;
    font-size: 2.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Step numbers enhancement */
.step-number {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    font-weight: 800 !important;
}

/* Site-wide light text enforcement */
.features-section h4,
.assessment-section h4 {
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

.features-section p,
.assessment-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

/* Navigation enhancement */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    font-weight: 500 !important;
}

.brand-text {
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
    font-weight: 700 !important;
}

/* Fix CTA section title color */
.cta-title {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
    font-weight: 700 !important;
}

/* Fix CTA section title color - more specific selectors */
.cta-section .cta-title,
.cta-section h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
    font-weight: 700 !important;
}

.cta-section .cta-subtitle,
.cta-section .cta-title p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

/* MAXIMUM PRIORITY CTA TEXT FIXES */
section.cta-section .container .row .col-lg-8 h2.cta-title {
    color: #ffffff !important;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9) !important;
    font-weight: 700 !important;
}

section.cta-section .container .row .col-lg-8 p.cta-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
    font-weight: 500 !important;
}

/* ULTRA SPECIFIC CTA TEXT OVERRIDE */
section#cta .cta-title,
section.cta-section h2.cta-title,
.cta-section .container h2,
body .cta-section h2 {
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 1) !important;
    font-weight: 700 !important;
}

/* MAXIMUM PRIORITY CTA TEXT FIX */
section.cta-section .container .row .col-lg-8 h2.cta-title,
.cta-section h2,
body section.cta-section h2 {
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 1) !important;
    font-weight: 700 !important;
}

/* FAQ Accordion Icon Visibility Fix */
.faq-section .accordion-button::after {
    color: #ffffff !important;
    filter: brightness(0) invert(1) !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
    color: #ffffff !important;
    filter: brightness(0) invert(1) !important;
}

/* Pricing Section */
.pricing-section {
    background: var(--dark-bg);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

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

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
    padding-top: 2.5rem;
}

.pricing-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 10;
    white-space: nowrap;
}

.pricing-header .plan-name {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.pricing-header .plan-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .currency {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-price .amount {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-period {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    color: var(--text-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.pricing-features li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

/* FAQ Section */
.faq-section {
    background: var(--dark-surface);
}

.faq-section .section-title,
.faq-section .section-subtitle {
    color: var(--text-dark) !important;
}

/* Ensure specific sections have dark backgrounds */
.workflow-section,
.analytics-section,
.faq-section {
    background: var(--dark-bg) !important;
}

/* Force FAQ section dark background - override Bootstrap bg-light */
section.faq-section.bg-light,
.faq-section.bg-light,
#faq.faq-section {
    background: var(--dark-bg) !important;
    background-color: var(--dark-bg) !important;
}

/* FAQ section text colors for dark background */
.faq-section .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
}

.faq-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

/* FAQ accordion styling for dark theme */
.faq-section .accordion-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.faq-section .accordion-button {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(99, 102, 241, 0.1) !important;
    color: #ffffff !important;
}

.faq-section .accordion-body {
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Job Card Dark Theme Override */
.job-card {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
}

.job-title {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.job-card .metric-value {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.job-card .metric-label {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* CTA Section Title - Force White Text */
.cta-title,
h2.cta-title,
.cta-section .cta-title,
.cta-section h2 {
    color: #ffffff !important;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9) !important;
    font-weight: 700 !important;
}

/* ULTRA SPECIFIC CTA TEXT OVERRIDE */
section#cta .cta-title,
section.cta-section h2.cta-title,
.cta-section .container h2,
body .cta-section h2 {
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 1) !important;
    font-weight: 700 !important;
}

/* MAXIMUM PRIORITY CTA TEXT FIX */
section.cta-section .container .row .col-lg-8 h2.cta-title,
.cta-section h2,
body section.cta-section h2 {
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 1) !important;
    font-weight: 700 !important;
}

/* FAQ Accordion Icon Visibility Fix */
.faq-section .accordion-button::after {
    color: #ffffff !important;
    filter: brightness(0) invert(1) !important;
}

.faq-section .accordion-button:not(.collapsed)::after {
    color: #ffffff !important;
    filter: brightness(0) invert(1) !important;
}

/* Hero Dashboard Mockup - White Background Theme */
.platform-dashboard {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.platform-dashboard .nav-item {
    color: #6b7280 !important;
}

.platform-dashboard .job-card {
    background: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.platform-dashboard .job-title {
    color: #1f2937 !important;
}

.platform-dashboard .job-metrics {
    background: #f1f5f9 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.platform-dashboard .metric-value {
    color: #1f2937 !important;
    text-shadow: none !important;
}

.platform-dashboard .metric-label {
    color: #6b7280 !important;
    text-shadow: none !important;
}

.platform-dashboard .candidate-item {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.platform-dashboard .candidate-name {
    color: #1f2937 !important;
}

.platform-dashboard .candidate-match {
    color: #10b981 !important;
}

.platform-dashboard .dashboard-nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Client Logos Section */
.clients-section {
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.clients-section .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
}

.clients-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 120px;
}

.client-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.logo-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.logo-placeholder span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

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

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.author-info h6 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.author-info span {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--accent-secondary);
    font-size: 1rem;
}

.testimonial-stats {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

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

.testimonial-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.testimonial-stats .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .client-logo {
        height: 100px;
        padding: 1rem;
    }
    
    .logo-placeholder i {
        font-size: 1.5rem;
    }
    
    .logo-placeholder span {
        font-size: 0.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-stats {
        padding: 1.5rem;
    }
    
    .testimonial-stats .stat-number {
        font-size: 2rem;
    }
}

/* Enhanced Pricing Section Styles */
.pricing-guarantee {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    display: inline-block;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1.25rem;
    font-weight: 500;
}

.discount {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-note {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pricing-features i {
    color: var(--accent-secondary) !important;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.pricing-features strong {
    color: #ffffff !important;
}

.roi-highlight {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin: 1rem 0;
    text-align: center;
}

.trial-note {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.pricing-footer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.pricing-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.pricing-benefit:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.pricing-benefit i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-benefit span {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

/* Enhanced Pricing Card Hover Effects */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3);
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.4);
}

/* Responsive Pricing Adjustments */
@media (max-width: 768px) {
    .price-comparison {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pricing-benefit {
        padding: 0.75rem;
    }
    
    .pricing-footer {
        padding: 1.5rem;
    }
    
    .savings-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Pricing Toggle Button Styles */
.pricing-toggle {
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.pricing-toggle:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.pricing-toggle:focus {
    box-shadow: none;
    outline: none;
}

.pricing-toggle i {
    transition: transform 0.3s ease;
}

.pricing-toggle:hover i {
    transform: scale(1.1);
}

/* Pricing Features Animation */
.pricing-features-hidden {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Compact Pricing Card Adjustments */
.pricing-card {
    min-height: auto;
}

.pricing-features {
    margin-bottom: 0.5rem;
}