/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0F4C81;
    --primary-dark: #0A3A62;
    --primary-light: #2A6FA0;
    --secondary: #1AA6B7;
    --secondary-light: #4DC4D4;
    --accent: #34C759;
    --accent-light: #7AE09A;
    --bg-white: #FFFFFF;
    --bg-light: #F7FAFC;
    --bg-gray: #EDF2F7;
    --text-dark: #1A2A3A;
    --text-mid: #2D4A6A;
    --text-light: #6A8BAA;
    --text-white: #FFFFFF;
    --shadow-sm: 0 2px 12px rgba(15, 76, 129, 0.08);
    --shadow-md: 0 8px 30px rgba(15, 76, 129, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 76, 129, 0.15);
    --shadow-xl: 0 30px 80px rgba(15, 76, 129, 0.20);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --header-height: 80px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== DARK MODE ===== */
body.dark-mode {
    --bg-white: #0A1A2A;
    --bg-light: #0F2436;
    --bg-gray: #1A3448;
    --text-dark: #E8F0F8;
    --text-mid: #A0C4E8;
    --text-light: #6A9EC0;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.6);
    --primary: #4A8EC4;
    --primary-dark: #2A6FA0;
    --primary-light: #6AA8D4;
    --secondary: #4DC4D4;
    --accent: #7AE09A;
}
body.dark-mode .nav,
body.dark-mode .card,
body.dark-mode .stat-card,
body.dark-mode .footer,
body.dark-mode .search-wrapper,
body.dark-mode .faq-item,
body.dark-mode .testimonial-card,
body.dark-mode .pricing-card,
body.dark-mode .category-card,
body.dark-mode .candidate-card,
body.dark-mode .why-card,
body.dark-mode .employer-card,
body.dark-mode .ai-feature-card,
body.dark-mode .hiw-card,
body.dark-mode .search-demo,
body.dark-mode .pf-item,
body.dark-mode .allied-card {
    background: var(--bg-light) !important;
    border-color: #1A3448 !important;
}
body.dark-mode .nav {
    background: rgba(10, 26, 42, 0.92) !important;
    border-bottom-color: #1A3448;
}
body.dark-mode .hero {
    background: linear-gradient(165deg, #0A1A2A, #0F2436) !important;
}
body.dark-mode .final-cta {
    background: linear-gradient(135deg, #0A3A62, #1A6A8A) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 76, 129, 0.06);
    transition: var(--transition);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
    font-family: var(--font-heading);
}
.nav-logo i { font-size: 2rem; color: var(--secondary); }
.nav-logo .brand-text { color: var(--text-dark); letter-spacing: -0.3px; }
.nav-logo .brand-dot { color: var(--secondary); font-weight: 400; }
body.dark-mode .nav-logo .brand-text { color: var(--text-white); }

.nav-menu { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav-menu a {
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 30px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-menu a:hover {
    color: var(--primary);
    background: rgba(15, 76, 129, 0.06);
}
body.dark-mode .nav-menu a:hover {
    color: var(--primary-light);
    background: rgba(74, 142, 196, 0.12);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav-actions .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-secondary {
    background: var(--secondary);
    color: #fff;
}
.btn-secondary:hover {
    background: #1698A8;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-accent {
    background: var(--accent);
    color: #fff;
}
.btn-accent:hover {
    background: #2AA84A;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.nav-toggle { display: none; font-size: 1.6rem; color: var(--text-dark); padding: 4px 8px; }
body.dark-mode .nav-toggle { color: var(--text-white); }

.nav-controls { display: flex; align-items: center; gap: 6px; }
.nav-controls button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-mid);
    transition: var(--transition);
    background: transparent;
}
.nav-controls button:hover {
    background: rgba(15, 76, 129, 0.06);
    color: var(--primary);
}
body.dark-mode .nav-controls button:hover {
    background: rgba(74, 142, 196, 0.12);
    color: var(--primary-light);
}
.nav-controls .lang-select {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0 8px;
    background: transparent;
    border: none;
    color: var(--text-mid);
    cursor: pointer;
    font-family: var(--font-body);
}
body.dark-mode .nav-controls .lang-select { color: var(--text-light); }

/* ===== HERO ===== */
.hero {
    padding: calc(var(--header-height) + 40px) 0 60px;
    background: linear-gradient(165deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 166, 183, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.hero-content h1 .highlight {
    color: var(--secondary);
    position: relative;
}
.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--secondary);
    opacity: 0.25;
    border-radius: 4px;
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.search-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(15, 76, 129, 0.08);
    transition: var(--transition);
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}
body.dark-mode .search-wrapper { background: #0F2436; border-color: #1A3448; }
.search-wrapper:focus-within {
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}
.search-wrapper .search-icon {
    padding: 0 4px 0 8px;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.search-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    outline: none;
    min-width: 0;
    width: 100%;
}
.search-wrapper input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}
body.dark-mode .search-wrapper input { color: var(--text-white); }
.search-wrapper .search-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.search-wrapper .search-actions .btn-search {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-wrapper .search-actions .btn-search:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.search-suggestions span {
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--bg-gray);
    padding: 6px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-weight: 500;
}
body.dark-mode .search-suggestions span {
    background: #1A3448;
    color: var(--text-light);
}
.search-suggestions span:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.live-counter {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.live-counter .item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    padding: 6px 18px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    color: var(--text-mid);
    border: 1px solid rgba(15, 76, 129, 0.04);
}
body.dark-mode .live-counter .item {
    background: #0F2436;
    border-color: #1A3448;
    color: var(--text-light);
}
.live-counter .item i {
    color: var(--accent);
    font-size: 1rem;
}
.live-counter .item .count {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}
body.dark-mode .live-counter .item .count { color: var(--primary-light); }
.live-counter .item .label { font-weight: 400; }

/* ===== STATISTICS ===== */
.stats { padding: 60px 0 40px; background: var(--bg-white); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    text-align: center;
}
.stat-card {
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 76, 129, 0.04);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.stat-card .number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}
body.dark-mode .stat-card .number { color: var(--primary-light); }
.stat-card .label {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
body.dark-mode .section-header h2 { color: var(--text-white); }
.section-header p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.6;
}
.section-tag {
    display: inline-block;
    background: rgba(26, 166, 183, 0.10);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
body.dark-mode .section-tag {
    background: rgba(77, 196, 212, 0.15);
    color: var(--secondary);
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 60px 0 80px; background: var(--bg-light); }
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.hiw-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 76, 129, 0.04);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}
body.dark-mode .hiw-card { background: #0F2436; border-color: #1A3448; }
.hiw-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.hiw-card .step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
}
.hiw-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}
body.dark-mode .hiw-card h4 { color: var(--text-white); }
.hiw-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ===== CATEGORIES ===== */
.categories { padding: 60px 0 80px; background: var(--bg-white); }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}
.category-card {
    background: var(--bg-light);
    padding: 20px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}
