﻿:root {
    --bg: #0f172a;
    --bg-soft: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #0ea5e9;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #16a34a;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

/* Force SVG visibility globally */
svg {
    display: inline-block !important;
    vertical-align: middle;
}

a svg,
button svg {
    display: inline-block !important;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
}

.topbar {
    background: var(--bg);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

    .logo img {
        height: 42px;
        width: auto;
        display: block;
    }

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

    .nav-links a {
        color: rgba(255,255,255,0.92);
        font-size: 15px;
    }

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.2s ease;
}

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

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

.btn-outline {
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    background: transparent;
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.08);
    }

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #111827 55%, #1e3a8a 100%);
    color: var(--white);
    padding: 76px 0 86px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #cbd5e1;
    font-size: 13px;
    margin-bottom: 16px;
}

h1 {
    font-size: 52px;
    line-height: 1.08;
    margin: 0 0 18px;
}

.hero p.lead {
    font-size: 19px;
    color: #cbd5e1;
    margin: 0 0 28px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

    .hero-points div {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 14px;
        padding: 14px 16px;
        color: #e2e8f0;
        font-size: 14px;
    }

.hero-card {
    background: var(--white);
    color: var(--text);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 26px;
}

    .hero-card h3 {
        margin-top: 0;
        font-size: 24px;
    }

.mini-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

    .mini-stat:last-child {
        border-bottom: none;
    }

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.section {
    padding: 82px 0;
}

    .section.alt {
        background: var(--bg-soft);
    }

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 46px;
}

    .section-heading h2 {
        font-size: 38px;
        line-height: 1.15;
        margin: 0 0 14px;
    }

    .section-heading p {
        margin: 0;
        color: var(--muted);
        font-size: 18px;
    }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

    .feature-card h3 {
        margin: 0 0 12px;
        font-size: 22px;
    }

    .feature-card p {
        margin: 0;
        color: var(--muted);
    }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dbeafe;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.audience-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.price-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
}

    .price-card.featured {
        border: 2px solid var(--primary);
        transform: translateY(-4px);
    }

    .price-card h3 {
        margin: 0 0 8px;
        font-size: 24px;
    }

.price {
    font-size: 40px;
    font-weight: 700;
    margin: 8px 0 14px;
}

    .price small {
        font-size: 15px;
        color: var(--muted);
        font-weight: 400;
    }

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
}

.price-card li {
    margin: 10px 0;
    color: var(--muted);
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.seo-copy {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

.cta-band {
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    color: var(--white);
    border-radius: 28px;
    padding: 54px 34px;
    text-align: center;
}

    .cta-band h2 {
        margin: 0 0 12px;
        font-size: 38px;
    }

    .cta-band p {
        max-width: 760px;
        margin: 0 auto 24px;
        color: #dbeafe;
        font-size: 18px;
    }

footer {
    background: #020617;
    color: #cbd5e1;
    padding: 28px 0;
    margin-top: 80px;
}

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

    footer a {
        color: #93c5fd;
    }

@media (max-width: 1080px) {
    .hero-grid,
    .features,
    .pricing,
    .trust-strip,
    .steps,
    .audience-grid,
    .faq {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 14px;
        padding: 14px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid,
    .features,
    .pricing,
    .trust-strip,
    .steps,
    .audience-grid,
    .faq,
    .hero-points {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    h1 {
        font-size: 36px;
    }

    .section-heading h2,
    .cta-band h2 {
        font-size: 30px;
    }

    .hero {
        padding-top: 54px;
    }
}

/* ?? Section titles (standalone) ??????????????????????????? */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg);
    line-height: 1.15;
    margin-bottom: .75rem;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* ?? Hero checklist ???????????????????????????????????????? */
.hero-checks {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.5rem;
    justify-content: center;
}

    .hero-checks li {
        color: rgba(255,255,255,.85);
        font-size: .9rem;
        padding-left: 1.25rem;
        position: relative;
    }

    .hero-checks li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        color: #34d399;
        font-weight: 700;
    }

/* ?? Step number (centered) ???????????????????????????????? */
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto .75rem;
}

/* ?? Why / Team cards ?????????????????????????????????????? */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.why-item {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
}

.why-title { font-weight: 700; color: var(--bg); }
.why-sub   { font-size: .85rem; color: var(--muted); }

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
    height: 100%;
}

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

    .no-list li {
        padding: .4rem 0 .4rem 1.5rem;
        position: relative;
        color: var(--muted);
    }

    .no-list li::before {
        content: '\2717';
        position: absolute;
        left: 0;
        color: #ef4444;
        font-weight: 700;
    }

