/* SalonJobs - 2026 Design System */

/* CSS Variables - Design Tokens */
:root {
    /* Colors - Modern Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --secondary-dark: #db2777;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'SF Pro Display', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows - Soft & Modern */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(180deg, var(--neutral-50) 0%, #ffffff 100%);
    color: var(--neutral-800);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* Navigation */
.navbar {
    padding: var(--space-sm) 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.brand-name {
    font-size: 1.375rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--neutral-900);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--neutral-600);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-300);
}

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

/* Notify Form */
.notify-form {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.email-form {
    margin-bottom: var(--space-md);
}

.form-group {
    display: flex;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-xs);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
}

.form-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: none;
    font-size: 1rem;
    color: var(--neutral-900);
    background: transparent;
    outline: none;
}

.form-input::placeholder {
    color: var(--neutral-400);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

.btn-primary .icon {
    width: 20px;
    height: 20px;
}

.form-hint {
    font-size: 0.875rem;
    color: var(--neutral-500);
    text-align: center;
}

/* Form Messages */
.form-message {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.938rem;
    font-weight: 500;
    text-align: center;
    margin-top: var(--space-md);
    animation: fadeInUp 0.3s ease-out;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Loading Spinner */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Button Disabled State */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-xl);
}

/* Lazy Loading Optimization */
.lazy-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lazy-section.lazy-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Reduce animations for initial load */
@media (prefers-reduced-motion: no-preference) {
    .lazy-section {
        will-change: opacity, transform;
    }
}

/* Employer Section - For Salon Owners */
.employer-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
}

.employer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.employer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 968px) {
    .employer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.employer-text {
    color: white;
}

.employer-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.employer-badge .badge-icon {
    width: 18px;
    height: 18px;
}

.employer-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    color: white;
}

.highlight-text {
    color: #fbbf24;
    text-decoration: underline;
    text-decoration-color: rgba(251, 191, 36, 0.3);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.employer-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
}

.employer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-size: 0.9375rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: #86efac;
    flex-shrink: 0;
}

.employer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.btn-employer-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-employer-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #fafafa;
}

.btn-employer-primary .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn-employer-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-employer-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(8px);
}

.btn-employer-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.employer-note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-md);
    background: rgba(251, 191, 36, 0.15);
    border-left: 3px solid #fbbf24;
    border-radius: var(--radius-sm);
}

/* Employer Notify Form */
.employer-notify-form {
    margin-bottom: var(--space-lg);
}

.employer-form-group {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
}

.employer-form-group .form-input {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
}

.employer-form-group .form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.employer-notify-form .form-hint {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-top: var(--space-sm);
    font-size: 0.9375rem;
}

.btn-employer-notify {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-height: 44px;
}

.btn-employer-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #fafafa;
}

.btn-employer-notify .icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-employer-notify:hover .icon:not(.spinner) {
    transform: translateX(4px);
}

.btn-employer-notify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#employerFormMessage {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
}

#employerFormMessage.success {
    background: rgba(16, 185, 129, 0.2);
    color: #86efac;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

#employerFormMessage.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Employer Visual Cards */
.employer-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    position: relative;
}

@media (min-width: 768px) {
    .employer-visual {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    
    .visual-card.card-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .visual-card.card-2 {
        grid-column: 2;
        grid-row: 1;
    }
    
    .visual-card.card-3 {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

.visual-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition-base);
}

.visual-card:hover {
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid white;
    margin-left: -8px;
}

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

.icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-badge svg {
    width: 18px;
    height: 18px;
}

.card-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-600);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.card-number .unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-500);
}

.card-trend {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
}

.card-trend svg {
    width: 16px;
    height: 16px;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--neutral-600);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.skill-tag {
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--neutral-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-xl);
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    padding: var(--space-sm);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--neutral-900);
}

.feature-description {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Categories Section */
.categories-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, white 0%, var(--neutral-50) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

.category-card {
    padding: var(--space-lg);
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-name {
    font-weight: 600;
    color: var(--neutral-800);
}

/* Cities Section */
.cities-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-md);
}

.city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.city-card:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.city-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.city-name {
    font-weight: 600;
    color: var(--neutral-800);
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    line-height: 1.7;
}

.cta-notify-form {
    margin-bottom: var(--space-lg);
}

.cta-form-group {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.cta-form-group .form-input {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
}

.cta-form-group .form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-cta-notify {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-height: 44px;
}

.btn-cta-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #fafafa;
}

.btn-cta-notify .icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-cta-notify:hover .icon:not(.spinner) {
    transform: translateX(4px);
}

