/* Joe Dirt Homepage – mockup match */

:root {
    --home-green: #047857;
    --home-green-dark: #065f46;
    --home-green-text: #065f46;
    --home-green-forest: #064e3b;
    --home-green-pale: #ecfdf5;
    --home-text: #111827;
    --home-muted: #6b7280;
    --home-border: #e5e7eb;
    --home-radius: 12px;
    --home-radius-sm: 8px;
    --home-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
    --home-shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.08);
    --home-section-pad: 88px;
}

body.page-home {
    background: #fff;
}

body.page-home .homepage {
    margin-top: 0;
}

body.page-home .navbar-app {
    background: #fff !important;
    box-shadow: 0 1px 0 #e5e7eb;
}

.homepage {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--home-text);
}

.home-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.home-reveal {
    opacity: 1;
    transition: none;
}

.home-reveal.is-visible {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .home-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ══════════ HERO – centered layout ══════════ */
.home-hero {
    position: relative;
    min-height: 600px;
    color: #fff;
    overflow: hidden;
}

.home-hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    z-index: 0;
    background-color: #1a2e44;
    pointer-events: none;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    background-color: #1a2e44;
    background-image: var(--home-hero-bg);
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
}

.home-hero__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 45%, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.55) 100%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.65) 100%);
    pointer-events: none;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 600px;
    padding: 64px 24px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    text-align: center;
}

.home-hero__center {
    width: 100%;
    max-width: 720px;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto 20px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #047857;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.home-hero__title {
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
}

.home-hero__accent {
    color: #34d399;
}

.home-hero__subtitle {
    margin: 0 auto 28px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
}

.home-hero__roles {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.home-hero__role {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.home-hero__role:hover {
    color: #fff;
}

.home-hero__role.is-active {
    background: var(--home-green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(4, 120, 87, 0.35);
}

.home-hero__search-panel {
    width: 100%;
    max-width: 960px;
    background: #fff;
    border-radius: var(--home-radius);
    padding: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: visible;
    position: relative;
    z-index: 5;
}

.home-search__form {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 8px;
    align-items: stretch;
    overflow: visible;
    text-align: left;
}

.home-search__field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 0 14px;
    min-height: 48px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: var(--home-radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-search__field:focus-within {
    background: #fff;
    border-color: var(--home-green);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.12);
}

.home-search__field i {
    color: var(--home-green-text);
    font-size: 0.88rem;
    flex-shrink: 0;
}

.home-search__field input,
.home-search__field select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.88rem;
    color: #374151;
    outline: none;
    min-height: 40px;
}

.home-search__field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23047857' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
    font-weight: 500;
}

/* Custom category dropdown */
.home-search__select-wrap {
    position: relative;
    min-width: 0;
    z-index: 2;
}

.home-search__select-wrap.is-open {
    z-index: 250;
}

.home-hero:has(.home-search__select-wrap.is-open) {
    overflow: visible;
}

.home-search__select-wrap.is-open .home-search__field--select {
    background: #fff;
    border-color: var(--home-green);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.12);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.home-search__select-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    text-align: left;
}

.home-search__select-label {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-search__select-chevron {
    font-size: 0.65rem;
    color: var(--home-green-text);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.home-search__select-wrap.is-open .home-search__select-chevron {
    transform: rotate(180deg);
}

.home-search__select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 300;
    margin: -1px 0 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--home-green);
    border-top: none;
    border-radius: 0 0 var(--home-radius-sm) var(--home-radius-sm);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.home-search__select-menu[hidden] {
    display: none !important;
}

.home-search__select-option {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    user-select: none;
}

.home-search__select-option:hover,
.home-search__select-option:focus {
    background: var(--home-green-pale);
    color: var(--home-green-dark);
    outline: none;
}

.home-search__select-option.is-selected {
    background: var(--home-green-pale);
    color: var(--home-green-dark);
    font-weight: 600;
}

.home-search__select-option.is-selected:hover {
    background: #d1fae5;
}

.home-search__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 26px;
    border: none;
    border-radius: var(--home-radius-sm);
    background: var(--home-green);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.home-search__btn:hover {
    background: var(--home-green-dark);
}

/* ══════════ SECTIONS ══════════ */
.home-section {
    padding: var(--home-section-pad) 0;
}

.home-section--jobs,
.home-section--categories {
    padding-top: 64px;
    background: #fff;
}

.home-section--why {
    background: #f9fafb;
}

.home-section--alt {
    background: #f9fafb;
}

.home-section--audience {
    padding-bottom: 64px;
}

.home-section--pricing {
    background: #fff;
}

.home-section__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
}

