:root {
    --pink: #ff66c3;
    --pink-deep: #e50078;
    --coral: #ff844a;
    --orange: #ff9d42;
    --yellow: #ffde59;
    --yellow-soft: #fff8d9;
    --ink: #201a23;
    --ink-soft: #4e4652;
    --muted: #766d78;
    --paper: #ffffff;
    --soft: #fff8fc;
    --line: rgba(50, 35, 48, .10);
    --shadow: 0 22px 60px rgba(89, 42, 70, .12);
    --shadow-soft: 0 12px 35px rgba(89, 42, 70, .08);
    --radius: 18px;
    --radius-lg: 28px;
    --gradient: linear-gradient(100deg, var(--pink) 0%, #ff879d 38%, #ffae6c 70%, var(--yellow) 100%);
    --gradient-deep: linear-gradient(115deg, #d90071 0%, #ff5e70 42%, #ff913f 75%, #ffc83d 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; background: #fff; color: var(--ink); font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
main { overflow: hidden; }

.container { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.section { padding: 92px 0; }
.soft-section { background: linear-gradient(180deg, #fff9fc 0%, #fffdf8 100%); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #d6197c; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 27px; height: 3px; border-radius: 99px; background: var(--gradient); }
.eyebrow.light { color: rgba(255,255,255,.84); }
.eyebrow.light > span { background: rgba(255,255,255,.9); }

h1, h2, h3, h4, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(3rem, 6vw, 5.65rem); line-height: 1.02; letter-spacing: -.055em; font-weight: 800; }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 3.65rem); line-height: 1.08; letter-spacing: -.04em; font-weight: 750; }
h3 { line-height: 1.25; letter-spacing: -.025em; }
p { color: var(--muted); }
.gradient-text { background: var(--gradient-deep); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn { min-height: 48px; padding: 12px 20px; border: 0; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: .9rem; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gradient-deep); color: #fff; box-shadow: 0 12px 27px rgba(236, 39, 123, .22); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(236, 39, 123, .28); filter: saturate(1.05); }
.btn-secondary { background: rgba(255,255,255,.9); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(50,35,48,.06); }
.btn-secondary:hover { border-color: rgba(255,102,195,.35); }
.btn-light { background: #fff; color: #d30a73; box-shadow: 0 12px 28px rgba(86, 24, 51, .16); }
.btn-lg { min-height: 56px; padding: 15px 24px; border-radius: 15px; font-size: .95rem; }
.text-link { display: inline-flex; gap: 8px; color: #d61579; font-weight: 700; }
.text-link span, .service-card a span, .footer-primary-link span { transition: transform .2s ease; }
.text-link:hover span, .service-card a:hover span, .footer-primary-link:hover span { transform: translateX(4px); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.90); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(62, 42, 58, .07); transition: box-shadow .2s ease, background .2s ease; }
.site-header.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 10px 30px rgba(55,35,49,.07); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-logo { width: 62px; height: 48px; object-fit: contain; object-position: center; }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 1.06rem; line-height: 1; letter-spacing: .06em; }
.brand-copy small { font-size: .58rem; color: var(--muted); letter-spacing: .13em; text-transform: uppercase; font-weight: 700; }
.primary-nav { display: flex; align-items: center; gap: 7px; margin-left: auto; }
.primary-nav > a:not(.btn), .nav-trigger { position: relative; min-height: 42px; padding: 9px 10px; display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; border-radius: 10px; font-size: .81rem; font-weight: 650; cursor: pointer; }
.primary-nav > a:not(.btn)::after, .nav-trigger::after { content: ''; position: absolute; left: 10px; right: 10px; bottom: 4px; height: 2px; border-radius: 99px; background: var(--gradient); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.primary-nav > a:not(.btn):hover::after, .nav-trigger:hover::after, .primary-nav > a.active::after, .nav-trigger.active::after { transform: scaleX(1); }
.nav-trigger svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.nav-item { position: relative; }
.nav-item.open .nav-trigger svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 13px); left: 50%; width: 390px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -6px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.open .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown > a { display: grid; gap: 2px; padding: 11px 12px; border-radius: 12px; transition: background .2s ease, transform .2s ease; }
.nav-dropdown > a:hover { background: #fff6fb; transform: translateX(2px); }
.nav-dropdown span { font-size: .81rem; font-weight: 700; }
.nav-dropdown small { color: var(--muted); font-size: .68rem; }
.nav-dropdown .dropdown-view-all { margin-top: 5px; display: flex; flex-direction: row; align-items: center; justify-content: space-between; color: #d21476; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; font-weight: 700; }
.nav-login { color: var(--ink-soft); }
.nav-cta { min-height: 44px; padding-inline: 17px; margin-left: 5px; }
.nav-toggle { display: none; width: 43px; height: 43px; padding: 9px; border-radius: 11px; border: 1px solid var(--line); background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: .2s ease; }

/* Hero */
.hero { position: relative; padding: 92px 0 76px; background: linear-gradient(180deg, #fff 0%, #fffafe 62%, #fffdf7 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; left: -12%; top: -180px; width: 52%; height: 430px; background: radial-gradient(circle, rgba(255,102,195,.15), transparent 69%); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(18px); opacity: .4; pointer-events: none; }
.hero-glow-one { width: 240px; height: 240px; right: 4%; top: 60px; background: rgba(255,222,89,.36); }
.hero-glow-two { width: 180px; height: 180px; left: 45%; bottom: 0; background: rgba(255,132,74,.15); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .9fr); align-items: center; gap: 64px; }
.hero-copy { max-width: 720px; }
.hero-lead { max-width: 690px; margin-bottom: 28px; color: #645a65; font-size: 1.07rem; line-height: 1.78; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 34px; padding-top: 23px; border-top: 1px solid var(--line); }
.trust-row > span { display: grid; gap: 2px; min-width: 0; padding-right: 14px; margin-right: 14px; border-right: 1px solid var(--line); }
.trust-row > span:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.trust-row strong { font-size: .82rem; }
.trust-row small { color: var(--muted); font-size: .64rem; line-height: 1.45; }
.hero-photo-card { position: relative; min-height: 585px; padding: 12px; border-radius: 34px; background: var(--gradient); box-shadow: 0 30px 80px rgba(122,45,88,.18); }
.hero-photo-card::before { content: ''; position: absolute; inset: 12px; border-radius: 25px; border: 1px solid rgba(255,255,255,.68); z-index: 2; pointer-events: none; }
.hero-photo-card > img { position: absolute; inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); object-fit: cover; object-position: 58% center; border-radius: 25px; }
.photo-gradient { position: absolute; inset: 12px; z-index: 1; border-radius: 25px; background: linear-gradient(180deg, transparent 55%, rgba(54,21,41,.38)); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; max-width: 250px; padding: 12px 14px; border-radius: 15px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 15px 38px rgba(52,34,46,.16); }
.floating-card > span:last-child { display: grid; gap: 1px; }
.floating-card strong { font-size: .75rem; }
.floating-card small { color: var(--muted); font-size: .6rem; line-height: 1.35; }
.floating-card-top { left: -28px; top: 72px; }
.floating-card-bottom { right: -26px; bottom: 46px; }
.mini-icon { width: 31px; height: 31px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; background: linear-gradient(135deg, #ffe4f5, #fff5c7); color: #d60972; font-weight: 800; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; background: #33bd75; box-shadow: 0 0 0 5px rgba(51,189,117,.13); }
.brand-strip { background: var(--gradient); }
.brand-strip-grid { min-height: 74px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; text-align: center; }
.brand-strip p { margin: 0; padding: 0 22px; color: #4b2631; font-size: .78rem; font-weight: 700; }
.brand-strip p + p { border-left: 1px solid rgba(85,42,48,.16); }

/* Home sections */
.section-heading-row { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,.65fr); align-items: end; gap: 58px; margin-bottom: 36px; }
.section-heading-row h2 { max-width: 760px; margin-bottom: 0; }
.section-heading-row > p { margin: 0 0 5px; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 300px; padding: 27px 24px 24px; border: 1px solid var(--line); border-radius: 21px; background: linear-gradient(180deg, #fff, #fffbfd); box-shadow: 0 10px 28px rgba(66,41,58,.045); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(255,102,195,.3); box-shadow: var(--shadow-soft); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, rgba(255,102,195,.13), rgba(255,222,89,.23)); color: #d61879; font-size: .72rem; font-weight: 800; }
.service-card h3 { margin: 19px 0 9px; font-size: 1.1rem; }
.service-card p { margin-bottom: 18px; font-size: .82rem; line-height: 1.7; }
.service-card a { margin-top: auto; color: #d21476; font-size: .76rem; font-weight: 750; display: inline-flex; gap: 7px; }

.process-grid { display: grid; grid-template-columns: .9fr 1.05fr; gap: 74px; align-items: center; }
.process-photo { position: relative; min-height: 600px; padding: 10px; border-radius: 30px; background: var(--gradient); box-shadow: var(--shadow); }
.process-photo img { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); border-radius: 22px; object-fit: cover; object-position: center; }
.process-photo-badge { position: absolute; left: 28px; right: 28px; bottom: 28px; padding: 17px 18px; display: grid; gap: 2px; border-radius: 16px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); box-shadow: 0 12px 30px rgba(42,27,36,.15); }
.process-photo-badge strong { font-size: .88rem; }
.process-photo-badge small { color: var(--muted); font-size: .68rem; }
.process-content > p { max-width: 660px; margin-bottom: 26px; line-height: 1.8; }
.process-steps { display: grid; gap: 17px; margin-bottom: 26px; }
.process-steps > div { display: grid; grid-template-columns: 43px 1fr; gap: 14px; align-items: start; }
.process-steps > div > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, #ffe1f3, #fff5c7); color: #d20e74; font-size: .72rem; font-weight: 800; }
.process-steps section { display: grid; gap: 2px; padding-top: 1px; }
.process-steps strong { font-size: .88rem; }
.process-steps small { color: var(--muted); font-size: .72rem; line-height: 1.55; }

.mission-section { padding-top: 0; background: #fff; }
.mission-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 52px 56px; border-radius: 30px; background: var(--gradient-deep); box-shadow: 0 28px 70px rgba(222,34,109,.22); }
.mission-card::before { content: 'JSC'; position: absolute; right: -25px; bottom: -76px; color: rgba(255,255,255,.06); font-size: 12rem; font-weight: 800; line-height: 1; letter-spacing: -.09em; }
.mission-card h2, .mission-card p { position: relative; z-index: 1; color: #fff; }
.mission-card h2 { margin-bottom: 0; font-size: clamp(2rem, 3.3vw, 3.1rem); }
.mission-card p { margin: 0; font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,.88); }

.value-grid { display: grid; grid-template-columns: 1fr .86fr; gap: 72px; align-items: center; }
.value-copy > p { max-width: 650px; line-height: 1.8; }
.check-list { display: grid; gap: 12px; margin-top: 26px; }
.check-list span { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: 13px; background: #fff9fc; border: 1px solid rgba(255,102,195,.12); font-size: .79rem; font-weight: 600; }
.check-list b { color: #dc1177; }
.value-photo { position: relative; min-height: 500px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.value-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.value-note { position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 17px; display: flex; align-items: center; gap: 14px; border-radius: 16px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); }
.value-note span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 12px; background: var(--gradient); color: #6c2b3e; font-size: .7rem; font-weight: 800; }
.value-note strong { font-size: .82rem; }

.cta-section { padding: 0 0 92px; }
.cta-card { position: relative; overflow: hidden; min-height: 255px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 32px; align-items: center; padding: 46px 52px; border-radius: 30px; background: var(--gradient-deep); color: #fff; box-shadow: 0 28px 70px rgba(222,34,109,.20); }
.cta-card::before, .cta-card::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); }
.cta-card::before { width: 260px; height: 260px; right: 18%; top: -190px; }
.cta-card::after { width: 150px; height: 150px; right: -50px; bottom: -75px; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { max-width: 780px; margin: 0 0 8px; color: #fff; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.cta-card p { max-width: 690px; margin: 0; color: rgba(255,255,255,.83); }

/* Page heroes */
.page-hero { position: relative; padding: 92px 0 82px; background: linear-gradient(180deg, #fff 0%, #fff9fc 100%); }
.page-hero::after { content: ''; position: absolute; right: -110px; top: -130px; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(255,222,89,.24), transparent 68%); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.78fr); gap: 72px; align-items: center; }
.page-hero h1 { max-width: 760px; font-size: clamp(2.8rem, 5.5vw, 5rem); }
.page-hero p { max-width: 690px; margin-bottom: 27px; font-size: 1rem; line-height: 1.85; }
.compact-hero { padding-bottom: 72px; }
.page-hero-art { display: grid; place-items: center; }
.gradient-panel { width: 100%; min-height: 405px; padding: 42px; border-radius: 30px; background: var(--gradient); color: #642c3e; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow); }
.gradient-panel span { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 19px; background: rgba(255,255,255,.52); border: 1px solid rgba(255,255,255,.65); font-size: 1rem; font-weight: 800; }
.gradient-panel strong { font-size: clamp(1.55rem, 3vw, 2.45rem); line-height: 1.2; letter-spacing: -.04em; }

/* Services page */
.detailed-services { display: grid; gap: 0; }
.detailed-service { scroll-margin-top: 110px; display: grid; grid-template-columns: 86px 1fr; gap: 28px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.detailed-service:first-child { padding-top: 0; }
.detailed-service:last-child { border-bottom: 0; padding-bottom: 0; }
.detail-number { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, #ffe0f2, #fff4c9); color: #cf1473; font-size: .78rem; font-weight: 800; }
.service-kicker { color: #d31777; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; font-weight: 800; }
.detailed-service h2 { margin: 6px 0 10px; font-size: clamp(1.8rem, 3vw, 2.75rem); }
.detailed-service p { max-width: 780px; margin-bottom: 20px; }
.task-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.task-tags span { padding: 8px 11px; border-radius: 999px; background: #fff8fc; border: 1px solid rgba(255,102,195,.15); color: #64545f; font-size: .7rem; font-weight: 600; }
.fit-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 64px; align-items: center; }
.fit-grid p { max-width: 680px; line-height: 1.8; }
.fit-card { padding: 28px; display: grid; gap: 12px; border-radius: 23px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.fit-card > strong { margin-bottom: 4px; }
.fit-card > span { position: relative; padding-left: 24px; color: var(--ink-soft); font-size: .78rem; }
.fit-card > span::before { content: '✓'; position: absolute; left: 0; color: #d41576; font-weight: 800; }
.fit-card .btn { margin-top: 8px; }

/* Why page */
.why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-stat-grid > div { min-height: 160px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(66,41,58,.045); }
.why-stat-grid > div:nth-child(1), .why-stat-grid > div:nth-child(4) { background: linear-gradient(135deg, #fff2fa, #fff8d8); }
.why-stat-grid strong { margin-bottom: 5px; font-size: 1rem; }
.why-stat-grid span { color: var(--muted); font-size: .7rem; line-height: 1.5; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principle-card { min-height: 245px; padding: 27px 25px; border-radius: 21px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(66,41,58,.04); }
.principle-card > span { color: #d41676; font-size: .7rem; font-weight: 800; }
.principle-card h3 { margin: 26px 0 9px; font-size: 1.18rem; }
.principle-card p { margin: 0; font-size: .78rem; line-height: 1.7; }
.comparison-section { background: var(--gradient-deep); color: #fff; }
.comparison-grid { display: grid; grid-template-columns: .82fr 1.1fr; gap: 72px; align-items: center; }
.comparison-grid h2 { color: #fff; }
.comparison-grid p { color: rgba(255,255,255,.78); }
.comparison-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.comparison-list > div { min-height: 150px; padding: 21px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 19px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.comparison-list span { color: rgba(255,255,255,.66); font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.comparison-list strong { font-size: .88rem; line-height: 1.45; }

/* About */
.about-logo-card { min-height: 380px; display: grid; place-items: center; padding: 36px; border-radius: 30px; background: var(--gradient); box-shadow: var(--shadow); }
.about-logo-card img { width: min(420px, 100%); filter: drop-shadow(0 18px 25px rgba(115,42,73,.13)); }
.mission-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.mission-layout blockquote { margin: 0; padding: 34px 36px; border-radius: 25px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); color: #3d3038; font-size: clamp(1.25rem, 2.2vw, 1.8rem); line-height: 1.65; font-weight: 600; letter-spacing: -.02em; }
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.about-values > div { min-height: 260px; padding: 26px; border-radius: 22px; border: 1px solid var(--line); background: #fff; }
.about-values span { color: #d31576; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.about-values h3 { margin: 37px 0 10px; font-size: 1.12rem; }
.about-values p { margin: 0; font-size: .77rem; line-height: 1.7; }
.statement-card { max-width: 940px; padding: 46px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.statement-card p { max-width: 800px; line-height: 1.8; }

/* Careers */
.career-photo { position: relative; min-height: 500px; padding: 10px; border-radius: 30px; background: var(--gradient); box-shadow: var(--shadow); }
.career-photo img { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); object-fit: cover; object-position: center; border-radius: 22px; }
.candidate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.candidate-grid > div { padding: 27px 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.candidate-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(135deg, #ffe0f2, #fff5c8); color: #d11174; font-weight: 800; }
.candidate-grid h3 { margin: 22px 0 8px; font-size: 1rem; }
.candidate-grid p { margin: 0; font-size: .76rem; line-height: 1.7; }

/* Forms and contact */
.form-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 68px; align-items: start; }
.form-layout > div > p { max-width: 600px; line-height: 1.8; }
.contact-card { padding: 30px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card label, .login-card label { display: grid; gap: 7px; color: #433a42; font-size: .74rem; font-weight: 700; }
.contact-card input, .contact-card select, .contact-card textarea, .login-card input { width: 100%; border: 1px solid rgba(68,47,61,.14); border-radius: 12px; background: #fffafc; padding: 13px 14px; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus, .login-card input:focus { border-color: rgba(255,102,195,.55); box-shadow: 0 0 0 4px rgba(255,102,195,.10); background: #fff; }
.contact-card textarea { resize: vertical; min-height: 125px; }
.form-submit { width: 100%; }
.form-note { margin: -3px 0 0; text-align: center; color: #948890; font-size: .64rem; }
.form-status { margin: 0; color: #bd146c; font-size: .72rem; font-weight: 700; text-align: center; }
.contact-summary { padding: 28px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: grid; gap: 14px; }
.contact-summary > span { color: #d61578; font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.contact-summary > div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; padding: 13px 0; border-top: 1px solid var(--line); }
.contact-summary b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(135deg, #ffe3f3, #fff3c3); color: #d11676; font-size: .7rem; }
.contact-summary p { margin: 0; display: grid; gap: 1px; }
.contact-summary strong { color: var(--ink); font-size: .82rem; }
.contact-summary small { font-size: .68rem; }
.contact-points { display: grid; gap: 11px; margin-top: 24px; }
.contact-points span { display: flex; gap: 9px; font-size: .78rem; font-weight: 600; }
.contact-points b { color: #d31575; }

/* Login */
.login-page .site-footer { margin-top: 0; }
.login-section { min-height: calc(100vh - 88px); padding: 70px 0 82px; background: linear-gradient(115deg, #d90573 0%, #ff6b77 38%, #ff9b46 70%, #ffde59 100%); }
.login-grid { display: grid; grid-template-columns: 1fr .76fr; gap: 60px; align-items: center; }
.login-story { color: #fff; padding: 25px 0; }
.login-story h1 { max-width: 690px; color: #fff; font-size: clamp(2.8rem, 5.3vw, 5.1rem); }
.login-story > p { max-width: 610px; color: rgba(255,255,255,.87); font-size: 1rem; }
.login-story-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.login-story-points span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: .7rem; font-weight: 600; }
.login-card { max-width: 500px; justify-self: end; width: 100%; padding: 34px; border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: 0 28px 70px rgba(89,31,55,.22); }
.login-logo { width: 86px; height: 64px; object-fit: contain; margin-bottom: 10px; }
.login-kicker { color: #d11574; font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.login-card h2 { margin: 5px 0 5px; font-size: 2rem; }
.login-card > p { margin-bottom: 22px; font-size: .76rem; }
.login-card form { display: grid; gap: 15px; }
.login-options { display: flex; justify-content: space-between; gap: 15px; align-items: center; color: var(--muted); font-size: .67rem; }
.login-card .checkbox-label { display: flex; align-items: center; gap: 7px; font-size: .67rem; color: var(--muted); font-weight: 500; }
.checkbox-label input { width: 14px; height: 14px; padding: 0; }
.back-link { margin-top: 20px; display: inline-block; color: #8d7e88; font-size: .7rem; font-weight: 600; }

/* Legal */
.legal-hero { padding: 82px 0 56px; background: linear-gradient(180deg, #fff, #fff9fc); }
.legal-hero h1 { margin-bottom: 10px; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.legal-hero p { margin: 0; }
.legal-section { padding-top: 62px; }
.legal-copy { max-width: 860px; }
.legal-copy h2 { margin: 38px 0 11px; font-size: 1.5rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { line-height: 1.85; }
.legal-note { margin-top: 36px; padding: 20px; border-radius: 16px; background: #fff8db; border: 1px solid rgba(212,170,18,.18); color: #705f2d; font-size: .76rem; line-height: 1.7; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding: 64px 0 24px; background: linear-gradient(120deg, #bf0a65 0%, #e9276e 31%, #ff724f 69%, #f7b53f 100%); color: #fff; }
.site-footer::before { content: 'JSC'; position: absolute; right: -28px; bottom: -63px; color: rgba(255,255,255,.055); font-size: 13rem; line-height: 1; letter-spacing: -.09em; font-weight: 800; pointer-events: none; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 42px; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; }
.footer-logo-mark { width: 67px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.95); }
.footer-logo-mark img { width: 60px; height: 45px; object-fit: contain; }
.footer-logo > span:last-child { display: grid; gap: 2px; }
.footer-logo strong { color: #fff; font-size: 1.24rem; letter-spacing: .06em; line-height: 1; }
.footer-logo small { color: rgba(255,255,255,.72); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; }
.footer-brand p { max-width: 340px; margin: 18px 0 14px; color: rgba(255,255,255,.78); font-size: .78rem; line-height: 1.75; }
.footer-primary-link { color: #fff; display: inline-flex; gap: 7px; font-size: .75rem; font-weight: 800; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid h4 { margin: 3px 0 15px; color: rgba(255,255,255,.94); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid > div:not(.footer-brand) a { margin-bottom: 9px; color: rgba(255,255,255,.76); font-size: .73rem; transition: color .2s ease, transform .2s ease; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; transform: translateX(2px); }
.footer-bottom { position: relative; z-index: 1; margin-top: 44px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.18); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.66); font-size: .64rem; }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s cubic-bezier(.22,.61,.36,1), transform .72s cubic-bezier(.22,.61,.36,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
    .container { width: min(100% - 36px, 1180px); }
    .brand-copy { display: none; }
    .primary-nav { gap: 2px; }
    .primary-nav > a:not(.btn), .nav-trigger { padding-inline: 8px; font-size: .77rem; }
    .nav-cta { padding-inline: 13px; }
    .hero-grid { grid-template-columns: minmax(0,1fr) 420px; gap: 46px; }
    .hero-photo-card { min-height: 535px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { min-height: 260px; }
    .about-values, .candidate-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
    html { scroll-padding-top: 82px; }
    .nav-wrap { min-height: 78px; }
    .brand-logo { width: 58px; height: 44px; }
    .nav-toggle { display: flex; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .primary-nav { position: fixed; top: 78px; left: 18px; right: 18px; display: grid; gap: 2px; max-height: calc(100vh - 96px); overflow-y: auto; padding: 10px; background: rgba(255,255,255,.99); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .22s ease; }
    .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .primary-nav > a:not(.btn), .nav-trigger, .nav-cta { width: 100%; min-height: 46px; justify-content: space-between; padding: 12px 13px; margin: 0; border-radius: 11px; font-size: .82rem; }
    .primary-nav > a:not(.btn)::after, .nav-trigger::after { display: none; }
    .primary-nav > a:not(.btn):hover, .primary-nav > a.active, .nav-trigger:hover, .nav-trigger.active { background: #fff5fa; }
    .nav-item { width: 100%; }
    .nav-dropdown { position: static; width: 100%; max-height: 0; overflow: hidden; padding: 0 6px; border: 0; box-shadow: none; border-radius: 12px; opacity: 0; visibility: hidden; transform: none; transition: max-height .3s ease, opacity .2s ease, padding .2s ease; }
    .nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 0; visibility: hidden; max-height: 0; padding: 0 6px; }
    .nav-item.open .nav-dropdown { max-height: 500px; padding: 6px; opacity: 1; visibility: visible; }
    .nav-item.open .nav-dropdown, .nav-item.open:hover .nav-dropdown, .nav-item.open:focus-within .nav-dropdown { transform: none; }
    .nav-dropdown::before { display: none; }
    .hero { padding-top: 58px; }
    .hero-grid, .page-hero-grid, .process-grid, .value-grid, .fit-grid, .comparison-grid, .mission-layout, .form-layout, .login-grid { grid-template-columns: 1fr; gap: 46px; }
    .hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }
    .hero .eyebrow { justify-content: center; }
    .hero-lead { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .trust-row { max-width: 680px; margin-inline: auto; margin-top: 34px; text-align: left; }
    .hero-visual { width: min(660px, 100%); margin-inline: auto; }
    .hero-photo-card { min-height: 620px; }
    .floating-card-top { left: 10px; }
    .floating-card-bottom { right: 10px; }
    .brand-strip-grid { min-height: 92px; }
    .section { padding: 76px 0; }
    .section-heading-row { grid-template-columns: 1fr; align-items: start; gap: 18px; }
    .section-heading-row > p { max-width: 700px; }
    .process-photo { min-height: 550px; width: min(620px,100%); }
    .mission-card { grid-template-columns: 1fr; gap: 24px; padding: 42px; }
    .page-hero { padding: 70px 0 68px; }
    .page-hero-art, .about-logo-card, .career-photo { width: min(620px,100%); }
    .why-stat-grid { width: min(650px,100%); }
    .principles-grid { grid-template-columns: repeat(2,1fr); }
    .comparison-list { max-width: 650px; }
    .mission-layout blockquote { max-width: 800px; }
    .form-layout > div { max-width: 720px; }
    .contact-card { max-width: 720px; width: 100%; }
    .login-story { text-align: center; }
    .login-story h1, .login-story > p { margin-inline: auto; }
    .login-story .eyebrow { justify-content: center; }
    .login-story-points { justify-content: center; }
    .login-card { justify-self: center; }
    .footer-grid { grid-template-columns: 1.3fr repeat(2,1fr); }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, 1180px); }
    .section { padding: 62px 0; }
    h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
    h2 { font-size: clamp(2rem, 10vw, 2.85rem); }
    .hero { padding: 46px 0 54px; }
    .hero-lead { font-size: .94rem; }
    .hero-actions { display: grid; }
    .hero-actions .btn { width: 100%; }
    .trust-row { grid-template-columns: 1fr; gap: 9px; border-top: 0; padding-top: 5px; }
    .trust-row > span { margin: 0; padding: 11px 13px; border: 1px solid var(--line) !important; border-radius: 13px; background: rgba(255,255,255,.76); }
    .hero-photo-card { min-height: 445px; border-radius: 25px; padding: 9px; }
    .hero-photo-card > img, .photo-gradient, .hero-photo-card::before { inset: 9px; border-radius: 18px; }
    .hero-photo-card > img { width: calc(100% - 18px); height: calc(100% - 18px); }
    .floating-card { max-width: 210px; padding: 10px 11px; }
    .floating-card-top { top: 20px; left: 2px; }
    .floating-card-bottom { bottom: 18px; right: 2px; }
    .brand-strip { padding: 10px 0; }
    .brand-strip-grid { min-height: 0; grid-template-columns: 1fr; }
    .brand-strip p { padding: 9px 10px; }
    .brand-strip p + p { border-left: 0; border-top: 1px solid rgba(85,42,48,.14); }
    .services-grid, .principles-grid, .about-values, .candidate-grid, .comparison-list { grid-template-columns: 1fr; }
    .service-card { min-height: 0; }
    .process-photo { min-height: 420px; border-radius: 24px; }
    .process-photo img { border-radius: 17px; }
    .process-photo-badge { left: 20px; right: 20px; bottom: 20px; }
    .mission-card, .cta-card { padding: 30px 24px; border-radius: 24px; }
    .mission-card::before { font-size: 8rem; bottom: -38px; }
    .value-photo { min-height: 430px; }
    .cta-section { padding-bottom: 62px; }
    .cta-card { grid-template-columns: 1fr; align-items: start; }
    .cta-card .btn { width: 100%; }
    .page-hero { padding: 54px 0 58px; }
    .page-hero h1 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
    .gradient-panel { min-height: 320px; padding: 28px; }
    .detailed-service { grid-template-columns: 1fr; gap: 15px; padding: 34px 0; }
    .detail-number { width: 52px; height: 52px; border-radius: 15px; }
    .about-logo-card { min-height: 280px; padding: 22px; }
    .mission-layout blockquote { padding: 26px; font-size: 1.16rem; }
    .statement-card { padding: 28px 24px; }
    .career-photo { min-height: 400px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-card { padding: 23px; }
    .login-section { padding: 48px 0 60px; }
    .login-story h1 { font-size: clamp(2.5rem, 12vw, 3.8rem); }
    .login-card { padding: 27px 23px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 420px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
    .floating-card small { display: none; }
    .floating-card { max-width: 175px; }
}


/* 2026-08-30 polish pass: corporate header, mega menu, richer image callouts, and Why JSC spacing */
.brand { gap: 12px; }
.brand-logo { width: 64px; height: 50px; }
.brand-copy { gap: 3px; min-width: 128px; }
.brand-copy strong { font-size: .98rem; line-height: 1.05; letter-spacing: -.018em; font-weight: 800; }
.brand-copy small { font-size: .52rem; line-height: 1.25; color: #807581; letter-spacing: .12em; }

.nav-wrap { min-height: 92px; gap: 24px; }
.primary-nav { gap: 4px; }
.primary-nav > a:not(.btn), .nav-trigger { padding-inline: 9px; font-size: .78rem; font-weight: 650; }

.nav-cta {
    min-height: 43px;
    padding: 11px 15px;
    margin-left: 7px;
    border-radius: 12px;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .07em;
    white-space: nowrap;
}

/* Services mega menu */
.nav-dropdown.mega-menu {
    left: 50%;
    width: min(720px, calc(100vw - 40px));
    padding: 12px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 10px;
    border-color: rgba(58, 38, 54, .09);
    border-radius: 22px;
    background: rgba(255,255,255,.985);
    box-shadow: 0 26px 70px rgba(58, 35, 52, .15);
    transform: translate(-34%, -8px);
}
.nav-item:hover .nav-dropdown.mega-menu,
.nav-item:focus-within .nav-dropdown.mega-menu,
.nav-item.open .nav-dropdown.mega-menu {
    transform: translate(-34%, 0);
}
.mega-menu-intro {
    min-height: 100%;
    padding: 23px 21px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,.75), transparent 36%),
        linear-gradient(145deg, #fff0f8 0%, #fff5ee 54%, #fff8d6 100%);
    border: 1px solid rgba(255,102,195,.12);
}
.mega-kicker {
    margin-bottom: 13px;
    color: #d41676;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .15em;
}
.mega-menu-intro > strong {
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.42;
    letter-spacing: -.025em;
}
.mega-menu-intro > p {
    margin: 9px 0 20px;
    color: #756a75;
    font-size: .68rem;
    line-height: 1.65;
}
.mega-all {
    width: 100%;
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(70, 45, 62, .10);
    color: #d41676;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .07em;
}
.mega-all > span { font-size: .9rem; transition: transform .2s ease; }
.mega-all:hover > span { transform: translateX(4px); }

.mega-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}
.nav-dropdown .mega-service-card {
    position: relative;
    min-height: 124px;
    padding: 17px 35px 16px 16px;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 11px;
    align-content: start;
    border: 1px solid rgba(64, 43, 59, .08);
    border-radius: 15px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-dropdown .mega-service-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, #fff 20%, #fff8fc 100%);
    border-color: rgba(230, 42, 128, .18);
    box-shadow: 0 12px 26px rgba(65, 42, 58, .07);
}
.mega-service-no {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffe1f2, #fff4c7);
    color: #cf1474;
    font-size: .58rem !important;
    font-weight: 800 !important;
}
.mega-service-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.mega-service-copy strong {
    color: var(--ink);
    font-size: .75rem;
    line-height: 1.35;
}
.mega-service-copy small {
    color: #807681;
    font-size: .61rem;
    line-height: 1.52;
}
.mega-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #d41676;
    font-size: .76rem !important;
    font-weight: 700 !important;
    opacity: .62;
    transition: transform .2s ease, opacity .2s ease;
}
.mega-service-card:hover .mega-arrow {
    transform: translate(2px, -2px);
    opacity: 1;
}

/* Premium process image callout */
.process-photo-badge {
    left: 26px;
    right: 26px;
    bottom: 25px;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.82);
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 42px rgba(42,27,36,.18);
}
.process-photo-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-deep);
}
.process-badge-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, #ffe0f2, #fff2c3);
    box-shadow: inset 0 0 0 1px rgba(224, 31, 116, .06);
}
.process-badge-mark svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #d71075;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.process-badge-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.process-photo-badge .process-badge-kicker {
    color: #d41576;
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .11em;
}
.process-photo-badge strong {
    color: var(--ink);
    font-size: .83rem;
    letter-spacing: -.01em;
}
.process-badge-meta {
    color: #7d727c;
    font-size: .6rem;
    line-height: 1.45;
}

/* Replace the generic JSC text tile with the actual brand mark */
.value-note {
    left: 22px;
    right: 22px;
    bottom: 22px;
    min-height: 78px;
    padding: 12px 16px;
    gap: 13px;
    border: 1px solid rgba(255,255,255,.8);
    background: rgba(255,255,255,.95);
    box-shadow: 0 16px 36px rgba(49, 31, 44, .14);
}
.value-note-logo {
    width: 62px;
    height: 52px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(145deg, #fff 0%, #fff8fb 100%);
    border: 1px solid rgba(60, 39, 55, .08);
}
.value-note-logo img {
    position: static;
    width: 54px;
    height: 44px;
    object-fit: contain;
}
.value-note-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.value-note-copy small {
    color: #d41676;
    font-size: .53rem;
    font-weight: 800;
    letter-spacing: .12em;
}
.value-note-copy strong {
    color: var(--ink);
    font-size: .78rem;
    line-height: 1.35;
}

/* Why JSC final CTA: more breathing room and clearer hierarchy */
.why-cta-section {
    padding: 94px 0 106px;
    background: linear-gradient(180deg, #fff 0%, #fffafc 100%);
}
.why-cta-card {
    min-height: 300px;
    padding: 54px 60px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 54px;
}
.why-cta-copy {
    max-width: 790px;
}
.why-cta-copy .eyebrow {
    margin-bottom: 17px;
}
.why-cta-card h2 {
    max-width: 780px;
    margin-bottom: 13px;
    line-height: 1.08;
}
.why-cta-card p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: .84rem;
    line-height: 1.72;
}
.why-cta-card .btn {
    min-height: 49px;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .075em;
    white-space: nowrap;
}

.footer-logo strong {
    letter-spacing: -.01em;
}

@media (max-width: 1100px) {
    .brand-copy { display: grid; }
    .brand-copy strong { font-size: .9rem; }
    .brand-copy small { font-size: .48rem; }
    .nav-dropdown.mega-menu { width: min(680px, calc(100vw - 34px)); transform: translate(-37%, -8px); }
    .nav-item:hover .nav-dropdown.mega-menu,
    .nav-item:focus-within .nav-dropdown.mega-menu,
    .nav-item.open .nav-dropdown.mega-menu { transform: translate(-37%, 0); }
}

@media (max-width: 960px) and (min-width: 881px) {
    .brand-copy { display: none; }
    .primary-nav > a:not(.btn), .nav-trigger { padding-inline: 7px; font-size: .74rem; }
    .nav-cta { padding-inline: 11px; font-size: .62rem; }
}

@media (max-width: 880px) {
    .nav-wrap { min-height: 80px; }
    .brand-logo { width: 59px; height: 45px; }
    .brand-copy { display: grid; min-width: 0; }
    .brand-copy strong { font-size: .9rem; }
    .brand-copy small { display: none; }

    .primary-nav { top: 80px; }
    .nav-dropdown.mega-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 5px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        border: 0;
        border-radius: 14px;
        box-shadow: none;
        background: transparent;
        transform: none;
        overflow: hidden;
    }
    .nav-item:hover .nav-dropdown.mega-menu,
    .nav-item:focus-within .nav-dropdown.mega-menu {
        max-height: 0;
        padding: 0 5px;
        opacity: 0;
        visibility: hidden;
        transform: none;
    }
    .nav-item.open .nav-dropdown.mega-menu,
    .nav-item.open:hover .nav-dropdown.mega-menu,
    .nav-item.open:focus-within .nav-dropdown.mega-menu {
        max-height: 72vh;
        padding: 7px 5px 10px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        transform: none;
    }
    .mega-menu-intro {
        min-height: auto;
        padding: 17px;
    }
    .mega-menu-intro > p { margin-bottom: 13px; }
    .mega-service-grid { grid-template-columns: 1fr 1fr; }
    .nav-dropdown .mega-service-card { min-height: 112px; }
    .nav-cta { letter-spacing: .06em; }

    .why-cta-card {
        padding: 44px 42px;
        gap: 30px;
    }
}

@media (max-width: 620px) {
    .brand-copy strong { font-size: .84rem; }
    .mega-service-grid { grid-template-columns: 1fr; }
    .nav-dropdown .mega-service-card { min-height: 96px; }
    .mega-menu-intro > strong { font-size: .92rem; }

    .process-photo-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 13px 14px;
    }
    .process-badge-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
    .process-badge-meta { font-size: .55rem; }

    .value-note {
        left: 16px;
        right: 16px;
        bottom: 16px;
        min-height: 70px;
        padding: 10px 12px;
    }
    .value-note-logo {
        width: 54px;
        height: 46px;
        flex-basis: 54px;
    }
    .value-note-logo img {
        width: 48px;
        height: 39px;
    }
    .value-note-copy strong { font-size: .7rem; }

    .why-cta-section { padding: 66px 0 72px; }
    .why-cta-card {
        min-height: 0;
        padding: 34px 26px;
        gap: 24px;
    }
    .why-cta-card .btn {
        width: auto;
        justify-self: start;
    }
}

/* 2026-08-30 v3 polish: premium service icons, corrected image note, and moving brand ribbon */

/* Brand ribbon */
.brand-strip {
    position: relative;
    overflow: hidden;
    background: linear-gradient(100deg, #f85ab8 0%, #ff7f97 34%, #ff9b72 62%, #ffd54d 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(104,46,61,.08);
}
.brand-ticker {
    width: 100%;
    overflow: hidden;
    padding: 0;
}
.brand-ticker-track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: jscTicker 34s linear infinite;
    will-change: transform;
}
.brand-ticker-group {
    min-height: 72px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.brand-ticker-group span {
    padding: 0 34px;
    color: #fff;
    font-size: .78rem;
    font-style: italic;
    font-weight: 650;
    letter-spacing: -.01em;
    white-space: nowrap;
    text-shadow: 0 1px 10px rgba(88,35,58,.14);
}
.brand-ticker-group i {
    color: rgba(255,255,255,.72);
    font-size: .72rem;
    font-style: normal;
}
@keyframes jscTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Premium desktop mega menu */
.nav-dropdown.mega-menu {
    left: 50%;
    width: min(900px, calc(100vw - 36px));
    max-height: calc(100vh - 118px);
    padding: 18px;
    display: block;
    border: 1px solid rgba(58,38,54,.09);
    border-radius: 26px;
    background:
        radial-gradient(circle at 7% 0%, rgba(255,102,195,.08), transparent 31%),
        radial-gradient(circle at 100% 100%, rgba(255,222,89,.11), transparent 34%),
        rgba(255,255,255,.99);
    box-shadow: 0 30px 80px rgba(50,31,45,.18), 0 4px 16px rgba(50,31,45,.05);
    transform: translate(-42%, -10px);
    overflow: auto;
}
.nav-item:hover .nav-dropdown.mega-menu,
.nav-item:focus-within .nav-dropdown.mega-menu,
.nav-item.open .nav-dropdown.mega-menu {
    transform: translate(-42%, 0);
}
.mega-menu-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding: 4px 6px 17px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(60,42,56,.08);
}
.mega-menu-heading > div {
    display: grid;
    gap: 4px;
}
.mega-menu-heading .mega-kicker {
    margin: 0;
    color: #d21476;
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .14em;
}
.mega-menu-heading strong {
    max-width: 560px;
    color: var(--ink);
    font-size: 1.04rem;
    line-height: 1.35;
    letter-spacing: -.025em;
}
.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 9px 11px;
    border-radius: 10px;
    color: #d21476;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    transition: background .2s ease, transform .2s ease;
}
.mega-view-all:hover {
    background: #fff3f9;
    transform: translateY(-1px);
}
.mega-view-all span { font-size: .85rem; }

.mega-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 12px;
}
.nav-dropdown .mega-service-card {
    position: relative;
    min-height: 100px;
    padding: 13px 36px 13px 13px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    align-content: center;
    border: 1px solid rgba(48,39,48,.085);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 5px 16px rgba(51,35,48,.035);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.nav-dropdown .mega-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(230,36,126,.18);
    background: linear-gradient(135deg, #fff 0%, #fff9fc 62%, #fffdf5 100%);
    box-shadow: 0 14px 30px rgba(66,40,58,.09);
}
.mega-icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(145deg, #fff, #f7f3ff);
    box-shadow: 0 9px 22px rgba(55,37,64,.12), inset 0 1px 0 rgba(255,255,255,.95);
    overflow: hidden;
}
.mega-icon::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 14px;
    background: radial-gradient(circle at 28% 20%, rgba(255,255,255,.96), rgba(255,255,255,.08) 36%, transparent 37%);
    pointer-events: none;
}
.mega-icon svg {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 3px 4px rgba(50,30,80,.18));
}
.mega-icon-admin { color: #6f45d9; background: linear-gradient(145deg, #f7f2ff, #e9ddff); }
.mega-icon-customer { color: #3179ed; background: linear-gradient(145deg, #eef7ff, #dcecff); }
.mega-icon-sales { color: #315fe9; background: linear-gradient(145deg, #eff5ff, #dbe7ff); }
.mega-icon-digital { color: #ed7b22; background: linear-gradient(145deg, #fff7eb, #ffe4c7); }
.mega-icon-executive { color: #d31e67; background: linear-gradient(145deg, #fff0f7, #ffd7e8); }
.mega-icon-finance { color: #20a75b; background: linear-gradient(145deg, #efffee, #d8f7d5); }
.mega-icon-marketing { color: #7b48d9; background: linear-gradient(145deg, #f8f1ff, #eadcff); }
.mega-icon-people { color: #65ad20; background: linear-gradient(145deg, #f4ffe9, #ddf6c8); }

.mega-service-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.mega-service-copy strong {
    color: #201a23;
    font-size: .78rem;
    line-height: 1.28;
    letter-spacing: -.018em;
}
.mega-service-copy small {
    color: #766e78;
    font-size: .62rem;
    line-height: 1.48;
}
.mega-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #d21476;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    opacity: .54;
    transition: transform .2s ease, opacity .2s ease;
}
.mega-service-card:hover .mega-arrow {
    transform: translate(3px, -50%);
    opacity: 1;
}

/* Correct the home image callout. Keep the actual logo and text horizontal. */
.value-note {
    left: 24px;
    right: 24px;
    bottom: 24px;
    min-height: 82px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255,255,255,.88);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 40px rgba(49,31,44,.15);
}
.value-note-logo {
    width: 70px;
    height: 54px;
    flex: 0 0 70px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.value-note-logo img {
    position: static;
    width: 66px;
    height: 50px;
    object-fit: contain;
}
.value-note > strong {
    display: block;
    min-width: 0;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -.012em;
}

/* Slightly richer onboarding overlay */
.process-photo-badge {
    min-height: 90px;
    padding: 15px 17px 15px 19px;
    border-radius: 19px;
    background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(255,250,252,.94));
}
.process-photo-badge::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    right: -34px;
    top: -46px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,222,89,.28), transparent 70%);
    pointer-events: none;
}
.process-badge-mark {
    background: linear-gradient(145deg, #fff4fa 0%, #ffe9f3 46%, #fff3bf 100%);
    box-shadow: 0 8px 20px rgba(213,16,113,.10), inset 0 1px 0 rgba(255,255,255,.9);
}
.process-photo-badge strong { font-size: .87rem; }
.process-badge-meta { font-size: .61rem; }

@media (max-width: 1100px) {
    .nav-dropdown.mega-menu {
        width: min(820px, calc(100vw - 28px));
        transform: translate(-46%, -10px);
    }
    .nav-item:hover .nav-dropdown.mega-menu,
    .nav-item:focus-within .nav-dropdown.mega-menu,
    .nav-item.open .nav-dropdown.mega-menu { transform: translate(-46%, 0); }
    .mega-service-copy small { font-size: .59rem; }
}

@media (max-width: 880px) {
    .nav-dropdown.mega-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 5px;
        display: block;
        border: 0;
        border-radius: 14px;
        box-shadow: none;
        background: transparent;
        transform: none;
        overflow: hidden;
    }
    .nav-item:hover .nav-dropdown.mega-menu,
    .nav-item:focus-within .nav-dropdown.mega-menu {
        max-height: 0;
        padding: 0 5px;
        opacity: 0;
        visibility: hidden;
        transform: none;
    }
    .nav-item.open .nav-dropdown.mega-menu,
    .nav-item.open:hover .nav-dropdown.mega-menu,
    .nav-item.open:focus-within .nav-dropdown.mega-menu {
        max-height: 72vh;
        padding: 8px 5px 12px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        transform: none;
    }
    .mega-menu-heading {
        align-items: center;
        padding: 14px 12px;
        border: 1px solid rgba(60,42,56,.08);
        border-radius: 14px;
        background: linear-gradient(135deg, #fff4fa, #fff9e3);
    }
    .mega-menu-heading strong { font-size: .88rem; }
    .mega-view-all { font-size: .57rem; }
    .mega-service-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .nav-dropdown .mega-service-card {
        min-height: 104px;
        grid-template-columns: 46px minmax(0,1fr);
        gap: 10px;
        padding: 11px 30px 11px 11px;
    }
    .mega-icon { width: 46px; height: 46px; border-radius: 14px; }
    .mega-icon::before { inset: 4px; border-radius: 11px; }
    .mega-icon svg { width: 29px; height: 29px; }
    .mega-service-copy strong { font-size: .7rem; }
    .mega-service-copy small { font-size: .56rem; }

    .brand-ticker-group { min-height: 64px; }
    .brand-ticker-group span { padding-inline: 26px; font-size: .73rem; }
}

@media (max-width: 620px) {
    .mega-menu-heading {
        align-items: flex-start;
        gap: 10px;
    }
    .mega-menu-heading strong { font-size: .8rem; }
    .mega-view-all { padding: 6px; }
    .mega-service-grid { grid-template-columns: 1fr; }
    .nav-dropdown .mega-service-card { min-height: 88px; }
    .mega-service-copy strong { font-size: .73rem; }
    .mega-service-copy small { font-size: .58rem; }

    .value-note {
        left: 16px;
        right: 16px;
        bottom: 16px;
        min-height: 70px;
        padding: 10px 13px;
        gap: 12px;
    }
    .value-note-logo { width: 58px; height: 46px; flex-basis: 58px; }
    .value-note-logo img { width: 56px; height: 43px; }
    .value-note > strong { font-size: .72rem; }

    .brand-ticker-track { animation-duration: 28s; }
    .brand-ticker-group { min-height: 58px; }
    .brand-ticker-group span { padding-inline: 20px; font-size: .69rem; }
}

@media (prefers-reduced-motion: reduce) {
    .brand-ticker-track { animation: none; }
}


/* JSC Staffing service specialization refresh */
.nav-dropdown.mega-menu {
    width: min(1040px, calc(100vw - 34px));
    transform: translate(-39%, -10px);
}
.nav-item:hover .nav-dropdown.mega-menu,
.nav-item:focus-within .nav-dropdown.mega-menu,
.nav-item.open .nav-dropdown.mega-menu {
    transform: translate(-39%, 0);
}
.mega-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-dropdown .mega-service-card {
    min-height: 116px;
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 14px 32px 14px 13px;
    gap: 12px;
}
.mega-service-copy strong {
    font-size: .74rem;
}
.mega-service-copy small {
    font-size: .59rem;
    line-height: 1.44;
}
.mega-icon-calls { color: #ed4c70; background: linear-gradient(145deg, #fff1f5, #ffdce5); }
.mega-icon-schedule { color: #7b49db; background: linear-gradient(145deg, #f8f2ff, #e9ddff); }
.mega-icon-emergency { color: #ea5c22; background: linear-gradient(145deg, #fff4eb, #ffe0cc); }
.mega-icon-dispatch { color: #2f76df; background: linear-gradient(145deg, #eff7ff, #daeaff); }
.mega-icon-crm { color: #1c9c74; background: linear-gradient(145deg, #effff9, #d5f7ea); }
.mega-icon-leads { color: #3764df; background: linear-gradient(145deg, #f0f5ff, #dce7ff); }
.mega-icon-staffing { color: #d51c70; background: linear-gradient(145deg, #fff0f7, #ffd9e9); }
.mega-icon-home { color: #db7b16; background: linear-gradient(145deg, #fff8eb, #ffe7c8); }

.about-story-copy {
    display: grid;
    gap: 18px;
    align-content: start;
}
.about-story-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.contact-info-card {
    padding: 28px;
    border: 1px solid rgba(55,38,52,.08);
    border-radius: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,222,89,.14), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(255,102,195,.09), transparent 38%),
        #fff;
    box-shadow: var(--shadow-soft);
}
.contact-info-kicker {
    display: block;
    margin-bottom: 7px;
    color: #d21476;
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .14em;
}
.contact-info-card h3 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 1.15rem;
    letter-spacing: -.03em;
}
.contact-info-row {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-top: 1px solid rgba(55,38,52,.08);
    color: inherit;
}
.contact-info-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #d21476;
    background: linear-gradient(145deg, #fff0f7, #fff5cd);
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
}
.contact-info-row > span:last-child {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.contact-info-row small,
.contact-info-secondary small {
    color: #8b7f89;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.contact-info-row strong {
    color: #241d24;
    font-size: .78rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.contact-info-secondary {
    margin-top: 14px;
    padding: 14px 15px;
    display: grid;
    gap: 5px;
    border-radius: 15px;
    background: #fff8fb;
    border: 1px solid #f5deea;
}
.contact-info-secondary a {
    color: #5e545d;
    font-size: .7rem;
    overflow-wrap: anywhere;
}
.contact-info-secondary a:hover {
    color: #d21476;
}
.footer-grid a[href^="mailto:"],
.footer-grid a[href^="tel:"] {
    overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
    .nav-dropdown.mega-menu {
        width: min(920px, calc(100vw - 28px));
        transform: translate(-45%, -10px);
    }
    .nav-item:hover .nav-dropdown.mega-menu,
    .nav-item:focus-within .nav-dropdown.mega-menu,
    .nav-item.open .nav-dropdown.mega-menu {
        transform: translate(-45%, 0);
    }
    .mega-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .nav-dropdown.mega-menu,
    .nav-item:hover .nav-dropdown.mega-menu,
    .nav-item:focus-within .nav-dropdown.mega-menu,
    .nav-item.open .nav-dropdown.mega-menu,
    .nav-item.open:hover .nav-dropdown.mega-menu,
    .nav-item.open:focus-within .nav-dropdown.mega-menu {
        transform: none;
    }
    .mega-service-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .mega-service-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        padding: 22px;
    }
}


/* 2026-08-30 v5 homepage refinement: shorter hero, readable ribbon, polished service cards */
.hero { padding: 82px 0 72px; }
.hero-copy { max-width: 650px; }
.hero-copy h1 { max-width: 650px; font-size: clamp(3rem, 5.25vw, 5rem); }
.hero-lead { max-width: 635px; margin-bottom: 26px; font-size: 1rem; line-height: 1.72; }
.hero-photo-card { min-height: 545px; }

.brand-ticker-group { min-height: 82px; }
.brand-ticker-group span {
    padding: 0 38px;
    font-size: clamp(.92rem, 1vw, 1.04rem);
    font-style: italic;
    font-weight: 700;
    letter-spacing: -.015em;
}
.brand-ticker-group i { font-size: 1rem; }
.brand-ticker-track { animation-duration: 39s; }

.services-grid { gap: 18px; }
.service-card {
    min-height: 285px;
    padding: 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,222,89,.12), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fffafd 100%);
}
.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff0f8 0%, #fff7da 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 8px 18px rgba(91,47,75,.08);
}
.service-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: #db1678;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card h3 { margin: 18px 0 8px; font-size: 1.08rem; }
.service-card p { margin-bottom: 20px; font-size: .76rem; line-height: 1.62; }
.service-card .service-action {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(224,22,120,.12);
    border-radius: 12px;
    background: linear-gradient(100deg, rgba(255,102,195,.10), rgba(255,222,89,.18));
    color: #c81070;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .08em;
    transition: transform .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease;
}
.service-card .service-action:hover {
    transform: translateY(-1px);
    color: #fff;
    background: var(--gradient-deep);
    box-shadow: 0 10px 22px rgba(229,0,120,.16);
}
.mission-card h2 { max-width: 580px; }
.value-copy h2 { max-width: 640px; }

@media (max-width: 1100px) {
    .hero-copy h1 { font-size: clamp(2.85rem, 5.4vw, 4.5rem); }
}
@media (max-width: 880px) {
    .hero { padding: 66px 0 62px; }
    .hero-photo-card { min-height: 500px; }
    .brand-ticker-group { min-height: 72px; }
    .brand-ticker-group span { padding: 0 28px; font-size: .9rem; }
}
@media (max-width: 600px) {
    .hero-copy h1 { font-size: clamp(2.55rem, 12vw, 3.5rem); }
    .hero-lead { font-size: .94rem; }
    .hero-photo-card { min-height: 430px; }
    .service-card { min-height: 0; }
}

/* 2026-08-30 v6 polish: cleaner hero, premium support badge, redesigned services page */
.hero {
    padding: 78px 0 68px;
    background:
        radial-gradient(ellipse at 12% 18%, rgba(255,102,195,.10) 0%, rgba(255,102,195,.035) 30%, transparent 58%),
        radial-gradient(ellipse at 88% 28%, rgba(255,222,89,.13) 0%, transparent 42%),
        linear-gradient(180deg, #fff 0%, #fffafd 62%, #fffdf8 100%);
}
.hero::before { display: none; }
.hero .container { width: min(1360px, calc(100% - 64px)); }
.hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(440px, .82fr);
    gap: 86px;
}
.hero-copy { max-width: 690px; }
.hero-copy h1 {
    max-width: 690px;
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 4.55vw, 4.85rem);
    line-height: 1.105;
    letter-spacing: -.052em;
}
.hero-title-line,
.hero-title-gradient { display: block; }
.hero-title-gradient { white-space: nowrap; padding-bottom: .04em; }
.hero-lead { max-width: 650px; }

.support-ready-card {
    left: -46px;
    top: 68px;
    width: 315px;
    max-width: 315px;
    min-height: 72px;
    padding: 12px 15px 12px 12px;
    gap: 13px;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 42px rgba(54,34,48,.16);
}
.support-ready-icon {
    position: relative;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    flex: 0 0 47px;
    border-radius: 15px;
    color: #c90e70;
    background:
        radial-gradient(circle at 28% 20%, rgba(255,255,255,.95), transparent 26%),
        linear-gradient(145deg, #ffd8f0 0%, #ffb7c4 48%, #ffe36f 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 8px 18px rgba(222,34,112,.14);
}
.support-ready-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.support-ready-icon .support-ready-spark {
    fill: #fff;
    stroke: #d20d72;
    stroke-width: 1.65;
}
.support-ready-copy {
    min-width: 0;
    display: grid !important;
    gap: 3px !important;
}
.support-ready-card strong {
    font-size: .8rem;
    line-height: 1.2;
    white-space: nowrap;
}
.support-ready-card small {
    font-size: .62rem;
    line-height: 1.3;
    white-space: nowrap;
}

.two-line-heading { max-width: none !important; }
.two-line-heading > span { display: block; white-space: nowrap; }

/* Services page hero */
.services-page-hero {
    padding: 82px 0 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 15%, rgba(255,222,89,.18), transparent 30%),
        radial-gradient(circle at 11% 50%, rgba(255,102,195,.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff9fc 100%);
}
.services-page-hero::after { display: none; }
.services-page-hero .container { width: min(1340px, calc(100% - 64px)); }
.services-hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(520px, .82fr);
    gap: 88px;
}
.services-hero-copy { max-width: 690px; }
.services-page-hero h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(3.2rem, 4.7vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.052em;
}
.services-page-hero p {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: .98rem;
    line-height: 1.75;
}
.services-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.services-command-card {
    position: relative;
    width: 100%;
    min-height: 505px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(58,40,53,.08);
    border-radius: 32px;
    background:
        radial-gradient(circle at 88% 8%, rgba(255,222,89,.22), transparent 29%),
        radial-gradient(circle at 9% 92%, rgba(255,102,195,.12), transparent 34%),
        rgba(255,255,255,.96);
    box-shadow: 0 28px 70px rgba(74,42,61,.12);
}
.services-command-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: var(--gradient);
}
.services-command-head,
.services-command-foot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.services-command-brand { display: flex; align-items: center; gap: 10px; }
.services-command-brand img { width: 48px; height: 38px; object-fit: contain; }
.services-command-brand div { display: grid; gap: 1px; }
.services-command-brand strong { font-size: .8rem; }
.services-command-brand small { color: var(--muted); font-size: .55rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.services-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f4fff8;
    border: 1px solid rgba(51,189,117,.18);
    color: #21764c;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .08em;
}
.services-live-pill i { width: 8px; height: 8px; border-radius: 50%; background: #33bd75; box-shadow: 0 0 0 4px rgba(51,189,117,.11); }
.services-command-title { display: grid; gap: 5px; margin: 36px 0 22px; }
.services-command-title small { color: #d31577; font-size: .65rem; font-weight: 800; letter-spacing: .13em; }
.services-command-title strong { max-width: 420px; font-size: clamp(1.8rem, 2.7vw, 2.55rem); line-height: 1.13; letter-spacing: -.04em; }
.services-command-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.services-command-item {
    min-height: 98px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(58,40,53,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 9px 24px rgba(76,43,63,.05);
}
.services-command-item > span:last-child { min-width: 0; display: grid; gap: 2px; }
.services-command-item strong { font-size: .72rem; line-height: 1.28; }
.services-command-item small { color: var(--muted); font-size: .58rem; }
.command-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 18px rgba(72,43,61,.08);
}
.command-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.command-icon-pink { color: #d50f76; background: linear-gradient(145deg, #ffe4f3, #ffd7e5); }
.command-icon-orange { color: #e75b2a; background: linear-gradient(145deg, #fff0e5, #ffd6b6); }
.command-icon-yellow { color: #b77900; background: linear-gradient(145deg, #fff9d6, #ffe795); }
.command-icon-coral { color: #d84857; background: linear-gradient(145deg, #ffe7e8, #ffc7b3); }
.services-command-foot {
    margin-top: 20px;
    padding: 15px 16px;
    justify-content: flex-start;
    border-radius: 17px;
    background: linear-gradient(100deg, rgba(255,102,195,.08), rgba(255,222,89,.14));
    border: 1px solid rgba(255,102,195,.09);
}
.services-command-foot > span:last-child { display: grid; gap: 2px; }
.services-command-foot strong { font-size: .7rem; }
.services-command-foot small { color: var(--muted); font-size: .57rem; }
.services-avatar-stack { min-width: 70px; display: flex; padding-left: 4px; }
.services-avatar-stack i { width: 29px; height: 29px; margin-left: -7px; border: 3px solid #fff; border-radius: 50%; background: linear-gradient(145deg, #ff66c3, #ffde59); box-shadow: 0 4px 10px rgba(92,49,75,.10); }
.services-avatar-stack i:nth-child(2) { background: linear-gradient(145deg, #ff8a71, #ffd159); }
.services-avatar-stack i:nth-child(3) { background: linear-gradient(145deg, #ffd65a, #ff8cc8); }

/* Services catalog */
.services-catalog-section {
    padding-top: 86px;
    background: linear-gradient(180deg, #fff 0%, #fffdfb 100%);
}
.services-catalog-heading {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(300px,.52fr);
    gap: 58px;
    align-items: end;
    margin-bottom: 38px;
}
.services-catalog-heading h2 { max-width: 780px; margin-bottom: 0; }
.services-catalog-heading > p { margin: 0 0 5px; line-height: 1.75; }
.service-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-detail-card {
    position: relative;
    scroll-margin-top: 118px;
    min-height: 330px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(55,37,51,.09);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,222,89,.10), transparent 35%),
        linear-gradient(180deg, #fff 0%, #fffbfd 100%);
    box-shadow: 0 13px 34px rgba(72,43,61,.055);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-detail-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    opacity: .72;
    background: var(--gradient);
}
.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224,22,120,.18);
    box-shadow: 0 20px 45px rgba(72,43,61,.09);
}
.service-detail-card:target {
    border-color: rgba(224,22,120,.34);
    box-shadow: 0 0 0 4px rgba(255,102,195,.08), 0 24px 52px rgba(128,45,86,.12);
}
.service-detail-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.service-detail-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 9px 20px rgba(76,43,62,.08);
}
.service-detail-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.icon-pink { color: #d41475; background: linear-gradient(145deg, #ffe6f4, #ffd6e7); }
.icon-orange { color: #e65d2e; background: linear-gradient(145deg, #fff0e3, #ffd6b1); }
.icon-yellow { color: #a96e00; background: linear-gradient(145deg, #fffbdc, #ffe58a); }
.icon-coral { color: #d8445a; background: linear-gradient(145deg, #ffe9ed, #ffc7b2); }
.service-detail-kicker { color: #bd146c; font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.service-detail-card h2 { margin: 0 0 10px; font-size: 1.42rem; line-height: 1.22; letter-spacing: -.035em; }
.service-detail-card p { min-height: 78px; margin-bottom: 19px; font-size: .76rem; line-height: 1.65; }
.service-detail-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.service-detail-tags span {
    padding: 7px 9px;
    border-radius: 999px;
    background: #fff7fb;
    border: 1px solid rgba(255,102,195,.13);
    color: #665660;
    font-size: .61rem;
    font-weight: 650;
}

.services-bottom-cta { padding-top: 0; }
.services-cta-card {
    position: relative;
    min-height: 260px;
    padding: 45px 50px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 36px;
    border-radius: 30px;
    background: var(--gradient-deep);
    box-shadow: 0 28px 70px rgba(222,34,109,.19);
}
.services-cta-card::after {
    content: '';
    position: absolute;
    width: 330px;
    height: 330px;
    right: 10%;
    top: -260px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}
.services-cta-card > * { position: relative; z-index: 1; }
.services-cta-card h2 { max-width: 780px; margin-bottom: 10px; color: #fff; }
.services-cta-card p { max-width: 700px; margin-bottom: 0; color: rgba(255,255,255,.84); }

@media (max-width: 1180px) {
    .hero .container,
    .services-page-hero .container { width: min(1180px, calc(100% - 48px)); }
    .hero-grid { grid-template-columns: minmax(0,1fr) 450px; gap: 54px; }
    .hero-copy h1 { font-size: clamp(3rem, 5.2vw, 4.45rem); }
    .support-ready-card { left: -24px; }
    .services-hero-grid { grid-template-columns: minmax(0,1fr) 490px; gap: 52px; }
    .services-page-hero h1 { font-size: clamp(3rem, 5vw, 4.45rem); }
}

@media (max-width: 980px) {
    .hero .container,
    .services-page-hero .container { width: min(760px, calc(100% - 44px)); }
    .hero-grid,
    .services-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-copy,
    .services-hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }
    .hero-copy h1,
    .services-page-hero h1 { max-width: 760px; margin-inline: auto; }
    .hero .eyebrow,
    .services-page-hero .eyebrow { justify-content: center; }
    .hero-lead,
    .services-page-hero p { margin-inline: auto; }
    .services-hero-actions { justify-content: center; }
    .support-ready-card { left: 22px; top: 48px; }
    .two-line-heading > span { white-space: normal; }
    .service-detail-grid { grid-template-columns: 1fr 1fr; }
    .services-catalog-heading { grid-template-columns: 1fr; gap: 18px; }
    .services-catalog-heading > p { max-width: 700px; }
}

@media (max-width: 680px) {
    .hero,
    .services-page-hero { padding: 50px 0 54px; }
    .hero .container,
    .services-page-hero .container { width: min(100% - 32px, 620px); }
    .hero-copy h1 {
        font-size: clamp(2.65rem, 12vw, 3.55rem);
        line-height: 1.08;
    }
    .hero-title-gradient { white-space: normal; }
    .support-ready-card {
        left: 15px;
        top: 28px;
        width: calc(100% - 30px);
        max-width: 320px;
    }
    .support-ready-card small { white-space: normal; }
    .services-page-hero h1 { font-size: clamp(2.65rem, 12vw, 3.65rem); line-height: 1.05; }
    .services-hero-actions { display: grid; width: 100%; }
    .services-hero-actions .btn { width: 100%; }
    .services-command-card { min-height: 0; padding: 20px; border-radius: 25px; }
    .services-command-head { align-items: flex-start; }
    .services-live-pill { font-size: .5rem; }
    .services-command-title { margin-top: 28px; }
    .services-command-grid { grid-template-columns: 1fr; }
    .services-command-item { min-height: 82px; }
    .services-command-foot { align-items: flex-start; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-card { min-height: 0; }
    .service-detail-card p { min-height: 0; }
    .services-cta-card { grid-template-columns: 1fr; padding: 36px 28px; }
    .services-cta-card .btn { width: 100%; }
}

/* =========================================================
   V7 HOME PROCESS ICONS + ABOUT PAGE SAAS POLISH
   ========================================================= */

/* Home process steps: replace plain numbers with distinct visual icons */
.process-steps-icons {
    gap: 14px;
}
.process-steps-icons .process-step {
    position: relative;
    grid-template-columns: 58px minmax(0,1fr);
    gap: 16px;
    align-items: center;
    padding: 12px 14px 12px 12px;
    border: 1px solid rgba(64,42,58,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 10px 28px rgba(76,40,62,.045);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.process-steps-icons .process-step:hover {
    transform: translateY(-2px);
    border-color: rgba(236,39,123,.18);
    box-shadow: 0 15px 34px rgba(76,40,62,.075);
}
.process-steps-icons .process-step::after {
    content: '';
    position: absolute;
    inset: auto 16px 0 86px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,102,195,.18), transparent);
}
.process-steps-icons .process-step:last-child::after { display: none; }
.process-steps-icons .process-step-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 10px 24px rgba(69,42,57,.08);
}
.process-steps-icons .process-step-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.process-step-icon-workflow { color: #ce1773; background: linear-gradient(145deg,#ffe5f3,#ffd5ea); }
.process-step-icon-role { color: #e45b34; background: linear-gradient(145deg,#fff0e5,#ffd9be); }
.process-step-icon-onboard { color: #ad7600; background: linear-gradient(145deg,#fffbdc,#ffe89d); }
.process-step-icon-rhythm { color: #d44b66; background: linear-gradient(145deg,#ffe8ee,#ffd4d9); }
.process-steps-icons section { gap: 3px; padding-top: 0; }
.process-steps-icons strong { font-size: .91rem; letter-spacing: -.015em; }
.process-steps-icons small { max-width: 620px; font-size: .71rem; line-height: 1.55; }

/* About page */
.about-page main { background: #fff; }
.about-saas-hero {
    position: relative;
    padding: 96px 0 86px;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 10%, rgba(255,102,195,.13), transparent 25%),
        radial-gradient(circle at 94% 12%, rgba(255,222,89,.18), transparent 24%),
        linear-gradient(180deg,#fff 0%,#fffafd 100%);
}
.about-saas-hero::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    left: -355px;
    bottom: -365px;
    border-radius: 50%;
    border: 1px solid rgba(255,102,195,.16);
    box-shadow: 0 0 0 54px rgba(255,102,195,.025), 0 0 0 108px rgba(255,222,89,.018);
}
.about-saas-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(500px, .9fr);
    gap: 76px;
    align-items: center;
}
.about-saas-copy h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(3.15rem,5.2vw,5.2rem);
    line-height: 1.02;
}
.about-saas-lead {
    max-width: 690px;
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.85;
}
.about-saas-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.about-capability-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}
.about-capability-pills span {
    padding: 7px 11px;
    border: 1px solid rgba(78,56,71,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: #685c66;
    font-size: .63rem;
    font-weight: 700;
    box-shadow: 0 7px 18px rgba(70,43,60,.035);
}

.about-ops-shell {
    position: relative;
    padding: 1px;
    border-radius: 34px;
    background: var(--gradient);
    box-shadow: 0 30px 78px rgba(114,54,84,.17);
}
.about-ops-shell::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    right: -30px;
    top: -34px;
    border-radius: 50%;
    background: linear-gradient(135deg,rgba(255,102,195,.24),rgba(255,222,89,.18));
    filter: blur(1px);
}
.about-ops-window {
    position: relative;
    z-index: 1;
    min-height: 515px;
    padding: 23px;
    overflow: hidden;
    border-radius: 33px;
    background: rgba(255,255,255,.965);
}
.about-ops-window::after {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    bottom: -95px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(255,222,89,.21),transparent 68%);
    pointer-events: none;
}
.about-ops-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(58,39,52,.08);
}
.about-ops-brand { display: flex; align-items: center; gap: 10px; }
.about-ops-logo {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(145deg,#fff3fa,#fff8d9);
}
.about-ops-logo img { width: 38px; height: 38px; object-fit: contain; }
.about-ops-brand > div { display: grid; gap: 1px; }
.about-ops-brand strong { font-size: .78rem; line-height: 1.2; }
.about-ops-brand small { color: var(--muted); font-size: .52rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.about-live-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 999px;
    background: #f0fff7;
    border: 1px solid rgba(49,176,107,.14);
    color: #27734a;
    font-size: .5rem;
    font-weight: 800;
    letter-spacing: .08em;
}
.about-live-status i { width: 7px; height: 7px; border-radius: 50%; background: #35c97b; box-shadow: 0 0 0 4px rgba(53,201,123,.11); }
.about-ops-headline { display: grid; gap: 5px; padding: 28px 2px 20px; }
.about-ops-headline > span { color: #cf1774; font-size: .59rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.about-ops-headline strong { font-size: 1.5rem; letter-spacing: -.035em; line-height: 1.15; }
.about-ops-headline small { max-width: 410px; color: var(--muted); font-size: .7rem; line-height: 1.55; }
.about-ops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-ops-card {
    min-height: 108px;
    display: grid;
    grid-template-columns: 45px minmax(0,1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(58,39,52,.075);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(65,42,56,.04);
}
.about-ops-card > div { display: grid; gap: 2px; }
.about-ops-card strong { font-size: .7rem; line-height: 1.35; }
.about-ops-card small { color: var(--muted); font-size: .54rem; line-height: 1.45; }
.about-ops-card > b {
    align-self: start;
    padding: 4px 6px;
    border-radius: 999px;
    background: #fff6fb;
    color: #c71970;
    font-size: .43rem;
    letter-spacing: .07em;
}
.about-mini-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 14px;
}
.about-mini-icon svg,
.about-feature-icon svg,
.about-coverage-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.about-mini-icon svg { width: 26px; height: 26px; }
.about-mini-pink { color:#cc1472; background:linear-gradient(145deg,#ffe8f4,#ffd7e9); }
.about-mini-orange { color:#e66034; background:linear-gradient(145deg,#fff0e5,#ffdcc2); }
.about-mini-yellow { color:#a56e00; background:linear-gradient(145deg,#fffbdc,#ffe99f); }
.about-mini-coral { color:#d54b64; background:linear-gradient(145deg,#ffe9ee,#ffd1d9); }
.about-ops-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    padding: 13px 14px;
    border-radius: 15px;
    background: linear-gradient(100deg,#fff5fb,#fff9e7);
}
.about-ops-footer > span { color: #594b55; font-size: .58rem; font-weight: 750; }
.about-ops-footer > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; }
.about-ops-footer i { padding: 4px 6px; border-radius: 999px; background:#fff; color:#7a6873; font-size:.48rem; font-style:normal; font-weight:650; }

.about-snapshot-section { padding: 0 0 32px; background: linear-gradient(180deg,#fffafd,#fff); }
.about-snapshot-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden;
    border: 1px solid rgba(58,39,52,.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(73,45,62,.07);
}
.about-snapshot-grid > div { min-height: 142px; padding: 25px 24px; border-right: 1px solid rgba(58,39,52,.07); }
.about-snapshot-grid > div:last-child { border-right: 0; }
.about-snapshot-grid strong { display: block; margin-bottom: 6px; font-size: .83rem; letter-spacing: -.015em; }
.about-snapshot-grid span { display: block; color: var(--muted); font-size: .65rem; line-height: 1.6; }

.about-model-section { padding-top: 88px; }
.about-model-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(450px,.82fr); gap: 84px; align-items: center; }
.about-model-copy h2 { max-width: 700px; }
.about-model-copy p { max-width: 690px; font-size: .9rem; line-height: 1.85; }
.about-model-copy p:last-child { margin-bottom: 0; }
.about-model-stack { display: grid; gap: 12px; }
.about-model-stack article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid rgba(58,39,52,.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(70,43,60,.045);
}
.about-feature-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #ce1773;
    background: linear-gradient(145deg,#ffe8f4,#fff4d8);
}
.about-feature-icon svg { width: 31px; height: 31px; }
.about-model-stack strong { display:block; margin:1px 0 4px; font-size:.86rem; }
.about-model-stack p { margin:0; font-size:.69rem; line-height:1.62; }

.about-coverage-section { position: relative; }
.about-coverage-section::before {
    content:'';
    position:absolute;
    width:460px;
    height:460px;
    right:-300px;
    top:-250px;
    border-radius:50%;
    border:1px solid rgba(255,102,195,.1);
}
.about-section-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(330px,.66fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 38px;
}
.about-section-heading h2 { max-width: 760px; margin-bottom: 0; }
.about-section-heading > p { max-width: 590px; margin:0; font-size:.85rem; line-height:1.8; }
.about-coverage-grid { position: relative; z-index: 1; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.about-coverage-grid article {
    min-height: 225px;
    padding: 23px;
    border:1px solid rgba(58,39,52,.08);
    border-radius:22px;
    background:rgba(255,255,255,.88);
    box-shadow:0 12px 32px rgba(71,44,61,.045);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.about-coverage-grid article:hover { transform:translateY(-3px); border-color:rgba(236,39,123,.18); box-shadow:0 18px 40px rgba(71,44,61,.075); }
.about-coverage-icon {
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    margin-bottom:28px;
    border-radius:16px;
    color:#cd1472;
    background:linear-gradient(145deg,#ffe7f4,#fff2cf);
}
.about-coverage-icon svg { width:29px; height:29px; }
.about-coverage-grid strong { display:block; margin-bottom:7px; font-size:.91rem; }
.about-coverage-grid p { margin:0; font-size:.69rem; line-height:1.65; }

.about-section-heading-centered { max-width:900px; margin-inline:auto; grid-template-columns:1fr; gap:14px; text-align:center; }
.about-section-heading-centered .eyebrow { justify-content:center; }
.about-section-heading-centered h2,
.about-section-heading-centered > p { margin-inline:auto; }
.about-principles-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.about-principles-grid article {
    position:relative;
    min-height:250px;
    overflow:hidden;
    padding:25px;
    border-radius:22px;
    border:1px solid rgba(58,39,52,.08);
    background:#fff;
}
.about-principles-grid article::after {
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    right:-60px;
    bottom:-60px;
    border-radius:50%;
    background:linear-gradient(135deg,rgba(255,102,195,.08),rgba(255,222,89,.11));
}
.about-principles-grid span { color:#d31878; font-size:.56rem; font-weight:800; letter-spacing:.12em; }
.about-principles-grid strong { display:block; margin:42px 0 8px; font-size:1rem; }
.about-principles-grid p { position:relative; z-index:1; margin:0; font-size:.68rem; line-height:1.65; }

.about-mission-section { padding-top: 18px; }
.about-mission-card {
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(330px,.62fr);
    gap:60px;
    align-items:center;
    padding:54px 58px;
    border-radius:32px;
    background:var(--gradient-deep);
    box-shadow:0 30px 74px rgba(218,37,108,.2);
}
.about-mission-card::before {
    content:'JSC';
    position:absolute;
    right:-35px;
    bottom:-94px;
    color:rgba(255,255,255,.055);
    font-size:14rem;
    font-weight:800;
    line-height:1;
    letter-spacing:-.1em;
}
.about-mission-card > * { position:relative; z-index:1; }
.about-mission-main h2 { max-width:780px; color:#fff; font-size:clamp(2.35rem,4vw,3.7rem); }
.about-mission-main p { max-width:760px; margin:0; color:rgba(255,255,255,.83); font-size:.85rem; line-height:1.8; }
.about-mission-side {
    padding:25px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:22px;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
}
.about-mission-side span { display:block; margin-bottom:18px; color:rgba(255,255,255,.72); font-size:.57rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.about-mission-side strong { display:block; margin-bottom:8px; color:#fff; font-size:1rem; line-height:1.45; }
.about-mission-side p { margin:0; color:rgba(255,255,255,.76); font-size:.68rem; line-height:1.7; }

.about-final-cta-section { padding-top:18px; padding-bottom:96px; }
.about-final-cta {
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:38px;
    align-items:center;
    padding:38px 42px;
    border:1px solid rgba(58,39,52,.08);
    border-radius:26px;
    background:linear-gradient(100deg,#fff7fb,#fffdf1);
    box-shadow:0 15px 42px rgba(69,43,58,.055);
}
.about-final-cta h2 { max-width:820px; margin-bottom:8px; font-size:clamp(2rem,3.4vw,3.15rem); }
.about-final-cta p { max-width:720px; margin:0; font-size:.78rem; line-height:1.7; }
.about-final-cta .btn { min-width:170px; }

@media (max-width: 1120px) {
    .about-saas-grid { grid-template-columns:minmax(0,1fr) 470px; gap:50px; }
    .about-ops-grid { grid-template-columns:1fr; }
    .about-ops-window { min-height:0; }
    .about-ops-card { min-height:84px; }
    .about-model-grid { gap:55px; }
    .about-principles-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 900px) {
    .about-saas-hero { padding:74px 0 70px; }
    .about-saas-grid,
    .about-model-grid,
    .about-mission-card,
    .about-final-cta { grid-template-columns:1fr; }
    .about-saas-copy { max-width:760px; margin-inline:auto; text-align:center; }
    .about-saas-copy .eyebrow { justify-content:center; }
    .about-saas-copy h1,
    .about-saas-lead { margin-inline:auto; }
    .about-saas-actions,
    .about-capability-pills { justify-content:center; }
    .about-ops-shell { width:min(650px,100%); margin-inline:auto; }
    .about-ops-grid { grid-template-columns:1fr 1fr; }
    .about-snapshot-grid { grid-template-columns:1fr 1fr; }
    .about-snapshot-grid > div:nth-child(2) { border-right:0; }
    .about-snapshot-grid > div:nth-child(-n+2) { border-bottom:1px solid rgba(58,39,52,.07); }
    .about-section-heading { grid-template-columns:1fr; gap:16px; }
    .about-coverage-grid { grid-template-columns:1fr 1fr; }
    .about-mission-card { gap:32px; }
    .about-final-cta { gap:24px; }
    .about-final-cta .btn { justify-self:start; }
}

@media (max-width: 680px) {
    .process-steps-icons .process-step { grid-template-columns:50px minmax(0,1fr); gap:12px; padding:10px; }
    .process-steps-icons .process-step-icon { width:50px; height:50px; border-radius:15px; }
    .process-steps-icons .process-step-icon svg { width:27px; height:27px; }
    .process-steps-icons strong { font-size:.82rem; }
    .process-steps-icons small { font-size:.66rem; }

    .about-saas-hero { padding:58px 0 52px; }
    .about-saas-grid { gap:42px; }
    .about-saas-copy h1 { font-size:clamp(2.55rem,12vw,3.65rem); line-height:1.05; }
    .about-saas-lead { font-size:.84rem; line-height:1.75; }
    .about-saas-actions { display:grid; width:100%; }
    .about-saas-actions .btn { width:100%; }
    .about-capability-pills { gap:6px; }
    .about-ops-window { padding:16px; border-radius:25px; }
    .about-ops-shell { border-radius:26px; }
    .about-ops-topbar { align-items:flex-start; }
    .about-live-status { font-size:.43rem; }
    .about-ops-grid { grid-template-columns:1fr; }
    .about-ops-card { grid-template-columns:43px minmax(0,1fr) auto; }
    .about-ops-footer { align-items:flex-start; flex-direction:column; }
    .about-ops-footer > div { justify-content:flex-start; }
    .about-snapshot-grid { grid-template-columns:1fr; }
    .about-snapshot-grid > div { min-height:0; padding:20px; border-right:0; border-bottom:1px solid rgba(58,39,52,.07); }
    .about-snapshot-grid > div:last-child { border-bottom:0; }
    .about-model-section { padding-top:68px; }
    .about-model-stack article { grid-template-columns:52px 1fr; padding:16px; }
    .about-feature-icon { width:52px; height:52px; border-radius:15px; }
    .about-feature-icon svg { width:27px; height:27px; }
    .about-coverage-grid,
    .about-principles-grid { grid-template-columns:1fr; }
    .about-coverage-grid article { min-height:0; }
    .about-principles-grid article { min-height:210px; }
    .about-mission-card { padding:38px 26px; border-radius:26px; }
    .about-mission-main h2 { font-size:clamp(2.15rem,10vw,3rem); }
    .about-final-cta { padding:30px 24px; }
    .about-final-cta .btn { width:100%; }
}

.about-principle-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #cf1774 !important;
    background: linear-gradient(145deg,#ffe8f4,#fff3d4);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 10px 22px rgba(77,45,63,.07);
}
.about-principle-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.about-principles-grid .about-principle-icon + strong { margin-top: 28px; }

/* =========================================================
   V8 ABOUT BALANCE + WHY JSC SAAS REDESIGN
   ========================================================= */

/* About: shorter hero, cleaner principle cards, balanced mission and CTA */
.about-hero-title {
    display: grid;
    gap: 0;
    max-width: 690px !important;
    font-size: clamp(3rem, 4.55vw, 4.55rem) !important;
    line-height: 1.015 !important;
}
.about-hero-title span { display: block; }

.about-principles-grid article {
    min-height: 220px;
    padding: 23px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(70,43,60,.035);
}
.about-principles-grid article::after { display: none !important; }
.about-principle-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.about-principle-head .about-principle-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 15px;
}
.about-principle-head .about-principle-icon svg { width: 26px; height: 26px; }
.about-principles-grid .about-principle-head strong {
    margin: 0 !important;
    font-size: 1rem;
    line-height: 1.25;
}
.about-principles-grid p { font-size: .7rem; line-height: 1.68; }
.about-principles-grid .about-principle-icon + strong { margin-top: 0; }

.about-mission-main h2 {
    max-width: 700px;
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.05vw, 2.9rem) !important;
    line-height: 1.08;
}
.about-mission-side { max-width: 430px; justify-self: end; }

.about-cta-two-line {
    display: grid;
    gap: 2px;
    max-width: 760px !important;
    font-size: clamp(1.7rem, 2.45vw, 2.35rem) !important;
    line-height: 1.12 !important;
}
.about-cta-two-line span { display: block; }
.about-final-cta { padding: 34px 38px; }
.about-final-cta p { max-width: 650px; }

/* Why JSC page */
.why-page main { background: #fff; }
.why-saas-hero {
    position: relative;
    padding: 92px 0 82px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff 0%, #fffafd 100%);
}
.why-saas-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 7% 16%, rgba(255,102,195,.12), transparent 24%),
        radial-gradient(circle at 92% 18%, rgba(255,222,89,.16), transparent 22%);
}
.why-saas-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,.92fr) minmax(500px,.88fr);
    gap: 72px;
    align-items: center;
}
.why-saas-copy h1 {
    max-width: 700px;
    margin-bottom: 22px;
    font-size: clamp(3rem,4.85vw,4.75rem);
    line-height: 1.02;
}
.why-saas-copy > p {
    max-width: 680px;
    margin-bottom: 28px;
    font-size: .98rem;
    line-height: 1.82;
}
.why-saas-actions { display:flex; flex-wrap:wrap; gap:12px; }
.why-saas-pills { display:flex; flex-wrap:wrap; gap:8px; margin-top:26px; }
.why-saas-pills span {
    padding: 7px 11px;
    border: 1px solid rgba(67,44,59,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    color: #6f626b;
    font-size: .61rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(70,43,60,.03);
}

.why-proof-panel {
    padding: 22px;
    border: 1px solid rgba(68,45,59,.09);
    border-radius: 30px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 30px 78px rgba(95,49,74,.13);
}
.why-proof-top {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding-bottom:17px;
    border-bottom:1px solid rgba(58,39,52,.08);
}
.why-proof-brand { display:flex; align-items:center; gap:10px; }
.why-proof-brand img {
    width:44px;
    height:44px;
    object-fit:contain;
    padding:5px;
    border-radius:13px;
    background:linear-gradient(145deg,#fff1f8,#fff7d7);
}
.why-proof-brand > div { display:grid; gap:1px; }
.why-proof-brand strong { font-size:.78rem; line-height:1.2; }
.why-proof-brand small { color:var(--muted); font-size:.5rem; letter-spacing:.08em; text-transform:uppercase; font-weight:700; }
.why-proof-status {
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:7px 9px;
    border-radius:999px;
    border:1px solid rgba(47,174,104,.14);
    background:#f2fff8;
    color:#257149;
    font-size:.49rem;
    font-weight:800;
    letter-spacing:.08em;
}
.why-proof-status i { width:7px; height:7px; border-radius:50%; background:#35c97b; box-shadow:0 0 0 4px rgba(53,201,123,.1); }
.why-proof-intro { display:grid; gap:5px; padding:26px 1px 18px; }
.why-proof-intro span { color:#cf1774; font-size:.57rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.why-proof-intro strong { max-width:430px; font-size:1.32rem; line-height:1.22; letter-spacing:-.03em; }
.why-proof-list { display:grid; gap:9px; }
.why-proof-list article {
    display:grid;
    grid-template-columns:48px minmax(0,1fr);
    gap:12px;
    align-items:center;
    padding:12px;
    border:1px solid rgba(58,39,52,.07);
    border-radius:16px;
    background:#fff;
}
.why-proof-icon,
.why-reason-head > span,
.why-capacity-icon {
    display:grid;
    place-items:center;
    color:#cf1774;
    background:linear-gradient(145deg,#ffe8f4,#fff3d4);
}
.why-proof-icon { width:48px; height:48px; border-radius:14px; }
.why-proof-icon svg,
.why-reason-head svg,
.why-capacity-icon svg {
    width:26px;
    height:26px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.05;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.why-proof-list article > div { display:grid; gap:2px; }
.why-proof-list strong { font-size:.74rem; }
.why-proof-list small { color:var(--muted); font-size:.56rem; line-height:1.48; }
.why-proof-foot { display:flex; flex-wrap:wrap; gap:6px; margin-top:15px; padding-top:14px; border-top:1px solid rgba(58,39,52,.07); }
.why-proof-foot span { padding:5px 8px; border-radius:999px; background:#fff7fb; color:#77656f; font-size:.49rem; font-weight:700; }

.why-reasons-section { padding-top: 96px; }
.why-section-heading {
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(330px,.64fr);
    gap:58px;
    align-items:end;
    margin-bottom:38px;
}
.why-section-heading h2 { max-width:780px; margin-bottom:0; }
.why-section-heading > p { max-width:570px; margin:0; font-size:.83rem; line-height:1.8; }
.why-reasons-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.why-reasons-grid article {
    min-height:230px;
    padding:23px;
    border:1px solid rgba(58,39,52,.08);
    border-radius:22px;
    background:#fff;
    box-shadow:0 12px 32px rgba(71,44,61,.04);
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.why-reasons-grid article:hover { transform:translateY(-3px); border-color:rgba(236,39,123,.18); box-shadow:0 18px 42px rgba(71,44,61,.07); }
.why-reason-head { display:flex; align-items:center; gap:13px; margin-bottom:22px; }
.why-reason-head > span { width:50px; height:50px; flex:0 0 50px; border-radius:15px; }
.why-reason-head h3 { margin:0; font-size:.98rem; }
.why-reasons-grid p { margin:0; font-size:.7rem; line-height:1.7; }

.why-capacity-section { position:relative; }
.why-capacity-grid { display:grid; grid-template-columns:minmax(430px,.86fr) minmax(0,1fr); gap:78px; align-items:center; }
.why-capacity-visual {
    padding:22px;
    border:1px solid rgba(58,39,52,.08);
    border-radius:28px;
    background:#fff;
    box-shadow:0 24px 65px rgba(77,43,63,.09);
}
.why-capacity-top { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:3px 3px 17px; border-bottom:1px solid rgba(58,39,52,.08); }
.why-capacity-top span { color:#cf1774; font-size:.58rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.why-capacity-top b { padding:6px 8px; border-radius:999px; background:#f0fff7; color:#28734b; font-size:.48rem; letter-spacing:.08em; }
.why-capacity-path { display:grid; gap:10px; padding-top:17px; }
.why-capacity-path article { display:grid; grid-template-columns:52px 1fr; gap:13px; align-items:center; padding:13px; border-radius:17px; background:linear-gradient(100deg,#fff7fb,#fffdf4); border:1px solid rgba(58,39,52,.06); }
.why-capacity-icon { width:52px; height:52px; border-radius:15px; }
.why-capacity-path article > div { display:grid; gap:2px; }
.why-capacity-path strong { font-size:.76rem; }
.why-capacity-path small { color:var(--muted); font-size:.57rem; line-height:1.5; }
.why-capacity-copy h2 { max-width:700px; }
.why-capacity-copy > p { max-width:690px; font-size:.88rem; line-height:1.82; }
.why-capacity-benefits { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:25px; }
.why-capacity-benefits div { padding:16px; border-radius:16px; border:1px solid rgba(58,39,52,.07); background:#fff; }
.why-capacity-benefits strong { display:block; margin-bottom:3px; font-size:.74rem; }
.why-capacity-benefits span { display:block; color:var(--muted); font-size:.58rem; line-height:1.5; }

.why-comparison-section { padding-top: 96px; }
.why-section-heading-compact { grid-template-columns:1fr; max-width:900px; }
.why-section-heading-compact h2 { max-width:850px; }
.why-comparison-table {
    overflow:hidden;
    border:1px solid rgba(58,39,52,.08);
    border-radius:25px;
    background:#fff;
    box-shadow:0 18px 48px rgba(73,45,62,.06);
}
.why-comparison-head,
.why-comparison-row { display:grid; grid-template-columns:1fr 1fr; }
.why-comparison-head { background:linear-gradient(100deg,#fff3fa,#fff9df); }
.why-comparison-head span { padding:17px 22px; color:#b41468; font-size:.64rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.why-comparison-head span + span { border-left:1px solid rgba(58,39,52,.08); }
.why-comparison-row { border-top:1px solid rgba(58,39,52,.075); }
.why-comparison-row p { margin:0; padding:21px 22px; font-size:.74rem; line-height:1.65; }
.why-comparison-row p + p { border-left:1px solid rgba(58,39,52,.075); background:#fffdf8; }
.why-comparison-row strong { color:#392d35; font-weight:650; }

.why-start-section { padding-top:18px; padding-bottom:96px; }
.why-start-card {
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:44px;
    align-items:center;
    padding:46px 50px;
    border-radius:30px;
    background:var(--gradient-deep);
    box-shadow:0 28px 70px rgba(222,34,109,.2);
}
.why-start-card::after {
    content:'JSC';
    position:absolute;
    right:-28px;
    bottom:-82px;
    color:rgba(255,255,255,.055);
    font-size:12rem;
    font-weight:800;
    line-height:1;
    letter-spacing:-.1em;
}
.why-start-card > * { position:relative; z-index:1; }
.why-start-copy h2 { max-width:780px; margin-bottom:10px; color:#fff; font-size:clamp(2rem,3.35vw,3.05rem); }
.why-start-copy p { max-width:720px; margin:0; color:rgba(255,255,255,.82); font-size:.78rem; line-height:1.75; }
.why-start-actions { display:grid; gap:10px; justify-items:center; }
.why-start-actions .btn { min-width:180px; }
.why-start-actions small { max-width:190px; color:rgba(255,255,255,.7); text-align:center; font-size:.54rem; line-height:1.5; }

@media (max-width:1120px) {
    .why-saas-grid { grid-template-columns:minmax(0,1fr) 470px; gap:48px; }
    .why-capacity-grid { gap:52px; }
    .about-hero-title { font-size:clamp(2.8rem,4.3vw,4.1rem)!important; }
}

@media (max-width:900px) {
    .about-hero-title { margin-inline:auto; }
    .about-mission-side { max-width:none; justify-self:stretch; }
    .about-cta-two-line { max-width:700px!important; }

    .why-saas-hero { padding:74px 0 70px; }
    .why-saas-grid,
    .why-capacity-grid,
    .why-start-card { grid-template-columns:1fr; }
    .why-saas-copy { max-width:760px; margin-inline:auto; text-align:center; }
    .why-saas-copy .eyebrow { justify-content:center; }
    .why-saas-copy h1,
    .why-saas-copy > p { margin-inline:auto; }
    .why-saas-actions,
    .why-saas-pills { justify-content:center; }
    .why-proof-panel { width:min(650px,100%); margin-inline:auto; }
    .why-section-heading { grid-template-columns:1fr; gap:16px; }
    .why-reasons-grid { grid-template-columns:1fr 1fr; }
    .why-capacity-visual { width:min(650px,100%); margin-inline:auto; }
    .why-start-card { gap:28px; }
    .why-start-actions { justify-items:start; }
}

@media (max-width:680px) {
    .about-hero-title { font-size:clamp(2.45rem,11.5vw,3.5rem)!important; }
    .about-principles-grid article { min-height:0; padding:20px; }
    .about-principle-head { margin-bottom:14px; }
    .about-mission-main h2 { font-size:clamp(1.9rem,8.6vw,2.65rem)!important; }
    .about-cta-two-line { display:block; font-size:clamp(1.55rem,8vw,2.15rem)!important; }
    .about-cta-two-line span { display:inline; }
    .about-cta-two-line span + span::before { content:' '; }

    .why-saas-hero { padding:58px 0 54px; }
    .why-saas-copy h1 { font-size:clamp(2.5rem,11.5vw,3.55rem); }
    .why-saas-copy > p { font-size:.84rem; line-height:1.75; }
    .why-saas-actions { display:grid; width:100%; }
    .why-saas-actions .btn { width:100%; }
    .why-proof-panel { padding:16px; border-radius:24px; }
    .why-proof-top { align-items:flex-start; }
    .why-proof-status { font-size:.42rem; }
    .why-proof-intro strong { font-size:1.16rem; }
    .why-proof-list article { grid-template-columns:44px minmax(0,1fr); padding:10px; }
    .why-proof-icon { width:44px; height:44px; border-radius:13px; }
    .why-reasons-grid { grid-template-columns:1fr; }
    .why-reasons-grid article { min-height:0; }
    .why-capacity-visual { padding:16px; border-radius:23px; }
    .why-capacity-path article { grid-template-columns:46px 1fr; padding:11px; }
    .why-capacity-icon { width:46px; height:46px; border-radius:13px; }
    .why-capacity-benefits { grid-template-columns:1fr; }
    .why-comparison-head { display:none; }
    .why-comparison-row { grid-template-columns:1fr; padding:16px 18px; gap:8px; }
    .why-comparison-row p { padding:0; border:0!important; background:transparent!important; }
    .why-comparison-row p:first-child::before { content:'BEFORE'; display:block; margin-bottom:4px; color:#a77f90; font-size:.5rem; font-weight:800; letter-spacing:.1em; }
    .why-comparison-row p + p::before { content:'WITH JSC'; display:block; margin-bottom:4px; color:#ce1773; font-size:.5rem; font-weight:800; letter-spacing:.1em; }
    .why-start-card { padding:36px 26px; border-radius:25px; }
    .why-start-copy h2 { font-size:clamp(1.9rem,9vw,2.7rem); }
    .why-start-actions { width:100%; }
    .why-start-actions .btn { width:100%; }
    .why-start-actions small { max-width:none; text-align:left; }
}

/* =========================================================
   JSC Hiring Portal v9
   Public jobs, role registration, employer, job seeker, admin
   ========================================================= */
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.btn-outline { background:#fff; color:var(--ink); border:1px solid rgba(50,35,48,.13); box-shadow:0 8px 22px rgba(50,35,48,.05); }
.btn-outline:hover { border-color:rgba(229,0,120,.28); box-shadow:0 12px 28px rgba(73,44,62,.09); }
.btn-dark { background:#241c25; color:#fff; box-shadow:0 12px 27px rgba(32,26,35,.16); }
.btn-dark:hover { box-shadow:0 16px 32px rgba(32,26,35,.22); }
.btn-ghost-light { background:rgba(255,255,255,.10); color:#fff; border:1px solid rgba(255,255,255,.32); }
.btn-ghost-light:hover { background:rgba(255,255,255,.17); }

/* Jobs hero and search */
.jobs-page { background:#fff; }
.jobs-hero { position:relative; overflow:hidden; padding:82px 0 72px; background:linear-gradient(180deg,#fff 0%,#fff9fc 65%,#fffdf6 100%); }
.jobs-hero::before { content:''; position:absolute; left:-9%; top:-160px; width:46%; height:440px; border-radius:50%; background:radial-gradient(circle,rgba(255,102,195,.17),transparent 68%); pointer-events:none; }
.jobs-hero::after { content:''; position:absolute; right:-8%; top:-140px; width:430px; height:430px; border-radius:50%; background:radial-gradient(circle,rgba(255,222,89,.26),transparent 68%); pointer-events:none; }
.jobs-hero-inner { position:relative; z-index:1; }
.jobs-hero-copy { max-width:850px; text-align:center; margin:0 auto 34px; }
.jobs-hero-copy .eyebrow { justify-content:center; }
.jobs-hero-copy h1 { margin-bottom:18px; font-size:clamp(3rem,5.4vw,5.1rem); }
.jobs-hero-copy p { max-width:760px; margin:0 auto; font-size:1rem; line-height:1.78; }
.job-search-bar { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:minmax(260px,1.35fr) minmax(210px,.8fr) minmax(165px,.58fr) auto; align-items:center; gap:0; padding:9px; border:1px solid rgba(62,42,58,.09); border-radius:20px; background:#fff; box-shadow:0 22px 60px rgba(82,45,66,.11); }
.job-search-field { position:relative; min-height:56px; display:flex; align-items:center; gap:10px; padding:0 16px; border-right:1px solid rgba(50,35,48,.09); }
.job-search-icon { width:24px; height:24px; display:grid; place-items:center; flex:0 0 24px; color:#d61879; }
.job-search-icon svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.job-search-field input { width:100%; min-width:0; border:0; outline:0; background:transparent; color:var(--ink); font-size:.82rem; }
.job-search-field input::placeholder { color:#a299a3; }
.job-search-select { min-height:56px; display:flex; align-items:center; padding:0 10px; }
.job-search-select select { width:100%; border:0; outline:0; background:#fff; color:#625865; font-size:.78rem; font-weight:600; }
.job-search-submit { min-height:54px; white-space:nowrap; padding-inline:23px; }
.jobs-hero-pills { display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin-top:20px; }
.jobs-hero-pills span { padding:7px 12px; border:1px solid rgba(61,42,58,.08); border-radius:999px; background:rgba(255,255,255,.82); color:#716773; font-size:.64rem; font-weight:650; }

/* Job listing cards */
.jobs-list-section { background:#fff; }
.jobs-section-heading { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(280px,.62fr); gap:60px; align-items:end; margin-bottom:34px; }
.jobs-section-heading h2 { max-width:720px; margin-bottom:0; }
.jobs-section-heading > p { margin:0 0 5px; font-size:.86rem; line-height:1.78; }
.jobs-list-stack { display:grid; gap:18px; }
.jobs-list-stack.compact .job-listing-card { min-height:210px; }
.job-listing-card { position:relative; overflow:hidden; min-height:250px; display:grid; grid-template-columns:minmax(0,1fr) 260px; padding:30px 30px 30px 34px; border:1px solid rgba(42,63,111,.12); border-radius:23px; background:#fff; box-shadow:0 14px 42px rgba(46,49,76,.06); transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease; }
.job-listing-card::before { content:''; position:absolute; inset:0 auto 0 0; width:5px; background:linear-gradient(180deg,#5538b8 0%,#42aeea 100%); }
.job-listing-card:hover { transform:translateY(-3px); border-color:rgba(83,58,184,.22); box-shadow:0 20px 50px rgba(46,49,76,.09); }
.job-card-main { min-width:0; padding:2px 30px 2px 2px; }
.job-card-heading { display:flex; justify-content:space-between; gap:20px; }
.job-title-row { display:flex; align-items:center; flex-wrap:wrap; gap:12px; }
.job-title-row h3 { margin:0; font-size:1.32rem; color:#13182c; }
.job-featured-badge { padding:5px 10px; border-radius:999px; background:#f0f2ff; color:#4b39a5; font-size:.58rem; font-weight:800; }
.job-company { margin:4px 0 0; color:#5e5d70; font-size:.78rem; }
.job-meta-row { display:flex; flex-wrap:wrap; gap:0; margin:20px 0 18px; }
.job-meta-row span { position:relative; padding-right:17px; margin-right:12px; color:#464960; font-size:.7rem; font-weight:500; }
.job-meta-row span:not(:last-child)::after { content:'•'; position:absolute; right:0; color:#8992a2; }
.job-summary { max-width:760px; margin:0; color:#626477; font-size:.78rem; line-height:1.72; }
.job-card-action { min-width:0; padding-left:28px; border-left:1px solid rgba(53,64,98,.10); display:flex; flex-direction:column; justify-content:center; align-items:stretch; gap:13px; }
.job-company-mark { min-height:78px; display:flex; align-items:center; justify-content:center; gap:10px; padding:11px 13px; border:1px solid rgba(57,72,114,.11); border-radius:16px; background:linear-gradient(135deg,#fff,#fffafd); }
.job-company-mark img { width:62px; height:48px; object-fit:contain; }
.job-company-mark > span { display:grid; gap:1px; }
.job-company-mark strong { font-size:.67rem; line-height:1.2; }
.job-company-mark small { color:#706777; font-size:.42rem; text-transform:uppercase; letter-spacing:.07em; font-weight:700; }
.job-open-badge { align-self:flex-start; display:inline-flex; align-items:center; gap:7px; padding:6px 10px; border-radius:999px; background:#edfbf3; border:1px solid #c7ebd7; color:#147348; font-size:.62rem; font-weight:700; }
.job-open-badge i { width:8px; height:8px; border-radius:50%; background:#34c77a; box-shadow:0 0 0 4px rgba(52,199,122,.10); }
.job-apply-btn { width:100%; min-height:48px; background:linear-gradient(110deg,#4920a7,#3f9ed7); color:#fff; border-radius:13px; font-size:.68rem; box-shadow:0 14px 25px rgba(76,39,169,.18); }
.empty-jobs-card { padding:48px; text-align:center; border:1px dashed rgba(55,42,55,.15); border-radius:24px; background:#fffafd; }
.empty-jobs-icon { width:64px; height:64px; display:grid; place-items:center; margin:0 auto 18px; border-radius:18px; background:linear-gradient(135deg,#ffe4f5,#fff4cb); color:#cf1676; }
.empty-jobs-icon svg { width:34px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.empty-jobs-card h3 { margin-bottom:8px; font-size:1.2rem; }
.empty-jobs-card p { max-width:570px; margin:0 auto 20px; font-size:.79rem; }
.job-pagination { display:flex; align-items:center; justify-content:center; gap:18px; margin-top:28px; color:#6d6470; font-size:.72rem; }
.job-pagination a,.job-pagination span { padding:8px 12px; border-radius:10px; border:1px solid rgba(50,35,48,.09); background:#fff; }
.job-pagination a { color:#c71770; font-weight:700; }
.job-pagination .disabled { opacity:.45; }

/* Job seeker / employer marketing sections */
.hiring-audiences-section { padding-top:30px; }
.hiring-audiences-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.hiring-audience-card { position:relative; overflow:hidden; min-height:470px; padding:38px; border:1px solid rgba(58,39,52,.08); border-radius:28px; background:#fff; box-shadow:0 18px 50px rgba(73,45,62,.06); }
.hiring-audience-card::after { content:''; position:absolute; width:190px; height:190px; border-radius:50%; right:-80px; bottom:-85px; background:linear-gradient(135deg,rgba(255,102,195,.12),rgba(255,222,89,.15)); }
.hiring-audience-card.employer { background:linear-gradient(150deg,#201a23,#372b38); color:#fff; border-color:transparent; }
.hiring-audience-card.employer p,.hiring-audience-card.employer .audience-points span { color:rgba(255,255,255,.72); }
.audience-icon { width:62px; height:62px; display:grid; place-items:center; margin-bottom:24px; border-radius:18px; background:linear-gradient(135deg,#ffe1f3,#fff1c8); color:#d31375; }
.hiring-audience-card.employer .audience-icon { background:rgba(255,255,255,.12); color:#fff; }
.audience-icon svg { width:34px; height:34px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.audience-kicker { display:block; margin-bottom:10px; color:#d21777; font-size:.64rem; font-weight:800; letter-spacing:.13em; }
.hiring-audience-card.employer .audience-kicker { color:#ffb5dc; }
.hiring-audience-card h2 { max-width:520px; font-size:clamp(2rem,3.3vw,3.05rem); }
.hiring-audience-card p { max-width:540px; font-size:.82rem; line-height:1.75; }
.audience-points { display:grid; gap:9px; margin:24px 0 30px; }
.audience-points span { position:relative; padding-left:23px; color:#5d5360; font-size:.72rem; font-weight:600; }
.audience-points span::before { content:''; position:absolute; left:0; top:7px; width:9px; height:9px; border-radius:50%; background:var(--gradient-deep); box-shadow:0 0 0 4px rgba(234,24,121,.08); }
.hiring-audience-card.employer .audience-points span::before { background:#ffb94f; box-shadow:none; }
.audience-actions { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.hiring-audience-card.employer .text-link { color:#ffc6e5; }

.jobs-why-section { background:linear-gradient(180deg,#fff,#fff9fc); }
.section-heading.center { max-width:850px; margin:0 auto 36px; text-align:center; }
.section-heading.center .eyebrow { justify-content:center; }
.section-heading.center p { max-width:680px; margin:0 auto; font-size:.82rem; line-height:1.75; }
.jobs-why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }
.jobs-why-grid article,.role-benefit-grid article,.employer-feature-grid article { min-height:270px; padding:27px 24px; border:1px solid rgba(58,39,52,.08); border-radius:21px; background:#fff; box-shadow:0 10px 30px rgba(73,45,62,.045); }
.why-job-icon { width:53px; height:53px; display:grid; place-items:center; margin-bottom:22px; border-radius:16px; background:linear-gradient(135deg,#ffe2f4,#fff2c8); color:#d31777; }
.why-job-icon svg { width:30px; height:30px; fill:none; stroke:currentColor; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
.jobs-why-grid h3,.role-benefit-grid h3,.employer-feature-grid h3 { margin:0 0 10px; font-size:1rem; }
.jobs-why-grid p,.role-benefit-grid p,.employer-feature-grid p { margin:0; font-size:.7rem; line-height:1.7; }

.jobs-how-section { background:#fff; }
.how-role-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.how-role-panel { padding:30px; border:1px solid rgba(58,39,52,.08); border-radius:25px; background:#fff; box-shadow:0 15px 42px rgba(73,45,62,.055); }
.how-role-panel.employer { background:linear-gradient(180deg,#fffafc,#fffdf4); }
.how-role-title { display:grid; gap:4px; margin-bottom:22px; padding-bottom:18px; border-bottom:1px solid rgba(58,39,52,.08); }
.how-role-title span { color:#d51777; font-size:.6rem; font-weight:800; letter-spacing:.12em; }
.how-role-title strong { font-size:1.22rem; }
.how-role-panel ol { list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.how-role-panel li { display:grid; grid-template-columns:44px 1fr; gap:13px; align-items:start; padding:13px; border-radius:16px; background:#fffafd; border:1px solid rgba(58,39,52,.05); }
.how-role-panel li > span { width:44px; height:44px; display:grid; place-items:center; border-radius:13px; background:linear-gradient(135deg,#ffe0f2,#fff3c8); color:#d21675; font-size:.62rem; font-weight:800; }
.how-role-panel li div { display:grid; gap:2px; padding-top:1px; }
.how-role-panel li strong { font-size:.77rem; }
.how-role-panel li p { margin:0; font-size:.62rem; line-height:1.55; }

.jobs-testimonials-section { background:linear-gradient(180deg,#fff9fc,#fff); }
.jobs-testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.jobs-testimonial-grid article { min-height:245px; padding:27px; border:1px solid rgba(58,39,52,.08); border-radius:22px; background:#fff; box-shadow:0 12px 35px rgba(73,45,62,.05); }
.quote-mark { margin-bottom:8px; color:#e01879; font-size:2.5rem; font-weight:800; line-height:1; }
.jobs-testimonial-grid p { min-height:92px; font-size:.76rem; line-height:1.75; }
.jobs-testimonial-grid strong { display:block; font-size:.74rem; }
.jobs-testimonial-grid span { color:#938996; font-size:.58rem; }

.jobs-industries-section { background:#fff; }
.jobs-industries-grid { display:grid; grid-template-columns:.8fr 1.1fr; gap:70px; align-items:center; }
.jobs-industries-copy p { max-width:600px; font-size:.84rem; line-height:1.8; }
.industry-role-grid { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.industry-role-grid article { min-height:91px; display:grid; grid-template-columns:12px 1fr; gap:13px; align-items:center; padding:17px; border:1px solid rgba(58,39,52,.08); border-radius:17px; background:linear-gradient(135deg,#fff,#fffafd); }
.industry-role-grid article > span { width:10px; height:45px; border-radius:999px; background:var(--gradient-deep); }
.industry-role-grid article div { display:grid; gap:2px; }
.industry-role-grid strong { font-size:.77rem; }
.industry-role-grid small { color:#7a707b; font-size:.58rem; line-height:1.45; }

.jobs-contact-section { padding-top:25px; }
.jobs-contact-card { position:relative; overflow:hidden; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:50px; align-items:center; padding:48px 52px; border-radius:30px; background:var(--gradient-deep); box-shadow:0 28px 70px rgba(222,34,109,.20); }
.jobs-contact-card::after { content:'JSC'; position:absolute; right:-30px; bottom:-80px; color:rgba(255,255,255,.06); font-size:11rem; font-weight:800; line-height:1; }
.jobs-contact-card > * { position:relative; z-index:1; }
.jobs-contact-card h2 { max-width:720px; margin-bottom:10px; color:#fff; font-size:clamp(2rem,3.6vw,3.25rem); }
.jobs-contact-card p { max-width:720px; margin:0; color:rgba(255,255,255,.82); font-size:.78rem; line-height:1.72; }
.jobs-contact-actions { display:grid; gap:10px; min-width:220px; }
.jobs-contact-email { color:rgba(255,255,255,.78); text-align:center; font-size:.66rem; font-weight:600; }

/* Job detail */
.job-detail-hero { padding:58px 0 24px; background:linear-gradient(180deg,#fff,#fff9fc); }
.job-back-link { display:inline-block; margin-bottom:18px; color:#8a7e8a; font-size:.7rem; font-weight:650; }
.job-detail-hero-card { display:grid; grid-template-columns:minmax(0,1fr) 280px; gap:50px; align-items:center; padding:40px; border:1px solid rgba(58,39,52,.08); border-radius:28px; background:#fff; box-shadow:0 18px 50px rgba(73,45,62,.07); }
.job-detail-title h1 { margin-bottom:7px; font-size:clamp(2.6rem,5vw,4.6rem); }
.job-detail-title > p { margin-bottom:18px; color:#625966; font-size:.88rem; }
.job-detail-meta { display:flex; flex-wrap:wrap; gap:8px; }
.job-detail-meta span { padding:7px 10px; border-radius:999px; background:#fff7fb; border:1px solid rgba(229,0,120,.10); color:#6d5d69; font-size:.62rem; font-weight:650; }
.job-detail-brand { display:grid; gap:14px; justify-items:stretch; padding-left:30px; border-left:1px solid rgba(58,39,52,.09); }
.job-detail-brand img { width:150px; height:80px; object-fit:contain; justify-self:center; }
.job-detail-brand .job-open-badge { justify-self:center; }
.job-detail-section { padding-top:50px; }
.job-detail-grid { display:grid; grid-template-columns:minmax(0,1fr) 390px; gap:50px; align-items:start; }
.job-detail-content { min-width:0; }
.job-detail-block { padding:0 0 36px; margin-bottom:36px; border-bottom:1px solid rgba(58,39,52,.08); }
.job-detail-block:last-child { border-bottom:0; }
.job-detail-block h2 { margin-bottom:15px; font-size:1.8rem; }
.job-detail-lead { color:#4f4651; font-size:.92rem; font-weight:500; line-height:1.75; }
.formatted-job-copy { color:#726872; font-size:.78rem; line-height:1.9; white-space:normal; }
.job-apply-panel { position:sticky; top:110px; padding:28px; border:1px solid rgba(58,39,52,.08); border-radius:24px; background:#fff; box-shadow:0 18px 50px rgba(73,45,62,.08); }
.apply-panel-kicker { color:#d41676; font-size:.59rem; font-weight:800; letter-spacing:.12em; }
.job-apply-panel h2 { margin:8px 0 8px; font-size:1.65rem; }
.job-apply-panel > p { font-size:.73rem; line-height:1.65; }
.apply-login-link { display:block; margin-top:12px; color:#cf1674; text-align:center; font-size:.67rem; font-weight:700; }
.job-application-form,.portal-form { display:grid; gap:13px; }
.job-application-form label,.portal-form label,.registration-card form > label,.registration-card .form-row label { display:grid; gap:6px; color:#413842; font-size:.65rem; font-weight:700; }
.job-application-form label small,.portal-form label small { color:#948a95; font-size:.52rem; font-weight:500; }
.job-application-form input,.job-application-form textarea,.portal-form input,.portal-form textarea,.portal-form select,.registration-card input,.registration-card select,.registration-card textarea { width:100%; border:1px solid rgba(58,39,52,.12); border-radius:11px; background:#fff; padding:11px 12px; color:var(--ink); outline:0; font-size:.72rem; font-weight:500; transition:border-color .2s ease,box-shadow .2s ease; }
.job-application-form input:focus,.job-application-form textarea:focus,.portal-form input:focus,.portal-form textarea:focus,.portal-form select:focus,.registration-card input:focus { border-color:rgba(225,20,119,.40); box-shadow:0 0 0 4px rgba(225,20,119,.07); }
.related-jobs-section { padding-top:72px; }

/* Public role pages */
.role-page-hero { position:relative; overflow:hidden; padding:90px 0 80px; background:linear-gradient(180deg,#fff,#fff9fc); }
.role-page-hero::before { content:''; position:absolute; left:-140px; top:-160px; width:440px; height:440px; border-radius:50%; background:radial-gradient(circle,rgba(255,102,195,.16),transparent 68%); }
.role-page-grid { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,1fr) minmax(390px,.8fr); gap:72px; align-items:center; }
.role-page-copy h1 { max-width:760px; font-size:clamp(3rem,5.6vw,5rem); }
.role-page-copy > p { max-width:700px; margin-bottom:26px; font-size:.92rem; line-height:1.8; }
.role-page-actions { display:flex; gap:11px; flex-wrap:wrap; }
.role-page-panel { padding:26px; border:1px solid rgba(58,39,52,.08); border-radius:27px; background:#fff; box-shadow:0 24px 65px rgba(77,43,63,.10); }
.role-page-panel.employer-panel { background:linear-gradient(145deg,#211a23,#382b38); color:#fff; }
.role-panel-top { display:flex; justify-content:space-between; gap:16px; padding-bottom:16px; border-bottom:1px solid rgba(58,39,52,.08); }
.employer-panel .role-panel-top { border-color:rgba(255,255,255,.10); }
.role-panel-top span { color:#d51677; font-size:.58rem; font-weight:800; letter-spacing:.11em; }
.employer-panel .role-panel-top span { color:#ffb6dc; }
.role-panel-top b { padding:5px 8px; border-radius:999px; background:#fff6fb; color:#a81b64; font-size:.48rem; }
.employer-panel .role-panel-top b { background:rgba(255,255,255,.10); color:#fff; }
.role-panel-score { display:grid; gap:5px; padding:24px 0; }
.role-panel-score strong { font-size:1.55rem; }
.role-panel-score span { color:#766c77; font-size:.67rem; line-height:1.55; }
.role-panel-list { display:grid; gap:10px; }
.role-panel-list > div { display:grid; grid-template-columns:11px 1fr; gap:12px; align-items:center; padding:13px; border-radius:15px; background:#fff9fc; }
.role-panel-list i { width:10px; height:40px; border-radius:999px; background:var(--gradient-deep); }
.role-panel-list span { display:grid; gap:1px; }
.role-panel-list strong { font-size:.71rem; }
.role-panel-list small { color:#7d727e; font-size:.54rem; }
.employer-pipeline { display:grid; gap:10px; padding-top:20px; }
.employer-pipeline article { padding:16px; border-radius:16px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.08); }
.employer-pipeline small { display:block; margin-bottom:5px; color:#ffc0df; font-size:.49rem; font-weight:800; letter-spacing:.1em; }
.employer-pipeline strong { display:block; margin-bottom:3px; font-size:.77rem; }
.employer-pipeline span { display:block; color:rgba(255,255,255,.64); font-size:.55rem; line-height:1.5; }
.role-benefit-grid,.employer-feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.role-steps-grid { display:grid; grid-template-columns:.8fr 1fr; gap:70px; align-items:start; }
.role-steps-copy p { max-width:580px; font-size:.82rem; line-height:1.8; }
.role-steps-list { display:grid; gap:11px; }
.role-steps-list article { display:grid; grid-template-columns:48px 1fr; gap:14px; align-items:center; padding:15px; border:1px solid rgba(58,39,52,.08); border-radius:17px; background:#fff; }
.role-steps-list article > span { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:linear-gradient(135deg,#ffe1f3,#fff3c8); color:#d31676; font-size:.62rem; font-weight:800; }
.role-steps-list article div { display:grid; gap:2px; }
.role-steps-list strong { font-size:.76rem; }
.role-steps-list p { margin:0; font-size:.6rem; }

/* Registration */
.registration-section { position:relative; overflow:hidden; min-height:calc(100vh - 88px); padding:70px 0 85px; background:linear-gradient(180deg,#fff,#fff8fc); }
.registration-section::before { content:''; position:absolute; inset:0 auto auto -170px; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(255,102,195,.17),transparent 70%); }
.registration-grid { position:relative; z-index:1; display:grid; grid-template-columns:.82fr 1fr; gap:70px; align-items:start; }
.registration-story { padding-top:30px; }
.registration-story h1 { max-width:620px; font-size:clamp(3rem,5vw,4.7rem); }
.registration-story > p { max-width:570px; font-size:.88rem; line-height:1.8; }
.registration-proof { display:grid; grid-template-columns:1fr 1fr; gap:11px; margin-top:28px; }
.registration-proof div { padding:16px; border:1px solid rgba(58,39,52,.08); border-radius:16px; background:rgba(255,255,255,.8); }
.registration-proof strong { display:block; font-size:.73rem; }
.registration-proof span { color:#7b707c; font-size:.57rem; }
.registration-card { padding:28px; border:1px solid rgba(58,39,52,.08); border-radius:27px; background:#fff; box-shadow:0 24px 65px rgba(77,43,63,.10); }
.registration-brand { display:flex; align-items:center; gap:12px; margin-bottom:22px; padding-bottom:18px; border-bottom:1px solid rgba(58,39,52,.08); }
.registration-brand img { width:60px; height:45px; object-fit:contain; }
.registration-brand > span { display:grid; gap:2px; }
.registration-brand strong { font-size:.88rem; }
.registration-brand small { color:#8a808b; font-size:.56rem; }
.role-choice-grid { display:grid; grid-template-columns:1fr 1fr; gap:11px; margin-bottom:20px; }
.role-choice-card { position:relative; display:grid; grid-template-columns:48px 1fr; gap:12px; align-items:center; padding:15px; border:1px solid rgba(58,39,52,.10); border-radius:17px; background:#fff; cursor:pointer; transition:border-color .2s ease,background .2s ease,box-shadow .2s ease; }
.role-choice-card input { position:absolute; opacity:0; pointer-events:none; }
.role-choice-card.selected { border-color:rgba(221,18,117,.34); background:linear-gradient(135deg,#fff5fb,#fffdf4); box-shadow:0 10px 25px rgba(224,31,119,.08); }
.role-choice-icon { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:linear-gradient(135deg,#ffe0f3,#fff1c7); color:#d51677; }
.role-choice-icon svg { width:27px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.role-choice-card > span:last-child { display:grid; gap:2px; }
.role-choice-card strong { font-size:.7rem; }
.role-choice-card small { color:#877c88; font-size:.51rem; line-height:1.4; }
.registration-card form { display:grid; gap:13px; }
.registration-login { margin:0; color:#847a84; text-align:center; font-size:.64rem; }
.registration-login a { color:#cd1472; font-weight:700; }
.login-register-links { display:flex; justify-content:center; flex-wrap:wrap; gap:7px 12px; margin:15px 0; font-size:.62rem; }
.login-register-links span { color:#8c828d; }
.login-register-links a { color:#d21876; font-weight:700; }

/* Alerts */
.portal-alert { padding:12px 14px; margin-bottom:15px; border-radius:12px; font-size:.67rem; font-weight:600; line-height:1.5; }
.portal-alert.success { background:#edf9f2; border:1px solid #c5ead4; color:#21734a; }
.portal-alert.info { background:#f3f3ff; border:1px solid #d9d8f6; color:#4c4a87; }
.portal-alert.error { background:#fff1f4; border:1px solid #f2ccd6; color:#a73a56; }

/* Portal shell */
.portal-body { min-height:100vh; background:#f7f7fa; color:#251f26; overflow-x:hidden; }
.portal-shell { min-height:100vh; display:grid; grid-template-columns:250px minmax(0,1fr); }
.portal-sidebar { position:sticky; top:0; height:100vh; display:flex; flex-direction:column; padding:25px 18px 20px; background:#201a23; color:#fff; z-index:50; }
.portal-brand { display:flex; align-items:center; gap:10px; padding:0 8px 22px; border-bottom:1px solid rgba(255,255,255,.09); }
.portal-brand img { width:54px; height:42px; object-fit:contain; }
.portal-brand > span { display:grid; gap:1px; }
.portal-brand strong { font-size:.78rem; }
.portal-brand small { color:rgba(255,255,255,.52); font-size:.48rem; text-transform:uppercase; letter-spacing:.1em; }
.portal-role-badge { margin:18px 8px 10px; padding:7px 10px; border-radius:9px; background:rgba(255,255,255,.07); color:#ffc7e4; font-size:.5rem; font-weight:800; letter-spacing:.11em; }
.portal-nav { display:grid; gap:5px; }
.portal-nav a { display:flex; align-items:center; gap:10px; min-height:43px; padding:9px 11px; border-radius:11px; color:rgba(255,255,255,.67); font-size:.67rem; font-weight:600; transition:background .2s ease,color .2s ease; }
.portal-nav a span { width:22px; color:#ff8fc6; font-size:.95rem; text-align:center; }
.portal-nav a:hover,.portal-nav a.active { background:linear-gradient(110deg,rgba(226,18,119,.23),rgba(255,153,66,.12)); color:#fff; }
.portal-sidebar-bottom { margin-top:auto; display:grid; gap:6px; padding:18px 8px 0; border-top:1px solid rgba(255,255,255,.09); }
.portal-sidebar-bottom a,.portal-sidebar-bottom button { width:100%; padding:8px 0; border:0; background:transparent; color:rgba(255,255,255,.55); text-align:left; font-size:.62rem; cursor:pointer; }
.portal-main { min-width:0; }
.portal-topbar { position:sticky; top:0; z-index:30; min-height:82px; display:flex; align-items:center; justify-content:space-between; gap:24px; padding:14px 34px; border-bottom:1px solid rgba(54,43,52,.08); background:rgba(255,255,255,.94); backdrop-filter:blur(16px); }
.portal-topbar > div:first-of-type { display:grid; gap:1px; }
.portal-top-kicker { color:#d41777; font-size:.49rem; font-weight:800; letter-spacing:.13em; }
.portal-topbar h1 { margin:0; font-size:1.25rem; letter-spacing:-.03em; }
.portal-user-chip { display:flex; align-items:center; gap:10px; min-width:0; }
.portal-user-chip > span { width:38px; height:38px; flex:0 0 38px; display:grid; place-items:center; border-radius:12px; background:var(--gradient-deep); color:#fff; font-size:.72rem; font-weight:800; }
.portal-user-chip div { display:grid; gap:0; }
.portal-user-chip strong { max-width:190px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:.66rem; }
.portal-user-chip small { max-width:190px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:#8a818b; font-size:.52rem; }
.portal-menu-toggle { display:none; width:40px; height:40px; border:1px solid rgba(58,39,52,.09); border-radius:10px; background:#fff; }
.portal-content { padding:30px 34px 50px; }
.portal-welcome-card { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:30px; align-items:center; padding:30px 32px; margin-bottom:20px; border-radius:23px; background:linear-gradient(115deg,#fff0f8,#fff8d9); border:1px solid rgba(58,39,52,.06); }
.portal-welcome-card.employer { background:linear-gradient(120deg,#fff0f9,#fff8e2); }
.portal-welcome-card.admin { background:var(--gradient-deep); color:#fff; box-shadow:0 18px 45px rgba(222,34,109,.17); }
.portal-welcome-card > div > span { display:block; margin-bottom:6px; color:#cf1574; font-size:.53rem; font-weight:800; letter-spacing:.12em; }
.portal-welcome-card.admin > div > span { color:rgba(255,255,255,.76); }
.portal-welcome-card h2 { margin-bottom:7px; font-size:clamp(1.6rem,2.5vw,2.35rem); }
.portal-welcome-card.admin h2 { color:#fff; }
.portal-welcome-card p { max-width:760px; margin:0; font-size:.68rem; line-height:1.65; }
.portal-welcome-card.admin p { color:rgba(255,255,255,.78); }
.portal-stat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:13px; margin-bottom:20px; }
.portal-stat-grid.admin-stats { grid-template-columns:repeat(5,1fr); }
.portal-stat-grid article { padding:20px; border:1px solid rgba(58,39,52,.07); border-radius:18px; background:#fff; box-shadow:0 9px 24px rgba(73,45,62,.035); }
.portal-stat-grid article span { display:block; margin-bottom:13px; color:#918692; font-size:.49rem; font-weight:800; letter-spacing:.1em; }
.portal-stat-grid article strong { display:block; margin-bottom:3px; font-size:1.7rem; line-height:1; }
.portal-stat-grid article small { color:#8a808b; font-size:.52rem; }
.portal-grid-two { display:grid; grid-template-columns:1.12fr .88fr; gap:18px; }
.admin-dashboard-grid { grid-template-columns:1fr 1fr; }
.portal-card { overflow:hidden; margin-bottom:18px; padding:22px; border:1px solid rgba(58,39,52,.07); border-radius:20px; background:#fff; box-shadow:0 10px 28px rgba(73,45,62,.035); }
.portal-card-head { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; padding-bottom:14px; border-bottom:1px solid rgba(58,39,52,.07); }
.portal-card-head > div { display:grid; gap:2px; }
.portal-card-head span:not(.job-status) { color:#d21675; font-size:.48rem; font-weight:800; letter-spacing:.12em; }
.portal-card-head h3 { margin:0; font-size:.9rem; }
.portal-card-head > b { width:38px; height:38px; display:grid; place-items:center; border-radius:11px; background:#fff1f8; color:#d11674; font-size:.8rem; }
.portal-card-head > a { color:#cf1674; font-size:.58rem; font-weight:700; }
.portal-application-row { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:13px 0; border-bottom:1px solid rgba(58,39,52,.06); }
.portal-application-row:last-child { border-bottom:0; }
.portal-application-row > div { min-width:0; display:grid; gap:2px; }
.portal-application-row strong { font-size:.7rem; }
.portal-application-row small { color:#8c828d; font-size:.52rem; }
.application-status,.job-status { display:inline-flex; align-items:center; justify-content:center; white-space:nowrap; padding:5px 8px; border-radius:999px; background:#f1f1f5; color:#5c5965; font-size:.46rem; font-weight:800; letter-spacing:.05em; }
.status-published,.status-hired { background:#eaf9f1; color:#21704a; }
.status-draft,.status-reviewing { background:#fff7dc; color:#8b6918; }
.status-closed,.status-rejected { background:#fff0f2; color:#a64a5f; }
.status-new { background:#f0f3ff; color:#4e5b9b; }
.status-shortlisted { background:#fff0f8; color:#b52b72; }
.status-interview { background:#edf7ff; color:#3575a0; }
.portal-empty { padding:28px; text-align:center; color:#807681; }
.portal-empty.large { padding:55px; border:1px dashed rgba(58,39,52,.12); border-radius:20px; background:#fff; }
.portal-empty strong { display:block; margin-bottom:5px; color:#413942; font-size:.75rem; }
.portal-empty p { margin:0; font-size:.6rem; }
.portal-table-wrap { overflow:auto; }
.portal-table { width:100%; border-collapse:collapse; min-width:760px; }
.portal-table th { padding:9px 10px; color:#9a909b; text-align:left; font-size:.46rem; font-weight:800; letter-spacing:.09em; border-bottom:1px solid rgba(58,39,52,.08); }
.portal-table td { padding:13px 10px; color:#625963; font-size:.59rem; border-bottom:1px solid rgba(58,39,52,.06); vertical-align:middle; }
.portal-table td strong { display:block; color:#302932; font-size:.66rem; }
.portal-table td small { display:block; color:#938995; font-size:.49rem; }
.table-actions { display:flex; align-items:center; gap:8px; }
.table-actions a,.table-actions button { border:0; background:transparent; color:#cf1674; font-size:.56rem; font-weight:700; cursor:pointer; }
.table-actions form { margin:0; }
.portal-form-layout { max-width:920px; }
.portal-form-wide { gap:15px; }
.portal-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.portal-form input:disabled { background:#f5f4f6; color:#9b929c; }
.portal-form-note { padding:14px; border-radius:13px; background:#fff9e9; border:1px solid #f2e6ba; }
.portal-form-note strong { display:block; margin-bottom:3px; font-size:.65rem; }
.portal-form-note p { margin:0; font-size:.54rem; line-height:1.5; }
.portal-page-intro { display:flex; justify-content:space-between; gap:24px; align-items:center; margin-bottom:18px; padding:24px; border-radius:20px; background:linear-gradient(135deg,#fff1f8,#fff9dd); }
.portal-page-intro span { color:#cf1674; font-size:.49rem; font-weight:800; letter-spacing:.1em; }
.portal-page-intro h2 { margin:3px 0; font-size:1.5rem; }
.portal-page-intro p { margin:0; font-size:.59rem; }
.application-card-stack { display:grid; gap:16px; }
.application-review-card { padding:22px; border:1px solid rgba(58,39,52,.07); border-radius:20px; background:#fff; }
.application-review-head { display:grid; grid-template-columns:48px minmax(0,1fr) auto; gap:12px; align-items:center; padding-bottom:16px; border-bottom:1px solid rgba(58,39,52,.07); }
.candidate-avatar { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:var(--gradient-deep); color:#fff; font-size:.78rem; font-weight:800; }
.application-review-head h3 { margin:0; font-size:.88rem; }
.application-review-head p { margin:2px 0 0; font-size:.55rem; }
.application-review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding:16px 0; }
.application-review-grid div { padding:12px; border-radius:12px; background:#faf9fb; }
.application-review-grid span,.application-copy > span { display:block; margin-bottom:4px; color:#9b909b; font-size:.46rem; font-weight:800; letter-spacing:.08em; }
.application-review-grid strong,.application-review-grid a { font-size:.58rem; }
.application-review-grid a { color:#cf1674; font-weight:700; }
.application-copy { margin-bottom:14px; }
.application-copy p { margin:0; color:#625963; font-size:.59rem; line-height:1.7; }
.application-status-form { display:grid; grid-template-columns:180px minmax(0,1fr) auto; gap:12px; align-items:end; padding-top:15px; border-top:1px solid rgba(58,39,52,.07); }
.application-status-form label { display:grid; gap:5px; color:#514851; font-size:.54rem; font-weight:700; }
.application-status-form select,.application-status-form textarea { width:100%; border:1px solid rgba(58,39,52,.11); border-radius:10px; padding:9px 10px; font-size:.58rem; outline:0; }
.admin-publish-row { display:grid; grid-template-columns:220px 1fr; gap:18px; align-items:end; }
.portal-checkbox { grid-template-columns:auto 1fr!important; align-items:center; gap:10px!important; padding:11px 13px; border:1px solid rgba(58,39,52,.10); border-radius:12px; }
.portal-checkbox input { width:17px!important; height:17px; }
.portal-checkbox span { display:grid; gap:1px; }
.portal-checkbox strong { font-size:.6rem; }
.portal-checkbox small { color:#8f858f; font-size:.49rem; }
.portal-filter-bar { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:14px; }
.portal-filter-bar a { padding:7px 10px; border:1px solid rgba(58,39,52,.08); border-radius:999px; background:#fff; color:#786e79; font-size:.53rem; font-weight:650; }
.portal-filter-bar a.active { background:#241c25; color:#fff; border-color:#241c25; }
.portal-role-table { padding:5px 7px; border-radius:999px; background:#fff2f8; color:#b51f68; font-size:.44rem; font-weight:800; }
.portal-pagination { display:flex; justify-content:flex-end; align-items:center; gap:8px; padding-top:14px; font-size:.54rem; }
.portal-pagination a { color:#cf1674; font-weight:700; }

/* Hiring responsive */
@media (max-width:1180px) {
    .job-search-bar { grid-template-columns:minmax(230px,1.15fr) minmax(190px,.75fr) minmax(150px,.55fr) auto; }
    .portal-stat-grid.admin-stats { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:1040px) {
    .job-listing-card { grid-template-columns:minmax(0,1fr) 230px; }
    .jobs-why-grid { grid-template-columns:1fr 1fr; }
    .jobs-industries-grid,.job-detail-grid,.role-page-grid,.registration-grid { gap:45px; }
    .portal-shell { grid-template-columns:220px minmax(0,1fr); }
}
@media (max-width:900px) {
    .job-search-bar { grid-template-columns:1fr 1fr; gap:8px; padding:10px; }
    .job-search-field { border:1px solid rgba(50,35,48,.09); border-radius:12px; }
    .job-search-select { border:1px solid rgba(50,35,48,.09); border-radius:12px; }
    .job-search-submit { width:100%; }
    .jobs-section-heading,.jobs-industries-grid,.job-detail-grid,.role-page-grid,.registration-grid,.role-steps-grid { grid-template-columns:1fr; }
    .job-listing-card { grid-template-columns:1fr; }
    .job-card-main { padding:2px 0 25px 2px; }
    .job-card-action { padding:22px 0 0; border-left:0; border-top:1px solid rgba(53,64,98,.10); display:grid; grid-template-columns:1fr auto; align-items:center; }
    .job-company-mark { justify-content:flex-start; }
    .job-open-badge { grid-column:1; }
    .job-apply-btn { grid-column:2; grid-row:1 / span 2; min-width:210px; }
    .hiring-audiences-grid,.how-role-grid,.jobs-testimonial-grid { grid-template-columns:1fr; }
    .jobs-industries-copy { max-width:720px; }
    .jobs-contact-card { grid-template-columns:1fr; gap:28px; }
    .jobs-contact-actions { grid-template-columns:1fr 1fr; min-width:0; }
    .jobs-contact-email { grid-column:1/-1; }
    .job-detail-hero-card { grid-template-columns:1fr; }
    .job-detail-brand { padding:22px 0 0; border-left:0; border-top:1px solid rgba(58,39,52,.09); }
    .job-apply-panel { position:static; }
    .role-page-panel { width:min(620px,100%); }
    .registration-story { padding-top:0; max-width:720px; }
    .portal-shell { display:block; }
    .portal-sidebar { position:fixed; left:-270px; width:250px; transition:left .22s ease; box-shadow:20px 0 50px rgba(25,20,26,.18); }
    .portal-sidebar.open { left:0; }
    .portal-menu-toggle { display:block; }
    .portal-topbar { padding-inline:20px; justify-content:flex-start; }
    .portal-user-chip { margin-left:auto; }
    .portal-content { padding:24px 20px 45px; }
    .portal-stat-grid { grid-template-columns:repeat(3,1fr); }
    .portal-grid-two,.admin-dashboard-grid { grid-template-columns:1fr; }
}
@media (max-width:680px) {
    .jobs-hero { padding:60px 0 54px; }
    .jobs-hero-copy h1 { font-size:clamp(2.6rem,12vw,3.7rem); }
    .job-search-bar { grid-template-columns:1fr; }
    .job-search-field,.job-search-select,.job-search-submit { min-height:52px; }
    .jobs-section-heading { gap:12px; }
    .job-listing-card { padding:24px 20px 22px 24px; border-radius:19px; }
    .job-title-row { align-items:flex-start; }
    .job-title-row h3 { font-size:1.08rem; }
    .job-meta-row { margin:15px 0 13px; }
    .job-card-action { display:flex; align-items:stretch; }
    .job-company-mark { min-height:65px; }
    .job-apply-btn { min-width:0; }
    .hiring-audience-card { min-height:0; padding:28px 23px; border-radius:23px; }
    .audience-actions { display:grid; }
    .audience-actions .btn { width:100%; }
    .jobs-why-grid,.industry-role-grid,.role-benefit-grid,.employer-feature-grid { grid-template-columns:1fr; }
    .jobs-why-grid article,.role-benefit-grid article,.employer-feature-grid article { min-height:0; }
    .how-role-panel { padding:22px 18px; }
    .jobs-contact-card { padding:34px 24px; border-radius:23px; }
    .jobs-contact-actions { grid-template-columns:1fr; }
    .jobs-contact-email { grid-column:auto; }
    .job-detail-hero { padding-top:40px; }
    .job-detail-hero-card { padding:26px 22px; border-radius:22px; }
    .job-detail-title h1 { font-size:clamp(2.3rem,11vw,3.4rem); }
    .job-detail-meta { gap:6px; }
    .job-apply-panel { padding:22px 18px; }
    .role-page-hero { padding:60px 0 55px; }
    .role-page-copy h1 { font-size:clamp(2.6rem,12vw,3.75rem); }
    .role-page-actions { display:grid; }
    .role-page-actions .btn { width:100%; }
    .role-benefit-grid article,.employer-feature-grid article { padding:22px; }
    .registration-section { padding:50px 0 65px; }
    .registration-story h1 { font-size:clamp(2.6rem,12vw,3.7rem); }
    .registration-proof,.role-choice-grid,.registration-card .form-row,.portal-form .form-row { grid-template-columns:1fr; }
    .registration-card { padding:22px 18px; }
    .portal-topbar { min-height:72px; padding:11px 15px; gap:10px; }
    .portal-user-chip div { display:none; }
    .portal-content { padding:18px 14px 40px; }
    .portal-welcome-card { grid-template-columns:1fr; padding:24px 20px; }
    .portal-welcome-card .btn { width:100%; }
    .portal-stat-grid,.portal-stat-grid.admin-stats { grid-template-columns:1fr 1fr; }
    .portal-card { padding:16px; border-radius:17px; }
    .portal-page-intro { align-items:flex-start; flex-direction:column; }
    .application-review-head { grid-template-columns:45px 1fr; }
    .application-review-head .application-status { grid-column:2; justify-self:start; }
    .application-review-grid { grid-template-columns:1fr; }
    .application-status-form,.admin-publish-row { grid-template-columns:1fr; }
}
@media (max-width:420px) {
    .portal-stat-grid,.portal-stat-grid.admin-stats { grid-template-columns:1fr; }
    .job-meta-row span { font-size:.63rem; }
}
.portal-head-actions { display:flex; align-items:center; gap:10px; }
.portal-head-actions a { color:#cf1674; font-size:.58rem; font-weight:700; }

/* 2026-08-31 v9.5 contact page modernization */
.contact-hero-modern {
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(255,102,195,.10), transparent 30%),
        radial-gradient(circle at 100% 8%, rgba(255,222,89,.14), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff9fc 72%, #fffdf8 100%);
}
.contact-hero-modern::after {
    right: -130px;
    top: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,222,89,.22), transparent 68%);
}
.contact-hero-shell {
    align-items: start;
    gap: 56px;
}
.contact-hero-copy {
    padding-top: 12px;
}
.contact-hero-copy h1 {
    max-width: 700px;
    margin-bottom: 20px;
}
.contact-hero-copy p {
    max-width: 630px;
    margin-bottom: 26px;
    color: #655b66;
}
.contact-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.contact-tag {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(84,59,73,.10);
    box-shadow: 0 10px 26px rgba(74,49,65,.06);
    color: #473d47;
    font-size: .76rem;
    font-weight: 700;
}

.contact-hero-panel {
    position: relative;
    padding: 26px;
    border-radius: 30px;
    border: 1px solid rgba(72,47,60,.09);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,251,253,.96)),
        linear-gradient(130deg, rgba(255,102,195,.14), rgba(255,222,89,.10));
    box-shadow: 0 26px 70px rgba(81,44,67,.11);
}
.contact-hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(130deg, rgba(255,102,195,.35), rgba(255,222,89,.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: .8;
}
.contact-panel-top,
.contact-panel-brand,
.contact-method-card,
.contact-need-card,
.contact-next-step,
.contact-form-trust {
    position: relative;
    z-index: 1;
}
.contact-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}
.contact-panel-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.contact-panel-logo {
    width: 58px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff0f7, #fff5cf);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.94);
}
.contact-panel-logo img {
    width: 44px;
    height: auto;
    object-fit: contain;
}
.contact-panel-brand strong {
    display: block;
    font-size: .96rem;
    line-height: 1.1;
}
.contact-panel-brand small {
    display: block;
    color: #8a7d89;
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.contact-panel-badge {
    min-height: 34px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #effcf5, #ecfff3);
    border: 1px solid rgba(56,183,118,.18);
    color: #167f4f;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.contact-panel-intro {
    margin-bottom: 20px;
}
.contact-panel-intro h3 {
    margin: 0 0 8px;
    font-size: 1.42rem;
}
.contact-panel-intro p {
    margin: 0;
    color: #6f6570;
    font-size: .86rem;
    line-height: 1.75;
}
.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.contact-method-card {
    min-height: 132px;
    padding: 16px;
    border-radius: 22px;
    display: grid;
    grid-template-columns: 54px minmax(0,1fr);
    gap: 14px;
    align-items: start;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(76,48,63,.08);
    box-shadow: 0 12px 28px rgba(72,47,61,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.contact-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(72,47,61,.09);
    border-color: rgba(255,102,195,.24);
}
.contact-method-card span:last-child {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.contact-method-card small {
    color: #897d87;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-method-card strong {
    color: #241d24;
    font-size: .89rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.contact-method-card em {
    color: #706672;
    font-size: .72rem;
    font-style: normal;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.contact-method-card-soft {
    background: linear-gradient(180deg, #fff9fc, #fffaf4);
}
.contact-method-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.94);
}
.contact-method-icon svg {
    width: 22px;
    height: 22px;
}
.contact-method-phone { color: #d51579; background: linear-gradient(145deg, #fff0f8, #ffe2ea); }
.contact-method-location { color: #cf8b16; background: linear-gradient(145deg, #fff8e9, #ffe8c9); }
.contact-method-email { color: #2d78db; background: linear-gradient(145deg, #eef7ff, #dcecff); }
.contact-method-temp { color: #7d48d7; background: linear-gradient(145deg, #f7f1ff, #e6ddff); }

.contact-form-modern {
    position: relative;
}
.contact-intake-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,.94fr) minmax(420px,1.02fr);
    gap: 56px;
    align-items: start;
}
.contact-intake-copy h2 {
    max-width: 700px;
    margin-bottom: 14px;
}
.contact-intake-copy > p {
    max-width: 630px;
    margin-bottom: 24px;
    line-height: 1.82;
}
.contact-need-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}
.contact-need-card {
    padding: 18px 18px 17px;
    border-radius: 22px;
    border: 1px solid rgba(74,49,61,.08);
    background: rgba(255,255,255,.84);
    box-shadow: 0 12px 28px rgba(74,49,61,.05);
    display: grid;
    grid-template-columns: 52px minmax(0,1fr);
    gap: 14px;
    align-items: start;
}
.contact-need-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #d51579;
    background: linear-gradient(145deg, #fff0f8, #fff5cf);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}
.contact-need-icon svg {
    width: 22px;
    height: 22px;
}
.contact-need-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: .94rem;
}
.contact-need-card p {
    margin: 0;
    font-size: .76rem;
    line-height: 1.68;
}
.contact-next-steps {
    display: grid;
    gap: 10px;
}
.contact-next-step {
    min-height: 56px;
    padding: 11px 15px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(74,49,61,.08);
}
.contact-next-step b {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gradient);
    color: #40202f;
    font-size: .74rem;
}
.contact-next-step span {
    font-size: .78rem;
    font-weight: 700;
    color: #413740;
}

.contact-form-premium {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 30px;
    border: 1px solid rgba(74,49,61,.08);
    background:
        radial-gradient(circle at 100% 0%, rgba(255,222,89,.14), transparent 28%),
        radial-gradient(circle at 0% 100%, rgba(255,102,195,.10), transparent 32%),
        #fff;
    box-shadow: 0 24px 62px rgba(78,48,65,.10);
    gap: 16px;
}
.contact-form-premium::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: var(--gradient);
}
.contact-form-premium .form-card-top {
    margin-bottom: 6px;
}
.contact-form-premium .form-card-top h3 {
    margin: 0 0 7px;
    font-size: 1.4rem;
}
.contact-form-premium .form-card-top p {
    margin: 0;
    font-size: .84rem;
    line-height: 1.72;
}
.contact-form-premium label {
    gap: 8px;
}
.contact-form-premium label > span {
    color: #433a42;
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .03em;
}
.contact-form-premium input,
.contact-form-premium select,
.contact-form-premium textarea {
    padding: 14px 15px;
    border-radius: 14px;
    background: rgba(255,250,252,.96);
}
.contact-form-premium textarea {
    min-height: 142px;
}
.contact-form-premium .form-submit {
    width: 100%;
    margin-top: 4px;
}
.contact-form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.contact-form-meta .form-note {
    margin: 0;
    font-size: .7rem;
    color: #8b7f89;
}
.contact-form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.contact-form-trust span {
    min-height: 32px;
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff7fb;
    border: 1px solid #f1dbe7;
    color: #5a4f59;
    font-size: .66rem;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .contact-method-grid,
    .contact-intake-shell {
        grid-template-columns: 1fr;
    }
    .contact-hero-shell {
        gap: 42px;
    }
}

@media (max-width: 760px) {
    .contact-hero-panel,
    .contact-form-premium {
        padding: 22px;
        border-radius: 24px;
    }
    .contact-panel-top,
    .contact-form-meta {
        align-items: flex-start;
        flex-direction: column;
    }
    .contact-method-card,
    .contact-need-card {
        grid-template-columns: 48px minmax(0,1fr);
        padding: 15px;
        border-radius: 18px;
    }
    .contact-method-icon,
    .contact-need-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }
    .contact-tag {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .contact-hero-copy h1 {
        font-size: clamp(2.5rem, 12vw, 3.55rem);
    }
    .contact-hero-copy p,
    .contact-panel-intro p,
    .contact-intake-copy > p {
        font-size: .92rem;
    }
    .contact-form-premium {
        padding: 20px;
    }
}


/* 2026-08-31 v9.6 contact refinement */
.contact-hero-copy h1 {
    max-width: 640px;
    font-size: clamp(2.75rem, 4.55vw, 4.25rem);
    line-height: 1.045;
    letter-spacing: -.05em;
}
.contact-intake-copy h2 {
    max-width: 650px;
    font-size: clamp(2rem, 3.35vw, 3.05rem);
    line-height: 1.1;
}
.contact-panel-badge {
    gap: 7px;
    font-size: .61rem;
}
.contact-panel-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #32bd75;
    box-shadow: 0 0 0 4px rgba(50,189,117,.11);
}
.contact-panel-intro-compact {
    margin: 3px 0 18px;
    padding: 18px 0 16px;
    border-top: 1px solid rgba(66,44,57,.08);
    border-bottom: 1px solid rgba(66,44,57,.08);
}
.contact-panel-intro-compact .contact-info-kicker {
    margin-bottom: 7px;
    font-size: .58rem;
}
.contact-panel-intro-compact h3 {
    margin-bottom: 5px;
    font-size: 1.18rem;
}
.contact-panel-intro-compact p {
    font-size: .76rem;
    line-height: 1.6;
}
.contact-directory {
    display: grid;
    gap: 10px;
}
.contact-directory-row {
    min-height: 72px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 46px minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    border-radius: 18px;
    border: 1px solid rgba(70,47,60,.08);
    background: rgba(255,255,255,.84);
    box-shadow: 0 8px 20px rgba(72,47,61,.035);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-directory-row:hover {
    transform: translateY(-2px);
    border-color: rgba(255,102,195,.22);
    box-shadow: 0 13px 28px rgba(72,47,61,.07);
}
.contact-directory-row .contact-method-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
}
.contact-directory-row .contact-method-icon svg {
    width: 19px;
    height: 19px;
}
.contact-directory-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}
.contact-directory-copy small {
    color: #91858f;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-directory-copy strong {
    color: #271f26;
    font-size: .79rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}
.contact-directory-action {
    min-width: 54px;
    min-height: 30px;
    padding: 7px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #c91771;
    background: #fff5fa;
    border: 1px solid #f3dce8;
    font-size: .59rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.contact-temp-emails {
    margin-top: 12px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 14px;
    align-items: start;
    border-radius: 16px;
    background: linear-gradient(110deg, rgba(255,102,195,.055), rgba(255,222,89,.08));
    border: 1px solid rgba(86,57,73,.07);
}
.contact-temp-emails > span {
    color: #8f818c;
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    white-space: nowrap;
}
.contact-temp-emails > div {
    display: grid;
    gap: 3px;
    min-width: 0;
}
.contact-temp-emails a {
    color: #625862;
    font-size: .62rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}
.contact-temp-emails a:hover { color: #d21476; }
.contact-need-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.contact-need-card { min-height: 120px; }
@media (max-width: 760px) {
    .contact-directory-row { grid-template-columns: 44px minmax(0,1fr); }
    .contact-directory-action { display: none; }
    .contact-temp-emails { grid-template-columns: 1fr; gap: 5px; }
    .contact-need-grid { grid-template-columns: 1fr; }
    .contact-hero-copy h1 { font-size: clamp(2.45rem, 11vw, 3.35rem); }
    .contact-intake-copy h2 { font-size: clamp(2rem, 9vw, 2.75rem); }
}

/* 2026-08-31 v10.0 login card refinement */
.login-card-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}
.login-logo-wrap {
    width: 104px;
    height: 84px;
    margin-bottom: 12px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,102,195,.10), rgba(255,222,89,.16));
    border: 1px solid rgba(93,55,77,.08);
    box-shadow: 0 14px 34px rgba(89,42,70,.08), inset 0 1px 0 rgba(255,255,255,.94);
}
.login-card-intro .login-logo {
    width: 82px;
    height: 62px;
    margin: 0;
    object-fit: contain;
}
.login-card-intro .login-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    color: #d11574;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.login-card-intro h2 {
    margin: 0 0 7px;
    font-size: 2.05rem;
    line-height: 1.12;
}
.login-card-intro p {
    max-width: 350px;
    margin: 0;
    color: #756a75;
    font-size: .78rem;
    line-height: 1.65;
}
.login-card .back-link {
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    border: 1px solid rgba(71,49,63,.10);
    background: linear-gradient(180deg, #fff, #fff8fc);
    color: #5e535d;
    font-size: .72rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(72,47,61,.05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.login-card .back-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255,102,195,.34);
    box-shadow: 0 12px 26px rgba(82,45,66,.09);
    color: #d11574;
}

@media (max-width: 620px) {
    .login-logo-wrap {
        width: 92px;
        height: 74px;
        border-radius: 21px;
    }
    .login-card-intro .login-logo {
        width: 72px;
        height: 54px;
    }
    .login-card-intro h2 {
        font-size: 1.78rem;
    }
}

/* 2026-08-31 v10.2 contact CSS recovery
   Restores the compact contact support panel styles that were accidentally
   lost when the login-only patch replaced site.css with an older copy. */
.contact-support-panel {
    overflow: hidden;
    border: 1px solid rgba(69, 46, 59, .09);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 46px rgba(73,46,62,.07);
}
.contact-support-row {
    min-height: 112px;
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 56px minmax(0,1fr);
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(69,46,59,.07);
}
.contact-support-row > div {
    min-width: 0;
}
.contact-support-row strong {
    display: block;
    margin: 0 0 5px;
    color: #2b232a;
    font-size: .96rem;
    line-height: 1.35;
}
.contact-support-row p {
    max-width: 500px;
    margin: 0;
    color: #766b75;
    font-size: .76rem;
    line-height: 1.68;
}
.contact-support-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    flex: 0 0 56px;
    border-radius: 17px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}
.contact-support-icon svg {
    display: block;
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
}
.contact-support-icon-customer {
    color: #d61479;
    background: linear-gradient(145deg, #fff0f8, #ffe3ed);
}
.contact-support-icon-schedule {
    color: #cf7b18;
    background: linear-gradient(145deg, #fff8e9, #ffe8ca);
}
.contact-process-block {
    padding: 20px 22px 22px;
    background: linear-gradient(180deg, #fff, #fffbfd);
}
.contact-process-head {
    margin-bottom: 13px;
}
.contact-process-head strong {
    color: #2c242b;
    font-size: .82rem;
    line-height: 1.4;
}
.contact-process-list {
    display: grid;
    gap: 9px;
}
.contact-process-item {
    min-height: 62px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 36px minmax(0,1fr);
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(69,46,59,.075);
    border-radius: 17px;
    background: #fff;
}
.contact-process-item b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient(135deg, #ff76bf, #ffd45d);
    color: #53243b;
    font-size: .7rem;
}
.contact-process-item > div {
    min-width: 0;
    display: grid;
    gap: 2px;
}
.contact-process-item strong {
    color: #3a3139;
    font-size: .73rem;
    line-height: 1.35;
}
.contact-process-item span {
    color: #887c86;
    font-size: .63rem;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .contact-support-panel {
        border-radius: 20px;
    }
    .contact-support-row {
        min-height: 0;
        padding: 17px;
        grid-template-columns: 50px minmax(0,1fr);
        gap: 13px;
    }
    .contact-support-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 15px;
    }
    .contact-support-icon svg {
        width: 23px !important;
        height: 23px !important;
        max-width: 23px !important;
        max-height: 23px !important;
    }
    .contact-process-block {
        padding: 18px 17px 19px;
    }
}

/* =============================================================
   JSC Staffing Recruitment Portal v11 - Applicant Pipeline
   ============================================================= */
.portal-welcome-actions{display:flex;gap:10px;align-items:center;justify-content:flex-end;flex-wrap:wrap}.portal-welcome-actions .btn{white-space:nowrap}.portal-stat-grid.employer-stats{grid-template-columns:repeat(4,minmax(0,1fr))}.portal-stat-grid.recruitment-admin-stats{grid-template-columns:repeat(6,minmax(0,1fr))}.pipeline-summary-card{margin-bottom:20px}.pipeline-summary-grid{display:grid;grid-template-columns:repeat(8,minmax(85px,1fr));gap:8px}.pipeline-summary-grid>div{padding:12px;border-radius:14px;border:1px solid rgba(58,39,52,.08);background:#faf9fb}.pipeline-summary-grid span{display:block;color:#817681;font-size:.48rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.pipeline-summary-grid strong{display:block;margin-top:4px;font-size:1.2rem}.pipeline-summary-grid .stage-new{border-top:3px solid #6b7280}.pipeline-summary-grid .stage-screening{border-top:3px solid #3b82f6}.pipeline-summary-grid .stage-qualified{border-top:3px solid #8b5cf6}.pipeline-summary-grid .stage-interview{border-top:3px solid #f59e0b}.pipeline-summary-grid .stage-client_review{border-top:3px solid #06b6d4}.pipeline-summary-grid .stage-offer{border-top:3px solid #ec4899}.pipeline-summary-grid .stage-hired{border-top:3px solid #22c55e}.pipeline-summary-grid .stage-rejected{border-top:3px solid #ef4444}
.pipeline-intro{margin-bottom:14px}.pipeline-toolbar{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;padding:13px 15px;margin-bottom:14px;border:1px solid rgba(58,39,52,.08);border-radius:17px;background:#fff;box-shadow:0 8px 25px rgba(73,45,62,.035)}.pipeline-toolbar form{display:flex;align-items:flex-end;gap:9px;flex-wrap:wrap}.pipeline-toolbar label{display:grid;gap:5px;color:#766b77;font-size:.52rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase}.pipeline-toolbar select{min-width:185px;height:40px;padding:0 11px;border:1px solid rgba(58,39,52,.12);border-radius:11px;background:#fff;font-family:inherit;color:#332b34}.pipeline-toolbar form>a{padding:10px 2px;color:#c81770;font-size:.55rem;font-weight:700}.pipeline-toolbar .btn{height:40px;padding:0 16px}.pipeline-help{display:grid;gap:2px;text-align:right}.pipeline-help strong{font-size:.68rem}.pipeline-help span{max-width:420px;color:#8a808b;font-size:.52rem;line-height:1.4}
.applicant-kanban{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(270px,290px);gap:11px;overflow-x:auto;padding:2px 2px 13px;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch}.applicant-kanban-column{min-height:560px;overflow:hidden;border:1px solid rgba(58,39,52,.07);border-top:4px solid #cbd5e1;border-radius:18px;background:#f7f7f9;scroll-snap-align:start}.applicant-kanban-column.stage-new{border-top-color:#6b7280}.applicant-kanban-column.stage-screening{border-top-color:#3b82f6;background:#f5f9ff}.applicant-kanban-column.stage-qualified{border-top-color:#8b5cf6;background:#faf8ff}.applicant-kanban-column.stage-interview{border-top-color:#f59e0b;background:#fffaf1}.applicant-kanban-column.stage-client_review{border-top-color:#06b6d4;background:#f3fcfd}.applicant-kanban-column.stage-offer{border-top-color:#ec4899;background:#fff7fb}.applicant-kanban-column.stage-hired{border-top-color:#22c55e;background:#f4fcf7}.applicant-kanban-column.stage-rejected{border-top-color:#ef4444;background:#fff7f7}.applicant-kanban-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 13px;border-bottom:1px solid rgba(58,39,52,.06);background:rgba(255,255,255,.72)}.applicant-kanban-head div{display:grid;gap:1px}.applicant-kanban-head span{font-size:.68rem;font-weight:800}.applicant-kanban-head small{color:#948a94;font-size:.44rem}.applicant-kanban-head b{min-width:27px;height:27px;display:grid;place-items:center;padding:0 7px;border-radius:999px;background:#fff;box-shadow:0 4px 12px rgba(46,35,44,.07);font-size:.58rem}.applicant-kanban-stack{display:grid;gap:9px;padding:9px}.applicant-kanban-card{overflow:hidden;border:1px solid rgba(58,39,52,.08);border-radius:15px;background:#fff;box-shadow:0 7px 18px rgba(73,45,62,.04)}.applicant-card-open{width:100%;padding:12px;border:0;background:none;text-align:left;font-family:inherit;color:inherit;cursor:pointer}.applicant-card-open:hover{background:#fffafd}.applicant-card-top{display:grid;grid-template-columns:37px minmax(0,1fr);gap:9px;align-items:center}.candidate-avatar.compact{width:37px;height:37px;font-size:.68rem}.applicant-card-top div{min-width:0;display:grid;gap:1px}.applicant-card-top strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.67rem}.applicant-card-top small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#8b818b;font-size:.48rem}.applicant-card-job{display:grid;gap:1px;margin-top:10px;padding:9px;border-radius:11px;background:#faf8fa;border:1px solid rgba(58,39,52,.05)}.applicant-card-job span{color:#a0929e;font-size:.4rem;font-weight:800;letter-spacing:.08em}.applicant-card-job strong{font-size:.6rem;line-height:1.3}.applicant-card-job small{color:#8d838d;font-size:.46rem}.applicant-card-files{display:flex;gap:5px;flex-wrap:wrap;margin-top:9px}.applicant-card-files span{padding:4px 6px;border-radius:999px;background:#fff3f8;color:#9f3469;font-size:.42rem;font-weight:750}.applicant-card-foot{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:10px;padding-top:9px;border-top:1px solid rgba(58,39,52,.06);font-size:.45rem}.applicant-card-foot span{color:#938994}.applicant-card-foot b{color:#c71770}.applicant-kanban-empty{padding:22px 12px;border:1px dashed rgba(58,39,52,.12);border-radius:13px;background:rgba(255,255,255,.72);color:#968c97;text-align:center;font-size:.52rem}
.applicant-modal[hidden]{display:none!important}.applicant-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:22px}.applicant-modal-backdrop{position:absolute;inset:0;background:rgba(29,22,28,.68);backdrop-filter:blur(7px)}.applicant-modal-panel{position:relative;width:min(1100px,96vw);max-height:92vh;overflow:hidden;border:1px solid rgba(255,255,255,.17);border-radius:24px;background:#f8f8fa;box-shadow:0 30px 90px rgba(21,15,20,.35);display:flex;flex-direction:column}.applicant-modal-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;padding:18px 20px;background:linear-gradient(125deg,#241c25,#3e2636);color:#fff}.applicant-modal-person{display:grid;grid-template-columns:52px minmax(0,1fr);gap:12px;align-items:center}.applicant-modal-person h2{margin:3px 0 2px;font-size:1.25rem}.applicant-modal-person p{margin:0;color:rgba(255,255,255,.72);font-size:.58rem}.applicant-stage-pill{display:inline-flex;padding:4px 8px;border-radius:999px;background:#fff;color:#372b35;font-size:.42rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.applicant-modal-close{width:38px;height:38px;border:0;border-radius:999px;background:rgba(255,255,255,.12);color:#fff;font-size:1.35rem;cursor:pointer}.applicant-modal-close:hover{background:#fff;color:#2a2028}.applicant-modal-body{overflow:auto;padding:16px}.applicant-profile-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-bottom:12px}.applicant-profile-strip>div{padding:11px;border:1px solid rgba(58,39,52,.08);border-radius:13px;background:#fff}.applicant-profile-strip span{display:block;color:#998e99;font-size:.41rem;font-weight:800;letter-spacing:.07em}.applicant-profile-strip strong{display:block;margin-top:3px;font-size:.61rem}.applicant-modal-grid{display:grid;grid-template-columns:minmax(0,1fr) 315px;gap:12px;align-items:start}.applicant-modal-main{display:grid;gap:12px}.applicant-detail-card,.applicant-manage-card{padding:15px;border:1px solid rgba(58,39,52,.08);border-radius:17px;background:#fff}.applicant-section-title{margin-bottom:10px}.applicant-section-title span,.applicant-manage-kicker{display:block;color:#c81770;font-size:.43rem;font-weight:800;letter-spacing:.1em}.applicant-section-title h3,.applicant-manage-card h3{margin:2px 0 0;font-size:.85rem}.applicant-file-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.applicant-file-card{display:grid;grid-template-columns:38px minmax(0,1fr) auto;gap:9px;align-items:center;padding:10px;border:1px solid rgba(58,39,52,.08);border-radius:12px;background:#faf9fb;color:#302830}.applicant-file-card:hover{border-color:rgba(210,23,119,.28);background:#fff8fc}.applicant-file-card.disabled{opacity:.55}.applicant-file-card .file-icon{width:38px;height:38px;display:grid;place-items:center;border-radius:10px;background:linear-gradient(135deg,#fff0f7,#fff6d9);color:#b61d69;font-size:.48rem;font-weight:800}.applicant-file-card div{min-width:0;display:grid;gap:1px}.applicant-file-card strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.57rem}.applicant-file-card small{color:#968b95;font-size:.43rem}.applicant-file-card b{color:#c81770;font-size:.45rem}.applicant-detail-line{display:flex;justify-content:space-between;gap:15px;padding:9px 0;border-bottom:1px solid rgba(58,39,52,.06);font-size:.56rem}.applicant-copy-block{margin-top:11px}.applicant-copy-block>span{display:block;margin-bottom:5px;color:#988d98;font-size:.43rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.applicant-copy-block p{margin:0;color:#5e535e;font-size:.6rem;line-height:1.65;white-space:pre-wrap}.applicant-manage-card{position:sticky;top:0;background:linear-gradient(180deg,#fff,#fffafd)}.applicant-manage-card>p{margin:6px 0 14px;color:#827782;font-size:.53rem;line-height:1.5}.applicant-manage-form{display:grid;gap:10px}.applicant-manage-form label{display:grid;gap:5px;color:#6f6470;font-size:.49rem;font-weight:800}.applicant-manage-form label small{color:#9b909b;font-weight:500}.applicant-manage-form select,.applicant-manage-form textarea{width:100%;border:1px solid rgba(58,39,52,.13);border-radius:10px;padding:9px 10px;background:#fff;font:inherit;font-size:.56rem;resize:vertical}.applicant-manage-form .btn{width:100%}.applicant-timeline{display:grid;gap:9px}.applicant-timeline article{display:grid;grid-template-columns:9px minmax(0,1fr);gap:9px}.applicant-timeline article>i{width:9px;height:9px;margin-top:4px;border-radius:50%;background:#d31676;box-shadow:0 0 0 4px rgba(211,22,118,.08)}.applicant-timeline article div{display:grid;gap:1px;padding-bottom:8px;border-bottom:1px solid rgba(58,39,52,.06)}.applicant-timeline strong{font-size:.56rem}.applicant-timeline span{color:#978c97;font-size:.43rem}.applicant-timeline p{margin:3px 0 0;color:#675c67;font-size:.51rem;line-height:1.45}body.applicant-modal-open{overflow:hidden}
.application-status.status-screening,.application-status.status-reviewing{background:#eaf3ff;color:#235ea5}.application-status.status-qualified,.application-status.status-shortlisted{background:#f1eaff;color:#6941aa}.application-status.status-interview{background:#fff1d6;color:#985d00}.application-status.status-client_review{background:#e8fbfd;color:#0e7580}.application-status.status-offer{background:#ffe9f5;color:#a91b65}.application-status.status-hired{background:#e7faef;color:#137344}.application-status.status-rejected{background:#fee9e9;color:#a82121}
.employee-dashboard-grid{grid-template-columns:minmax(0,1.45fr) minmax(300px,.55fr)}.employee-side-stack{display:grid;gap:14px;align-content:start}.employee-application-list{display:grid;gap:10px}.employee-application-card{padding:13px;border:1px solid rgba(58,39,52,.08);border-radius:14px;background:#fff}.employee-application-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.employee-application-head>div{display:grid;gap:1px}.employee-application-head>div>span{color:#c81770;font-size:.42rem;font-weight:800;letter-spacing:.08em}.employee-application-head h4{margin:0;font-size:.72rem}.employee-application-head small{color:#958a95;font-size:.46rem}.employee-progress-track{height:7px;margin:11px 0 8px;overflow:hidden;border-radius:999px;background:#f0ebef}.employee-progress-track i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#e81979,#ffb028)}.employee-progress-meta{display:grid;grid-template-columns:auto 1fr auto;gap:7px;align-items:center;font-size:.48rem}.employee-progress-meta span{color:#968b96}.employee-progress-meta strong{font-size:.55rem}.employee-progress-meta small{justify-self:end;color:#9b909b}.employee-file-actions{display:flex;gap:6px;flex-wrap:wrap;margin-top:10px}.employee-file-actions a{padding:6px 8px;border:1px solid rgba(58,39,52,.08);border-radius:999px;background:#faf8fa;color:#a22567;font-size:.45rem;font-weight:700}.employee-application-note{margin:9px 0 0;padding:8px 10px;border-radius:9px;font-size:.48rem;line-height:1.5}.employee-application-note.hired{background:#edf9f2;color:#216b45}.employee-application-note.rejected{background:#fff0f0;color:#953131}.employee-job-link{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px 0;border-bottom:1px solid rgba(58,39,52,.06);color:#332a32}.employee-job-link:last-child{border-bottom:0}.employee-job-link div{display:grid;gap:1px}.employee-job-link strong{font-size:.58rem}.employee-job-link small{color:#948994;font-size:.44rem}.employee-job-link>span{color:#cf1674}.application-upload-box{display:grid;gap:8px;padding:13px;border:1px dashed rgba(207,22,116,.28);border-radius:14px;background:#fffafd}.application-upload-box>div{display:grid;gap:2px}.application-upload-box strong{font-size:.64rem}.application-upload-box strong>b{color:#c5166e;font-size:.46rem;text-transform:uppercase}.application-upload-box small{color:#8e838e;font-size:.48rem}.application-upload-box input[type=file]{width:100%;padding:8px;border:1px solid rgba(58,39,52,.09);border-radius:10px;background:#fff;font-size:.52rem}.application-upload-box.required{background:#fff8fb;border-style:solid}.application-privacy-note{margin:0;color:#8e838d;font-size:.48rem;line-height:1.55}.job-poster-card{margin-bottom:20px;overflow:hidden;border:1px solid rgba(58,39,52,.08);border-radius:22px;background:#fff;box-shadow:0 15px 40px rgba(73,45,62,.06)}.job-poster-card img{display:block;width:100%;height:auto}.job-detail-block.compact-contact{padding:20px}.job-detail-block.compact-contact p{margin:0}.admin-user-grid{align-items:start;margin-bottom:14px}.account-role-help{display:grid;gap:8px}.account-role-help article{display:grid;gap:2px;padding:11px;border:1px solid rgba(58,39,52,.07);border-radius:12px;background:#faf9fb}.account-role-help strong{font-size:.62rem}.account-role-help span{color:#877c87;font-size:.49rem;line-height:1.5}.portal-empty.compact{padding:12px}
@media(max-width:1180px){.portal-stat-grid.recruitment-admin-stats{grid-template-columns:repeat(3,1fr)}.pipeline-summary-grid{grid-template-columns:repeat(4,1fr)}.applicant-modal-grid{grid-template-columns:minmax(0,1fr) 285px}.portal-stat-grid.employer-stats{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.pipeline-toolbar{align-items:stretch;flex-direction:column}.pipeline-help{text-align:left}.pipeline-toolbar form{display:grid;grid-template-columns:1fr 1fr}.pipeline-toolbar label,.pipeline-toolbar select{width:100%;min-width:0}.applicant-profile-strip{grid-template-columns:1fr 1fr}.applicant-modal-grid{grid-template-columns:1fr}.applicant-manage-card{position:static}.employee-dashboard-grid{grid-template-columns:1fr}}
@media(max-width:680px){.portal-welcome-actions{width:100%;display:grid}.portal-welcome-actions .btn{width:100%}.pipeline-summary-grid{grid-template-columns:repeat(2,1fr)}.pipeline-toolbar form{grid-template-columns:1fr}.applicant-kanban{grid-auto-columns:calc(100vw - 42px);scroll-snap-type:x mandatory}.applicant-kanban-column{min-height:440px;scroll-snap-align:start}.applicant-modal{padding:8px;align-items:stretch}.applicant-modal-panel{width:100%;max-height:calc(100vh - 16px);border-radius:18px}.applicant-modal-head{padding:13px}.applicant-modal-person{grid-template-columns:42px minmax(0,1fr)}.candidate-avatar{width:42px;height:42px}.applicant-modal-person h2{font-size:1rem}.applicant-modal-person p{font-size:.5rem}.applicant-modal-body{padding:10px}.applicant-profile-strip{grid-template-columns:1fr 1fr}.applicant-file-grid{grid-template-columns:1fr}.applicant-detail-card,.applicant-manage-card{padding:12px}.portal-stat-grid.employer-stats,.portal-stat-grid.employee-application-stats{grid-template-columns:1fr 1fr}.employee-progress-meta{grid-template-columns:1fr}.employee-progress-meta small{justify-self:start}.job-poster-card{border-radius:16px}}
@media(max-width:420px){.portal-stat-grid.employer-stats,.portal-stat-grid.employee-application-stats,.portal-stat-grid.recruitment-admin-stats{grid-template-columns:1fr}.applicant-profile-strip{grid-template-columns:1fr}.applicant-kanban{grid-auto-columns:calc(100vw - 34px)}}
