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

:root {
    --bg-1: #03101f;
    --bg-2: #071a2f;
    --card: rgba(255,255,255,0.05);
    --card-2: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.08);
    --text: #f8fbff;
    --muted: #9fb3c8;
    --primary: #38bdf8;
    --primary-2: #2563eb;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --purple: #7c3aed;
    --shadow: 0 14px 30px rgba(0,0,0,0.28);
    --radius: 22px;
    --container: 1240px;
}

html, body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(56,189,248,0.10), transparent 25%),
        radial-gradient(circle at bottom right, rgba(37,99,235,0.12), transparent 25%),
        linear-gradient(135deg, var(--bg-1), var(--bg-2));
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

/* header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3,16,31,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.brand-text {
    font-size: 20px;
    font-weight: 800;
    color: #eaf7ff;
    line-height: 1.2;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    min-width: 0;
}

.main-nav a {
    font-size: 15px;
    font-weight: 700;
    color: #dbe8f6;
}

.main-nav a:hover {
    color: #90e7ff;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}

.user-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    font-weight: 700;
    color: #fff;
}

.user-pill small {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.page-shell {
    padding: 28px 0 50px;
    min-height: calc(100vh - 140px);
}

/* footer */
.site-footer {
    margin-top: 40px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-wrap h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.footer-wrap p {
    color: var(--muted);
    font-size: 14px;
}

/* typography */
.page-title {
    margin-bottom: 24px;
}

.page-title h1 {
    font-size: 48px;
    line-height: 1.08;
    margin-bottom: 10px;
    font-weight: 800;
}

.page-title p {
    font-size: 18px;
    color: var(--muted);
}

.section {
    padding: 38px 0;
}

.section-title {
    font-size: 38px;
    line-height: 1.12;
    margin-bottom: 10px;
    font-weight: 800;
}

.section-subtitle {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.section-center {
    text-align: center;
    margin-bottom: 24px;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 14px;
    transition: 0.2s ease;
    text-align: center;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: #fff;
}

.btn-sm,
.small-btn {
    padding: 10px 14px;
    font-size: 13px;
}

/* form */
label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #cfe0f3;
}

input, select, textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 14px;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: rgba(56,189,248,0.45);
    box-shadow: 0 0 0 3px rgba(56,189,248,0.08);
}

select option {
    color: #000;
}

/* generic cards */
.card,
.form-card,
.quick-card,
.dashboard-card,
.homepage-panel,
.homepage-info-card,
.homepage-mini-card,
.homepage-step-card,
.homepage-job-card,
.homepage-cta-box,
.homepage-stat-card,
.feature-stat-card,
.naukri-filter-bar,
.naukri-app-card,
.quick-action-box,
.status-update-box,
.mini-info-card {
    background: linear-gradient(180deg, var(--card), var(--card-2));
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.card,
.form-card,
.quick-card,
.dashboard-card,
.homepage-panel,
.homepage-info-card,
.homepage-mini-card,
.homepage-step-card,
.homepage-job-card,
.homepage-stat-card,
.feature-stat-card,
.naukri-filter-bar,
.naukri-app-card,
.quick-action-box,
.status-update-box,
.mini-info-card {
    padding: 20px;
}

/* alerts & badges */
.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 700;
}

.alert-success {
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.2);
    color: #96f0b2;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.badge-success {
    background: rgba(34,197,94,0.12);
    color: #7ff0a4;
}

.badge-danger {
    background: rgba(239,68,68,0.12);
    color: #ff9c9c;
}

.badge-warning {
    background: rgba(245,158,11,0.12);
    color: #ffd17f;
}

/* homepage */
.homepage-hero {
    padding: 40px 0 20px;
}

.homepage-hero-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 28px;
    align-items: start;
}

.homepage-hero-left,
.homepage-hero-right,
.homepage-panel,
.homepage-job-item,
.homepage-job-card,
.homepage-info-card,
.homepage-mini-card,
.homepage-step-card {
    min-width: 0;
}

