: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; }
}
