/* ============================================================
   healthcareers.app — Main Theme CSS
   Requires: Nunito (Google Fonts), DM Sans (Google Fonts)
   CSS Variables are pulled from admin theme options where noted
   ============================================================ */

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

/* ── DESIGN TOKENS ── */
:root {
    --hc-navy:         #2E2A7B;
    --hc-navy-dark:    #1e1a5e;
    --hc-navy-light:   #3d3896;
    --hc-orange:       #F26419;
    --hc-orange-light: #ff7a2e;
    --hc-white:        #ffffff;
    --hc-off-white:    #F7F7FF;
    --hc-gray-light:   #EDEDF8;
    --hc-gray:         #8a87b0;
    --hc-text:         #1a1835;
    --hc-text-muted:   #6b6890;
    --hc-radius:       14px;
    --hc-radius-lg:    20px;
}

/* ── BASE BODY ── */
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--hc-text);
    background: var(--hc-white);
    overflow-x: hidden;
}

/* ══════════════════════════════════════════════════
   LOGO COMPONENT
   ══════════════════════════════════════════════════ */
.hc-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    line-height: 1;
}

.hc-logo-icon {
    color: var(--hc-navy);
    font-size: 1.7rem;
    line-height: 1;
    margin-top: -2px;
}

.hc-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hc-logo-health {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--hc-navy);
    line-height: 1;
    letter-spacing: -0.01em;
}

.hc-logo-domain {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--hc-orange);
    line-height: 1;
    letter-spacing: -0.01em;
}

/* ── Footer logo variant ── */
.hc-logo-footer .hc-logo-icon { color: rgba(255,255,255,0.9); }
.hc-logo-footer .hc-logo-health { color: white; }

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */


.hc-nav.hc-nav-scrolled {
    box-shadow: 0 4px 30px rgba(46,42,123,0.08);
}

.hc-nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.hc-nav-links a {
    color: var(--hc-text-muted);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.hc-nav-links a:hover,
.hc-nav-links a.active { color: var(--hc-navy); }

.hc-nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ── Buttons ── */
.hc-btn {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 10px;
    line-height: 1;
}

.hc-btn-ghost {
    padding: 9px 20px;
    color: var(--hc-navy);
    background: transparent;
    font-size: 0.88rem;
}
.hc-btn-ghost:hover { background: var(--hc-gray-light); }

.hc-btn-primary {
    padding: 10px 22px;
    background: var(--hc-orange);
    color: white;
    font-size: 0.88rem;
}
.hc-btn-primary:hover { background: var(--hc-orange-light); transform: translateY(-1px); }

.hc-btn-outline-white {
    padding: 10px 22px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 0.88rem;
}
.hc-btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ── Hamburger ── */
.hc-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hc-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--hc-navy);
    border-radius: 2px;
    transition: all 0.3s;
}

.hc-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hc-hamburger.open span:nth-child(2) { opacity: 0; }
.hc-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile menu ── */
.hc-mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid rgba(46,42,123,0.08);
    padding: 16px 5%;
    z-index: 999;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 30px rgba(46,42,123,0.08);
}

.hc-mobile-menu.open { display: flex; }

.hc-mobile-menu a {
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--hc-navy);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s;
}

.hc-mobile-menu a:hover { background: var(--hc-gray-light); }

.hc-mobile-menu .hc-divider {
    height: 1px;
    background: var(--hc-gray-light);
    margin: 8px 0;
}

.hc-mobile-menu .hc-btn-primary {
    text-align: center;
    display: block;
}

/* ══════════════════════════════════════════════════
   SHARED SECTION UTILITIES
   ══════════════════════════════════════════════════ */
.hc-section { padding: 90px 5%; }
.hc-section-alt { background: var(--hc-off-white); }
.hc-section-dark { background: var(--hc-navy); }

.hc-container {
    max-width: 1280px;
    margin: 0 auto;
}

.hc-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hc-orange);
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.hc-section-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--hc-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.hc-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--hc-navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hc-section-title-white { color: white; }

.hc-section-desc {
    color: var(--hc-text-muted);
    font-size: 0.97rem;
    line-height: 1.75;
    max-width: 540px;
}

.hc-section-desc-white { color: rgba(255,255,255,0.5); }

.hc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 20px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */


.hc-hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.hc-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hc-hero-orb-1 {
    width: 550px; height: 550px;
    background: rgba(242,100,25,0.12);
    top: -120px; right: -80px;
}