body.dark-mode .category-card { background: #0F2436; border-color: #1A3448; }
.category-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    background: var(--bg-white);
}
body.dark-mode .category-card:hover { background: #1A3448; }
.category-card i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 6px;
    display: block;
}
.category-card span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
body.dark-mode .category-card span { color: var(--text-white); }
.category-card .count {
    font-size: 0.7rem;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}
.view-all {
    text-align: center;
    margin-top: 32px;
}
.view-all a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.view-all a:hover {
    gap: 14px;
    color: var(--primary);
}

/* ===== ALLIED ===== */
.allied-section { padding: 60px 0 80px; background: var(--bg-light); }
.allied-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.allied-card {
    background: var(--bg-white);
    padding: 18px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid rgba(15, 76, 129, 0.04);
    transition: var(--transition);
    cursor: pointer;
}
body.dark-mode .allied-card { background: #0F2436; border-color: #1A3448; }
.allied-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    background: var(--bg-white);
}
body.dark-mode .allied-card:hover { background: #1A3448; }
.allied-card i {
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
}
.allied-card span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
body.dark-mode .allied-card span { color: var(--text-white); }
.allied-card .count {
    font-size: 0.65rem;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}

/* ===== ADVANCED SEARCH ===== */
.advanced-search { padding: 60px 0 80px; background: var(--bg-white); }
.search-demo {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 32px 36px;
    border: 1px solid rgba(15, 76, 129, 0.04);
    max-width: 900px;
    margin: 0 auto;
}
body.dark-mode .search-demo { background: #0F2436; border-color: #1A3448; }
.search-demo .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}
.search-demo .filter-row select,
.search-demo .filter-row input {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 76, 129, 0.10);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-dark);
    flex: 1;
    min-width: 140px;
    outline: none;
    transition: var(--transition);
}
body.dark-mode .search-demo .filter-row select,
body.dark-mode .search-demo .filter-row input {
    background: #1A3448;
    border-color: #2A4A6E;
    color: var(--text-white);
}
.search-demo .filter-row select:focus,
.search-demo .filter-row input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(26, 166, 183, 0.15);
}
.search-demo .filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.search-demo .filter-tags span {
    background: var(--bg-white);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--text-mid);
    border: 1px solid rgba(15, 76, 129, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
body.dark-mode .search-demo .filter-tags span {
    background: #1A3448;
    border-color: #2A4A6E;
    color: var(--text-light);
}
.search-demo .filter-tags span i {
    font-size: 0.6rem;
    color: var(--text-light);
    cursor: pointer;
}

/* ===== AI FEATURES ===== */
.ai-features { padding: 60px 0 80px; background: var(--bg-light); }
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.ai-feature-card {
    background: var(--bg-white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 76, 129, 0.04);
    transition: var(--transition);
    text-align: center;
}
body.dark-mode .ai-feature-card { background: #0F2436; border-color: #1A3448; }
.ai-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}
.ai-feature-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 166, 183, 0.12), rgba(52, 199, 89, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    color: var(--secondary);
}
.ai-feature-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}
body.dark-mode .ai-feature-card h4 { color: var(--text-white); }
.ai-feature-card p {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.4;
}

