/* ═══════════════════════════════════════════
   HIRE RESOURCE PAGE — hire-resource.css
═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
    --hr-primary:    #6c47ff;
    --hr-primary-dk: #4f2ee8;
    --hr-accent:     #00d4aa;
    --hr-dark:       #0d0d1a;
    --hr-surface:    #f6f5ff;
    --hr-card:       #ffffff;
    --hr-border:     #e8e4ff;
    --hr-text:       #3a3a5c;
    --hr-muted:      #7b7b9d;
    --hr-radius:     16px;
    --hr-radius-sm:  10px;
    --hr-shadow:     0 4px 24px rgba(108,71,255,.09);
    --hr-shadow-lg:  0 12px 48px rgba(108,71,255,.14);
}

/* ── Reset helpers ── */
.hr-* { box-sizing: border-box; }

/* ══════════════ HERO ══════════════ */
.hr-hero {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1040 60%, #0f1a2e 100%);
    padding: 100px 0 0;
    overflow: hidden;
    position: relative;
}
.hr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 500px at 70% 50%, rgba(108,71,255,.18) 0%, transparent 70%);
    pointer-events: none;
}
.hr-hero__inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}
.hr-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,71,255,.18);
    border: 1px solid rgba(108,71,255,.35);
    color: #a78bff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hr-hero__title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    color: #fff;
    line-height: 1.13;
    margin-bottom: 20px;
}
.hr-hero__title span {
    background: linear-gradient(90deg, #a78bff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hr-hero__desc {
    font-size: 16px;
    color: #b0afd0;
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 560px;
}
.hr-hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 24px 0 32px;
}
.hr-hero__check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d0ccff;
    font-size: 14px;
    font-weight: 500;
}
.hr-hero__check i { color: var(--hr-accent); font-size: 18px; }
.hr-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* hero right — form card */
.hr-hero__form-wrap {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
}
.hr-hero__form-title {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.hr-hero__form-sub {
    font-size: 13px;
    color: #9290b8;
    margin-bottom: 24px;
}
.hr-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hr-form__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.hr-form__field label { font-size: 12px; font-weight: 600; color: #a0a0c0; text-transform: uppercase; letter-spacing: .06em; }
.hr-form__field input,
.hr-form__field select,
.hr-form__field textarea {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 11px 14px;
    color: #fff;
    font-size: 14px;
    font-family: 'Jost', sans-serif;
    transition: border-color .2s;
    outline: none;
    width: 100%;
}
.hr-form__field input::placeholder,
.hr-form__field textarea::placeholder { color: #5a5a80; }
.hr-form__field select option { background: #1a1040; color: #fff; }
.hr-form__field input:focus,
.hr-form__field select:focus,
.hr-form__field textarea:focus { border-color: var(--hr-primary); box-shadow: 0 0 0 3px rgba(108,71,255,.2); }
.hr-form__field textarea { resize: none; height: 80px; }
.hr-form__submit {
    width: 100%;
    background: linear-gradient(135deg, var(--hr-primary), #4f2ee8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity .2s, transform .2s;
}
.hr-form__submit:hover { opacity: .9; transform: translateY(-1px); }
.hr-hero__wave {
    width: 100%;
    display: block;
    margin-top: 60px;
}

/* ══════════════ CLIENTS ══════════════ */
.hr-clients {
    background: var(--hr-surface);
    padding: 28px 0;
    overflow: hidden;
}
.hr-clients__label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hr-muted);
    margin-bottom: 20px;
}
.hr-clients__track-wrap { overflow: hidden; }
.hr-clients__track {
    display: flex;
    gap: 0;
    animation: hr-scroll 28s linear infinite;
    width: max-content;
}
.hr-clients__item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    opacity: .55;
    transition: opacity .3s;
}
.hr-clients__item:hover { opacity: 1; }
.hr-clients__item img { height: 28px; object-fit: contain; filter: grayscale(1); transition: filter .3s; }
.hr-clients__item:hover img { filter: none; }
@keyframes hr-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════ WHY HIRE (GRID) ══════════════ */
.hr-why {
    padding: 90px 0;
    background: #fff;
}
.hr-section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hr-primary);
    margin-bottom: 10px;
}
.hr-section-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--hr-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.hr-section-desc {
    font-size: 16px;
    color: var(--hr-muted);
    line-height: 1.75;
    max-width: 600px;
}
.hr-why__header {
    text-align: center;
    margin-bottom: 60px;
}
.hr-why__header .hr-section-desc { margin: 0 auto; }
.hr-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hr-why__card {
    background: var(--hr-surface);
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius);
    padding: 32px 28px;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.hr-why__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hr-primary), var(--hr-accent));
    opacity: 0;
    transition: opacity .25s;
}
.hr-why__card:hover { transform: translateY(-6px); box-shadow: var(--hr-shadow-lg); }
.hr-why__card:hover::before { opacity: 1; }
.hr-why__icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(108,71,255,.12), rgba(0,212,170,.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--hr-primary);
}
.hr-why__card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--hr-dark);
    margin-bottom: 10px;
}
.hr-why__card p { font-size: 14px; color: var(--hr-muted); line-height: 1.7; }