.hc-hero-orb-2 {
    width: 420px; height: 420px;
    background: rgba(100,90,200,0.18);
    bottom: -60px; left: 15%;
}

.hc-ecg-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    height: 56px;
    opacity: 0.12;
    pointer-events: none;
    overflow: hidden;
}

.hc-ecg-group {
    transform-box: fill-box;
    animation: hcEcgScroll 6s linear infinite;
}

@keyframes hcEcgScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hc-hero-inner {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto; width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
}

.hc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242,100,25,0.15);
    border: 1px solid rgba(242,100,25,0.3);
    color: #f7a06a;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hc-hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hc-hero-title em {
    font-style: normal;
    color: var(--hc-orange);
}

.hc-hero-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 490px;
}

/* Search bar */
.hc-search-bar {
    background: white;
    border-radius: var(--hc-radius);
    padding: 8px;
    display: flex;
    gap: 6px;
    align-items: stretch;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.hc-search-field {
    flex: 1; min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-right: 1px solid #eee;
}

.hc-search-field:last-of-type { border-right: none; }

.hc-search-icon {
    color: var(--hc-navy);
    opacity: 0.4;
    flex-shrink: 0;
}

.hc-search-label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--hc-navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
    white-space: nowrap;
}

.hc-search-input,
.hc-search-select {
    border: none;
    outline: none;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--hc-text);
    background: transparent;
}

.hc-search-btn {
    background: var(--hc-orange);
    color: white;
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}
.hc-search-btn:hover { background: var(--hc-orange-light); transform: scale(1.02); }

.hc-hero-hint {
    margin-top: 14px;
    color: rgba(255,255,255,0.38);
    font-size: 0.8rem;
}

.hc-hero-hint strong { color: rgba(255,255,255,0.65); font-weight: 600; }

.hc-hero-hint a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    margin-left: 6px;
    transition: color 0.2s;
}
.hc-hero-hint a:hover { color: var(--hc-orange); }

/* Stat cards */
.hc-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hc-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--hc-radius);
    padding: 22px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.hc-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
}

.hc-stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--hc-orange);
    border-radius: 3px 0 0 3px;
}

.hc-stat-icon {
    width: 40px; height: 40px;
    background: rgba(242,100,25,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 1.1rem;
    color: #ffffff;
}

.hc-stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.hc-stat-number em {
    color: var(--hc-orange);
    font-style: normal;
}

.hc-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 500;
}

/* Hero animations */
.hc-hero-left  { animation: hcFadeInUp 0.85s ease both; }
.hc-hero-right { animation: hcFadeInUp 0.85s 0.2s ease both; }

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

/* ══════════════════════════════════════════════════
   TRUSTED BAR
   ══════════════════════════════════════════════════ */
.hc-trusted-bar {
    background: var(--hc-off-white);
    padding: 22px 5%;
    border-bottom: 1px solid rgba(46,42,123,0.06);
}

.hc-trusted-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hc-trusted-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hc-gray);
    white-space: nowrap;
    flex-shrink: 0;
}

.hc-trusted-logos {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.hc-org-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--hc-text-muted);
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    opacity: 0.55;
    transition: opacity 0.2s;
    text-decoration: none;
}

.hc-org-badge:hover { opacity: 1; }

.hc-org-icon {
    width: 26px; height: 26px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    overflow: hidden;
}

.hc-org-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS (WORKING PROCESS)
   ══════════════════════════════════════════════════ */
.hc-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.hc-step-card {
    background: white;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.hc-step-card:first-child { border-radius: var(--hc-radius) 0 0 var(--hc-radius); }
.hc-step-card:last-child  { border-radius: 0 var(--hc-radius) var(--hc-radius) 0; }

.hc-step-card:hover {
    transform: translateY(-6px);
    z-index: 2;
    box-shadow: 0 16px 48px rgba(46,42,123,0.1);
}

.hc-step-num {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--hc-gray-light);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.hc-step-card:hover .hc-step-num { color: rgba(46,42,123,0.06); }

.hc-step-icon {
    width: 48px; height: 48px;
    background: var(--hc-navy);
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    transition: background 0.3s;
}

.hc-step-card:hover .hc-step-icon { background: var(--hc-orange); }

.hc-step-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--hc-navy);
    margin-bottom: 8px;
}

.hc-step-desc {
    color: var(--hc-text-muted);
    font-size: 0.87rem;
    line-height: 1.65;
}

