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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(63, 81, 181, 0.01) 100%),
        linear-gradient(0deg, transparent 98%, rgba(33, 150, 243, 0.01) 100%);
    background-size: 100px 100px, 100px 100px;
    pointer-events: none;
    z-index: -1;
    animation: gridMove 30s linear infinite;
}

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





.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Dashboard Access Section */
.dashboard-access-section {
    margin-top: 72px; /* Account for fixed navbar */
    padding: 24px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.dashboard-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="techgrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.15)"/><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23techgrid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* Particle and Neural Network Canvases */
#dashboard-particle-canvas,
#dashboard-neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

#dashboard-particle-canvas {
    z-index: 2;
}

#dashboard-neural-network {
    z-index: 3;
}

.dashboard-access-card {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    backdrop-filter: blur(20px) saturate(150%);
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(63, 81, 181, 0.12), 0 2px 12px rgba(33, 150, 243, 0.08);
    border: none;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s, border 0.25s;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    z-index: 10;
}
.dashboard-access-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 153, 255, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 212, 255, 0.06);
}
.dashboard-access-card:hover, .dashboard-access-card:focus {
    box-shadow: 0 16px 48px 0 rgba(63, 81, 181, 0.25), 0 4px 16px rgba(33, 150, 243, 0.15);
    transform: translateY(-2px) scale(1.012);
    outline: none;
}
.dashboard-access-card:active {
    transform: scale(0.99);
}
.dashboard-access-content {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.dashboard-access-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3F51B5 0%, #2196F3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(63, 81, 181, 0.25);
    margin-right: 8px;
    flex-shrink: 0;
}

.dashboard-access-icon .icon-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make the icon white */
}
.dashboard-access-text {
    flex: 1;
    min-width: 200px;
}
.dashboard-access-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0d1421;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.dashboard-access-text h3 .brand-highlight {
    color: #3F51B5;
}
.dashboard-access-text p {
    font-size: 16px;
    color: #2a5568;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.dashboard-access-text .cta-text {
    font-size: 14px;
    color: #3F51B5;
    font-weight: 600;
    margin-top: 6px;
    opacity: 0.9;
}
.dashboard-access-arrow {
    margin-left: 24px;
    color: #3F51B5;
    background: rgba(63, 81, 181, 0.12);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 3px 12px rgba(63, 81, 181, 0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.dashboard-access-card:hover .dashboard-access-arrow,
.dashboard-access-card:focus .dashboard-access-arrow {
    background: linear-gradient(135deg, #3F51B5 0%, #2196F3 100%);
    color: #fff;
    transform: translateX(4px) scale(1.08);
}

/* Responsive design for dashboard access section */
@media (max-width: 768px) {
    .dashboard-access-section {
        padding: 16px 0;
    }
    .dashboard-access-card {
        padding: 22px 10px;
    }
    .dashboard-access-content {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .dashboard-access-icon {
        margin: 0 auto 8px auto;
    }
    .dashboard-access-arrow {
        margin: 16px auto 0 auto;
    }
    .dashboard-access-text h3 {
        font-size: 18px;
    }
    .dashboard-access-text p {
        font-size: 14px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInLeft 0.8s ease-out;
}

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

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    animation: pulse 2s ease-in-out infinite;
}

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

.nav-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeIn 1s ease-out 0.2s both;
}

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

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

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

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        animation: fadeInRight 0.8s ease-out;
    }
    


@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: fit-content;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 81, 181, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
    background: #f8fafc;
    color: #1a1a1a;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #3F51B5;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #3F51B5;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #3F51B5;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Particle Animation Container */
#hero-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#hero-neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(63, 81, 181, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(33, 150, 243, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(25, 118, 210, 0.02) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(63, 81, 181, 0.02) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(33, 150, 243, 0.02) 50%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    pointer-events: none;
    animation: techPattern 20s linear infinite;
}

@keyframes techPattern {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 100% 100%, 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    }
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: slideInLeft 1s ease-out;
}

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



.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    animation: slideInUp 1s ease-out 0.5s both;
}

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

.gradient-text {
    background: linear-gradient(135deg, #3F51B5, #2196F3, #1976D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: slideInUp 1s ease-out 0.9s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: slideInUp 1s ease-out 1.1s both;
}

.stat-item {
    text-align: left;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
    animation: countUp 2s ease-out 1.3s both;
}

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

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ai-workflow-demo {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.ai-workflow-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(63, 81, 181, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 118, 210, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 30s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -20px) rotate(1deg);
    }
    50% {
        transform: translate(20px, -10px) rotate(-1deg);
    }
    75% {
        transform: translate(-10px, 20px) rotate(0.5deg);
    }
}

.workflow-header {
    text-align: center;
    margin-bottom: 32px;
}

.workflow-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.workflow-header p {
    color: #64748b;
    font-size: 16px;
}

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