/* ?? Pricing extras ???????????????????????????????????????? */
.price-desc {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

    .price-features li {
        padding: .35rem 0 .35rem 1.5rem;
        position: relative;
        color: var(--muted);
        font-size: .9rem;
    }

    .price-features li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        color: var(--success);
        font-weight: 700;
    }

/* ── SEO block ─────────────────────────────────────────────── */
.seo-block {
    padding: 4rem 0 3rem;
    background: var(--bg-soft);
}

/* ── Hero eyebrow tag ──────────────────────────────────────── */
.eyebrow-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #cbd5e1;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ── Trust band ────────────────────────────────────────────── */
.trust-band {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.trust-strip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}

.trust-pill {
    font-size: .88rem;
    font-weight: 600;
    color: var(--success);
}

/* ── Step cards (How It Works) ─────────────────────────────── */
.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    height: 100%;
}

.step-card h4 {
    margin-bottom: .5rem;
}

/* ── Overline label ────────────────────────────────────────── */
.overline-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .5rem;
}

/* ── SEO Differentiator section ────────────────────────────── */
.diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-list li {
    padding: .45rem 0 .45rem 1.6rem;
    position: relative;
    color: var(--muted);
    font-size: .97rem;
}

.diff-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.diff-compare {
    display: flex;
    gap: 16px;
    border-radius: 18px;
    overflow: hidden;
}

.diff-col {
    flex: 1;
    padding: 22px 20px;
    border-radius: 14px;
}

.diff-col ul {
    list-style: none;
    padding: 0;
    margin: .75rem 0 0;
}

.diff-col ul li {
    padding: .4rem 0;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.diff-col ul li:last-child {
    border-bottom: none;
}

.diff-col-label {
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .25rem;
}

.diff-col--other {
    background: #f1f5f9;
    color: var(--muted);
}

.diff-col--other .diff-col-label {
    color: #94a3b8;
}

.diff-col--other ul li {
    border-bottom-color: #e2e8f0;
}

.diff-col--recruitms {
    background: var(--primary);
    color: #fff;
}

.diff-col--recruitms .diff-col-label {
    color: #bfdbfe;
}

/* ── Hero urgency stat row ─────────────────────────────────── */
.hero-urgency-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 2rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 18px 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-urgency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 22px;
    flex: 1 1 120px;
}

.hero-urgency-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 3px;
}

.hero-urgency-label {
    font-size: .75rem;
    color: #94a3b8;
    text-align: center;
}

.hero-urgency-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .hero-urgency-sep { display: none; }
    .hero-urgency-item { padding: 8px 12px; }
    .hero-urgency-row { gap: 4px; }
}

/* ── Why RecruitMS section ─────────────────────────────────── */
.why-section {
    background: #fff;
}

/* ── Mid-page CTA ──────────────────────────────────────────── */
.cta-mid {
    padding: 40px 0;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-mid--dark {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border-color: transparent;
}

.cta-mid-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--bg);
    margin-bottom: 1.25rem;
}

.cta-mid--dark .cta-mid-text {
    color: #fff;
}

/* ── Feature icon ──────────────────────────────────────────── */
.feat-icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    line-height: 1;
}

/* ── Product Mock UI ───────────────────────────────────────── */
.mock-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
}

.mock-header {
    background: var(--bg);
    color: #e2e8f0;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 18px;
}

.mock-body {
    padding: 18px;
}