.hc-step-arrow {
    position: absolute; right: -14px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    background: var(--hc-orange);
    border-radius: 50%;
    z-index: 3;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.8rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(242,100,25,0.35);
}

/* ══════════════════════════════════════════════════
   FEATURED JOBS
   ══════════════════════════════════════════════════ */
.hc-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 44px;
}

.hc-job-card {
    border: 1.5px solid rgba(46,42,123,0.08);
    border-radius: var(--hc-radius-lg);
    padding: 26px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    background: white;
}

.hc-job-card:hover {
    border-color: var(--hc-navy);
    box-shadow: 0 12px 40px rgba(46,42,123,0.1);
    transform: translateY(-4px);
}

.hc-featured-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--hc-orange);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hc-job-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.hc-job-logo {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--hc-gray-light);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hc-job-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
}

.hc-job-logo-placeholder { font-size: 1.3rem; }

.hc-job-bookmark {
    width: 34px; height: 34px;
    border-radius: 8px;
    border: 1.5px solid rgba(46,42,123,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--hc-gray);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    background: white;
    outline: none;
}

.hc-job-bookmark:hover,
.hc-job-bookmark.hc-active {
    border-color: var(--hc-orange);
    color: var(--hc-orange);
    background: rgba(242,100,25,0.06);
}

.hc-job-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--hc-navy);
    margin-bottom: 3px;
    line-height: 1.3;
    text-decoration: none;
    display: block;
}

.hc-job-title:hover { color: var(--hc-orange); }

.hc-job-company {
    font-size: 0.8rem;
    color: var(--hc-text-muted);
    margin-bottom: 14px;
}

.hc-job-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hc-tag {
    padding: 4px 11px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
}

.hc-tag-type     { background: rgba(46,42,123,0.07); color: var(--hc-navy); }
.hc-tag-location { background: rgba(242,100,25,0.08); color: var(--hc-orange); }
.hc-tag-salary   { background: rgba(0,150,100,0.07); color: #007a55; }

.hc-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(46,42,123,0.06);
}

.hc-job-deadline {
    font-size: 0.75rem;
    color: var(--hc-text-muted);
}

.hc-job-apply {
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--hc-navy);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.hc-job-apply:hover { background: var(--hc-orange); color: white; }

.hc-explore-all {
    display: flex;
    justify-content: center;
}

.hc-btn-lg {
    padding: 14px 40px;
    font-size: 1rem;
}

/* ══════════════════════════════════════════════════
   JOB CATEGORIES
   ══════════════════════════════════════════════════ */
.hc-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.hc-cat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--hc-radius);
    padding: 26px 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
}

.hc-cat-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--hc-orange);
    transform: translateY(-4px);
}

.hc-cat-icon {
    width: 50px; height: 50px;
    background: rgba(242,100,25,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    transition: background 0.3s;
    overflow: hidden;
}

.hc-cat-icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); }

.hc-cat-card:hover .hc-cat-icon { background: var(--hc-orange); }

.hc-cat-name {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
}