.workflow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(63, 81, 181, 0.1);
    transition: all 0.3s ease;
    animation: stepSlideIn 0.8s ease-out both;
}

.workflow-step:nth-child(1) { animation-delay: 0.3s; }
.workflow-step:nth-child(2) { animation-delay: 0.6s; }
.workflow-step:nth-child(3) { animation-delay: 0.9s; }

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

.workflow-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 81, 181, 0.15);
    border-color: rgba(63, 81, 181, 0.3);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.progress-indicator {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3F51B5, #2196F3);
    border-radius: 2px;
    animation: progressFill 3s ease-out infinite;
}

.workflow-step:nth-child(1) .progress-fill {
    animation-duration: 10.125s;
    animation-delay: 0s;
}

.workflow-step:nth-child(2) .progress-fill {
    animation-duration: 8.55s;
    animation-delay: 0.75s;
}

.workflow-step:nth-child(3) .progress-fill {
    animation-duration: 11.7s;
    animation-delay: 1.5s;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.floating-elements {
    position: relative;
    height: 120px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatCard 9s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(63, 81, 181, 0.1);
}

.candidate-card {
    top: 10px;
    left: 20px;
    animation-delay: 0s;
}

.candidate-card-2 {
    top: 60px;
    left: 60px;
    animation-delay: 2.25s;
}

.role-card {
    top: 40px;
    right: 30px;
    animation-delay: 3s;
}

.ai-card {
    bottom: 20px;
    right: 20px;
    animation-delay: 6s;
}

.chat-card {
    bottom: 60px;
    left: 35%;
    animation-delay: 4.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

.card-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
}

.card-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-name, .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.card-score, .card-company, .card-status {
    font-size: 12px;
    color: #64748b;
}

.card-score {
    color: #22c55e;
    font-weight: 600;
}





/* Platform Section */
.platform-section {
    padding: 120px 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    animation: slideInUp 1s ease-out;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 64px;
    background: white;
    padding: 8px;
    border-radius: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 0.3s both;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    color: white;
    transform: scale(1.05);
}

.tab-btn:hover:not(.active) {
    background: rgba(63, 81, 181, 0.1);
    color: #3F51B5;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

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

.feature-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 0.8s ease-out;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
    animation: bounceIn 0.8s ease-out;
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #1a1a1a;
    animation: slideInLeft 0.6s ease-out;
}

.feature-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    font-size: 16px;
    animation: checkmark 0.3s ease-out;
}

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

/* Feature Demos */
.feature-visual {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.8s ease-out;
    transition: all 0.3s ease;
}