.home-section__label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--home-green-text);
}

.home-section__head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--home-text);
}

.home-section__head p {
    margin: 0;
    color: var(--home-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.home-section__cta {
    text-align: center;
    margin-top: 40px;
}

.home-section__head--compact {
    margin-bottom: 36px;
    text-align: center;
    max-width: 100%;
}

.home-section__head--compact h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--home-text);
}

.home-section__head--compact p {
    margin: 0;
    color: var(--home-muted);
    font-size: 0.92rem;
}

/* ══════════ FEATURED JOBS ══════════ */
.home-featured-jobs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    min-height: 300px;
}

.home-featured-jobs__empty {
    margin: 0;
    text-align: center;
    color: var(--home-muted);
    font-size: 0.95rem;
}

.home-job-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--home-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-job-card:hover {
    transform: translateY(-3px);
    border-color: rgba(5, 150, 105, 0.35);
    box-shadow: var(--home-shadow-lg);
    color: inherit;
    text-decoration: none;
}

.home-job-card__image {
    aspect-ratio: 4 / 3;
    background: var(--home-green-pale);
    overflow: hidden;
}

.home-job-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-job-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    flex: 1;
}

.home-job-card__tag {
    align-self: flex-start;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-job-card__tag--import {
    background: #dbeafe;
    color: #1d4ed8;
}

.home-job-card__tag--export {
    background: #fef3c7;
    color: #b45309;
}

.home-job-card h3 {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--home-text);
}

.home-job-card__location {
    margin: 0;
    margin-top: auto;
    font-size: 0.76rem;
    color: var(--home-muted);
    line-height: 1.4;
}

.home-job-card__location i {
    color: var(--home-green-text);
    margin-right: 4px;
}

/* Category cards (legacy fallback) */
.home-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.home-cat-card {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    padding: 20px 14px 18px;
    text-align: center;
    color: inherit;
    box-shadow: var(--home-shadow);
}

.home-cat-card__visual {
    width: 100%;
    height: 76px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--home-green-text);
    background: var(--home-green-pale);
    border-radius: var(--home-radius-sm);
}

.home-cat-card h3 {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
}

/* ══════════ STATS – full-width green bar (matches landowner lh-platform__stats) ══════════ */
.home-stats {
    width: 100%;
    background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #047857 100%);
    padding: 44px 0;
    border: none;
}

.home-stats .home-inner {
    max-width: 1200px;
}

.home-stats__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-stats__item {
    text-align: center;
    padding: 8px 12px;
}

.home-stats__number {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.home-stats__label {
    display: block;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

/* ══════════ AUDIENCE ══════════ */
.home-audience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
}

.home-audience--reverse .home-audience__media { order: 2; }
.home-audience--reverse .home-audience__content { order: 1; }

.home-audience__media {
    position: relative;
}

.home-audience__img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--home-radius);
    border: none;
    box-shadow: var(--home-shadow-lg);
    display: block;
}

.home-audience__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
}

.home-audience__badge--trucker { background: var(--home-green); }
.home-audience__badge--landowner { background: #0f766e; }

.home-audience__eyebrow {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--home-green-text);
}

.home-audience__content h2 {
    margin: 0 0 16px;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-audience__lead {
    margin: 0 0 22px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--home-muted);
}

.home-audience__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.home-audience__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.92rem;
    color: #374151;
}

.home-audience__list i {
    color: var(--home-green-text);
    margin-top: 3px;
    flex-shrink: 0;
}

.home-audience__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ══════════ STEPS ══════════ */
.home-steps {
    padding-top: 48px;

}

.home-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.home-steps__grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.home-step-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    padding: 24px 16px 20px;
    box-shadow: var(--home-shadow);
    text-align: center;
}

.home-step-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--home-green-pale);
    color: var(--home-green-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.home-step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--home-green);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.home-step-card h4 {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--home-text);
}

.home-step-card p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--home-muted);
    line-height: 1.55;
}