.homepage-hero-left {
    padding-right: 10px;
}

.hero-label,
.cta-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(56,189,248,0.12);
    border: 1px solid rgba(56,189,248,0.18);
    color: #9de9ff;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.homepage-hero-left h1 {
    font-size: 56px;
    line-height: 1.06;
    margin-bottom: 18px;
    font-weight: 800;
    max-width: 760px;
}

.homepage-hero-left p {
    max-width: 820px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 22px;
}

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

.center-buttons {
    justify-content: center;
}

.homepage-stats,
.homepage-feature-stats,
.homepage-two-col,
.homepage-four-grid,
.homepage-jobs-grid,
.dashboard-actions {
    display: grid;
    gap: 18px;
}

.homepage-stats,
.homepage-feature-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.homepage-four-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.dashboard-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage-stat-card {
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.feature-stat-card {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.homepage-stat-card strong,
.feature-stat-card strong {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 800;
}

.homepage-stat-card span,
.feature-stat-card span {
    color: var(--muted);
    font-size: 14px;
}

.panel-head,
.job-card-head,
.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.panel-head {
    margin-bottom: 16px;
}

.panel-head h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.live-pill,
.job-type-pill,
.fit-pill,
.step-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.live-pill,
.fit-pill {
    background: rgba(34,197,94,0.12);
    color: #95f0b1;
    border: 1px solid rgba(34,197,94,0.2);
}

.job-type-pill {
    background: rgba(255,255,255,0.05);
    color: #dce6f5;
    border: 1px solid rgba(255,255,255,0.06);
}

.step-pill {
    background: rgba(56,189,248,0.12);
    color: #9eeaff;
    border: 1px solid rgba(56,189,248,0.2);
    margin-bottom: 12px;
}

.homepage-job-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 14px;
}

.homepage-job-item h4,
.homepage-job-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.35;
}

.homepage-job-item p,
.homepage-job-card p,
.homepage-info-card p,
.homepage-mini-card p,
.homepage-step-card p,
.homepage-cta-box p {
    color: var(--muted);
}

.job-item-side {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
    min-width: 0;
}

.job-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.job-mini-tags span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 7px 10px;
    border-radius: 999px;
    color: #dce6f5;
    font-size: 12px;
    font-weight: 700;
}

.info-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.homepage-info-card h3,
.homepage-step-card h3,
.quick-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.25;
}

.quick-card p,
.homepage-info-card p,
.homepage-step-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.homepage-info-card ul {
    margin-top: 14px;
    padding-left: 18px;
    color: #dce7f6;
}

.homepage-info-card li {
    margin-bottom: 9px;
}

.mini-number {
    display: inline-block;
    margin-bottom: 12px;
    color: #9de9ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.homepage-mini-card {
    min-height: 230px;
}

.homepage-mini-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.3;
}

.homepage-mini-card p {
    color: var(--muted);
    line-height: 1.7;
}

.homepage-job-desc {
    margin: 16px 0 18px;
    min-height: 72px;
    line-height: 1.7;
    color: var(--muted);
}

.homepage-empty {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.homepage-cta-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 44px 30px;
}

.homepage-cta-box h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.homepage-cta-box p {
    max-width: 820px;
    margin: 0 auto 22px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
}

/* =========================================================
   RECRUITER DASHBOARD ONLY
========================================================= */

.recruiter-dashboard-page {
    padding-bottom: 40px;
}

.recruiter-dashboard-page .page-title {
    margin-bottom: 24px;
}

.recruiter-dashboard-page .page-title h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 800;
}

.recruiter-dashboard-page .page-title p {
    font-size: 17px;
    color: var(--muted);
}

.recruiter-dashboard-page .rd-banner {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 22px;
    margin-bottom: 24px;
}