.feature-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.analysis-demo,
.matching-demo,
.management-demo {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.analysis-demo::before,
.matching-demo::before,
.management-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(63, 81, 181, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.demo-header {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
    animation: slideInLeft 0.6s ease-out;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3F51B5, #2196F3);
    border-radius: 4px;
    transition: width 1.5s ease-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.candidate-matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.match-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    animation: slideInRight 0.6s ease-out;
    transition: all 0.3s ease;
}

.match-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.match-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.match-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.match-score {
    font-size: 12px;
    color: #22c55e;
    font-weight: 600;
}

.pipeline-stages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stage {
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(63, 81, 181, 0.1);
    animation: slideInUp 0.6s ease-out;
    transition: all 0.3s ease;
}

.stage:hover {
    transform: translateY(-3px);
}

.stage-title {
    font-size: 12px;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.stage-count {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    animation: countUp 1s ease-out;
}

/* Solutions Section */
.solutions-section {
    padding: 120px 0;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.solution-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.solution-card.featured {
    border-color: #3F51B5;
    box-shadow: 0 8px 32px rgba(63, 81, 181, 0.2);
    animation: featuredCard 0.8s ease-out;
}

@keyframes featuredCard {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.solution-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    animation: bounceIn 0.8s ease-out 0.3s both;
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 24px;
    animation: bounceIn 0.8s ease-out;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.solution-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.solution-price {
    font-size: 32px;
    font-weight: 800;
    color: #3F51B5;
    line-height: 1;
}

.solution-period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.solution-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 14px;
    animation: slideInLeft 0.6s ease-out;
}

.solution-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    animation: checkmark 0.3s ease-out;
}

.solution-cta {
    color: #3F51B5;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.solution-cta:hover {
    text-decoration: underline;
    transform: translateX(5px);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: #fafafa;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.save-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: 0.3s;
    border-radius: 32px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #3F51B5, #2196F3);
}

input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.annual-savings {
    margin-top: 8px;
}

.savings-text {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

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

.pricing-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #3F51B5;
    box-shadow: 0 8px 32px rgba(63, 81, 181, 0.2);
    transform: scale(1.05);
    animation: featuredCard 0.8s ease-out;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    animation: bounceIn 0.8s ease-out 0.3s both;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    animation: countUp 1s ease-out;
}

.price-period {
    font-size: 16px;
    color: #64748b;
    margin-left: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 14px;
    animation: slideInLeft 0.6s ease-out;
}

.pricing-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    animation: checkmark 0.3s ease-out;
}

.pricing-cta {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #3F51B5;
    background: transparent;
    color: #3F51B5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #3F51B5;
    color: white;
    transform: translateY(-2px);
}

.pricing-cta.primary {
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    color: white;
    border-color: transparent;
}

.pricing-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 81, 181, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: bubbleFloat 15s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: white;
    color: #3F51B5;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: #3F51B5;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 32px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solutions-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Responsive Design for Pricing Grid */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0 16px;
        height: 64px;
    }
    
    .nav-brand-text {
        font-size: 18px;
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .nav-actions {
        gap: 6px;
        flex-shrink: 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 32px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .platform-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 16px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
} 

/* Demo Section */
.demo-section {
    padding: 120px 0;
    background: white;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.demo-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(63, 81, 181, 0.05), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.demo-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.demo-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

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

/* Project Dashboard Demo */
.metric-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.metric {
    text-align: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    color: #3F51B5;
    margin-bottom: 4px;
    animation: countUp 1s ease-out;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

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

.project-item {
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.project-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    margin-bottom: 4px;
}

.project-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
}

.project-company {
    font-weight: 500;
}

.project-candidates {
    color: #3F51B5;
    font-weight: 600;
}

/* Active Candidates Demo */
.candidate-table {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    background: #e2e8f0;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
}

.table-row:hover {
    background: white;
    transform: translateX(5px);
}

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

.candidate-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    color: #64748b;
}

.contact-info .email,
.contact-info .phone {
    font-size: 11px;
}

.contact-info .location {
    font-weight: 500;
    color: #475569;
}

.role {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.score {
    font-weight: 700;
    color: #22c55e;
    font-size: 14px;
    text-align: center;
}

.stage {
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* AI Assistant Demo */
.chat-interface {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 12px;
    animation: slideInUp 0.6s ease-out;
}

.chat-message.user {
    justify-content: flex-end;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.message-content {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1a1a;
    max-width: 80%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, #3F51B5, #2196F3);
    color: white;
}

.chat-message.ai .message-content {
    background: white;
    border: 1px solid rgba(63, 81, 181, 0.2);
}

.message-content strong {
    color: #3F51B5;
}

.chat-message.user .message-content strong {
    color: white;
}

/* Privacy Blur Effects */
.privacy-blur {
    filter: blur(2px);
    transition: filter 0.3s ease;
}

.privacy-blur:hover {
    filter: blur(0px);
}

/* Responsive adjustments for demo section */
@media (max-width: 1024px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metric-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        padding: 16px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .metric-row {
        grid-template-columns: 1fr;
    }
    
    .demo-card {
        padding: 24px;
    }
    
    .chat-interface {
        max-height: 250px;
    }
    
    .message-content {
        max-width: 90%;
        font-size: 13px;
    }
}

/* User Profile Styles */
.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: fit-content;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.username {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

    .btn-small {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    /* Ensure navigation buttons are exactly the same size */
    .nav-btn {
        min-width: 80px;
        text-align: center;
        justify-content: center;
    }

/* Responsive adjustments for user profile */
@media (max-width: 768px) {
    .user-profile {
        flex-direction: column;
        gap: 8px;
        padding: 8px 12px;
        min-width: auto;
    }
    
    .user-info {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }
    
    .username {
        font-size: 12px;
        text-align: center;
    }
    
    .nav-actions {
        gap: 6px;
    }
    
    .nav-actions .btn-primary,
    .nav-actions .btn-secondary {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 8px;
        min-width: auto;
        white-space: nowrap;
    }
    
    .nav-btn {
        min-width: 70px;
    }
    
    .btn-small {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 6px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        height: 60px;
    }
    
    .nav-brand-text {
        font-size: 16px;
    }
    
    .nav-logo {
        width: 24px;
        height: 24px;
    }
    
    .nav-actions {
        gap: 4px;
    }
    
    .nav-actions .btn-primary,
    .nav-actions .btn-secondary {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    .nav-btn {
        min-width: 60px;
    }
    
    .user-profile {
        padding: 6px 8px;
    }
    
    .username {
        font-size: 11px;
    }
    
    .btn-small {
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 4px;
    }
    

}

/* Ultra small mobile devices */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 8px;
        height: 56px;
    }
    
    .nav-brand-text {
        font-size: 14px;
    }
    
    .nav-logo {
        width: 20px;
        height: 20px;
    }
    
    .nav-actions .btn-primary,
    .nav-actions .btn-secondary {
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 5px;
    }
    
    .nav-btn {
        min-width: 50px;
    }
    
    .user-profile {
        padding: 4px 6px;
    }
    
    .username {
        font-size: 10px;
    }
    
    .btn-small {
        padding: 3px 6px;
        font-size: 9px;
        border-radius: 3px;
    }
} 