.mock-stage {
    margin-bottom: 14px;
}

.mock-stage-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #94a3b8;
    display: block;
    margin-bottom: 6px;
}

.mock-candidate {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 10px;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-badge {
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.mock-badge--new      { background: #dbeafe; color: #1d4ed8; }
.mock-badge--review   { background: #fef9c3; color: #92400e; }
.mock-badge--interview{ background: #dcfce7; color: #166534; }

.mock-profile-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg);
    margin-bottom: 2px;
}

.mock-profile-role {
    font-size: .85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.mock-profile-detail {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 5px;
}

.mock-profile-note {
    margin-top: 12px;
    background: #fef9c3;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: .8rem;
    color: #78350f;
}

.mock-job-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg);
    margin-bottom: 3px;
}

.mock-job-meta {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.mock-job-desc {
    font-size: .83rem;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.mock-apply-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mock-seo-tag {
    font-size: .76rem;
    color: var(--success);
    font-weight: 600;
}

/* ── Why RecruitMS bullets ─────────────────────────────────── */
.why-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-bullets li {
    padding: .5rem 0 .5rem 1.6rem;
    position: relative;
    color: var(--muted);
    font-size: .97rem;
    border-bottom: 1px solid var(--border);
}

.why-bullets li:last-child {
    border-bottom: none;
}

.why-bullets li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ── Why stat boxes ────────────────────────────────────────── */
.why-stat {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
}

.why-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.why-stat-label {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── Audience icon ─────────────────────────────────────────── */
.audience-icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    line-height: 1;
}

/* ?? Job Board ????????????????????????????????????????????? */
.job-search .form-control,
.job-search .form-select {
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.12);
    color: #fff;
}

    .job-search .form-control::placeholder { color: rgba(255,255,255,.6); }

    .job-search .form-control:focus,
    .job-search .form-select:focus {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.6);
        color: #fff;
        box-shadow: 0 0 0 3px rgba(255,255,255,.15);
    }

    .job-search .form-select option { color: var(--text); background: #fff; }

.job-list { display: flex; flex-direction: column; gap: .75rem; }

.job-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, border-color .2s;
}

    .job-card:hover {
        box-shadow: 0 6px 20px rgba(15,23,42,.12);
        border-color: var(--primary);
    }

.job-card-actions { display: flex; gap: .5rem; flex-shrink: 0; }

.job-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg);
    text-decoration: none;
    display: block;
}

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

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .85rem;
    margin-top: .35rem;
    font-size: .85rem;
    color: var(--muted);
    align-items: center;
}

.job-salary { font-weight: 600; color: var(--success); font-size: .85rem; }

/* ?? Job Detail ???????????????????????????????????????????? */
.job-description h2,
.job-description h3 { color: var(--bg); margin-top: 1.5rem; }

.job-description ul { padding-left: 1.5rem; }
.job-description li { margin-bottom: .35rem; }

.job-sidebar {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}

.job-dl dt {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
    font-weight: 600;
    margin-top: .85rem;
}

.job-dl dt:first-child { margin-top: 0; }
.job-dl dd { margin: .15rem 0 0; color: var(--bg); font-weight: 500; }

/* ?? Signup form ??????????????????????????????????????????? */
.signup-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-error {
    font-size: .8rem;
    color: #dc2626;
    display: block;
    margin-top: .2rem;
}

.form-hint {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .2rem;
}

.signup-benefits {
    background: var(--bg);
    border-radius: 18px;
    padding: 2rem;
    color: #fff;
    position: sticky;
    top: 1.5rem;
}

    .signup-benefits h4 { font-weight: 700; margin-bottom: 1.25rem; }

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

    .signup-benefits-list li {
        padding: .5rem 0 .5rem 1.75rem;
        position: relative;
        font-size: .92rem;
        opacity: .92;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .signup-benefits-list li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        color: #34d399;
        font-weight: 700;
    }

/* ?? Footer extras ????????????????????????????????????????? */
.footer-brand {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    margin-right: .5rem;
}