/* ══════════════ ROLES ══════════════ */
.hr-roles {
    padding: 90px 0;
    background: var(--hr-surface);
}
.hr-roles__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.hr-roles__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.hr-role-card {
    background: #fff;
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius);
    padding: 28px 22px 22px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: pointer;
}
.hr-role-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hr-shadow-lg);
    border-color: var(--hr-primary);
}
.hr-role-card__avatar {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(108,71,255,.15), rgba(0,212,170,.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--hr-primary);
    margin-bottom: 16px;
}
.hr-role-card__title {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--hr-dark);
    margin-bottom: 6px;
}
.hr-role-card__exp {
    font-size: 12px;
    color: var(--hr-accent);
    font-weight: 600;
    background: rgba(0,212,170,.1);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.hr-role-card__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.hr-role-card__skill {
    font-size: 11px;
    font-weight: 600;
    color: var(--hr-primary);
    background: rgba(108,71,255,.08);
    padding: 3px 9px;
    border-radius: 50px;
}
.hr-role-card__rate {
    font-size: 13px;
    color: var(--hr-muted);
    margin-bottom: 16px;
}
.hr-role-card__rate strong { color: var(--hr-dark); }
.hr-role-card__btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--hr-primary), var(--hr-primary-dk));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    border-radius: 9px;
    text-decoration: none;
    transition: opacity .2s;
}
.hr-role-card__btn:hover { opacity: .85; color: #fff; }

/* ══════════════ PROCESS ══════════════ */
.hr-process {
    padding: 90px 0;
    background: #fff;
}
.hr-process__header { text-align: center; margin-bottom: 60px; }
.hr-process__header .hr-section-desc { margin: 0 auto; }
.hr-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.hr-process__steps::before {
    content: '';
    position: absolute;
    top: 40px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--hr-primary), var(--hr-accent));
    z-index: 0;
}
.hr-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}
.hr-process__num {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hr-primary), var(--hr-primary-dk));
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(108,71,255,.3);
    transition: transform .25s;
}
.hr-process__step:hover .hr-process__num { transform: scale(1.08); }
.hr-process__step h3 {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hr-dark);
    margin-bottom: 8px;
}
.hr-process__step p { font-size: 13px; color: var(--hr-muted); line-height: 1.65; }

