/* ── Client accent ──────────────────────────────────────── */
.hire-hero,
.hire-section,
.cs-cta-section{
    --client-accent:#9bdc28;
    --client-accent-soft:rgba(155,220,40,.14);
    --client-accent-muted:rgba(155,220,40,.22);
    --client-accent-deep:#6fa814;
}

/* ── Hero ───────────────────────────────────────────────── */
.hire-hero{
    padding:104px 0 92px;
    background:
        radial-gradient(circle at 82% 18%, rgba(155,220,40,.10), transparent 26rem),
        linear-gradient(135deg, #ffffff, #f5f8fc);
    border-bottom:1px solid var(--line);
}

.hire-hero-layout{
    display:grid;
    grid-template-columns:minmax(0, 1.1fr) minmax(360px, .55fr);
    gap:48px;
    align-items:center;
}

.hire-hero-copy small{
    display:block;
    margin-bottom:18px;
    color:var(--client-accent-deep);
    font-size:14px;
    font-weight:800;
    letter-spacing:.32em;
    text-transform:uppercase;
}

.hire-hero-copy h1{
    margin:0 0 24px;
    max-width:850px;
    color:var(--navy-2);
    font-size:clamp(36px, 4.2vw, 68px);
    line-height:1;
    letter-spacing:-.06em;
    font-weight:900;
    text-wrap:balance;
}

.hire-hero-copy p{
    margin:0 0 34px;
    max-width:760px;
    color:var(--muted);
    font-size:clamp(1.08rem, 1.35vw, 1.38rem);
    line-height:1.65;
}

.hire-hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hire-hero-actions .btn{
    min-height:52px;
    padding:0 26px;
    font-size:15px;
    font-weight:800;
}

.btn-primary{
    background:var(--navy);
    color:#ffffff;
}

.btn-secondary{
    border-color:rgba(23,32,51,.18);
    background:#ffffff;
    color:var(--navy-2);
}

.hire-hero-actions .btn-primary{
    box-shadow:0 16px 34px rgba(15,27,45,.18);
    transition:transform .22s ease, box-shadow .22s ease;
}

.hire-hero-actions .btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:
        0 18px 38px rgba(15,27,45,.20),
        0 0 0 4px var(--client-accent-soft);
}

.hire-hero-actions .btn-secondary{
    transition:border-color .2s ease, background .2s ease;
}

.hire-hero-actions .btn-secondary:hover{
    border-color:var(--client-accent);
    background:var(--client-accent-soft);
    color:var(--navy-2);
}

@media (max-width:980px){
    .hire-hero-layout{
        grid-template-columns:1fr;
    }
}

@media (max-width:640px){
    .hire-hero{
        padding:82px 0 64px;
    }
}

/* ── Editorial section ──────────────────────────────────── */
.hire-section{
    padding:86px 0;
    background:#ffffff;
}

/* ── Editorial stack ────────────────────────────────────── */
.hire-editorial-stack{
    display:flex;
    flex-direction:column;
    gap:56px;
    margin-top:0;
}

.hire-editorial-item,
.hire-editorial-item.hire-editorial-item-reverse{
    display:grid;
    grid-template-columns:minmax(240px, .62fr) minmax(460px, 1fr);
    align-items:center;
    gap:56px;
    width:100%;
    padding:0 0 56px;
    border-bottom:1px solid rgba(15,39,64,.09);
}

.hire-editorial-item:last-child{
    border-bottom:0;
    padding-bottom:0;
}

.hire-editorial-item:nth-child(even){
    grid-template-columns:minmax(460px, 1fr) minmax(240px, .62fr);
}

.hire-editorial-item:nth-child(even) .hire-editorial-card{
    grid-column:1;
    grid-row:1;
}

.hire-editorial-item:nth-child(even) .hire-editorial-proof{
    grid-column:2;
    grid-row:1;
}

/* ── Proof panel ────────────────────────────────────────── */
.hire-editorial-proof{
    max-width:390px;
}

.hire-editorial-proof-label{
    display:block;
    margin-bottom:16px;
    color:var(--client-accent-deep, #6fa814);
    font-size:11px;
    font-weight:950;
    letter-spacing:.2em;
    text-transform:uppercase;
}

.hire-editorial-proof h3{
    margin:0 0 14px;
    color:var(--navy-2);
    font-size:clamp(30px, 3vw, 44px);
    line-height:.96;
    letter-spacing:-.06em;
    font-weight:950;
}

.hire-editorial-proof p{
    margin:0;
    color:var(--muted);
    font-size:17px;
    line-height:1.65;
}

.hire-editorial-proof-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:26px 0 0;
}