/* Landowner steps */
.home-steps--landowner .home-steps__grid::before {
    display: none;
}

/* ══════════ FEATURES ══════════ */
.home-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.home-feature-card {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    padding: 28px 24px;
    box-shadow: var(--home-shadow);
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.home-feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--home-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.home-feature-card h3,
.home-feature-card__body h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
}

.home-feature-card p,
.home-feature-card__body p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--home-muted);
    line-height: 1.6;
}

/* ══════════ PRICING ══════════ */
.home-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.home-price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    padding: 32px 24px 28px;
    box-shadow: var(--home-shadow);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.home-price-card--featured {
    border: 2px solid var(--home-green);
    box-shadow: 0 16px 48px rgba(4, 120, 87, 0.14);
    padding-top: 40px;
    transform: scale(1.04);
    z-index: 1;
}

.home-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: 999px;
    background: var(--home-green);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.home-price-card h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 700;
}

.home-price-card__price {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--home-text);
}

.home-price-card__price small {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--home-muted);
}

.home-price-card ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    text-align: left;
    flex: 1;
}

.home-price-card li {
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: 0.86rem;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.home-price-card li:last-child { border-bottom: none; }

.home-price-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--home-green-text);
    font-size: 0.75rem;
}

/* ══════════ BUTTONS ══════════ */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--home-radius-sm);
    background: var(--home-green);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--home-green);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

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

.home-btn--outline {
    background: #fff;
    color: var(--home-green-text);
    border: 2px solid var(--home-green);
}

.home-btn--outline:hover {
    background: var(--home-green-pale);
    color: var(--home-green-dark);
    border-color: var(--home-green);
}

.home-btn--block {
    width: 100%;
    margin-top: auto;
}

/* ══════════ CTA ══════════ */
.home-cta {
    position: relative;
    padding: var(--home-section-pad) 24px;
    background-color: var(--home-green-forest);
}

.home-cta__overlay {
    display: none;
}

.home-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.home-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 800;
}

.home-cta p {
    margin: 0 auto 32px;
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.home-btn--cta,
.home-btn--cta-outline {
    background: #fff;
    color: var(--home-green-dark);
    border: 2px solid #fff;
    min-width: 200px;
}

.home-btn--cta:hover,
.home-btn--cta-outline:hover {
    background: var(--home-green-pale);
    color: var(--home-green-dark);
    border-color: #fff;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1100px) {
    .home-featured-jobs,
    .home-categories { grid-template-columns: repeat(3, 1fr); }
    .home-price-card--featured { transform: none; }
}

@media (max-width: 991px) {
    :root { --home-section-pad: 64px; }

    .home-hero { min-height: auto; }
    .home-hero__inner {
        min-height: auto;
        padding: 48px 20px 36px;
        gap: 28px;
    }
    .home-hero__center { max-width: 100%; }
    .home-hero__shade {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.6) 100%);
    }
    .home-search__form { grid-template-columns: 1fr 1fr; }
    .home-search__field--grow { grid-column: 1 / -1; }
    .home-search__btn { grid-column: 1 / -1; width: 100%; }
    .home-featured-jobs,
    .home-categories { grid-template-columns: repeat(2, 1fr); }
    .home-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .home-pricing {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .home-audience { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
    .home-audience--reverse .home-audience__media,
    .home-audience--reverse .home-audience__content { order: unset; }
    .home-steps__grid { grid-template-columns: repeat(2, 1fr); }
    .home-steps__grid::before { display: none; }
}

@media (max-width: 767px) {
    :root { --home-section-pad: 56px; }

    .home-inner { padding-left: 16px; padding-right: 16px; }
    .home-search__form { grid-template-columns: 1fr; }
    .home-featured-jobs,
    .home-categories,
    .home-features,
    .home-steps__grid,
    .home-stats__grid { grid-template-columns: 1fr; }
    .home-hero__roles {
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        border-radius: var(--home-radius);
        padding: 6px;
    }
    .home-hero__role {
        width: 100%;
        justify-content: center;
    }
    .home-audience__actions,
    .home-cta__actions { flex-direction: column; align-items: stretch; }
    .home-btn--cta,
    .home-btn--cta-outline { min-width: 0; width: 100%; }
}