/* ══════════════ MODELS (Engagement) ══════════════ */
.hr-models {
    padding: 90px 0;
    background: var(--hr-dark);
    position: relative;
    overflow: hidden;
}
.hr-models::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 900px 600px at 20% 80%, rgba(108,71,255,.14) 0%, transparent 70%);
    pointer-events: none;
}
.hr-models__header { text-align: center; margin-bottom: 60px; }
.hr-models__header .hr-section-title,
.hr-models__header .hr-section-label { color: #fff; }
.hr-models__header .hr-section-title { color: #fff; }
.hr-models__header .hr-section-label { color: #a78bff; }
.hr-models__header .hr-section-desc { color: #9290b8; margin: 0 auto; }
.hr-models__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hr-model-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--hr-radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
}
.hr-model-card:hover { border-color: rgba(108,71,255,.5); transform: translateY(-5px); }
.hr-model-card.featured {
    border-color: var(--hr-primary);
    background: linear-gradient(135deg, rgba(108,71,255,.15), rgba(0,212,170,.06));
}
.hr-model-card__badge {
    position: absolute;
    top: 20px; right: 20px;
    background: linear-gradient(90deg, var(--hr-primary), var(--hr-accent));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}
.hr-model-card__icon {
    width: 56px; height: 56px;
    background: rgba(108,71,255,.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #a78bff;
    margin-bottom: 20px;
}
.hr-model-card h3 {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.hr-model-card p { font-size: 14px; color: #9290b8; line-height: 1.7; margin-bottom: 20px; }
.hr-model-card__features { list-style: none; padding: 0; margin: 0 0 24px; }
.hr-model-card__features li {
    font-size: 13px;
    color: #b0afd0;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hr-model-card__features li i { color: var(--hr-accent); }
.hr-model-card__cta {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}
.hr-model-card__cta--outline {
    border: 1.5px solid rgba(108,71,255,.5);
    color: #a78bff;
}
.hr-model-card__cta--outline:hover { background: rgba(108,71,255,.15); color: #a78bff; }
.hr-model-card__cta--solid {
    background: linear-gradient(135deg, var(--hr-primary), var(--hr-primary-dk));
    color: #fff;
}
.hr-model-card__cta--solid:hover { opacity: .88; color: #fff; }

/* ══════════════ STATS ══════════════ */
.hr-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--hr-primary) 0%, #4f2ee8 100%);
}
.hr-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hr-stat { text-align: center; }
.hr-stat__num {
    font-family: 'Jost', sans-serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.hr-stat__label { font-size: 14px; color: rgba(255,255,255,.75); font-weight: 500; }
.hr-stat__divider {
    width: 1px;
    background: rgba(255,255,255,.2);
    margin: auto;
}

/* ══════════════ TESTIMONIALS ══════════════ */
.hr-testi {
    padding: 90px 0;
    background: var(--hr-surface);
}
.hr-testi__header { text-align: center; margin-bottom: 50px; }
.hr-testi__header .hr-section-desc { margin: 0 auto; }
.hr-testi__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hr-testi-card {
    background: #fff;
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius);
    padding: 28px 24px;
    position: relative;
    transition: box-shadow .25s;
}
.hr-testi-card:hover { box-shadow: var(--hr-shadow-lg); }
.hr-testi-card__quote {
    font-size: 42px;
    color: var(--hr-primary);
    opacity: .2;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 12px;
}
.hr-testi-card__text {
    font-size: 14px;
    color: var(--hr-text);
    line-height: 1.75;
    margin-bottom: 20px;
}
.hr-testi-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hr-testi-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hr-primary), var(--hr-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    flex-shrink: 0;
}
.hr-testi-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--hr-dark);
}
.hr-testi-card__role { font-size: 12px; color: var(--hr-muted); }
.hr-testi-card__stars { color: #f59e0b; font-size: 13px; margin-top: 4px; }

/* ══════════════ FAQ ══════════════ */
.hr-faq {
    padding: 90px 0;
    background: #fff;
}
.hr-faq__inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}
.hr-faq__left h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hr-primary);
    margin-bottom: 10px;
}
.hr-faq__still {
    margin-top: 36px;
    background: var(--hr-surface);
    border: 1px solid var(--hr-border);
    border-radius: var(--hr-radius);
    padding: 24px;
}
.hr-faq__still h4 { font-family: 'Jost', sans-serif; font-size: 17px; font-weight: 700; color: var(--hr-dark); margin-bottom: 12px; }
.hr-faq__list { display: flex; flex-direction: column; gap: 0; }
.hr-faq__item {
    border-bottom: 1px solid var(--hr-border);
}
.hr-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    gap: 16px;
}
.hr-faq__question span { font-size: 15px; font-weight: 600; color: var(--hr-dark); }
.hr-faq__icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--hr-surface);
    border: 1px solid var(--hr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.hr-faq__item.open .hr-faq__icon { background: var(--hr-primary); border-color: var(--hr-primary); color: #fff; }
.hr-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
}
.hr-faq__item.open .hr-faq__answer { max-height: 200px; padding-bottom: 16px; }
.hr-faq__answer p { font-size: 14px; color: var(--hr-muted); line-height: 1.75; }

/* ══════════════ CTA ══════════════ */
.hr-cta {
    padding: 200px 0;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1040 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hr-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 500px at 50% 100%, rgba(108,71,255,.18) 0%, transparent 70%);
    pointer-events: none;
}
.hr-cta h2 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}
.hr-cta p { font-size: 16px; color: #9290b8; max-width: 560px; margin: 0 auto 36px; position: relative; }
.hr-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════ SHARED BUTTONS ══════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--hr-primary), var(--hr-primary-dk));
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--hr-border);
    color: var(--hr-text) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--hr-primary); color: var(--hr-primary) !important; }
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color .2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); }

/* ══════════════ REVEAL ANIMATIONS ══════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal--left { opacity: 0; transform: translateX(-30px); transition: opacity .65s ease, transform .65s ease; }
.reveal--right { opacity: 0; transform: translateX(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible, .reveal--left.is-visible, .reveal--right.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1100px) {
    .hr-roles__grid { grid-template-columns: repeat(3, 1fr); }
    .hr-process__steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .hr-process__steps::before { display: none; }
}
@media (max-width: 992px) {
    .hr-hero__inner { grid-template-columns: 1fr; }
    .hr-hero__form-wrap { max-width: 560px; margin: 0 auto; }
    .hr-why__grid { grid-template-columns: repeat(2, 1fr); }
    .hr-roles__grid { grid-template-columns: repeat(2, 1fr); }
    .hr-models__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .hr-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .hr-testi__grid { grid-template-columns: repeat(2, 1fr); }
    .hr-faq__inner { grid-template-columns: 1fr; gap: 40px; }
    .hr-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .hr-hero { padding: 70px 0 0; }
    .hr-why__grid { grid-template-columns: 1fr; }
    .hr-roles__grid { grid-template-columns: 1fr; }
    .hr-roles__header { flex-direction: column; align-items: flex-start; }
    .hr-stats__grid { grid-template-columns: 1fr 1fr; }
    .hr-testi__grid { grid-template-columns: 1fr; }
    .hr-models__grid { grid-template-columns: 1fr; max-width: 100%; }
    .hr-form__row { grid-template-columns: 1fr; }
    .hr-process__steps { grid-template-columns: 1fr; }
    .hr-cta__btns { flex-direction: column; align-items: center; }
}