.hc-cat-count { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.hc-cat-arrow {
    margin-top: auto;
    color: rgba(255,255,255,0.25);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.hc-cat-card:hover .hc-cat-arrow { color: var(--hc-orange); transform: translateX(4px); }

/* ══════════════════════════════════════════════════
   TOP RECRUITERS
   ══════════════════════════════════════════════════ */
.hc-recruiters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hc-recruiter-card {
    background: white;
    border-radius: var(--hc-radius-lg);
    padding: 30px 22px;
    text-align: center;
    border: 1.5px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.hc-recruiter-card:hover {
    border-color: var(--hc-navy);
    box-shadow: 0 12px 40px rgba(46,42,123,0.09);
    transform: translateY(-4px);
}

.hc-recruiter-logo {
    width: 68px; height: 68px;
    border-radius: 16px;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hc-recruiter-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
}

.hc-recruiter-logo-placeholder { font-size: 1.8rem; }

.hc-recruiter-name {
    font-family: 'Nunito', sans-serif;
    font-size: 0.97rem;
    font-weight: 800;
    color: var(--hc-navy);
    margin-bottom: 3px;
}

.hc-recruiter-type {
    font-size: 0.76rem;
    color: var(--hc-text-muted);
    margin-bottom: 14px;
}

.hc-recruiter-jobs {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(46,42,123,0.07);
    color: var(--hc-navy);
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

/* ══════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════ */
.hc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hc-review-card {
    border: 1.5px solid rgba(46,42,123,0.08);
    border-radius: var(--hc-radius-lg);
    padding: 30px;
    transition: all 0.3s;
}

.hc-review-card:hover {
    border-color: rgba(46,42,123,0.2);
    box-shadow: 0 12px 40px rgba(46,42,123,0.07);
}

.hc-review-card.hc-featured {
    background: var(--hc-navy);
    border-color: var(--hc-navy);
}

.hc-review-stars {
    color: #ffc107;
    font-size: 0.85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.hc-review-card.hc-featured .hc-review-stars { color: var(--hc-orange); }

.hc-review-text {
    font-size: 0.93rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.75;
    color: var(--hc-text);
    margin-bottom: 22px;
}

.hc-review-card.hc-featured .hc-review-text { color: rgba(255,255,255,0.8); }

.hc-reviewer { display: flex; align-items: center; gap: 12px; }

.hc-reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.hc-reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }

.hc-reviewer-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--hc-navy);
}

.hc-review-card.hc-featured .hc-reviewer-name { color: white; }

.hc-reviewer-role { font-size: 0.75rem; color: var(--hc-text-muted); }
.hc-review-card.hc-featured .hc-reviewer-role { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.hc-faq-section {
    background: #f0f2fb;
    padding: 80px 0 60px;
}

.hc-faq-heading {
    font-family: 'Nunito', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0d1941;
    text-align: center;
    margin-bottom: 48px;
}

.hc-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hc-faq-item {
    background: #e4e8f7;
    border-radius: 16px;
    overflow: hidden;
    transition: background 0.2s;
}

.hc-faq-item.hc-open {
    background: #dde1f5;
}

.hc-faq-q {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #0d1941;
    user-select: none;
}

.hc-faq-q-text {
    flex: 1;
}

.hc-faq-arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #0d1941;
    transition: color 0.2s;
    line-height: 1;
}

.hc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: #374151;
    font-size: 0.92rem;
    line-height: 1.8;
    padding: 0 28px;
}

.hc-faq-item.hc-open .hc-faq-a {
    max-height: 400px;
    padding: 0 28px 22px;
}

.hc-faq-footer {
    text-align: center;
    margin-top: 36px;
    font-size: 0.92rem;
    color: #6b7280;
}

.hc-faq-footer a {
    color: var(--hc-orange);
    font-weight: 700;
    text-decoration: none;
}

.hc-faq-footer a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════ */
.hc-blog-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 20px;
}

.hc-blog-card {
    border-radius: var(--hc-radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(46,42,123,0.08);
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    text-decoration: none;
    background: white;
}

.hc-blog-card:hover {
    box-shadow: 0 12px 40px rgba(46,42,123,0.09);
    transform: translateY(-4px);
}

.hc-blog-img {
    height: 190px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}

.hc-blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hc-blog-card:first-child .hc-blog-img { height: 240px; }

.hc-blog-img-placeholder { font-size: 2.8rem; }

.hc-blog-cat-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--hc-orange);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 11px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hc-blog-body { padding: 22px; }

.hc-blog-meta {
    display: flex;
    gap: 14px;
    font-size: 0.76rem;
    color: var(--hc-text-muted);
    margin-bottom: 8px;
}

.hc-blog-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.97rem;
    font-weight: 800;
    color: var(--hc-navy);
    line-height: 1.4;
    margin-bottom: 8px;
}

.hc-blog-card:first-child .hc-blog-title { font-size: 1.15rem; }

.hc-blog-excerpt {
    font-size: 0.83rem;
    color: var(--hc-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.hc-blog-read {
    color: var(--hc-orange);
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ══════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════ */
.hc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

.hc-price-card {
    background: white;
    border-radius: var(--hc-radius-lg);
    padding: 36px 28px;
    border: 1.5px solid rgba(46,42,123,0.08);
    transition: all 0.3s;
    position: relative;
}

.hc-price-card.hc-popular {
    background: var(--hc-navy);
    border-color: var(--hc-navy);
    transform: scale(1.04);
}

.hc-price-card:not(.hc-popular):hover {
    border-color: var(--hc-navy);
    box-shadow: 0 16px 50px rgba(46,42,123,0.1);
}

.hc-popular-badge {
    position: absolute; top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--hc-orange);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.hc-price-plan {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hc-orange);
    margin-bottom: 10px;
}

.hc-price-amount {
    font-family: 'Nunito', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--hc-navy);
    line-height: 1;
    margin-bottom: 6px;
}

.hc-price-card.hc-popular .hc-price-amount { color: white; }

.hc-price-period {
    font-size: 0.83rem;
    color: var(--hc-text-muted);
    margin-bottom: 22px;
}

.hc-price-card.hc-popular .hc-price-period { color: rgba(255,255,255,0.45); }

.hc-price-features {
    list-style: none;
    margin-bottom: 28px;
}

.hc-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.86rem;
    color: var(--hc-text-muted);
    border-bottom: 1px solid rgba(46,42,123,0.05);
}

