:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary: #10B981;
    --secondary-dark: #059669;
    --dark: #1F2937;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --danger: #EF4444;
    --warning: #F59E0B;
    --success: #10B981;
    --info: #3B82F6;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
}

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

a:hover {
    color: var(--primary-dark);
}

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

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.logo-icon {
    background: var(--primary);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-600);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 16px;
}

.mobile-menu.active {
    display: flex;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    gap: 8px;
}

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

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

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

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

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

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

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.75rem;
}

.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash-message {
    padding: 12px 40px 12px 16px;
    border-radius: var(--radius);
    position: relative;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.flash-message button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
}

.flash-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.flash-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.flash-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.flash-info {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero .highlight {
    color: #FDE68A;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-search {
    max-width: 800px;
    margin: 0 auto;
}

.search-inputs {
    display: flex;
    gap: 12px;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-lg);
}

.search-inputs input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-inputs .btn {
    padding: 14px 32px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .search-inputs {
        flex-direction: column;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.features {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

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

.feature-card p {
    color: var(--gray-600);
}

.featured-jobs {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.job-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.job-card-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.company-logo {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.job-info {
    flex: 1;
}

.job-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.company-name {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.job-details {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.job-location, .job-type {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.job-type {
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
}

.job-salary {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.job-apply-btn {
    width: 100%;
}

.cta-section {
    background: var(--gray-900);
    padding: 80px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-text p {
    color: var(--gray-400);
}

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

.footer {
    background: var(--gray-800);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--gray-400);
}

.footer-section a {
    display: block;
    color: var(--gray-400);
    padding: 6px 0;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.auth-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

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

.auth-header h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--gray-500);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.user-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.user-type-option input {
    display: none;
}

.user-type-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.user-type-option input:checked + .user-type-card {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
}

.user-type-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.user-type-label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.user-type-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-500);
}

.dashboard {
    padding: 40px 0;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: var(--gray-500);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

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

.card-header h2 {
    font-size: 1.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-card .stat-label {
    color: var(--gray-500);
}

.ai-insights-card .insight-score {
    text-align: center;
    margin-bottom: 24px;
}

.score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.score-number {
    font-size: 2rem;
    font-weight: 700;
}

.score-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

.insight-section h4 {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.insight-section ul {
    list-style: none;
}

.insight-section li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray-700);
}

.tag-skill {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.summary-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.applications-list {
    display: flex;
    flex-direction: column;
}

.application-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.application-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.application-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.application-meta {
    text-align: right;
}

.status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-pending {
    background: #FEF3C7;
    color: #92400E;
}

.status-reviewing {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-shortlisted {
    background: #D1FAE5;
    color: #065F46;
}

.status-interviewed {
    background: #E0E7FF;
    color: #3730A3;
}

.status-offered {
    background: #CFFAFE;
    color: #0E7490;
}

.status-hired {
    background: #D1FAE5;
    color: #065F46;
}

.status-rejected {
    background: #FEE2E2;
    color: #991B1B;
}

.status-active {
    background: #D1FAE5;
    color: #065F46;
}

.status-inactive {
    background: var(--gray-200);
    color: var(--gray-600);
}

.date {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.profile-summary {
    text-align: center;
}

.progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    margin: 12px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.saved-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.saved-job-item {
    display: block;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: background 0.2s;
}

.saved-job-item:hover {
    background: var(--gray-100);
}

.saved-job-item .job-title {
    display: block;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.saved-job-item .job-company {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
}

.empty-text {
    text-align: center;
    color: var(--gray-500);
    padding: 20px 0;
}

.loading {
    text-align: center;
    padding: 20px;
    color: var(--gray-500);
}

.error {
    background: #FEE2E2;
    color: #991B1B;
    padding: 12px;
    border-radius: var(--radius);
    margin-top: 12px;
}

.success {
    background: #D1FAE5;
    color: #065F46;
    padding: 12px;
    border-radius: var(--radius);
    margin-top: 12px;
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.recommendation-item {
    display: block;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.recommendation-item:hover {
    background: var(--gray-100);
}

.rec-title {
    font-weight: 600;
    color: var(--gray-900);
}

.rec-company {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.rec-score {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 4px;
}

.rec-reason {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.jobs-table table {
    width: 100%;
    border-collapse: collapse;
}

.jobs-table th,
.jobs-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.jobs-table th {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    font-weight: 600;
}

.job-type-small {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.app-count {
    color: var(--primary);
    font-weight: 500;
}

.actions {
    display: flex;
    gap: 8px;
}

.recent-apps-list {
    display: flex;
    flex-direction: column;
}

.recent-app-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.applicant-info strong {
    display: block;
    font-size: 0.9375rem;
}

.applicant-info span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.app-job {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 4px 0;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    color: var(--gray-700);
    transition: background 0.2s;
}

.quick-action:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.profile-page, .post-job-page {
    padding: 40px 0;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--gray-500);
}

.profile-form, .job-form {
    max-width: 800px;
}

.form-section {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.form-section h2 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid .full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-grid .full-width {
        grid-column: span 1;
    }
}

.resume-upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.resume-upload-area:hover {
    border-color: var(--primary);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.upload-icon {
    font-size: 2rem;
}

.upload-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.current-resume {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.file-icon {
    font-size: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.jobs-page, .candidates-page {
    padding: 40px 0;
}

.jobs-layout, .candidates-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .jobs-layout, .candidates-layout {
        grid-template-columns: 1fr;
    }
}

.filters-sidebar {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 84px;
}

.filters-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 6px;
    color: var(--gray-700);
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
}

.results-header {
    margin-bottom: 20px;
    color: var(--gray-500);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.job-card-left .company-logo {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
}

.job-card-content {
    flex: 1;
}

.job-card-content .job-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.job-card-content .job-title a {
    color: var(--gray-900);
}

.job-card-content .job-title a:hover {
    color: var(--primary);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 8px 0;
}

.job-location {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.job-type-badge, .experience-badge {
    background: var(--gray-100);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.job-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.post-date {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.no-results, .no-jobs {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.job-detail-page {
    padding: 40px 0;
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

@media (max-width: 992px) {
    .job-detail-layout {
        grid-template-columns: 1fr;
    }
}

.job-header {
    display: flex;
    gap: 24px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.company-logo-large {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2rem;
}

.job-header-info h1 {
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.company-link {
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.job-meta-large {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.salary-large {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
}

.job-section {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.job-section h2 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.job-description, .job-requirements, .job-benefits {
    color: var(--gray-700);
    line-height: 1.8;
    white-space: pre-line;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.company-website {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 500;
}

.job-detail-sidebar > div {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.apply-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.already-applied {
    background: var(--gray-100);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--success);
    font-weight: 500;
}

.check-icon {
    font-size: 1.25rem;
    margin-right: 8px;
}

.recruiter-notice, .login-hint {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.job-info-card h3, .similar-jobs-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.info-label {
    color: var(--gray-500);
}

.info-value {
    font-weight: 500;
}

.similar-job-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.similar-job-item strong {
    display: block;
    color: var(--gray-900);
}

.similar-job-item span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h2 {
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-400);
}

.modal-content form {
    padding: 24px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.applications-page {
    padding: 40px 0;
}

.header-with-back {
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.applicant-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.applicant-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

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

.applicant-info {
    flex: 1;
}

.applicant-info h3 {
    font-size: 1.125rem;
    margin-bottom: 2px;
}

.applicant-title {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.applicant-location {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.applicant-skills h4, .cover-letter-section h4 {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cover-letter-section {
    margin: 16px 0;
}

.cover-letter-section p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.ai-badge {
    margin: 12px 0;
}

.ai-badge span {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.applicant-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.status-select {
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.applicant-meta {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.candidate-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.candidate-header {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

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

.candidate-info h3 {
    font-size: 1.125rem;
    margin-bottom: 2px;
}

.candidate-title {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.candidate-location {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.candidate-bio {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.candidate-skills {
    margin-bottom: 16px;
}

.candidate-actions {
    margin-top: auto;
}

.candidate-profile-page {
    padding: 40px 0;
}

.profile-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}

.profile-header-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2.5rem;
}

.profile-header-info h1 {
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.profile-title {
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.profile-links {
    display: flex;
    gap: 8px;
}

.profile-section {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.profile-section h2 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.experience-content, .education-content {
    color: var(--gray-700);
    white-space: pre-line;
    line-height: 1.7;
}

.profile-sidebar > div {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.ai-insights-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.insight-score-small {
    text-align: center;
    margin-bottom: 20px;
}

.insight-score-small .score {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.insight-score-small .label {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.insight-item {
    margin-bottom: 16px;
}

.insight-item h4 {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.insight-item ul {
    list-style: none;
}

.insight-item li {
    font-size: 0.875rem;
    padding: 4px 0;
}

.tags-small {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-small {
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gray-700);
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.contact-item {
    margin-bottom: 12px;
}

.contact-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.contact-item .value {
    font-weight: 500;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* 2026 UI refresh */

:root {
    --primary: #0f766e;
    --primary-dark: #115e59;
    --primary-light: #2dd4bf;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --dark: #101828;
    --gray-900: #172033;
    --gray-800: #23304a;
    --gray-700: #3f4e6a;
    --gray-600: #596780;
    --gray-500: #70809a;
    --gray-400: #93a0b5;
    --gray-300: #cad2df;
    --gray-200: #e5eaf1;
    --gray-100: #f2f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.18);
    --radius: 14px;
    --radius-lg: 24px;
}

body {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 22%),
        linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
    color: var(--gray-900);
}

main {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, .logo-text, .section-title {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

.navbar {
    background: rgba(248, 250, 252, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(202, 210, 223, 0.7);
    box-shadow: none;
}

.nav-container {
    height: 78px;
    gap: 20px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), #0b4f56);
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.28);
}

.nav-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 16px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-pill-live {
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-dark);
}

.nav-pill-muted {
    background: rgba(89, 103, 128, 0.12);
    color: var(--gray-600);
}

.nav-model {
    font-size: 0.8rem;
    color: var(--gray-600);
    white-space: nowrap;
}

.nav-links {
    gap: 18px;
}

.nav-link {
    color: var(--gray-700);
}

.btn {
    border-radius: 999px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0b4f56);
    box-shadow: 0 16px 30px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
}

.btn-outline {
    border-color: rgba(63, 78, 106, 0.2);
    background: rgba(255, 255, 255, 0.7);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(45, 212, 191, 0.18), transparent 30%),
        radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.16), transparent 26%),
        linear-gradient(135deg, #0f172a 0%, #12263f 48%, #103c4a 100%);
    padding: 96px 0 88px;
    text-align: left;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -22% auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.24), transparent 62%);
    filter: blur(10px);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 32px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.hero-kicker,
.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.section-kicker,
.eyebrow {
    color: var(--primary-dark);
}

.hero-kicker-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.7);
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(3rem, 5vw, 5.25rem);
    line-height: 0.95;
    margin-bottom: 22px;
}

.hero .highlight {
    color: #f7c56d;
}

.hero-subtitle {
    margin: 0 0 30px;
    max-width: 620px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.hero-search {
    margin: 0;
}

.search-inputs {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
    border-radius: 24px;
    padding: 10px;
}

.search-inputs input {
    border-radius: 16px;
    background: transparent;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-trust span {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.hero-panel-card {
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.hero-panel-card-primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
}

.hero-panel-card-soft {
    background: #f7efe2;
    color: var(--gray-900);
}

.hero-stats {
    justify-content: flex-start;
    gap: 28px;
    margin-top: 10px;
}

.stat-number {
    color: var(--white);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.hero-panel-card-soft .eyebrow,
.hero-panel-card-soft .stat-number,
.hero-panel-card-soft .stat-label {
    color: var(--gray-900);
}

.hero-checklist {
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-checklist li {
    position: relative;
    padding-left: 20px;
    color: var(--gray-700);
}

.hero-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.features,
.featured-jobs,
.dashboard,
.jobs-page {
    position: relative;
}

.section-heading {
    max-width: 640px;
    margin-bottom: 34px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.02;
}

.feature-card,
.job-card,
.dashboard-card,
.stat-card,
.auth-container,
.filters-form,
.job-card-horizontal {
    border: 1px solid rgba(202, 210, 223, 0.72);
    box-shadow: var(--shadow);
}

.feature-card {
    text-align: left;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    padding: 28px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(45, 212, 191, 0.22));
    color: var(--primary-dark);
}

.jobs-grid {
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.job-card {
    background: rgba(255, 255, 255, 0.92);
}

.job-card-copy,
.sidebar-copy {
    color: var(--gray-600);
    line-height: 1.7;
}

.job-card-copy {
    margin-bottom: 16px;
}

.cta-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(45, 212, 191, 0.2), transparent 28%),
        linear-gradient(135deg, #142033 0%, #0d2432 100%);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.72);
}

.footer {
    background: linear-gradient(180deg, #172033 0%, #0f172a 100%);
}

.auth-page {
    padding: 72px 20px;
}

.auth-container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 28px;
}

.dashboard {
    padding: 54px 0 72px;
}

.dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.dashboard-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.seeker-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-radius: 26px;
}

.card-header {
    align-items: flex-start;
}

.stat-card {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 24px;
}

.stat-value {
    color: var(--primary-dark);
}

.score-circle {
    background: linear-gradient(135deg, var(--primary), #0b4f56);
    box-shadow: 0 24px 40px rgba(15, 118, 110, 0.2);
}

.empty-state-soft {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(15, 118, 110, 0.02));
    border: 1px dashed rgba(15, 118, 110, 0.18);
    border-radius: 20px;
    padding: 20px;
}

.saved-job-item,
.recommendation-item {
    background: rgba(242, 245, 249, 0.82);
    border: 1px solid rgba(202, 210, 223, 0.7);
    border-radius: 18px;
}

.recommendations-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.recommendation-item {
    display: block;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.rec-title {
    font-weight: 800;
    color: var(--gray-900);
}

.rec-company,
.rec-reason,
.post-date,
.date,
.empty-text {
    color: var(--gray-600);
}

.rec-score {
    margin: 10px 0 8px;
    color: var(--primary-dark);
    font-weight: 700;
}

.jobs-page {
    padding: 54px 0 72px;
}

.page-header {
    max-width: 760px;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    margin-bottom: 12px;
}

.page-header p:last-child {
    color: var(--gray-600);
    font-size: 1.05rem;
}

.jobs-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.filters-sidebar {
    position: sticky;
    top: 98px;
}

.filters-form {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-radius: 26px;
}

.filters-form input,
.filters-form select,
.filters-form textarea {
    background: rgba(248, 250, 252, 0.95);
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 0 4px;
}

.results-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.job-card-horizontal {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 26px;
}

.company-logo {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.job-type,
.job-type-badge,
.experience-badge {
    border-radius: 999px;
}

.loading,
.error {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.92rem;
}

.loading {
    background: rgba(15, 118, 110, 0.08);
    color: var(--primary-dark);
}

.error {
    background: rgba(239, 68, 68, 0.08);
    color: #b42318;
}

@media (max-width: 992px) {
    .nav-meta {
        display: none;
    }

    .hero-layout,
    .jobs-layout,
    .seeker-stats-grid {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }

    .hero {
        padding: 78px 0 64px;
    }

    .hero h1,
    .page-header h1 {
        font-size: 2.6rem;
    }

    .hero-stats,
    .cta-buttons,
    .dashboard-header,
    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-inputs {
        border-radius: 22px;
    }
}
