/* ============================================================
   UKASIS · Home page  —  namespaced under .home-page
   Industrial-editorial certification authority
   ============================================================ */

.home-page { background: var(--paper); color: var(--text); }
.home-page ::selection { background: var(--red); color: #fff; }
/* neutralise global `i{font-size:25px}` so icons size with their context
   (do NOT set font-weight here — Font Awesome relies on its own weights) */
.home-page i { font-size: inherit; }

.hp-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* ── Shared atoms ─────────────────────────────────────────── */
.hp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 22px;
}
.hp-eyebrow__bar {
    width: 34px; height: 2px;
    background: var(--red);
    display: inline-block;
}
.hp-eyebrow--light { color: #fff; }
.hp-eyebrow--light .hp-eyebrow__bar { background: var(--red); }

.hp-section-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
    margin-bottom: clamp(34px, 4vw, 60px);
}
.hp-section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.hp-section-title em { color: var(--red); font-style: normal; }
.hp-section-title--light { color: #fff; }
.hp-section-desc {
    color: var(--text-soft);
    font-size: 1.05rem;
    max-width: 46ch;
    padding-bottom: 6px;
}
.hp-stroke { color: var(--red); }

/* ── Buttons ──────────────────────────────────────────────── */
.hp-btn {
    --b: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    padding: 15px 24px;
    border-radius: 4px;
    color: #fff;
    background: var(--b);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s, box-shadow .3s, color .3s;
    white-space: nowrap;
}
.hp-btn i { font-size: 0.95em; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.hp-btn--red:hover { background: var(--red-deep); transform: translateY(-3px); box-shadow: 0 16px 30px -12px var(--red-low); }
.hp-btn--red:hover i { transform: translateX(4px); }
.hp-btn--lg { padding: 18px 30px; font-size: 1rem; }
.hp-btn--ghost-light {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28);
}
.hp-btn--ghost-light:hover { box-shadow: inset 0 0 0 1.5px #fff; transform: translateY(-3px); }
.hp-btn--light { background: #fff; color: var(--ink); }
.hp-btn--light:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(0,0,0,.5); }
.hp-btn--light:hover i { transform: translateX(4px); }

/* ── Top utility bar ──────────────────────────────────────── */
.hp-topbar {
    background: var(--ink);
    color: var(--text-onink-soft);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hp-topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.hp-topbar__left { display: flex; gap: 26px; }
.hp-topbar__left a, .hp-topbar__right a { color: var(--text-onink-soft); transition: color .25s; }
.hp-topbar__left a:hover { color: #fff; }
.hp-topbar__left i { color: var(--red); margin-right: 7px; }
.hp-topbar__right { display: flex; align-items: center; gap: 22px; }
.hp-topbar__badge { display: inline-flex; align-items: center; gap: 9px; letter-spacing: .04em; }
.hp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 var(--red-low); animation: hpPulse 2.4s infinite; }
@keyframes hpPulse { 0%{box-shadow:0 0 0 0 rgba(225,16,32,.55);} 70%{box-shadow:0 0 0 8px rgba(225,16,32,0);} 100%{box-shadow:0 0 0 0 rgba(225,16,32,0);} }
.hp-topbar__social { display: flex; gap: 14px; }
.hp-topbar__social a:hover { color: var(--red); }
.hp-lang { color: var(--text-onink-soft); font-size: .82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.hp-lang i { font-size: .65rem; }
.hp-lang:hover { color: #fff; }

/* ── Header / nav ─────────────────────────────────────────── */
.hp-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(246,245,243,.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s, background .3s, padding .3s;
}
.hp-header--scrolled { background: rgba(246,245,243,.92); box-shadow: 0 10px 30px -18px rgba(0,0,0,.25); }
.hp-header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; transition: height .3s; }
.hp-header--scrolled .hp-header__inner { height: 66px; }

.hp-logo { display: inline-flex; align-items: center; gap: 12px; }
.hp-logo__mark { display: inline-flex; line-height: 0; box-shadow: 0 8px 18px -10px var(--red-low); border-radius: 9px; }
.hp-logo__text { display: flex; flex-direction: column; line-height: 1; }
.hp-logo__text strong { font-family: var(--font-display); font-weight: 800; font-size: 1.42rem; letter-spacing: -.01em; color: var(--ink); }
.hp-logo__text strong span { color: var(--red); }
.hp-logo__text small { font-size: .58rem; font-weight: 700; letter-spacing: .34em; color: var(--text-mute); margin-top: 3px; }

.hp-nav { display: flex; gap: 4px; align-items: center; }
.hp-nav__cta { display: none; }
.hp-nav a {
    position: relative;
    font-weight: 600;
    font-size: .96rem;
    color: var(--text);
    padding: 10px 14px;
    border-radius: 4px;
    transition: color .25s;
}
.hp-nav a::after {
    content: "";
    position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 2px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.hp-nav a:hover { color: var(--red); }
.hp-nav a:hover::after { transform: scaleX(1); }

.hp-header__actions { display: flex; align-items: center; gap: 14px; }
.hp-icon-btn {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    color: var(--ink);
    box-shadow: inset 0 0 0 1.5px var(--line);
    transition: background .25s, color .25s, box-shadow .25s;
}
.hp-icon-btn:hover { background: var(--ink); color: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }
.hp-header__cta i { font-size: .9em; }

.hp-burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; justify-content: center; align-items: center; }
.hp-burger span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.hp-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hp-burger.is-open span:nth-child(2) { opacity: 0; }
.hp-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hp-hero {
    position: relative;
    height: clamp(560px, 84vh, 800px);
    background: var(--ink);
    color: var(--text-onink);
    overflow: hidden;
}
.hp-hero__viewport { position: absolute; inset: 0; }

.hp-hero__slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 1s ease;
}
.hp-hero__slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

.hp-hero__media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    will-change: transform;
}
.hp-hero__slide.is-active .hp-hero__media { animation: hpKenBurns 8s ease-out forwards; }
@keyframes hpKenBurns { from { transform: scale(1.14); } to { transform: scale(1.02); } }

.hp-hero__slide::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(14,14,18,.34) 0%, rgba(14,14,18,.18) 38%, rgba(14,14,18,.72) 100%),
        radial-gradient(78% 62% at 50% 46%, rgba(14,14,18,.46), transparent 72%);
}