.hc-price-card.hc-popular .hc-price-features li {
    color: rgba(255,255,255,0.65);
    border-color: rgba(255,255,255,0.07);
}

.hc-price-features li::before {
    content: '✓';
    width: 20px; height: 20px;
    flex-shrink: 0;
    background: rgba(46,42,123,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--hc-navy);
    font-size: 0.68rem;
    font-weight: 800;
}

.hc-price-card.hc-popular .hc-price-features li::before {
    background: rgba(242,100,25,0.2);
    color: var(--hc-orange);
}

.hc-btn-plan {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.93rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.hc-btn-plan-outline {
    background: transparent;
    border: 1.5px solid rgba(46,42,123,0.15) !important;
    color: var(--hc-navy);
}
.hc-btn-plan-outline:hover { background: var(--hc-navy); color: white; }

.hc-btn-plan-solid { background: var(--hc-orange); color: white; }
.hc-btn-plan-solid:hover { background: var(--hc-orange-light); }

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.hc-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.hc-contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hc-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: var(--hc-radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
}

.hc-contact-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(242,100,25,0.15);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

.hc-contact-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.hc-contact-val {
    color: white;
    font-weight: 500;
    font-size: 0.92rem;
}

.hc-contact-form {
    background: white;
    border-radius: 22px;
    padding: 36px;
}

.hc-contact-form h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--hc-navy);
    margin-bottom: 22px;
}

.hc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

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

.hc-form-group.hc-full { grid-column: 1 / -1; }

.hc-form-group label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hc-navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hc-form-group input,
.hc-form-group textarea,
.hc-form-group select {
    padding: 11px 14px;
    border: 1.5px solid rgba(46,42,123,0.1);
    border-radius: 9px;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--hc-text);
    transition: border-color 0.2s;
    background: var(--hc-off-white);
}

.hc-form-group input:focus,
.hc-form-group textarea:focus,
.hc-form-group select:focus {
    border-color: var(--hc-navy);
    background: white;
}

.hc-form-group textarea { resize: vertical; min-height: 96px; }

.hc-form-submit {
    width: 100%;
    padding: 14px;
    font-size: 0.97rem;
    border-radius: 10px;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.hc-footer {
    background: #0f0d30;
    padding: 68px 5% 28px;
}

.hc-footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 48px;
}

.hc-footer-about {
    font-size: 0.86rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin: 14px 0 22px;
    max-width: 270px;
}

.hc-footer-socials { display: flex; gap: 9px; }

.hc-social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}
.hc-social-btn:hover { background: var(--hc-orange); color: white; }

.hc-footer-col h5 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
}

.hc-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.hc-footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.hc-footer-links a:hover { color: var(--hc-orange); }

.hc-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════ */
.hc-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hc-reveal.hc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   TEXT UTILITY
   ══════════════════════════════════════════════════ */