.btn-cta-notify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#ctaFormMessage {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

#ctaFormMessage.success {
    background: rgba(16, 185, 129, 0.2);
    color: #86efac;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

#ctaFormMessage.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cta-notify-form .form-hint {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: var(--space-sm);
    font-size: 0.9375rem;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0;
    background: var(--neutral-900);
    color: var(--neutral-400);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-md);
}

.footer-brand .logo-icon {
    color: var(--primary-light);
}

.footer-brand .brand-name {
    color: white;
}

.footer-text {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

.footer-meta {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--neutral-800);
}

/* Responsive Design - Mobile First 2026 Standards */

/* Safe Area Support for Notched Devices */
body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Touch Target Optimization - Minimum 44px for 2026 accessibility */
.btn-primary,
.btn-secondary,
.category-card,
.city-card,
.form-input {
    min-height: 44px;
}

/* Extra Small Devices (phones, less than 375px) */
@media (max-width: 374px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-section {
        padding: var(--space-xl) 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Small Mobile Devices (375px to 639px) */
@media (max-width: 639px) {
    .navbar {
        padding: var(--space-md) 0;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .hero-section {
        padding: var(--space-2xl) 0;
    }
    
    .hero-badge {
        font-size: 0.813rem;
        padding: 0.375rem var(--space-sm);
    }
    
    .hero-title {
        margin-bottom: var(--space-md);
    }
    
    .hero-description {
        margin-bottom: var(--space-xl);
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: var(--space-sm);
        margin-bottom: var(--space-xl);
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Mobile Form Optimization */
    .form-group {
        flex-direction: column;
        padding: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .form-input {
        padding: var(--space-md);
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: var(--space-md);
    }
    
    .form-hint {
        font-size: 0.813rem;
        padding: 0 var(--space-sm);
    }
    
    /* Sections Spacing */
    .features-section,
    .categories-section,
    .cities-section,
    .cta-section {
        padding: var(--space-2xl) 0;
    }
    
    .employer-section {
        padding: var(--space-2xl) 0;
    }
    
    .employer-title {
        font-size: 1.75rem;
    }
    
    .employer-description {
        font-size: 1rem;
    }
    
    .employer-benefits {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .benefit-item {
        font-size: 0.875rem;
    }
    
    .employer-form-group {
        flex-direction: column;
    }
    
    .btn-employer-notify {
        width: 100%;
        justify-content: center;
        padding: var(--space-md) var(--space-lg);
    }
    
    .employer-note {
        font-size: 0.875rem;
    }
    
    .visual-card {
        padding: var(--space-md);
    }
    
    .card-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: var(--space-xl);
    }
    
    /* Features Grid - Stack on Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .feature-card {
        padding: var(--space-lg);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .feature-description {
        font-size: 0.938rem;
    }
    
    /* Categories Grid - 2 Columns on Mobile */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .category-card {
        padding: var(--space-md);
    }
    
    .category-name {
        font-size: 0.875rem;
    }
    
    /* Cities Grid - 2 Columns on Mobile */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .city-card {
        padding: var(--space-md);
    }
    
    .city-icon {
        width: 28px;
        height: 28px;
    }
    
    .city-name {
        font-size: 0.875rem;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }
    
    .cta-form-group {
        flex-direction: column;
    }
    
    .btn-cta-notify {
        width: 100%;
        justify-content: center;
        padding: var(--space-md) var(--space-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .btn-lg {
        width: 100%;
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: var(--space-xl) 0;
    }
    
    .footer-text {
        font-size: 0.938rem;
    }
}

/* Medium Mobile to Small Tablet (640px to 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .stat-divider {
        display: block;
    }
}

/* Tablet Devices (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
}

/* Large Tablets & Small Desktops (1024px to 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        max-width: 1024px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop & Above (1280px+) */
@media (min-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Landscape Orientation on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: var(--space-xl) 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--space-md);
    }
    
    .hero-stats {
        margin-bottom: var(--space-md);
    }
    
    .features-section,
    .categories-section,
    .cities-section,
    .cta-section {
        padding: var(--space-xl) 0;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Hover Effects Only on Devices That Support Hover */
@media (hover: hover) and (pointer: fine) {
    .feature-card:hover,
    .category-card:hover,
    .city-card:hover {
        transform: translateY(-4px);
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:active,
    .category-card:active,
    .city-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.97);
    }
    
    /* Larger touch targets for mobile */
    .category-card,
    .city-card {
        min-height: 60px;
    }
    
    /* Disable hover animations on touch devices */
    * {
        transition-property: transform, opacity, background-color, border-color, box-shadow;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