.footer-copy {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}

.footer-link {
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    transition: color .2s;
}

    .footer-link:hover { color: #fff; }

/* ?? Navbar overrides ?????????????????????????????????????? */
/* Bootstrap's data-bs-theme="dark" handles link/toggler colours.
   These rules refine sizing, spacing and button styles. */

.topbar {
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.topbar .navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
}

    .topbar .navbar-brand img {
        height: 36px;
        width: auto;
        filter: brightness(0) invert(1);
    }

.topbar .nav-link {
    font-size: .9rem;
    padding: .4rem .65rem !important;
    color: rgba(255,255,255,.82) !important;
    transition: color .15s;
}

    .topbar .nav-link:hover,
    .topbar .nav-link:focus {
        color: #fff !important;
    }

/* Log In button � ghost style on dark bg */
.topbar .btn-outline-secondary {
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.3);
    background: transparent;
    font-size: .82rem;
}

    .topbar .btn-outline-secondary:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.55);
        color: #fff;
    }

/* Start Free � solid primary */
.topbar .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
}

    .topbar .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #fff;
    }

/* Schedule Demo � teal outline */
.topbar .btn-outline-primary {
    color: #38bdf8;
    border-color: #38bdf8;
    background: transparent;
    font-size: .82rem;
}

    .topbar .btn-outline-primary:hover {
        background: #38bdf8;
        color: #0f172a;
    }

/* Mobile collapsed menu */
@media (max-width: 991.98px) {
    .topbar .navbar-collapse {
        border-top: 1px solid rgba(255,255,255,.1);
        margin-top: .5rem;
        padding-top: .75rem;
        padding-bottom: .5rem;
    }

    .topbar .navbar-nav {
        gap: .15rem;
        margin-bottom: .75rem !important;
    }

    .topbar .nav-link {
        padding: .5rem .25rem !important;
    }

    .topbar .d-flex {
        flex-wrap: wrap;
        gap: .5rem !important;
    }
}



/* ── Job Detail Header ─────────────────────────────────────────────────── */
.jd-header {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0 2.25rem;
}

.jd-breadcrumb {
    font-size: .82rem;
    margin-bottom: 1.5rem;
}

.jd-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--muted);
}

.jd-breadcrumb a {
    color: var(--primary);
}

.jd-breadcrumb .breadcrumb-item.active {
    color: var(--muted);
}

/* Company identity row */
.jd-company-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.jd-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .03em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(15,23,42,.12);
}

.jd-company-info {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}

.jd-company-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--bg);
    line-height: 1.2;
}

.jd-company-location {
    font-size: .82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* Job title */
.jd-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--bg);
    margin: 0 0 1rem;
}

@media (max-width: 576px) {
    .jd-title { font-size: 1.55rem; }
    .jd-avatar { width: 40px; height: 40px; min-width: 40px; font-size: .8rem; border-radius: 8px; }
}

/* Metadata chips */
.jd-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.jd-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .7rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.jd-chip--green {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.jd-chip--salary {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: var(--success);
    font-weight: 600;
}

.jd-chip--muted {
    color: var(--muted);
    background: var(--bg-soft);
}

/* CTA row */
.jd-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.jd-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
    letter-spacing: .01em;
}

.jd-no-cost {
    font-size: .8rem;
    color: var(--muted);
}

/* Expired notice */
.jd-expired-notice {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #92400e;
    border-radius: 10px;
    padding: .65rem 1rem;
    font-size: .88rem;
    font-weight: 500;
}

.jd-expired-notice a {
    color: var(--primary);
    font-weight: 600;
    margin-left: .25rem;
}

/* Sticky mobile CTA bar */
.jd-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: .75rem 0;
    box-shadow: 0 -4px 16px rgba(15,23,42,.08);
}
.job-sidebar a.btn.btn-outline-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 8px !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
}

.job-sidebar a.btn.btn-outline-primary:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.job-sidebar a.btn svg {
    display: block !important;
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    pointer-events: none !important;
}