.hire-editorial-proof-stats div{
    padding:16px;
    border:1px solid rgba(15,39,64,.09);
    border-radius:18px;
    background:#ffffff;
}

.hire-editorial-proof-stats dt{
    margin:0 0 4px;
    color:var(--client-accent-deep, #6fa814);
    font-size:22px;
    line-height:1;
    font-weight:950;
    letter-spacing:-.04em;
}

.hire-editorial-proof-stats dd{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.4;
    font-weight:600;
}

/* ── Image card ─────────────────────────────────────────── */
.hire-editorial-card.hire-editorial-image-card{
    position:relative;
    width:100%;
    min-height:420px;
    padding:0;
    border:0;
    border-radius:30px;
    background:var(--navy-2);
    box-shadow:0 8px 24px rgba(15,27,45,.06);
    overflow:hidden;
    isolation:isolate;
    text-decoration:none;
    color:inherit;
    cursor:pointer;
}

.hire-editorial-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    margin:0;
    border-radius:0;
    aspect-ratio:unset;
}

.hire-editorial-img img,
.hire-editorial-image-card img{
    position:absolute;
    inset:0;
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.01);
    transition:transform .55s ease, filter .55s ease;
}

.hire-editorial-image-card:hover img,
.hire-editorial-image-card:focus-within img{
    transform:scale(1.045);
    filter:saturate(1.02) contrast(1.02);
}

/* ── Image overlay ──────────────────────────────────────── */
.hire-editorial-image-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:
        linear-gradient(180deg, rgba(5,10,37,.03) 0%, rgba(5,10,37,.16) 52%, rgba(5,10,37,.62) 100%),
        linear-gradient(90deg, rgba(5,10,37,.32), rgba(5,10,37,.04) 58%);
    transition:background .35s ease;
}

.hire-editorial-image-card:hover .hire-editorial-image-overlay,
.hire-editorial-image-card:focus-within .hire-editorial-image-overlay{
    background:
        linear-gradient(180deg, rgba(5,10,37,.06) 0%, rgba(5,10,37,.24) 48%, rgba(5,10,37,.76) 100%),
        linear-gradient(90deg, rgba(5,10,37,.50), rgba(5,10,37,.08) 60%);
}

/* ── Client badge ───────────────────────────────────────── */
.hire-editorial-client{
    position:absolute;
    top:clamp(24px, 3vw, 36px);
    left:clamp(28px, 4vw, 48px);
    z-index:3;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:5px;
}

.hire-editorial-client-name{
    display:block;
    color:#ffffff;
    font-size:clamp(17px, 1.8vw, 22px);
    font-weight:950;
    line-height:1;
    letter-spacing:-.03em;
    text-shadow:0 2px 18px rgba(0,0,0,.36);
}

.hire-editorial-client-industry{
    display:block;
    color:rgba(255,255,255,.65);
    font-size:11px;
    font-weight:700;
    line-height:1;
    letter-spacing:.14em;
    text-transform:uppercase;
    text-shadow:0 1px 10px rgba(0,0,0,.28);
}

/* ── Image copy / CTA ───────────────────────────────────── */
.hire-editorial-image-copy{
    position:absolute;
    left:clamp(28px, 4vw, 52px);
    right:clamp(28px, 4vw, 52px);
    bottom:clamp(28px, 4vw, 48px);
    z-index:2;
    color:#ffffff;
    transform:none;
    transition:transform .38s ease;
}

.hire-editorial-image-copy h3,
.hire-editorial-image-copy .hire-editorial-kicker,
.hire-editorial-image-copy .hire-editorial-result{
    display:none;
}

.hire-editorial-image-copy .hire-editorial-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:max-content;
    margin-top:0;
    color:rgba(255,255,255,.84);
    font-size:15px;
    line-height:1;
    font-weight:950;
    letter-spacing:-.01em;
    opacity:1;
    transform:none;
    transition:color .22s ease, transform .22s ease;
}

.hire-editorial-image-copy .hire-editorial-link span{
    display:inline-block;
    transition:transform .22s ease;
}

.hire-editorial-image-card:hover .hire-editorial-image-copy .hire-editorial-link,
.hire-editorial-image-card:focus-visible .hire-editorial-image-copy .hire-editorial-link{
    color:#ffffff;
    transform:translateY(-1px);
}

.hire-editorial-image-card:hover .hire-editorial-image-copy .hire-editorial-link span,
.hire-editorial-image-card:focus-visible .hire-editorial-image-copy .hire-editorial-link span{
    transform:translateX(4px);
}

.hire-editorial-image-card:focus-visible{
    outline:3px solid rgba(155,220,40,.55);
    outline-offset:6px;
}