.hc-text-center { text-align: center; }
.hc-mx-auto { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */

/* Tablet ─────────────────────────── */
@media (max-width: 1024px) {
    .hc-hero-inner          { grid-template-columns: 1fr; gap: 48px; }
    .hc-hero-stats          { grid-template-columns: repeat(4, 1fr); }
    .hc-steps-grid          { grid-template-columns: repeat(2, 1fr); }
    .hc-step-card:nth-child(1) { border-radius: var(--hc-radius) 0 0 0; }
    .hc-step-card:nth-child(2) { border-radius: 0 var(--hc-radius) 0 0; }
    .hc-step-card:nth-child(3) { border-radius: 0 0 0 var(--hc-radius); }
    .hc-step-card:nth-child(4) { border-radius: 0 0 var(--hc-radius) 0; }
    .hc-step-card:nth-child(2) .hc-step-arrow,
    .hc-step-card:nth-child(4) .hc-step-arrow { display: none; }
    .hc-jobs-grid           { grid-template-columns: repeat(2, 1fr); }
    .hc-cats-grid           { grid-template-columns: repeat(3, 1fr); }
    .hc-recruiters-grid     { grid-template-columns: repeat(2, 1fr); }
    .hc-faq-list { padding: 0 8px; }
    .hc-contact-layout      { grid-template-columns: 1fr; gap: 40px; }
    .hc-footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
    .hc-blog-grid           { grid-template-columns: 1fr 1fr; }
    .hc-blog-card:first-child { grid-column: 1 / -1; }
    .hc-pricing-grid        { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .hc-price-card.hc-popular { transform: none; }
    .hc-nav-links           { display: none; }
    .hc-hamburger           { display: flex; }
    .hc-nav-cta .hc-btn-ghost { display: none; }
    .hc-section-header      { flex-direction: column; align-items: flex-start; }
}

/* Mobile large ───────────────────── */
@media (max-width: 768px) {
    .hc-section             { padding: 64px 5%; }
    .hc-hero                { padding: 90px 5% 64px; }
    .hc-hero-stats          { grid-template-columns: repeat(2, 1fr); }
    .hc-jobs-grid           { grid-template-columns: 1fr; }
    .hc-cats-grid           { grid-template-columns: repeat(2, 1fr); }
    .hc-recruiters-grid     { grid-template-columns: repeat(2, 1fr); }
    .hc-reviews-grid        { grid-template-columns: 1fr; }
    .hc-blog-grid           { grid-template-columns: 1fr; }
    .hc-blog-card:first-child { grid-column: auto; }
    .hc-footer-grid         { grid-template-columns: 1fr 1fr; }
    .hc-search-bar          { flex-direction: column; gap: 4px; }
    .hc-search-field        { border-right: none; border-bottom: 1px solid #eee; }
    .hc-search-field:last-of-type { border-bottom: none; }
    .hc-search-btn          { width: 100%; justify-content: center; text-align: center; }
    .hc-form-row            { grid-template-columns: 1fr; }
}

/* Mobile small ───────────────────── */
@media (max-width: 480px) {
    .hc-hero-title          { font-size: 2.2rem; }
    .hc-cats-grid           { grid-template-columns: 1fr 1fr; }
    .hc-hero-stats          { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hc-stat-number         { font-size: 1.6rem; }
    .hc-recruiters-grid     { grid-template-columns: 1fr; }
    .hc-footer-grid         { grid-template-columns: 1fr; }
    .hc-section             { padding: 48px 4%; }
    .hc-trusted-logos       { gap: 20px; }
}

/* ══════════════════════════════════════════════════
   NAVBAR — single authoritative definition
   ══════════════════════════════════════════════════ */
.hc-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(46,42,123,0.07);
    height: 80px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 5%;
    transition: box-shadow 0.3s;
}

.hc-nav.hc-nav-scrolled {
    box-shadow: 0 4px 30px rgba(46,42,123,0.08);
}

.hc-nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.hc-nav-links a {
    color: var(--hc-text-muted);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.hc-nav-links a:hover,
.hc-nav-links a.active {
    color: var(--hc-navy);
    border-bottom-color: var(--hc-orange);
}

.hc-nav-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

/* ══════════════════════════════════════════════════
   HERO — single authoritative definition
   ══════════════════════════════════════════════════ */
.hc-hero {
    background: var(--hc-navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 140px 5% 100px;
}

/* ══════════════════════════════════════════════════
   STAT CARDS — ensure right col fills hero height
   ══════════════════════════════════════════════════ */
.hc-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    height: 100%;
}

.hc-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--hc-radius);
    padding: 32px 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ══════════════════════════════════════════════════
   FAQ — prevent text overflow
   ══════════════════════════════════════════════════ */
.hc-faq-q,
.hc-faq-a {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ══════════════════════════════════════════════════
   HIDE OLD TOPBAR
   ══════════════════════════════════════════════════ */
.topbar { display: none !important; }

/* ══════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hc-nav {
        display: flex;
        justify-content: space-between;
        height: 70px;
    }
    .hc-nav-links { display: none; }
    .hc-hamburger { display: flex; }
    .hc-nav-cta .hc-btn-ghost { display: none; }
    .hc-hero { padding: 100px 5% 64px; }
    .hc-hero-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .hc-hero { padding: 90px 5% 56px; }
    .hc-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hc-hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
}