.hp-hero__content {
    position: relative; z-index: 3;
    text-align: center;
    max-width: 1040px;
}
.hp-hero__content .hp-eyebrow { color: #fff; }
.hp-eyebrow--center { justify-content: center; }

.hp-hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 5.6vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 auto 24px;
    max-width: 18ch;
    text-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.hp-hero__title .hp-stroke {
    color: var(--red-bright);
    -webkit-text-stroke: 0;
    text-stroke: 0;
}
.hp-hero__lead {
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,.82);
    max-width: 60ch;
    margin: 0 auto 36px;
}
.hp-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* per-slide content reveal */
.hp-hero__content > * { opacity: 0; transform: translateY(28px); }
.hp-hero__slide.is-active .hp-hero__content > * { animation: hpHeroIn .85s cubic-bezier(.2,.7,.2,1) forwards; }
.hp-hero__slide.is-active .hp-hero__content > *:nth-child(1) { animation-delay: .15s; }
.hp-hero__slide.is-active .hp-hero__content > *:nth-child(2) { animation-delay: .27s; }
.hp-hero__slide.is-active .hp-hero__content > *:nth-child(3) { animation-delay: .39s; }
.hp-hero__slide.is-active .hp-hero__content > *:nth-child(4) { animation-delay: .51s; }
@keyframes hpHeroIn { to { opacity: 1; transform: none; } }

/* arrows */
.hp-hero__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 6;
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center;
    color: #fff; font-size: 1rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    transition: background .3s, border-color .3s, transform .3s;
}
.hp-hero__arrow:hover { background: var(--red); border-color: var(--red); }
.hp-hero__arrow--prev { left: clamp(12px, 3vw, 36px); }
.hp-hero__arrow--next { right: clamp(12px, 3vw, 36px); }
.hp-hero__arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.hp-hero__arrow--next:hover { transform: translateY(-50%) translateX(3px); }