/* ── Scroll reveal ──────────────────────────────────────── */
.hire-reveal .hire-editorial-proof,
.hire-reveal .hire-editorial-image-card{
    opacity:0;
    transform:translateY(24px);
    transition:
        opacity .62s cubic-bezier(.2,.8,.2,1),
        transform .62s cubic-bezier(.2,.8,.2,1);
    will-change:opacity, transform;
}

.hire-reveal .hire-editorial-image-card{
    transition-delay:.09s;
}

.hire-reveal.is-visible .hire-editorial-proof,
.hire-reveal.is-visible .hire-editorial-image-card{
    opacity:1;
    transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
    .hire-reveal .hire-editorial-proof,
    .hire-reveal .hire-editorial-image-card{
        opacity:1;
        transform:none;
        transition:none;
        will-change:auto;
    }
}

/* ── Responsive: editorial stack ────────────────────────── */
@media (max-width:980px){
    .hire-editorial-stack{
        gap:42px;
        margin-top:42px;
    }

    .hire-editorial-item,
    .hire-editorial-item.hire-editorial-item-reverse{
        grid-template-columns:1fr;
        gap:24px;
        padding-bottom:42px;
    }

    .hire-editorial-item:nth-child(even){
        grid-template-columns:1fr;
    }

    .hire-editorial-item:nth-child(even) .hire-editorial-card,
    .hire-editorial-item:nth-child(even) .hire-editorial-proof{
        grid-column:auto;
        grid-row:auto;
    }

    .hire-editorial-card.hire-editorial-image-card{
        width:100%;
        min-height:380px;
    }

    .hire-editorial-proof{
        max-width:100%;
    }
}

@media (max-width:760px){
    .hire-editorial-image-copy{
        transform:translateY(0);
    }
}

@media (max-width:640px){
    .hire-editorial-stack{
        gap:32px;
        margin-top:34px;
    }

    .hire-editorial-item,
    .hire-editorial-item.hire-editorial-item-reverse{
        padding-bottom:32px;
    }

    .hire-editorial-card.hire-editorial-image-card{
        min-height:360px;
        border-radius:24px;
    }

    .hire-editorial-image-copy{
        left:24px;
        right:24px;
        bottom:26px;
    }

    .hire-editorial-proof h3{
        font-size:30px;
    }

    .hire-editorial-proof-stats{
        grid-template-columns:1fr 1fr;
    }
}

/* ── CTA section ────────────────────────────────────────── */
.cs-cta-section{
    position:relative;
    padding:104px 0 108px;
    background:
        linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,251,255,.92) 100%);
    overflow:hidden;
}

.cs-cta-section::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(15,39,64,.12), transparent);
}

.cs-cta-section::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(circle at 14% 18%, rgba(155,220,40,.10), transparent 28%),
        radial-gradient(circle at 82% 44%, rgba(47,128,237,.07), transparent 30%);
}

.cs-cta-inner{
    position:relative;
    z-index:1;
}

.cs-cta-copy{
    max-width:720px;
}

.cs-cta-copy small{
    display:block;
    margin-bottom:18px;
    color:var(--client-accent-deep);
    font-size:12px;
    font-weight:950;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.cs-cta-copy h2{
    margin:0;
    color:var(--navy-2);
    font-size:clamp(34px, 4vw, 60px);
    line-height:.96;
    letter-spacing:-.07em;
    font-weight:950;
    text-wrap:balance;
}

.cs-cta-copy p{
    max-width:520px;
    margin:24px 0 0;
    color:#566276;
    font-size:18px;
    line-height:1.65;
    font-weight:550;
}

.cs-cta-btn{
    display:inline-flex;
    align-items:center;
    margin-top:34px;
    min-height:52px;
    padding:0 28px;
    font-size:15px;
    font-weight:800;
    box-shadow:0 16px 34px rgba(15,27,45,.18);
    transition:transform .22s ease, box-shadow .22s ease;
}

.cs-cta-btn:hover{
    transform:translateY(-2px);
    box-shadow:
        0 18px 38px rgba(15,27,45,.20),
        0 0 0 4px var(--client-accent-soft);
}

@media (max-width:760px){
    .cs-cta-section{
        padding:72px 0 76px;
    }

    .cs-cta-copy h2{
        font-size:32px;
    }

    .cs-cta-copy p{
        font-size:16px;
        line-height:1.58;
    }
}

@media (max-width:640px){
    .cs-cta-section{
        padding:60px 0 64px;
    }

    .cs-cta-btn{
        width:100%;
        justify-content:center;
    }
}