/* ===== LATEST PROFILES ===== */
.latest-profiles { padding: 60px 0 80px; background: var(--bg-white); }
.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.candidate-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    border: 1px solid rgba(15, 76, 129, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
body.dark-mode .candidate-card { background: #0F2436; border-color: #1A3448; }
.candidate-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.candidate-card .avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}
.candidate-card .name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
body.dark-mode .candidate-card .name { color: var(--text-white); }
.candidate-card .profession {
    font-size: 0.85rem;
    color: var(--text-mid);
}
.candidate-card .meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 8px 0;
    flex-wrap: wrap;
}
.candidate-card .meta i { margin-right: 4px; }
.candidate-card .badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin: 4px 0 8px;
}
.candidate-card .badge {
    display: inline-block;
    background: rgba(26, 166, 183, 0.10);
    color: var(--secondary);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.candidate-card .badge.verified {
    background: rgba(52, 199, 89, 0.12);
    color: var(--accent);
}
.candidate-card .badge.available {
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary);
}
.candidate-card .badge.language {
    background: rgba(26, 166, 183, 0.08);
    color: var(--secondary);
}
.candidate-card .badge.cert {
    background: rgba(52, 199, 89, 0.08);
    color: var(--accent);
}
.candidate-card .badge.exp {
    background: rgba(15, 76, 129, 0.06);
    color: var(--primary-dark);
}
body.dark-mode .candidate-card .badge.verified {
    background: rgba(52, 199, 89, 0.2);
    color: #7AE09A;
}
body.dark-mode .candidate-card .badge.available {
    background: rgba(74, 142, 196, 0.2);
    color: #4A8EC4;
}
body.dark-mode .candidate-card .badge.language {
    background: rgba(77, 196, 212, 0.2);
    color: #4DC4D4;
}
body.dark-mode .candidate-card .badge.cert {
    background: rgba(122, 224, 154, 0.2);
    color: #7AE09A;
}
body.dark-mode .candidate-card .badge.exp {
    background: rgba(74, 142, 196, 0.15);
    color: #6AA8D4;
}
.candidate-card .btn-sm {
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    transition: var(--transition);
    display: inline-block;
}
.candidate-card .btn-sm:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* ===== EMPLOYERS ===== */
.employers { padding: 60px 0 80px; background: var(--bg-light); }
.employers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    align-items: center;
}
.employer-card {
    background: var(--bg-white);
    padding: 20px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid rgba(15, 76, 129, 0.04);
    transition: var(--transition);
}
body.dark-mode .employer-card { background: #0F2436; border-color: #1A3448; }
.employer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.employer-card .logo-placeholder {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}
body.dark-mode .employer-card .logo-placeholder { color: var(--primary-light); }
.employer-card .sub {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== WHY CHOOSE ===== */
.why-choose { padding: 60px 0 80px; background: var(--bg-white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.why-card {
    background: var(--bg-light);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 76, 129, 0.04);
    text-align: center;
    transition: var(--transition);
}
body.dark-mode .why-card { background: #0F2436; border-color: #1A3448; }
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.why-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}
.why-card h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
body.dark-mode .why-card h4 { color: var(--text-white); }
.why-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.4;
    margin-top: 4px;
}

/* ===== PLATFORM FEATURES ===== */
.platform-features { padding: 60px 0 80px; background: var(--bg-light); }
.pf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.pf-item {
    background: var(--bg-white);
    padding: 16px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    transition: var(--transition);
}
body.dark-mode .pf-item { background: #0F2436; border-color: #1A3448; }
.pf-item:hover {
    border-color: var(--secondary);
    background: var(--bg-white);
    transform: translateX(4px);
}
body.dark-mode .pf-item:hover { background: #1A3448; }
.pf-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}
.pf-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
body.dark-mode .pf-item span { color: var(--text-white); }

/* ===== PRICING ===== */
.pricing { padding: 60px 0 80px; background: var(--bg-white); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1px solid rgba(15, 76, 129, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}
body.dark-mode .pricing-card { background: #0F2436; border-color: #1A3448; }
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.pricing-card.popular {
    border-color: var(--secondary);
    position: relative;
}
.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 20px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    font-family: var(--font-heading);
}
.pricing-card .plan-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
body.dark-mode .pricing-card .plan-name { color: var(--text-white); }
.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 8px 0;
    font-family: var(--font-heading);
}
body.dark-mode .pricing-card .price { color: var(--primary-light); }
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}
.pricing-card .features {
    margin: 16px 0 24px;
    text-align: left;
    flex: 1;
}
.pricing-card .features li {
    font-size: 0.85rem;
    color: var(--text-mid);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-card .features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}
.pricing-card .btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--primary);
    color: #fff;
    transition: var(--transition);
}
.pricing-card .btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}
.pricing-card .btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}
.pricing-card .btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 60px 0 80px; background: var(--bg-light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-white);
    padding: 24px 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 76, 129, 0.04);
    transition: var(--transition);
}
body.dark-mode .testimonial-card { background: #0F2436; border-color: #1A3448; }
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.testimonial-card .stars {
    color: #f5b342;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}
body.dark-mode .testimonial-card blockquote { color: var(--text-white); }
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.testimonial-card .author .av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}
.testimonial-card .author .info {
    font-size: 0.85rem;
}
.testimonial-card .author .info strong {
    display: block;
    color: var(--text-dark);
    font-family: var(--font-heading);
}
body.dark-mode .testimonial-card .author .info strong { color: var(--text-white); }
.testimonial-card .author .info span {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* ===== FAQ ===== */
.faq { padding: 60px 0 80px; background: var(--bg-white); }
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 76, 129, 0.04);
    overflow: hidden;
    transition: var(--transition);
}
body.dark-mode .faq-item { background: #0F2436; border-color: #1A3448; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item .question {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}
body.dark-mode .faq-item .question { color: var(--text-white); }
.faq-item .question i {
    transition: var(--transition);
    color: var(--text-light);
}
.faq-item .question.active i {
    transform: rotate(180deg);
    color: var(--secondary);
}
.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.6;
}
.faq-item .answer.open {
    max-height: 200px;
    padding: 0 20px 20px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(26, 166, 183, 0.08);
    pointer-events: none;
}
.final-cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.06);
    pointer-events: none;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.final-cta p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.final-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.final-cta .btn {
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-heading);
}
.final-cta .btn-white {
    background: #fff;
    color: var(--primary);
}
.final-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.final-cta .btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.final-cta .btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-light);
    border-top: 1px solid rgba(15, 76, 129, 0.04);
    padding: 60px 0 32px;
}
body.dark-mode .footer { background: #0A1A2A; border-top-color: #1A3448; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}
body.dark-mode .footer-col h4 { color: var(--text-white); }
.footer-col p,
.footer-col a {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 2;
    display: block;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--secondary); }