/* bottom UI: counter + dots */
.hp-hero__ui {
    position: absolute; left: 50%; transform: translateX(-50%);
    bottom: clamp(26px, 5vh, 46px); z-index: 6;
    display: flex; align-items: center; gap: 22px;
}
.hp-hero__counter { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: .95rem; }
.hp-hero__counter i { width: 26px; height: 1.5px; background: rgba(255,255,255,.45); }
.hp-hero__counter #hpSlideNo { color: var(--red-bright); }
.hp-hero__total { color: rgba(255,255,255,.5); }
.hp-hero__dots { display: flex; gap: 10px; }
.hp-hero__dots button {
    width: 30px; height: 4px; border-radius: 100px;
    background: rgba(255,255,255,.28);
    transition: background .3s, width .3s;
}
.hp-hero__dots button.is-active { width: 46px; background: var(--red); }

/* autoplay progress line pinned to hero bottom */
.hp-hero__progress { position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: rgba(255,255,255,.14); z-index: 6; }
.hp-hero__progress span { display: block; height: 100%; width: 0; background: var(--red); transform-origin: left; }

/* rotating seal (persistent brand mark, bottom-right) */
.hp-seal {
    position: absolute;
    right: clamp(18px, 4vw, 56px); bottom: clamp(56px, 9vh, 92px);
    width: clamp(96px, 11vw, 150px);
    aspect-ratio: 1;
    z-index: 6;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,.55));
}
.hp-seal svg { width: 100%; height: 100%; }
.hp-seal__core {
    position: absolute; inset: 0; margin: auto;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    color: #fff; font-size: 1.5rem;
}

/* ── APPLY CARDS ──────────────────────────────────────────── */
/* the inverted-corner cut is painted in the SECTION bg colour so it reads as a
   smooth concave notch — so the section bg must equal the notch colour (--paper)
   and the cards must carry NO border (a border would draw a line across the cut). */
.hp-apply { position: relative; z-index: 10; background: var(--paper); padding-top: clamp(52px, 7vw, 84px); }
.hp-apply__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hp-apply-card {
    position: relative;
    background: var(--white);
    border-radius: 18px;
    padding: 28px 28px 26px;
    min-height: 218px;
    display: flex; flex-direction: column;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    overflow: visible;
}
.hp-apply-card::before {
    content: ""; position: absolute; top: 0; left: 30px; right: 30px; height: 3px;
    background: var(--red); transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    border-radius: 3px;
}
.hp-apply-card:hover { transform: translateY(-8px); }
.hp-apply-card:hover::before { transform: scaleX(1); }
.hp-apply-card__no { position: absolute; top: 24px; right: 26px; font-family: var(--font-display); font-weight: 800; font-size: .9rem; color: var(--paper-2); }
.hp-apply-card__icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--red-wash); color: var(--red);
    font-size: 1.4rem; margin-bottom: 20px;
    transition: background .3s, color .3s, transform .3s;
}
.hp-apply-card:hover .hp-apply-card__icon { background: var(--red); color: #fff; transform: translateY(-2px); }
.hp-apply-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.01em; }
/* title may run full width, but the description must reserve the bottom-right
   notch column so no line ever slides under the inverted cut */
.hp-apply-card p { font-size: .9rem; color: var(--text-soft); line-height: 1.5; width: calc(100% - 58px); }
.hp-apply-card--accent { background: var(--ink); }
.hp-apply-card--accent h3 { color: #fff; }
.hp-apply-card--accent p { color: var(--text-onink-soft); }
.hp-apply-card--accent .hp-apply-card__no { color: rgba(255,255,255,.16); }
.hp-apply-card--accent .hp-apply-card__icon { background: rgba(255,255,255,.08); color: #fff; }
.hp-apply-card--accent:hover .hp-apply-card__icon { background: var(--red); }

/* arrow inside the inverted cut */
.hp-arrow {
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--red); color: #fff; font-size: 1rem;
    box-shadow: 0 10px 18px -8px var(--red-low);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s;
}
.hp-apply-card:hover .hp-arrow { transform: rotate(-45deg); background: var(--red-deep); }
/* fallback position when JS / InvertedRadius unavailable */
.hp-apply-card__cut:not([style]) { position: absolute; right: 22px; bottom: 22px; }

/* ── SERVICES (immersive image tiles) ─────────────────────── */
.hp-services { padding: clamp(70px, 9vw, 120px) 0; background: var(--paper); }
.hp-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hp-svc {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.18;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
    box-shadow: 0 26px 50px -34px rgba(20,20,26,.45);
    transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
}
.hp-svc:hover { transform: translateY(-10px); box-shadow: 0 50px 70px -34px rgba(20,20,26,.55); }

.hp-svc__media { position: absolute; inset: 0; overflow: hidden; }
.hp-svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.hp-svc:hover .hp-svc__media img { transform: scale(1.08); }
.hp-svc__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,14,18,.10) 0%, rgba(14,14,18,0) 26%, rgba(14,14,18,.55) 62%, rgba(14,14,18,.92) 100%);
    transition: background .5s;
}
.hp-svc:hover .hp-svc__media::after { background: linear-gradient(180deg, rgba(14,14,18,.20) 0%, rgba(14,14,18,.05) 26%, rgba(14,14,18,.66) 58%, rgba(225,16,32,.30) 100%); }