.recruiter-dashboard-page .rd-banner-main,
.recruiter-dashboard-page .rd-banner-side,
.recruiter-dashboard-page .rd-metric-card,
.recruiter-dashboard-page .rd-panel,
.recruiter-dashboard-page .quick-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.recruiter-dashboard-page .rd-banner-main,
.recruiter-dashboard-page .rd-banner-side,
.recruiter-dashboard-page .rd-panel,
.recruiter-dashboard-page .quick-card {
    padding: 24px;
}

.recruiter-dashboard-page .hero-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(56,189,248,0.12);
    border: 1px solid rgba(56,189,248,0.18);
    color: #9de9ff;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.recruiter-dashboard-page .rd-banner-main h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 800;
}

.recruiter-dashboard-page .rd-banner-main p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.recruiter-dashboard-page .rd-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.recruiter-dashboard-page .rd-banner-side h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 800;
}

.recruiter-dashboard-page .rd-banner-side ul {
    padding-left: 18px;
    color: #dce6f5;
    margin: 0;
}

.recruiter-dashboard-page .rd-banner-side li {
    margin-bottom: 10px;
}

.recruiter-dashboard-page .rd-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.recruiter-dashboard-page .rd-metric-card {
    padding: 22px;
}

.recruiter-dashboard-page .rd-metric-card span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
}

.recruiter-dashboard-page .rd-metric-card strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 800;
    color: #fff;
}

.recruiter-dashboard-page .rd-metric-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

.recruiter-dashboard-page .rd-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.recruiter-dashboard-page .quick-card {
    transition: 0.2s ease;
}

.recruiter-dashboard-page .quick-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56,189,248,0.18);
}

.recruiter-dashboard-page .quick-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 800;
}

.recruiter-dashboard-page .quick-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.recruiter-dashboard-page .rd-panels {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 22px;
}

.recruiter-dashboard-page .rd-panel {
    padding: 24px;
}

.recruiter-dashboard-page .rd-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.recruiter-dashboard-page .rd-panel-head h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.recruiter-dashboard-page .mini-link {
    color: #9de9ff;
    font-size: 14px;
    font-weight: 700;
}

.recruiter-dashboard-page .mini-link:hover {
    color: #fff;
}

.recruiter-dashboard-page .rd-table-wrap {
    overflow-x: auto;
}

.recruiter-dashboard-page .rd-table {
    width: 100%;
    border-collapse: collapse;
}

.recruiter-dashboard-page .rd-table th,
.recruiter-dashboard-page .rd-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
}

.recruiter-dashboard-page .rd-table th {
    color: #cfe0f3;
    font-weight: 800;
}

.recruiter-dashboard-page .rd-table td {
    color: var(--muted);
}

.recruiter-dashboard-page .rd-job-list {
    display: grid;
    gap: 14px;
}

.recruiter-dashboard-page .rd-job-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}

.recruiter-dashboard-page .rd-job-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 800;
}

.recruiter-dashboard-page .rd-job-item p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}

.recruiter-dashboard-page .job-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recruiter-dashboard-page .job-mini-tags span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 7px 10px;
    border-radius: 999px;
    color: #dce6f5;
    font-size: 12px;
    font-weight: 700;
}