.footer-col .brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}
body.dark-mode .footer-col .brand { color: var(--primary-light); }
.footer-col .brand i { color: var(--secondary); }
.footer-col .social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
.footer-col .social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: var(--transition);
    font-size: 1rem;
}
body.dark-mode .footer-col .social a { background: #1A3448; color: var(--text-light); }
.footer-col .social a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-col .newsletter {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.footer-col .newsletter input {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(15, 76, 129, 0.08);
    font-family: var(--font-body);
    font-size: 0.85rem;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    min-width: 0;
}
body.dark-mode .footer-col .newsletter input { background: #0F2436; border-color: #1A3448; color: var(--text-white); }
.footer-col .newsletter button {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}
.footer-col .newsletter button:hover { background: #1698A8; }
.footer-bottom {
    border-top: 1px solid rgba(15, 76, 129, 0.04);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
}
body.dark-mode .footer-bottom { border-top-color: #1A3448; }
.footer-bottom .links {
    display: flex;
    gap: 20px;
}
.footer-bottom .links a {
    color: var(--text-light);
    transition: var(--transition);
}
.footer-bottom .links a:hover { color: var(--secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.6rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-menu { display: none; }
    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px 24px;
        border-bottom: 1px solid rgba(15, 76, 129, 0.06);
        box-shadow: var(--shadow-md);
        gap: 4px;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
    body.dark-mode .nav-menu.open { background: #0A1A2A; border-bottom-color: #1A3448; }
    .nav-menu.open a { padding: 10px 14px; width: 100%; }
    .nav-toggle { display: block; }
    .nav-actions .btn { padding: 6px 12px; font-size: 0.7rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; padding: 0 12px; }
    .search-wrapper {
        flex-wrap: wrap;
        padding: 12px;
        border-radius: var(--radius-md);
        max-width: 100%;
        margin: 0 8px;
    }
    .search-wrapper input {
        width: 100%;
        padding: 12px 0;
        font-size: 0.95rem;
        text-align: center;
    }
    .search-wrapper .search-actions {
        width: 100%;
        justify-content: center;
        gap: 6px;
    }
    .search-wrapper .search-actions .btn-search {
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
    .search-wrapper .search-icon { padding-left: 8px; }
    .search-suggestions { gap: 6px; padding: 0 8px; }
    .search-suggestions span { font-size: 0.7rem; padding: 2px 10px; }
    .live-counter { gap: 12px; }
    .live-counter .item { font-size: 0.75rem; padding: 4px 12px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card .number { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.8rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom .links { flex-wrap: wrap; justify-content: center; }
    .final-cta h2 { font-size: 1.8rem; }
    .final-cta .cta-buttons { flex-direction: column; align-items: center; }
    .final-cta .btn { width: 100%; max-width: 320px; text-align: center; }
    .nav-actions .btn { display: none; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .category-card { padding: 14px 8px; }
    .category-card i { font-size: 1.4rem; }
    .category-card span { font-size: 0.7rem; }
    .allied-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .allied-card { padding: 14px 8px; }
    .allied-card i { font-size: 1.2rem; }
    .allied-card span { font-size: 0.7rem; }
    .search-demo { padding: 20px; }
    .search-demo .filter-row { flex-direction: column; }
    .search-demo .filter-row select,
    .search-demo .filter-row input { min-width: 100%; }
    .candidates-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .ai-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .pf-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .employers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .allied-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .candidates-grid { grid-template-columns: 1fr; }
    .ai-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .pf-grid { grid-template-columns: 1fr; }
    .employers-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 1.6rem; }
    .hero-content p { font-size: 0.95rem; }
    .search-wrapper { padding: 10px; margin: 0 4px; }
    .search-wrapper input { font-size: 0.85rem; padding: 8px 0; text-align: left; }
    .search-wrapper .search-actions .btn-search { font-size: 0.8rem; padding: 8px 16px; }
    .search-suggestions span { font-size: 0.65rem; padding: 2px 8px; }
    .live-counter { flex-direction: column; align-items: center; gap: 8px; }
    .live-counter .item { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stat-card { padding: 16px 8px; }
    .stat-card .number { font-size: 1.4rem; }
    .stat-card .label { font-size: 0.75rem; }
    .section-header h2 { font-size: 1.4rem; }
    .section-header p { font-size: 0.9rem; }
    .hiw-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .pricing-grid { max-width: 100%; }
    .final-cta h2 { font-size: 1.5rem; }
    .final-cta p { font-size: 0.95rem; padding: 0 12px; }
    .final-cta .btn { font-size: 0.9rem; padding: 12px 24px; }
    .footer-grid { gap: 16px; }
    .footer-col h4 { font-size: 0.9rem; }
    .footer-col p, .footer-col a { font-size: 0.8rem; line-height: 1.8; }
    .nav-logo { font-size: 1.1rem; }
    .nav-logo i { font-size: 1.4rem; }
    .nav-actions .btn { font-size: 0.65rem; padding: 4px 10px; }
    .nav-controls button { width: 32px; height: 32px; font-size: 0.85rem; }
    .nav-controls .lang-select { font-size: 0.7rem; }
    .search-demo { padding: 14px; }
    .search-demo .filter-row { gap: 8px; }
    .search-demo .filter-row select,
    .search-demo .filter-row input { font-size: 0.8rem; padding: 8px 10px; min-width: 100%; }
    .search-demo .filter-tags span { font-size: 0.65rem; padding: 2px 10px; }
    .candidate-card { padding: 16px 12px; }
    .candidate-card .avatar { width: 56px; height: 56px; font-size: 1.4rem; }
    .candidate-card .name { font-size: 0.95rem; }
    .candidate-card .profession { font-size: 0.75rem; }
    .candidate-card .meta { font-size: 0.65rem; gap: 8px; }
    .candidate-card .badge-container { gap: 3px; }
    .candidate-card .badge { font-size: 0.55rem; padding: 1px 8px; }
    .candidate-card .btn-sm { font-size: 0.7rem; padding: 4px 14px; }
    .ai-feature-card { padding: 16px 12px; }
    .ai-feature-card .icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .ai-feature-card h4 { font-size: 0.85rem; }
    .ai-feature-card p { font-size: 0.75rem; }
    .why-card { padding: 16px 12px; }
    .why-card i { font-size: 1.6rem; }
    .why-card h4 { font-size: 0.9rem; }
    .why-card p { font-size: 0.8rem; }
    .pf-item { padding: 12px 10px; font-size: 0.8rem; }
    .pf-item i { font-size: 0.9rem; width: 20px; }
    .pf-item span { font-size: 0.75rem; }
    .employer-card { padding: 14px 10px; }
    .employer-card .logo-placeholder { font-size: 0.75rem; }
    .employer-card .sub { font-size: 0.6rem; }
    .testimonial-card { padding: 16px 16px 20px; }
    .testimonial-card blockquote { font-size: 0.85rem; }
    .testimonial-card .author .av { width: 32px; height: 32px; font-size: 0.75rem; }
    .testimonial-card .author .info { font-size: 0.75rem; }
    .faq-item .question { font-size: 0.85rem; padding: 12px 16px; }
    .faq-item .answer { font-size: 0.8rem; padding: 0 16px; }
    .faq-item .answer.open { padding: 0 16px 16px; }
    .footer-col .brand { font-size: 1.1rem; }
    .footer-col .social a { width: 32px; height: 32px; font-size: 0.85rem; }
    .footer-col .newsletter input { font-size: 0.8rem; padding: 8px 10px; }
    .footer-col .newsletter button { font-size: 0.75rem; padding: 8px 12px; }
    .footer-bottom { font-size: 0.7rem; }
    .footer-bottom .links { gap: 12px; }
    .footer-bottom .links a { font-size: 0.7rem; }
}

@media (max-width: 380px) {
    .hero-content h1 { font-size: 1.3rem; }
    .hero-content p { font-size: 0.85rem; }
    .search-wrapper { padding: 8px; margin: 0 2px; }
    .search-wrapper input { font-size: 0.75rem; padding: 6px 0; }
    .search-wrapper .search-actions .btn-search { font-size: 0.7rem; padding: 6px 12px; }
    .search-wrapper .search-icon { font-size: 0.8rem; padding-left: 4px; }
    .search-suggestions span { font-size: 0.6rem; padding: 1px 6px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .stat-card { padding: 12px 6px; }
    .stat-card .number { font-size: 1.1rem; }
    .stat-card .label { font-size: 0.65rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .category-card { padding: 10px 4px; }
    .category-card i { font-size: 1.1rem; }
    .category-card span { font-size: 0.6rem; }
    .category-card .count { font-size: 0.55rem; }
    .allied-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .allied-card { padding: 10px 4px; }
    .allied-card i { font-size: 1rem; }
    .allied-card span { font-size: 0.6rem; }
    .allied-card .count { font-size: 0.55rem; }
    .candidates-grid { grid-template-columns: 1fr; gap: 12px; }
    .candidate-card { padding: 12px 8px; }
    .candidate-card .avatar { width: 44px; height: 44px; font-size: 1rem; }
    .candidate-card .name { font-size: 0.85rem; }
    .candidate-card .profession { font-size: 0.7rem; }
    .candidate-card .meta { font-size: 0.6rem; gap: 6px; }
    .candidate-card .badge-container { gap: 2px; }
    .candidate-card .badge { font-size: 0.5rem; padding: 1px 6px; }
    .candidate-card .btn-sm { font-size: 0.65rem; padding: 3px 10px; }
    .employers-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .employer-card { padding: 10px 6px; }
    .employer-card .logo-placeholder { font-size: 0.65rem; }
    .employer-card .sub { font-size: 0.55rem; }
    .pricing-card { padding: 20px 14px; }
    .pricing-card .price { font-size: 2rem; }
    .pricing-card .plan-name { font-size: 1rem; }
    .pricing-card .features li { font-size: 0.75rem; }
    .pricing-card .btn { font-size: 0.8rem; padding: 8px 16px; }
    .final-cta { padding: 40px 0; }
    .final-cta h2 { font-size: 1.2rem; }
    .final-cta p { font-size: 0.8rem; padding: 0 8px; }
    .final-cta .btn { font-size: 0.8rem; padding: 10px 16px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