.hp-svc__body {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
    color: #fff;
}
.hp-svc__no {
    position: absolute; top: 22px; left: 24px;
    font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
    color: rgba(255,255,255,.55);
    -webkit-text-stroke: 1px rgba(255,255,255,.5); color: transparent;
}
.hp-svc h3 { font-size: 1.42rem; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -.01em; text-shadow: 0 6px 20px rgba(0,0,0,.4); }
.hp-svc p { font-size: .92rem; color: rgba(255,255,255,.82); line-height: 1.5; margin-bottom: 16px; max-width: 30ch; }
.hp-svc__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.hp-svc__chips span {
    font-size: .7rem; font-weight: 700; letter-spacing: .03em; color: #fff;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(4px);
    padding: 5px 11px; border-radius: 100px;
}
.hp-svc__link {
    display: inline-flex; align-items: center; gap: 11px;
    font-weight: 700; color: #fff; font-size: .92rem;
}
.hp-svc__link i {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--red); color: #fff; font-size: .82rem;
    display: grid; place-items: center;
    box-shadow: 0 10px 18px -8px var(--red-low);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), background .3s;
}
.hp-svc:hover .hp-svc__link i { background: var(--red-deep); transform: translateX(4px); }

/* ── WHY / STATS ──────────────────────────────────────────── */
.hp-why { background: var(--ink); color: var(--text-onink); padding: clamp(70px, 9vw, 120px) 0; overflow: hidden; }
.hp-why__inner { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hp-why__media { position: relative; border-radius: 20px; overflow: visible; }
.hp-why__media img { width: 100%; border-radius: 20px; display: block; box-shadow: 0 50px 80px -44px rgba(0,0,0,.8); border: 1px solid rgba(255,255,255,.08); }
.hp-why__badge {
    position: absolute; right: -18px; bottom: -22px;
    background: var(--red); color: #fff;
    border-radius: 16px; padding: 20px 26px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 26px 44px -22px var(--red-low);
}
.hp-why__badge strong { font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; line-height: 1; }
.hp-why__badge span { font-size: .82rem; line-height: 1.25; opacity: .92; }

.hp-why__lead { color: var(--text-onink-soft); font-size: 1.06rem; margin: 22px 0 30px; max-width: 52ch; }
.hp-why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 26px; margin-bottom: 42px; }
.hp-why__list li { display: flex; gap: 14px; align-items: flex-start; }
.hp-why__list i { color: var(--red); font-size: 1.15rem; margin-top: 3px; width: 22px; text-align: center; flex: none; }
.hp-why__list strong { display: block; color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.hp-why__list span { color: var(--text-onink-soft); font-size: .88rem; }

.hp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 32px; }
.hp-stat strong { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 3vw, 2.9rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.hp-stat span { font-size: .82rem; color: var(--text-onink-soft); margin-top: 8px; display: block; }

/* ── MARQUEE ──────────────────────────────────────────────── */
.hp-marquee { background: var(--red); overflow: hidden; padding: 22px 0; }
.hp-marquee__track {
    display: flex; align-items: center; gap: 30px;
    width: max-content;
    animation: hpMarquee 36s linear infinite;
}
.hp-marquee__track span { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 2.4vw, 2.1rem); color: #fff; letter-spacing: .01em; white-space: nowrap; }
.hp-marquee__track i { color: rgba(255,255,255,.55); font-style: normal; font-size: 1.1rem; }
@keyframes hpMarquee { to { transform: translateX(-50%); } }

/* ── PROCESS ──────────────────────────────────────────────── */
.hp-process { padding: clamp(70px, 9vw, 120px) 0; background: var(--paper); }
.hp-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; position: relative; }
.hp-steps::before { content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px); }
.hp-step { position: relative; padding-top: 64px; }
.hp-step__no {
    position: absolute; top: 0; left: 0;
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center;
    font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
    background: var(--white); color: var(--red);
    border: 1px solid var(--line);
    box-shadow: 0 12px 22px -16px rgba(0,0,0,.4);
    transition: background .3s, color .3s, transform .3s;
}
.hp-step:hover .hp-step__no { background: var(--red); color: #fff; transform: translateY(-3px); }
.hp-step h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; }
.hp-step p { font-size: .9rem; color: var(--text-soft); line-height: 1.5; }