.recruiter-dashboard-page .empty-state-text {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* tablet */
@media (max-width: 1100px) {
    .recruiter-dashboard-page .rd-banner,
    .recruiter-dashboard-page .rd-panels {
        grid-template-columns: 1fr;
    }

    .recruiter-dashboard-page .rd-metrics,
    .recruiter-dashboard-page .rd-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* tablet + mobile homepage */
@media (max-width: 991px) {
    .nav-wrap {
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .nav-panel {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .main-nav,
    .nav-user {
        width: 100%;
        justify-content: flex-start;
    }

    .homepage-hero-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .homepage-hero-left,
    .homepage-hero-right {
        width: 100%;
        padding-right: 0;
    }

    .homepage-hero-left h1 {
        font-size: 42px;
        line-height: 1.1;
        max-width: 100%;
        word-break: break-word;
    }

    .homepage-hero-left p {
        font-size: 17px;
        max-width: 100%;
    }

    .homepage-panel {
        width: 100%;
        overflow: hidden;
    }

    .homepage-job-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-item-side {
        width: 100%;
        align-items: flex-start;
    }

    .homepage-stats,
    .homepage-feature-stats,
    .homepage-two-col,
    .homepage-four-grid,
    .homepage-jobs-grid,
    .dashboard-actions {
        grid-template-columns: 1fr 1fr;
    }

    .panel-head,
    .job-card-head,
    .job-card-footer,
    .section-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* mobile */
@media (max-width: 768px) {
    .recruiter-dashboard-page .rd-banner-main h2 {
        font-size: 30px;
    }

    .recruiter-dashboard-page .rd-metrics,
    .recruiter-dashboard-page .rd-quick-grid {
        grid-template-columns: 1fr;
    }

    .recruiter-dashboard-page .rd-banner-actions {
        flex-direction: column;
    }

    .recruiter-dashboard-page .rd-banner-actions .btn {
        width: 100%;
    }

    .recruiter-dashboard-page .rd-job-item,
    .recruiter-dashboard-page .rd-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    .page-shell {
        padding: 18px 0 30px;
    }

    .site-header .container {
        width: min(100%, calc(100% - 24px));
    }

    .nav-wrap {
        padding: 10px 0;
        gap: 10px;
        flex-wrap: wrap;
    }

    .brand {
        width: 100%;
    }

    .brand-text {
        font-size: 16px;
        line-height: 1.2;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .main-nav {
        gap: 14px;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 14px;
    }

    .nav-user {
        width: 100%;
    }

    .nav-user .btn,
    .nav-user .user-pill {
        width: auto;
    }

    .user-pill,
    .btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .homepage-hero {
        padding: 24px 0 10px;
    }

    .hero-label,
    .cta-label {
        font-size: 11px;
        padding: 8px 12px;
        margin-bottom: 14px;
    }

    .homepage-hero-left h1 {
        font-size: 30px;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .homepage-hero-left p,
    .homepage-cta-box p,
    .section-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .homepage-hero-actions,
    .center-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .homepage-hero-actions .btn,
    .center-buttons .btn {
        width: 100%;
    }

    .homepage-stats,
    .homepage-feature-stats,
    .homepage-two-col,
    .homepage-four-grid,
    .homepage-jobs-grid,
    .dashboard-actions {
        grid-template-columns: 1fr;
    }

    .homepage-stat-card,
    .feature-stat-card,
    .homepage-info-card,
    .homepage-mini-card,
    .homepage-step-card,
    .homepage-job-card,
    .homepage-panel,
    .quick-card {
        padding: 16px;
        border-radius: 18px;
    }

    .homepage-stat-card strong,
    .feature-stat-card strong {
        font-size: 26px;
    }

    .panel-head h3,
    .homepage-info-card h3,
    .homepage-step-card h3,
    .quick-card h3,
    .homepage-job-card h3 {
        font-size: 22px;
    }

    .homepage-job-item {
        padding: 14px;
        border-radius: 16px;
    }

    .homepage-job-item h4 {
        font-size: 18px;
        line-height: 1.35;
    }

    .job-mini-tags {
        gap: 6px;
    }

    .job-mini-tags span,
    .job-type-pill,
    .live-pill,
    .fit-pill,
    .step-pill {
        font-size: 11px;
        padding: 6px 10px;
    }

    .homepage-cta-box {
        padding: 24px 18px;
    }

    .homepage-cta-box h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .page-title h1,
    .section-title {
        font-size: 28px;
        line-height: 1.15;
    }

    .footer-wrap {
        flex-direction: column;
        gap: 12px;
    }
}