/* ── SECTORS ──────────────────────────────────────────────── */
.hp-sectors { background: var(--ink); color: var(--text-onink); padding: clamp(70px, 9vw, 120px) 0; }
.hp-sectors__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.hp-sectors__lead { color: var(--text-onink-soft); font-size: 1.05rem; margin: 20px 0 30px; max-width: 40ch; }
.hp-sectors__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.hp-sectors__tags span {
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    color: var(--text-onink); padding: 12px 22px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,.14);
    transition: background .3s, color .3s, border-color .3s, transform .3s;
    cursor: default;
}
.hp-sectors__tags span:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.hp-cta { background: var(--red); color: #fff; padding: clamp(56px, 7vw, 88px) 0; position: relative; overflow: hidden; }
.hp-cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(80% 120% at 20% 0%, #000, transparent 70%); -webkit-mask-image: radial-gradient(80% 120% at 20% 0%, #000, transparent 70%); }
.hp-cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hp-cta .hp-eyebrow--light { color: rgba(255,255,255,.85); }
.hp-cta .hp-eyebrow--light .hp-eyebrow__bar { background: #fff; }
.hp-cta h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.02; color: #fff; letter-spacing: -.02em; }
.hp-cta .hp-stroke { color: transparent; -webkit-text-stroke: 2px #fff; text-stroke: 2px #fff; }
.hp-cta__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hp-cta__phone { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; display: inline-flex; align-items: center; gap: 10px; }
.hp-cta__phone i { font-size: 1rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.hp-footer { background: var(--ink); color: var(--text-onink-soft); padding-top: clamp(56px, 7vw, 84px); }
.hp-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.hp-logo--footer .hp-logo__text strong { color: #fff; }
.hp-footer__brand p { margin: 20px 0 22px; font-size: .92rem; line-height: 1.65; max-width: 34ch; }
.hp-footer__social { display: flex; gap: 12px; }
.hp-footer__social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.16); transition: background .25s, border-color .25s, transform .25s; }
.hp-footer__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.hp-footer__col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.hp-footer__col a { display: block; color: var(--text-onink-soft); font-size: .92rem; padding: 7px 0; transition: color .25s, padding-left .25s; }
.hp-footer__col a:hover { color: #fff; padding-left: 6px; }
.hp-footer__contact a { display: flex; gap: 11px; align-items: flex-start; }
.hp-footer__contact i { color: var(--red); margin-top: 4px; }
.hp-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; font-size: .85rem; flex-wrap: wrap; }
.hp-footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }
.hp-footer__legal a { color: var(--text-onink-soft); transition: color .25s; }
.hp-footer__legal a:hover { color: #fff; }

/* ── Back to top ──────────────────────────────────────────── */
.hp-totop {
    position: fixed; right: 26px; bottom: 26px; z-index: 150;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--red); color: #fff; font-size: 1rem;
    display: grid; place-items: center;
    box-shadow: 0 16px 30px -14px var(--red-low);
    opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
    transition: opacity .35s, transform .35s, background .25s;
}
.hp-totop.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.hp-totop:hover { background: var(--red-deep); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .hp-apply__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-services__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .hp-steps::before { display: none; }
    .hp-why__list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    /* full-screen overlay menu (no off-canvas → no horizontal scroll) */
    .hp-nav {
        position: fixed; inset: 0;
        background: var(--ink);
        display: flex; flex-direction: column; justify-content: flex-start;
        gap: 0;
        padding: 108px 9vw 40px;
        opacity: 0; visibility: hidden; pointer-events: none;
        transition: opacity .4s ease, visibility .4s ease;
        z-index: 185;
        overflow-y: auto;
        scrollbar-width: none;
    }
    .hp-nav::-webkit-scrollbar { width: 0; height: 0; }
    .hp-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
    .hp-nav a {
        color: #fff; width: 100%;
        font-family: var(--font-display); font-weight: 700;
        font-size: clamp(1.5rem, 6vw, 2rem); letter-spacing: -.01em;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        opacity: 0; transform: translateY(14px);
        transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1), color .25s;
    }
    .hp-nav a:hover { color: var(--red); }
    .hp-nav a::after { display: none; }
    .hp-nav.is-open a { opacity: 1; transform: none; }
    .hp-nav.is-open a:nth-child(1) { transition-delay: .06s; }
    .hp-nav.is-open a:nth-child(2) { transition-delay: .11s; }
    .hp-nav.is-open a:nth-child(3) { transition-delay: .16s; }
    .hp-nav.is-open a:nth-child(4) { transition-delay: .21s; }
    .hp-nav.is-open a:nth-child(5) { transition-delay: .26s; }
    .hp-nav.is-open a:nth-child(6) { transition-delay: .31s; }
    .hp-nav.is-open a:nth-child(7) { transition-delay: .36s; }
    .hp-nav a.hp-nav__cta {
        display: inline-flex; align-items: center; justify-content: center; gap: 10px;
        width: 100%; margin-top: auto;
        padding: 18px 24px; border-radius: 6px;
        font-family: var(--font-body); font-weight: 700; font-size: 1rem;
        color: #fff; background: var(--red); border-bottom: none;
    }
    .hp-nav.is-open a.hp-nav__cta { transition-delay: .42s; }

    /* CRITICAL: backdrop-filter on the header would make it a containing block
       for the position:fixed overlay, trapping it inside the header bar. Drop it
       on mobile so the overlay fills the whole viewport. */
    .hp-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(246,245,243,.95); }

    /* keep the logo + burger (close button) ABOVE the overlay — they are siblings
       of the overlay inside the header's stacking context, so they need a higher
       z-index than the overlay (185) or the overlay paints over the close button. */
    .hp-logo, .hp-header__actions { position: relative; z-index: 190; }

    /* header turns transparent/light-on-dark while the overlay is open */
    body.hp-nav-open .hp-header { background: transparent; box-shadow: none; border-color: transparent; }
    body.hp-nav-open .hp-logo__text strong { color: #fff; }
    body.hp-nav-open .hp-logo__text strong span { color: var(--red); }
    body.hp-nav-open .hp-burger { border-radius: 50%; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
    body.hp-nav-open .hp-burger span { background: #fff; }
    body.hp-nav-open .hp-icon-btn { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }

    .hp-burger { display: flex; }
    .hp-header__cta { display: none; }
    .hp-hero { height: clamp(540px, 86vh, 760px); }
    .hp-hero__arrow { width: 48px; height: 48px; }
    .hp-section-head { grid-template-columns: 1fr; gap: 18px; }
    .hp-why__inner { grid-template-columns: 1fr; }
    .hp-why__media { max-width: 560px; }
    .hp-sectors__inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .hp-topbar__left { gap: 16px; }
    .hp-topbar__badge, .hp-topbar__social { display: none; }
    .hp-apply__grid { grid-template-columns: 1fr; }
    .hp-services__grid { grid-template-columns: 1fr; }
    .hp-stats { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
    .hp-why__list { grid-template-columns: 1fr; }
    .hp-steps { grid-template-columns: 1fr; }
    .hp-cta__inner { flex-direction: column; align-items: flex-start; }
    .hp-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hp-footer__brand { grid-column: 1 / -1; }
    .hp-footer__bottom { flex-direction: column; align-items: flex-start; }
    .hp-hero__arrow { display: none; }
    .hp-seal { width: 84px; right: 14px; bottom: 64px; }
    .hp-hero__title { max-width: 16ch; }
}

@media (max-width: 420px) {
    .hp-footer__top { grid-template-columns: 1fr; }
    .hp-seal { display: none; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hp-marquee__track, .hp-seal svg, .hp-dot, .hp-hero__media { animation: none !important; }
    .hp-hero__content > * { opacity: 1 !important; transform: none !important; animation: none !important; }
    .hp-hero__slide.is-active .hp-hero__media { transform: scale(1.02); }
    * { scroll-behavior: auto !important; }
}
