:root {
    --ink: #15191d;
    --muted: #626a70;
    --line: #dfe3e5;
    --soft: #f3f5f4;
    --paper: #ffffff;
    --navy: #062f5f;
    --coral: #ef6954;
    --mint: #83c9b5;
    --sun: #f0c85a;
    --line-strong: #cbd2d1;
    --panel: #f8faf9;
    --container: 1240px;
    --gutter: 28px;
    --header-height: 82px;
    --bg-website-build: url('../images/bg-website-build.png');
    --bg-mini-program: url('../images/bg-mini-program.png');
    --bg-app-development: url('../images/bg-app-development.png');
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, dl, dd, blockquote { margin-top: 0; }
h1, h2, h3 { line-height: 1.16; font-weight: 600; letter-spacing: 0; }
p { color: var(--muted); }

.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.section::before { position: absolute; top: 0; left: max(var(--gutter), calc((100vw - var(--container)) / 2)); width: 42px; height: 3px; background: var(--coral); content: ""; }
.section--work::before, .values-section::before { background: var(--mint); }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 16px; }
.skip-link:focus { top: 12px; }
.eyebrow, .section-index { display: inline-flex; align-items: center; gap: 10px; margin: 0; color: var(--navy); font-size: 12px; font-weight: 700; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before, .section-index::before { width: 7px; height: 7px; background: var(--coral); border: 1px solid rgba(21,25,29,.08); content: ""; }
.eyebrow--light { color: #fff; }
.eyebrow--light::before, .section-heading--light .section-index::before { background: var(--mint); border-color: rgba(255,255,255,.26); }
.section-index { color: #7b8388; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-height); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(21,25,29,.08); backdrop-filter: blur(16px); }
.site-header::before { position: absolute; right: 0; bottom: -1px; left: 0; height: 1px; background: rgba(239,105,84,.38); content: ""; transform: scaleX(.18); transform-origin: left; }
.header-inner { height: 100%; display: grid; grid-template-columns: 245px 1fr auto; align-items: center; gap: 32px; }
.brand { position: relative; display: block; width: 206px; height: 62px; overflow: hidden; }
.brand-image { position: absolute; inset: 0; display: block; background: #fff url('../images/logo-source.png') no-repeat -14px -78px / 218px 218px; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 28px; height: 100%; }
.site-nav a { position: relative; display: flex; align-items: center; height: 100%; color: #3d4449; font-size: 14px; white-space: nowrap; transition: color .2s ease; }
.site-nav a::after { position: absolute; right: 0; bottom: 19px; left: 0; height: 2px; background: var(--coral); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.site-nav a.is-active { color: var(--ink); font-weight: 600; }
.header-cta, .button { position: relative; display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 10px; overflow: hidden; border: 1px solid transparent; border-radius: 4px; padding: 0 18px; font-size: 14px; font-weight: 600; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.header-cta { background: var(--ink); color: #fff; }
.header-cta:hover, .button:hover { box-shadow: 0 12px 24px rgba(21,25,29,.12); transform: translateY(-2px); }
.header-cta svg, .button svg, .text-link svg, .next-step-inner svg { width: 17px; height: 17px; }
.icon-button { width: 44px; height: 44px; display: inline-grid; place-items: center; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.icon-button svg { width: 20px; height: 20px; }
.icon-button--outline { border: 1px solid var(--line); transition: background .2s ease, color .2s ease; }
.icon-button--outline:hover { background: var(--ink); color: #fff; }
.menu-button { display: none; }

.button--light { background: #fff; color: var(--ink); }
.button--light:hover { background: var(--coral); color: #fff; }
.button--dark { background: var(--ink); color: #fff; }
.button--dark:hover { background: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 14px; font-weight: 600; }
.text-link--light { color: #fff; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.home-hero { position: relative; min-height: 0; height: 600px; max-height: none; overflow: hidden; color: #fff; background: #263642; }
.home-hero-media { position: absolute; inset: 0; background: #263642 var(--bg-website-build) center / cover no-repeat; transform: scale(1.015); }
.home-hero-shade { position: absolute; inset: 0; background: rgba(8,19,28,.58); }
.home-hero::before { position: absolute; top: 78px; right: max(var(--gutter), calc((100vw - var(--container)) / 2 + 250px)); z-index: 1; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.18); content: ""; transform: rotate(8deg); }
.home-hero::after { position: absolute; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); bottom: 68px; z-index: 1; width: min(42vw, 520px); height: 155px; background: rgba(255,255,255,.08); content: ""; backdrop-filter: blur(3px); }
.home-hero-content { position: relative; z-index: 2; display: flex; min-height: calc(100% - 68px); max-width: var(--container); flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 8px; }
.home-hero h1 { max-width: 680px; margin: 18px 0 14px; color: #fff; font-size: 62px; font-weight: 600; }
.home-hero-lead { max-width: 610px; margin-bottom: 28px; color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.hero-ui-board { position: absolute; top: 108px; right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); z-index: 3; width: 310px; padding: 18px; border: 1px solid rgba(255,255,255,.42); border-radius: 6px; background: rgba(255,255,255,.88); color: var(--ink); box-shadow: 0 24px 70px rgba(0,0,0,.18); backdrop-filter: blur(16px); }
.ui-board-head, .ui-board-foot, .ui-board-meter > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ui-board-head { padding-bottom: 14px; border-bottom: 1px solid rgba(21,25,29,.1); color: #4d565c; font-size: 11px; font-weight: 700; letter-spacing: 0; }
.ui-board-head svg { width: 16px; height: 16px; color: var(--navy); }
.ui-board-track { display: grid; gap: 8px; padding: 16px 0; }
.ui-board-track div { position: relative; display: grid; grid-template-columns: 15px 1fr auto; gap: 10px; align-items: center; min-height: 32px; padding: 0 10px 0 0; color: #5b646a; font-size: 13px; }
.ui-board-track div::after { position: absolute; top: 23px; bottom: -16px; left: 5px; width: 1px; background: #d7dddc; content: ""; }
.ui-board-track div:last-child::after { display: none; }
.ui-board-track div > span { width: 11px; height: 11px; border: 2px solid #c7cfcd; border-radius: 50%; background: #fff; }
.ui-board-track b { font-size: 13px; font-weight: 600; }
.ui-board-track small { color: #98a0a4; font-size: 11px; }
.ui-board-track .is-current { color: var(--ink); }
.ui-board-track .is-current > span { border-color: var(--coral); background: var(--coral); box-shadow: 0 0 0 4px rgba(239,105,84,.12); }
.ui-board-meter { padding: 14px; border: 1px solid rgba(21,25,29,.1); border-radius: 5px; background: rgba(255,255,255,.7); }
.ui-board-meter span { color: #687177; font-size: 12px; }
.ui-board-meter strong { color: var(--navy); font-size: 22px; line-height: 1; }
.meter-line { height: 6px; margin-top: 12px; overflow: hidden; border-radius: 999px; background: #dfe5e3; }
.meter-line i { display: block; width: 92%; height: 100%; background: var(--mint); }
.ui-board-foot { padding-top: 13px; color: #7a8388; font-size: 10px; font-weight: 700; }
.status-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); }
.status-dot::before { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); content: ""; }
.hero-foot { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; min-height: 68px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-top: 1px solid rgba(255,255,255,.26); color: rgba(255,255,255,.75); font-size: 13px; }
.hero-foot > a { border-right: 1px solid rgba(255,255,255,.2); text-align: center; }
.hero-foot > a:last-child { border-right: 0; }

.section--intro { background: var(--soft); }
.intro-grid { display: grid; grid-template-columns: 180px minmax(0, 1.05fr) minmax(340px, .9fr); gap: 54px; align-items: start; }
.intro-copy h2 { max-width: 700px; margin-bottom: 24px; font-size: 46px; }
.intro-copy p { max-width: 680px; margin: 0; font-size: 18px; }
.intro-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfd5d4; }
.intro-stats div { position: relative; padding: 24px 18px 0 0; }
.intro-stats div::before { position: absolute; top: -1px; left: 0; width: 36px; height: 2px; background: var(--mint); content: ""; }
.intro-stats dt { margin-bottom: 8px; color: var(--navy); font-size: 30px; font-weight: 600; line-height: 1.1; }
.intro-stats dd { margin: 0; color: var(--muted); font-size: 12px; }
.intro-visual { position: relative; min-height: 250px; padding: 18px; border: 1px solid #cfd5d4; background: #fff; }
.intro-visual-photo { height: 214px; background: #263642 var(--bg-website-build) center / cover no-repeat; }
.intro-visual-card { position: absolute; right: 0; bottom: 0; width: 190px; padding: 16px; border: 1px solid rgba(21,25,29,.12); background: rgba(255,255,255,.92); box-shadow: 0 18px 40px rgba(21,25,29,.12); }
.intro-visual-card span { display: block; margin-bottom: 14px; color: var(--navy); font-size: 11px; font-weight: 700; }
.intro-visual-card i { display: block; height: 8px; margin-top: 8px; background: #dce4e2; }
.intro-visual-card i:nth-child(2) { width: 82%; background: var(--coral); }
.intro-visual-card i:nth-child(3) { width: 62%; background: var(--mint); }
.intro-visual-card i:nth-child(4) { width: 74%; background: var(--sun); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 54px; }
.section-heading > div { position: relative; }
.section-heading h2 { max-width: 680px; margin: 14px 0 0; font-size: 42px; }
.section-heading--light h2, .section-heading--light .section-index { color: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.service-card { position: relative; min-height: 290px; display: grid; grid-template-columns: 54px 1fr; grid-template-rows: auto 1fr; gap: 28px; overflow: hidden; padding: 36px 50px 36px 0; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.service-card::before { position: absolute; top: 36px; bottom: 36px; left: 0; width: 3px; background: var(--coral); content: ""; transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.service-card:nth-child(odd) { border-right: 1px solid var(--line); }
.service-card:nth-child(even) { padding-left: 38px; }
.service-card:hover { background: var(--panel); padding-right: 42px; }
.service-card:hover::before { transform: scaleY(1); }
.service-number, .service-en { color: #858d92; font-size: 12px; }
.service-number { width: 36px; height: 28px; display: inline-grid; place-items: center; border: 1px solid var(--line); background: #fff; color: var(--navy); line-height: 1; }
.service-card h3 { margin: 8px 0 0; font-size: 28px; }
.service-card p { grid-column: 2; max-width: 470px; margin: 0; }
.service-card > svg { position: absolute; right: 22px; top: 38px; width: 21px; height: 21px; }

.section--work { position: relative; overflow: hidden; background: #171d21; color: #fff; }
.section--work::after { position: absolute; top: 0; right: 0; bottom: 0; width: 36%; background: rgba(255,255,255,.035); content: ""; pointer-events: none; }
.section--work .container { position: relative; z-index: 1; }
.featured-work { display: grid; grid-template-columns: repeat(12, 1fr); gap: 42px 24px; }
.work-item { position: relative; grid-column: span 6; }
.work-item:nth-child(3) { grid-column: 4 / span 6; }
.work-item:hover .mock-browser { transform: translateY(-6px); }
.work-item::after { position: absolute; right: 0; bottom: -16px; width: 46px; height: 2px; background: var(--coral); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.work-item:hover::after { transform: scaleX(1); }
.work-meta { position: relative; padding-top: 22px; }
.work-meta span { color: rgba(255,255,255,.56); font-size: 12px; }
.work-meta h3 { margin: 9px 0 8px; color: #fff; font-size: 27px; }
.work-meta p { margin: 0; color: rgba(255,255,255,.68); }

.project-visual { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 4px; padding: 10% 9%; }
.project-visual::before { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.18) 0 1px, transparent 1px 42px); content: ""; opacity: .45; }
.project-visual::after { position: absolute; top: 8%; right: 7%; width: 28%; height: 20%; border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.12); content: ""; }
.project-visual--cobalt { background: #0f477c; }
.project-visual--coral { background: #e37b65; }
.project-visual--mint { background: #88c7b1; }
.project-visual--sun { background: #e9c654; }
.mock-browser { position: relative; z-index: 1; height: 100%; overflow: hidden; border: 1px solid rgba(21,25,29,.12); border-radius: 5px; background: #fff; box-shadow: 0 24px 50px rgba(0,0,0,.18); transition: transform .35s ease, box-shadow .35s ease; }
.case-card:hover .mock-browser, .work-item:hover .mock-browser { box-shadow: 0 28px 60px rgba(0,0,0,.22); }
.mock-browser-bar { height: 12%; display: flex; align-items: center; gap: 5px; padding: 0 4%; border-bottom: 1px solid #e9ecec; }
.mock-browser-bar span { width: 6px; height: 6px; border-radius: 50%; background: #cfd5d6; }
.mock-browser-body { height: 88%; display: grid; grid-template-columns: 22% 1fr; }
.mock-sidebar { background: #eef1f1; border-right: 1px solid #e1e5e5; }
.mock-content { padding: 10% 9%; }
.mock-kicker { width: 22%; height: 6px; margin-bottom: 7%; background: var(--coral); }
.mock-heading { width: 76%; height: 10px; margin-bottom: 5px; background: #1a2228; }
.mock-heading--short { width: 54%; }
.mock-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5%; margin-top: 13%; }
.mock-panels span { aspect-ratio: 1.15; background: #e8eceb; border: 1px solid #dde2e1; }
.visual-index { position: absolute; right: 3.5%; bottom: 2%; color: rgba(255,255,255,.6); font-size: 11px; }

.process-grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 110px; }
.process-title { position: sticky; top: 130px; align-self: start; }
.process-title h2 { max-width: 460px; margin: 16px 0 0; font-size: 44px; }
.process-visual { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 330px; margin-top: 42px; padding: 14px; border: 1px solid var(--line); background: var(--panel); }
.process-visual span { display: block; height: 92px; border: 1px solid #d8dfdd; background: #fff; }
.process-visual span:nth-child(1) { background: #fff var(--bg-mini-program) 50% 48% / 430px auto no-repeat; }
.process-visual span:nth-child(2) { background: var(--coral); }
.process-visual span:nth-child(3) { background: var(--mint); }
.process-visual span:nth-child(4) { background: var(--sun); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list li::after { position: absolute; right: 0; bottom: -1px; width: 0; height: 1px; background: var(--coral); content: ""; transition: width .25s ease; }
.process-list li:hover::after { width: 100%; }
.process-list li > span { width: 42px; height: 30px; display: inline-grid; place-items: center; border: 1px solid #d8dddc; background: #fff; color: var(--coral); font-size: 12px; font-weight: 700; line-height: 1; }
.process-list h3 { margin-bottom: 10px; font-size: 24px; }
.process-list p { margin: 0; }

.section--insights { overflow: hidden; background: #f7f8f6; }
.section--insights::after { position: absolute; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); top: 118px; width: 260px; height: 120px; border: 1px solid #dfe4e3; background: rgba(255,255,255,.5); content: ""; pointer-events: none; }
.insight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.insight-card { position: relative; min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 28px 30px 30px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.insight-card::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--sun); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.insight-card:hover { background: #fff; padding-right: 24px; }
.insight-card:hover::before { transform: scaleX(1); }
.insight-card + .insight-card { padding-left: 30px; }
.insight-card:last-child { border-right: 0; }
.insight-index { color: var(--coral); font-size: 12px; }
.insight-card div > span { color: #7c8489; font-size: 12px; }
.insight-card h3 { margin: 12px 0 15px; font-size: 24px; }
.insight-card p { margin-bottom: 0; font-size: 14px; }
.insight-card > svg { position: absolute; top: 29px; right: 28px; width: 19px; }

.cta-band { position: relative; overflow: hidden; padding: 105px 0; background: var(--coral); }
.cta-band::after { position: absolute; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); bottom: 34px; width: 168px; height: 34px; border-top: 1px solid rgba(21,25,29,.2); border-bottom: 1px solid rgba(21,25,29,.2); content: ""; pointer-events: none; }
.cta-band-inner { position: relative; padding-right: 210px; }
.cta-band p { margin-bottom: 12px; color: rgba(21,25,29,.68); font-weight: 600; }
.cta-band h2 { max-width: 790px; margin: 0; font-size: 52px; }
.cta-band .button { position: absolute; right: 0; bottom: 4px; }

.site-footer { position: relative; padding-top: 82px; background: #15191d; color: #fff; }
.site-footer::before { position: absolute; top: 0; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); left: max(var(--gutter), calc((100vw - var(--container)) / 2)); height: 1px; background: rgba(255,255,255,.16); content: ""; }
.footer-main { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding-bottom: 72px; }
.footer-intro { display: flex; align-items: flex-start; gap: 22px; }
.footer-mark { position: relative; width: 54px; height: 54px; display: grid; flex: 0 0 54px; place-items: center; border: 1px solid rgba(255,255,255,.36); color: #fff; font-size: 20px; }
.footer-mark::after { position: absolute; right: -7px; bottom: -7px; width: 14px; height: 14px; border-right: 1px solid var(--coral); border-bottom: 1px solid var(--coral); content: ""; }
.footer-intro p { max-width: 280px; margin: 8px 0 0; color: #fff; font-size: 23px; }
.footer-links { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
.footer-links > div { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 16px; color: rgba(255,255,255,.62); font-size: 13px; }
.footer-links > div::before { position: absolute; top: 0; left: 0; width: 28px; height: 2px; background: rgba(131,201,181,.7); content: ""; }
.footer-links a:hover { color: #fff; }
.footer-label { margin-bottom: 10px; color: #fff; font-weight: 600; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.48); font-size: 12px; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom svg { width: 15px; }

.page-hero { position: relative; overflow: hidden; padding: 110px 0 100px; border-bottom: 1px solid var(--line); background: #fff; }
.page-hero::after { position: absolute; right: 0; bottom: 0; z-index: 0; width: 42%; height: 100%; background: var(--panel); content: ""; }
.page-hero::before { position: absolute; top: 0; bottom: 0; left: max(var(--gutter), calc((100vw - var(--container)) / 2)); width: 1px; background: var(--line); content: ""; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 420px); gap: 64px; align-items: start; }
.page-hero-copy h1 { max-width: 920px; margin: 0 0 28px; font-size: 58px; }
.page-hero-copy p { max-width: 740px; margin: 0; font-size: 19px; }
.page-hero-media { min-height: 265px; padding: 16px; border: 1px solid var(--line); background: #fff; box-shadow: 0 24px 54px rgba(21,25,29,.08); }
.page-hero-frame { position: relative; height: 235px; overflow: hidden; background: #263642 var(--bg-website-build) center / cover no-repeat; }
.page-hero-frame::before { position: absolute; inset: 0; background: rgba(8,19,28,.2); content: ""; }
.page-hero-frame::after { position: absolute; right: 18px; bottom: 18px; left: 18px; height: 54px; background: rgba(255,255,255,.86); content: ""; }
.page-hero-frame span { position: absolute; z-index: 1; display: block; }
.page-hero-frame span:nth-child(1) { left: 18px; bottom: 34px; width: 36%; height: 8px; background: var(--coral); }
.page-hero-frame span:nth-child(2) { right: 26px; bottom: 34px; width: 16%; height: 8px; background: var(--mint); }
.page-hero-frame span:nth-child(3) { left: 18px; bottom: 20px; width: 52%; height: 6px; background: #dfe5e3; }
.filter-band { position: sticky; top: var(--header-height); z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.filter-band::before { position: absolute; right: 0; bottom: -1px; left: 0; height: 1px; background: rgba(131,201,181,.7); content: ""; transform: scaleX(.2); transform-origin: left; }
.filter-row { min-height: 72px; display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-chip { flex: 0 0 auto; padding: 8px 14px; border: 1px solid transparent; border-radius: 4px; color: var(--muted); font-size: 13px; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.filter-chip:hover { background: var(--panel); color: var(--ink); border-color: var(--line); }
.filter-chip.is-active { background: var(--ink); color: #fff; }

.directory-list { border-top: 1px solid var(--line); }
.directory-row { position: relative; min-height: 190px; display: grid; grid-template-columns: 74px minmax(0, 1.4fr) minmax(190px, .6fr) 52px; gap: 34px; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); transition: background .25s ease; }
.directory-row::before { position: absolute; top: 28px; bottom: 28px; left: 0; width: 3px; background: var(--mint); content: ""; transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.directory-row:hover { background: #f8faf9; }
.directory-row:hover::before { transform: scaleY(1); }
.directory-number, .directory-en { color: #858d91; font-size: 12px; }
.directory-number { width: 42px; height: 32px; display: inline-grid; place-items: center; border: 1px solid var(--line); background: #fff; color: var(--navy); font-weight: 700; line-height: 1; }
.directory-main h2 { margin: 6px 0 12px; font-size: 31px; }
.directory-main p { max-width: 650px; margin: 0; }
.directory-meta { display: flex; flex-direction: column; gap: 6px; }
.directory-meta span { color: #858d91; font-size: 12px; }
.directory-meta strong { font-size: 15px; font-weight: 600; }
.service-principles, .combination-band { background: var(--soft); }
.split-heading { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 54px; }
.split-heading > div { max-width: 830px; }
.split-heading h2 { margin-bottom: 25px; font-size: 42px; }
.split-heading > div > p { font-size: 18px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 72px; border-top: 1px solid #cfd4d2; }
.principle-item { position: relative; min-height: 220px; padding: 28px 30px 0 0; border-right: 1px solid #cfd4d2; }
.principle-item::before { position: absolute; top: -1px; left: 0; width: 34px; height: 2px; background: var(--coral); content: ""; }
.principle-item + .principle-item { padding-left: 30px; }
.principle-item:last-child { border-right: 0; }
.principle-item span { color: var(--coral); font-size: 12px; }
.principle-item h3 { margin: 28px 0 12px; font-size: 22px; }

.detail-hero { position: relative; overflow: hidden; padding: 66px 0 98px; background: var(--soft); }
.detail-hero::before { position: absolute; top: 0; right: 0; bottom: 0; width: 38%; background: #fff; content: ""; }
.detail-hero::after { position: absolute; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); bottom: 44px; width: 190px; height: 44px; border-top: 1px solid #d8dedc; border-bottom: 1px solid #d8dedc; content: ""; }
.breadcrumb { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 72px; color: var(--muted); font-size: 13px; }
.breadcrumb:hover { color: var(--ink); }
.breadcrumb svg { width: 16px; }
.breadcrumb--light { color: rgba(255,255,255,.72); }
.detail-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 300px 1fr; gap: 70px; }
.detail-number { display: inline-grid; width: 76px; height: 58px; place-items: center; margin-bottom: 28px; border: 1px solid var(--line-strong); background: #fff; color: var(--coral); font-size: 36px; line-height: 1; }
.detail-hero-grid h1 { max-width: 820px; margin: -14px 0 26px; font-size: 64px; }
.detail-hero-grid > div:last-child > p { max-width: 760px; margin-bottom: 0; font-size: 20px; }
.detail-hero-grid small { display: block; margin-top: 24px; color: var(--muted); }
.detail-hero-visual { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; max-width: 520px; min-height: 168px; margin-top: 38px; padding: 12px; border: 1px solid var(--line); background: #fff; }
.detail-hero-visual span { display: block; min-height: 62px; background: var(--panel); }
.detail-hero-visual span:nth-child(1) { grid-row: span 2; background: #263642 var(--bg-website-build) center / cover no-repeat; }
.detail-hero-visual span:nth-child(2) { background: var(--coral); }
.detail-hero-visual span:nth-child(3) { background: var(--mint); }
.detail-content-grid { display: grid; grid-template-columns: 300px minmax(0, 760px); gap: 70px; }
.detail-facts { display: flex; flex-direction: column; gap: 0; padding-right: 30px; border-right: 1px solid var(--line); }
.detail-facts div { display: flex; flex-direction: column; gap: 8px; padding: 0 0 28px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.detail-facts div:last-child { margin-bottom: 0; }
.detail-facts span { color: #858d91; font-size: 12px; }
.detail-facts strong { font-size: 14px; font-weight: 600; }
.rich-copy p { margin-bottom: 27px; color: #353c41; font-size: 19px; line-height: 1.9; }
.rich-copy blockquote { position: relative; margin: 50px 0 0; padding: 28px 0 28px 30px; border-left: 3px solid var(--coral); color: var(--ink); font-size: 25px; line-height: 1.5; }
.rich-copy blockquote::before { position: absolute; top: 0; left: 30px; width: 60px; height: 1px; background: var(--line-strong); content: ""; }
.detail-capabilities, .solution-steps { background: #f7f8f6; }
.feature-grid, .step-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.feature-item, .step-card { position: relative; min-height: 280px; padding: 30px 34px 20px 0; border-right: 1px solid var(--line); transition: background .25s ease; }
.feature-item::before, .step-card::before { position: absolute; top: -1px; left: 0; width: 34px; height: 2px; background: var(--mint); content: ""; }
.feature-item:hover, .step-card:hover { background: #fff; }
.feature-item + .feature-item, .step-card + .step-card { padding-left: 34px; }
.feature-item:last-child, .step-card:last-child { border-right: 0; }
.feature-item span, .step-card span { color: var(--coral); font-size: 12px; }
.feature-item h3, .step-card h3 { margin: 64px 0 14px; font-size: 24px; }
.next-step-band { position: relative; overflow: hidden; padding: 80px 0; background: var(--navy); color: #fff; }
.next-step-band::before { position: absolute; top: 0; bottom: 0; left: max(var(--gutter), calc((100vw - var(--container)) / 2)); width: 1px; background: rgba(255,255,255,.16); content: ""; }
.next-step-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.next-step-inner p { margin: 0; color: rgba(255,255,255,.6); }
.next-step-inner a { display: inline-flex; align-items: center; gap: 14px; color: #fff; font-size: 30px; font-weight: 600; }
.next-step-inner a svg { transition: transform .2s ease; }
.next-step-inner a:hover svg { transform: translate(4px, -4px); }

.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 76px 28px; }
.case-card-copy { position: relative; padding: 22px 42px 0 0; }
.case-card-copy::before { position: absolute; top: 0; left: 0; width: 38px; height: 2px; background: var(--coral); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.case-card:hover .case-card-copy::before { transform: scaleX(1); }
.case-card-copy span { color: #858d91; font-size: 12px; }
.case-card-copy h2 { margin: 7px 0 8px; font-size: 29px; }
.case-card-copy p { margin: 0; }
.case-card-copy svg { position: absolute; right: 3px; top: 31px; width: 20px; }
.case-card:hover .mock-browser { transform: translateY(-6px); }
.empty-state { padding: 60px 0; text-align: center; }
.case-detail-hero { position: relative; overflow: hidden; padding: 64px 0 100px; background: #171d21; color: #fff; }
.case-detail-hero::after { position: absolute; top: 92px; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); width: 160px; height: 34px; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); content: ""; }
.case-detail-title { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.case-detail-title h1 { margin: 12px 0 0; color: #fff; font-size: 68px; }
.case-detail-title > p { margin: 0; color: rgba(255,255,255,.7); font-size: 20px; }
.case-detail-hero .project-visual { max-height: 650px; }
.case-overview { padding: 44px 0; border-bottom: 1px solid var(--line); }
.case-overview-grid { display: grid; grid-template-columns: .6fr .8fr 1.5fr 1.2fr; gap: 30px; }
.case-overview-grid div { position: relative; display: flex; flex-direction: column; gap: 6px; padding-top: 16px; }
.case-overview-grid div::before { position: absolute; top: 0; left: 0; width: 28px; height: 2px; background: var(--mint); content: ""; }
.case-overview-grid span { color: #858d91; font-size: 12px; }
.case-overview-grid strong { font-size: 14px; }
.case-narrative { padding-bottom: 40px; }
.narrative-row { position: relative; display: grid; grid-template-columns: 300px minmax(0, 760px); gap: 70px; padding: 70px 0; border-bottom: 1px solid var(--line); }
.narrative-row::after { position: absolute; right: 0; bottom: -1px; width: 80px; height: 1px; background: var(--coral); content: ""; }
.narrative-row > span { color: var(--coral); font-size: 12px; }
.narrative-row h2 { margin-bottom: 20px; font-size: 35px; }
.narrative-row p { margin: 0; font-size: 18px; line-height: 1.9; }
.case-metrics { padding: 80px 0; background: var(--soft); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.metric-item { position: relative; display: flex; min-height: 150px; flex-direction: column; justify-content: center; border-right: 1px solid #cfd4d2; text-align: center; }
.metric-item::before { position: absolute; top: 0; left: 50%; width: 34px; height: 3px; background: var(--coral); content: ""; transform: translateX(-50%); }
.metric-item:last-child { border-right: 0; }
.metric-item strong { color: var(--navy); font-size: 43px; line-height: 1.2; }
.metric-item span { margin-top: 10px; color: var(--muted); font-size: 13px; }

.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.solution-card { position: relative; min-height: 380px; overflow: hidden; padding: 34px 42px 36px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.solution-card::before { position: absolute; top: 34px; bottom: 34px; left: 0; width: 3px; background: var(--mint); content: ""; transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.solution-card:nth-child(even) { padding-left: 42px; border-right: 0; }
.solution-card:nth-child(even)::before { left: 42px; }
.solution-card:hover { background: var(--panel); padding-right: 34px; }
.solution-card:hover::before { transform: scaleY(1); }
.solution-top { display: flex; justify-content: space-between; color: var(--coral); font-size: 13px; }
.solution-top span { width: 40px; height: 30px; display: inline-grid; place-items: center; border: 1px solid var(--line); background: #fff; font-weight: 700; line-height: 1; }
.solution-top svg { width: 19px; }
.solution-card h2 { margin: 78px 0 20px; font-size: 32px; }
.solution-card p { max-width: 500px; }
.solution-card small { display: block; margin-top: 30px; color: #7c8489; }
.step-grid { grid-template-columns: repeat(4, 1fr); margin: 0 auto; padding: 0; list-style: none; }
.step-card h3 { margin-top: 54px; }

.article-list { border-top: 1px solid var(--line); }
.article-row { position: relative; min-height: 230px; display: grid; grid-template-columns: 130px minmax(0, 1fr) 44px; gap: 42px; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); transition: background .25s ease; }
.article-row::before { position: absolute; top: 28px; bottom: 28px; left: 0; width: 3px; background: var(--sun); content: ""; transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.article-row:hover { background: var(--panel); }
.article-row:hover::before { transform: scaleY(1); }
.article-date { display: flex; flex-direction: column; }
.article-date span, .article-date small { width: max-content; }
.article-date span { color: var(--navy); font-size: 27px; font-weight: 600; }
.article-date small, .article-main > span { color: #858d91; font-size: 12px; }
.article-main h2 { margin: 10px 0 13px; font-size: 30px; }
.article-main p { max-width: 730px; margin: 0; }
.article-row > svg { width: 20px; transition: transform .2s ease; }
.article-row:hover > svg { transform: translate(3px, -3px); }
.post-hero { position: relative; overflow: hidden; padding: 64px 0 105px; background: var(--soft); }
.post-hero::after { position: absolute; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); bottom: 46px; width: 150px; height: 32px; border-top: 1px solid #d8dedc; border-bottom: 1px solid #d8dedc; content: ""; }
.post-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 390px); gap: 70px; align-items: end; }
.post-hero-inner { max-width: 980px; }
.post-hero .breadcrumb { margin-bottom: 90px; }
.post-hero h1 { max-width: 900px; margin: 20px 0 34px; font-size: 57px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 13px; }
.post-meta span { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border: 1px solid #d8dedc; background: rgba(255,255,255,.7); }
.post-hero-visual { position: relative; min-height: 300px; padding: 16px; border: 1px solid var(--line); background: #fff; box-shadow: 0 24px 54px rgba(21,25,29,.08); }
.post-hero-visual::before { position: absolute; inset: 16px; background: #263642 var(--bg-app-development) 50% 50% / cover no-repeat; content: ""; }
.post-hero-visual::after { position: absolute; right: 34px; bottom: 34px; width: 58%; height: 82px; background: rgba(255,255,255,.88); content: ""; }
.post-hero-visual span { position: absolute; z-index: 1; display: block; height: 8px; }
.post-hero-visual span:nth-child(1) { right: 54px; bottom: 88px; width: 35%; background: var(--coral); }
.post-hero-visual span:nth-child(2) { right: 54px; bottom: 68px; width: 46%; background: var(--mint); }
.post-hero-visual span:nth-child(3) { right: 54px; bottom: 48px; width: 27%; background: var(--sun); }
.post-layout { display: grid; grid-template-columns: 180px minmax(0, 760px); gap: 60px; padding-top: 100px; padding-bottom: 120px; }
.post-share { position: sticky; top: 130px; align-self: start; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 12px; }
.post-content { position: relative; }
.post-content::before { position: absolute; top: 11px; bottom: 8px; left: -32px; width: 1px; background: var(--line); content: ""; }
.post-content p { margin-bottom: 30px; color: #353c41; font-size: 18px; line-height: 2; }
.related-posts { background: #f7f8f6; }

.statement-grid { display: grid; grid-template-columns: 180px 1fr; gap: 54px; }
.statement-grid > div { max-width: 880px; }
.statement-grid h2 { margin-bottom: 28px; font-size: 43px; }
.statement-grid p { font-size: 18px; }
.statement-visual { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; max-width: 660px; margin-top: 42px; padding: 14px; border: 1px solid var(--line); background: var(--panel); }
.statement-visual span { display: block; min-height: 150px; border: 1px solid #d8dfdd; }
.statement-visual span:nth-child(1) { background: #263642 var(--bg-app-development) 48% 50% / 620px auto no-repeat; }
.statement-visual span:nth-child(2) { background: var(--coral); }
.statement-visual span:nth-child(3) { background: var(--mint); }
.capability-team { background: var(--soft); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cfd4d2; }
.team-item { position: relative; min-height: 270px; overflow: hidden; padding: 28px 28px 20px 0; border-right: 1px solid #cfd4d2; transition: background .25s ease; }
.team-item::before { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--mint); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.team-item:hover { background: #fff; }
.team-item:hover::before { transform: scaleX(1); }
.team-item + .team-item { padding-left: 28px; }
.team-item:last-child { border-right: 0; }
.team-item > span { width: 48px; height: 48px; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: 12px; }
.team-item:nth-child(2) > span { background: var(--coral); }
.team-item:nth-child(3) > span { background: #477d70; }
.team-item:nth-child(4) > span { background: #b28b22; }
.team-item h3 { margin: 58px 0 12px; font-size: 22px; }
.values-section { background: #171d21; color: #fff; }
.values-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.values-grid h2 { max-width: 420px; margin-top: 15px; color: #fff; font-size: 43px; }
.values-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.values-list li { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.values-list li::after { position: absolute; right: 0; bottom: -1px; width: 64px; height: 1px; background: rgba(131,201,181,.7); content: ""; }
.values-list li > span { width: 42px; height: 28px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.22); color: var(--coral); font-size: 12px; line-height: 1; }
.values-list h3 { margin-bottom: 9px; color: #fff; font-size: 22px; }
.values-list p { margin: 0; color: rgba(255,255,255,.6); }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 70px; }
.quote-item { position: relative; margin: 0; padding-left: 28px; border-left: 3px solid var(--coral); }
.quote-item::before { position: absolute; top: 0; left: 28px; width: 58px; height: 1px; background: var(--line-strong); content: ""; }
.quote-item p { color: var(--ink); font-size: 28px; line-height: 1.55; }
.quote-item footer { display: flex; flex-direction: column; color: var(--muted); font-size: 12px; }
.quote-item footer strong { color: var(--ink); }

.contact-grid { display: grid; grid-template-columns: minmax(280px, 320px) minmax(0, 1fr); gap: clamp(52px, 6vw, 90px); }
.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-visual { position: relative; min-height: 220px; padding: 14px; border: 1px solid var(--line); background: #fff; }
.contact-visual::before { position: absolute; inset: 14px; background: #263642 var(--bg-mini-program) 55% 50% / cover no-repeat; content: ""; }
.contact-visual::after { position: absolute; right: 26px; bottom: 26px; width: 120px; height: 58px; background: rgba(255,255,255,.88); content: ""; }
.contact-visual span { position: absolute; z-index: 1; display: block; }
.contact-visual span:nth-child(1) { right: 42px; bottom: 62px; width: 64px; height: 8px; background: var(--coral); }
.contact-visual span:nth-child(2) { right: 42px; bottom: 44px; width: 84px; height: 8px; background: var(--mint); }
.contact-method { position: relative; display: flex; flex-direction: column; gap: 5px; padding: 18px 0 0; border-top: 1px solid var(--line); }
.contact-method::before { position: absolute; top: -1px; left: 0; width: 30px; height: 2px; background: var(--coral); content: ""; }
.contact-method span { color: #858d91; font-size: 12px; }
.contact-method a, .contact-method strong { font-size: 14px; font-weight: 600; word-break: break-word; }
.form-wrap { position: relative; width: 100%; min-width: 0; padding: 34px; border: 1px solid var(--line); background: #fff; }
.form-wrap::before { position: absolute; top: -1px; left: -1px; width: 72px; height: 3px; background: var(--mint); content: ""; }
.form-heading span { color: var(--coral); font-size: 12px; }
.form-heading h2 { margin: 10px 0 12px; font-size: 37px; }
.form-heading p { margin-bottom: 42px; font-size: 14px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.form-wrap form { display: flex; flex-direction: column; gap: 24px; }
.form-wrap label { display: flex; flex-direction: column; gap: 8px; color: #4f575c; font-size: 13px; }
.form-wrap input, .form-wrap select, .form-wrap textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; outline: 0; background: var(--panel); color: var(--ink); padding: 13px 14px; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.form-wrap input:hover, .form-wrap select:hover, .form-wrap textarea:hover { background: #fff; }
.form-wrap input, .form-wrap select { height: 50px; }
.form-wrap textarea { resize: vertical; min-height: 150px; }
.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(6,47,95,.1); }
.form-wrap label small { color: #bb3b2b; }
.submit-button { align-self: flex-start; min-width: 166px; margin-top: 8px; }
.honeypot { position: absolute; left: -10000px; }
.form-error-banner { margin-bottom: 24px; border-left: 3px solid #bb3b2b; background: #fff1ee; padding: 12px 16px; color: #8d2b20; font-size: 13px; }
.form-success { display: flex; gap: 20px; align-items: flex-start; padding: 34px; border: 1px solid #acd6c6; background: #f0faf6; }
.form-success svg { width: 28px; height: 28px; color: #28735f; }
.form-success h2 { margin: 0 0 8px; }
.form-success p { margin: 0; }
.faq-section { background: var(--soft); }
.faq-list { margin-top: 48px; border-top: 1px solid #cfd4d2; }
.faq-item { border-bottom: 1px solid #cfd4d2; }
.faq-item summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-weight: 600; transition: color .2s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--navy); }
.faq-item summary svg { width: 18px; transition: transform .2s ease, color .2s ease; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--ink); }
.faq-item p { max-width: 680px; padding: 0 38px 28px 0; margin: 0; }

.not-found { min-height: 70vh; display: grid; place-items: center; padding: 100px 0; }
.not-found-inner { position: relative; max-width: 620px; padding: 54px 42px; border: 1px solid var(--line); background: #fff; text-align: center; }
.not-found-inner::before { position: absolute; top: -1px; left: 50%; width: 90px; height: 3px; background: var(--coral); content: ""; transform: translateX(-50%); }
.not-found-inner > span { color: var(--coral); font-size: 18px; font-weight: 700; }
.not-found h1 { margin: 12px 0 16px; font-size: 50px; }
.not-found .button { margin-top: 18px; }

@media (max-width: 1050px) {
    :root { --gutter: 22px; }
    .header-inner { grid-template-columns: 220px 1fr auto; gap: 18px; }
    .brand { width: 198px; height: 60px; }
    .brand-image { background-position: -12px -77px; background-size: 211px 211px; }
    .site-nav { gap: 17px; }
    .header-cta { display: none; }
    .hero-ui-board { top: 126px; width: 292px; }
    .home-hero h1 { max-width: 620px; }
    .home-hero-lead { max-width: 560px; }
    .intro-grid { grid-template-columns: 140px 1fr; }
    .intro-stats { grid-column: 2; }
    .detail-hero-grid, .detail-content-grid, .narrative-row { grid-template-columns: 220px 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 240px 1fr; gap: 60px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-item:nth-child(2) { border-right: 0; }
    .team-item:nth-child(-n+2) { border-bottom: 1px solid #cfd4d2; }
}

@media (max-width: 820px) {
    :root { --header-height: 70px; --gutter: 20px; }
    .section { padding: 82px 0; }
    .section::before { left: var(--gutter); }
    .header-inner { grid-template-columns: 1fr auto; }
    .brand { width: 188px; height: 56px; }
    .brand-image { background-position: -11px -73px; background-size: 200px 200px; }
    .menu-button { display: inline-grid; }
    .site-nav { position: fixed; top: var(--header-height); right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 24px var(--gutter) 60px; background: #fff; visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
    .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .site-nav a { height: 58px; border-bottom: 1px solid var(--line); font-size: 20px; }
    .site-nav a::after { display: none; }
    .home-hero { height: 590px; min-height: 0; max-height: none; }
    .home-hero-content { min-height: calc(100% - 70px); padding-bottom: 24px; }
    .home-hero h1 { max-width: 620px; font-size: 50px; }
    .home-hero-lead { max-width: 560px; font-size: 18px; }
    .hero-ui-board { display: none; }
    .hero-foot { min-height: 70px; grid-template-columns: repeat(2, 1fr); }
    .hero-foot > a:nth-child(3), .hero-foot > a:nth-child(4) { display: none; }
    .intro-grid, .page-hero-grid, .split-heading, .statement-grid { grid-template-columns: 1fr; gap: 28px; }
    .page-hero::after { width: 100%; height: 42%; top: auto; }
    .page-hero-media { max-width: 560px; }
    .intro-visual { grid-column: auto; max-width: 560px; }
    .intro-stats { grid-column: auto; }
    .intro-copy h2, .section-heading h2, .split-heading h2, .statement-grid h2 { font-size: 36px; }
    .service-grid, .case-grid, .solution-grid { grid-template-columns: 1fr; }
    .service-card:nth-child(odd) { border-right: 0; }
    .service-card:nth-child(even) { padding-left: 0; }
    .featured-work { grid-template-columns: 1fr; }
    .work-item, .work-item:nth-child(3) { grid-column: 1; }
    .process-grid, .values-grid { grid-template-columns: 1fr; gap: 55px; }
    .process-title { position: static; }
    .process-visual { max-width: 520px; }
    .insight-grid { grid-template-columns: 1fr; }
    .insight-card, .insight-card + .insight-card { min-height: 260px; padding: 26px 44px 28px 0; border-right: 0; }
    .cta-band-inner { padding-right: 0; }
    .cta-band h2 { font-size: 42px; }
    .cta-band .button { position: static; margin-top: 30px; }
    .footer-main { grid-template-columns: 1fr; gap: 54px; }
    .page-hero { padding: 80px 0 76px; }
    .page-hero-copy h1 { font-size: 48px; }
    .directory-row { grid-template-columns: 50px 1fr 44px; gap: 22px; padding: 30px 0; }
    .directory-meta { grid-column: 2; }
    .principle-grid, .feature-grid, .step-grid { grid-template-columns: 1fr; }
    .principle-item, .principle-item + .principle-item, .feature-item, .feature-item + .feature-item, .step-card, .step-card + .step-card { min-height: 210px; padding: 26px 0; border-right: 0; border-bottom: 1px solid #cfd4d2; }
    .detail-hero-grid, .detail-content-grid, .narrative-row { grid-template-columns: 1fr; gap: 34px; }
    .detail-hero-grid h1 { font-size: 52px; }
    .detail-hero::before { display: none; }
    .detail-hero-visual { max-width: 560px; }
    .detail-facts { display: grid; grid-template-columns: repeat(2, 1fr); padding: 0 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
    .detail-hero::after, .case-detail-hero::after, .post-hero::after { display: none; }
    .post-content::before { display: none; }
    .next-step-inner { align-items: flex-start; flex-direction: column; }
    .next-step-inner a { font-size: 25px; }
    .case-detail-title { grid-template-columns: 1fr; }
    .case-detail-title h1 { font-size: 55px; }
    .case-overview-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .solution-card, .solution-card:nth-child(even), .solution-card:hover { padding: 32px 0; border-right: 0; }
    .solution-card::before, .solution-card:nth-child(even)::before { left: 0; }
    .article-row { grid-template-columns: 86px 1fr 28px; gap: 24px; }
    .post-layout { grid-template-columns: 1fr; }
    .post-hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .post-hero-visual { max-width: 560px; }
    .post-share { position: static; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 70px; }
    .contact-visual { max-width: 560px; }
    .form-wrap { padding: 28px; }
}

@media (max-width: 560px) {
    :root { --gutter: 16px; }
    body { font-size: 15px; }
    .section { padding: 68px 0; }
    .section::before { width: 34px; }
    .home-hero { height: 560px; min-height: 0; }
    .home-hero::before, .home-hero::after, .section--insights::after { display: none; }
    .home-hero-media { background-position: 58% center; }
    .home-hero h1 { font-size: 40px; }
    .home-hero-lead { font-size: 16px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .intro-copy h2, .section-heading h2, .split-heading h2, .statement-grid h2, .process-title h2, .values-grid h2 { font-size: 31px; }
    .intro-stats { grid-template-columns: 1fr; gap: 18px; }
    .intro-stats div { display: flex; align-items: baseline; gap: 18px; padding-top: 18px; border-bottom: 1px solid #d9dddc; }
    .intro-visual { min-height: 210px; padding: 12px; }
    .intro-visual-photo { height: 186px; }
    .intro-visual-card { width: 160px; padding: 12px; }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .service-card, .service-card:hover { min-height: 250px; grid-template-columns: 42px 1fr; gap: 18px; padding-right: 32px; }
    .project-visual { padding: 12% 7%; }
    .process-list li { grid-template-columns: 42px 1fr; gap: 15px; }
    .process-visual { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
    .process-visual span { height: 72px; }
    .cta-band { padding: 74px 0; }
    .cta-band h2 { font-size: 34px; }
    .footer-links { grid-template-columns: 1fr 1fr; row-gap: 38px; }
    .footer-links > div:first-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
    .page-hero-copy h1 { font-size: 38px; }
    .contact-page .page-hero-copy h1 { font-size: 40px; }
    .page-hero-copy p { font-size: 17px; }
    .page-hero-media { min-height: 214px; padding: 12px; }
    .page-hero-frame { height: 190px; }
    .directory-row { grid-template-columns: 38px 1fr 42px; }
    .directory-main h2 { font-size: 26px; }
    .detail-hero { padding: 44px 0 70px; }
    .breadcrumb { margin-bottom: 50px; }
    .detail-number { width: 62px; height: 48px; font-size: 30px; }
    .detail-hero-grid h1 { font-size: 40px; }
    .detail-hero-grid > div:last-child > p { font-size: 17px; }
    .detail-hero-visual { grid-template-columns: 1fr; min-height: 0; }
    .detail-hero-visual span { min-height: 58px; }
    .detail-hero-visual span:nth-child(1) { min-height: 150px; }
    .detail-facts { grid-template-columns: 1fr; }
    .rich-copy p, .narrative-row p, .post-content p { font-size: 16px; }
    .case-grid { gap: 54px; }
    .case-detail-title h1 { font-size: 42px; }
    .case-detail-title > p { font-size: 17px; }
    .case-overview-grid { grid-template-columns: 1fr; }
    .metric-grid { grid-template-columns: 1fr; }
    .metric-item { min-height: 110px; border-right: 0; border-bottom: 1px solid #cfd4d2; }
    .solution-card h2 { margin-top: 54px; }
    .article-row { min-height: 250px; grid-template-columns: 1fr 28px; gap: 16px; padding: 28px 0; }
    .article-date { grid-column: 1; flex-direction: row; gap: 8px; align-items: baseline; }
    .article-main { grid-column: 1; }
    .article-row > svg { grid-column: 2; grid-row: 1 / 3; align-self: center; }
    .article-main h2 { font-size: 25px; }
    .post-hero h1 { font-size: 38px; }
    .post-hero .breadcrumb { margin-bottom: 60px; }
    .post-hero-visual { min-height: 230px; padding: 12px; }
    .post-hero-visual::before { inset: 12px; }
    .statement-visual { grid-template-columns: 1fr; }
    .statement-visual span { min-height: 96px; }
    .contact-visual { min-height: 190px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-item, .team-item + .team-item { min-height: 220px; padding: 28px 0; border-right: 0; border-bottom: 1px solid #cfd4d2; }
    .quote-item p { font-size: 23px; }
    .form-row { grid-template-columns: 1fr; }
    .form-wrap { padding: 22px; }
    .form-success { padding: 24px; }
    .not-found-inner { padding: 42px 24px; }
    .not-found h1 { font-size: 37px; }
}

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

/* Homepage hero slider */
.home-hero { height: 700px; }
.hero-slider-stage { position: absolute; inset: 0 0 112px; z-index: 2; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(34px); transition: opacity .65s ease, visibility .65s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.hero-slide.is-active { z-index: 2; opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); }
.hero-slide-grid { height: 100%; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(450px, .94fr); gap: 58px; align-items: center; }
.hero-slide-copy { position: relative; z-index: 3; max-width: 720px; padding-bottom: 16px; opacity: 0; transform: translateY(22px); transition: opacity .5s ease .12s, transform .65s cubic-bezier(.22,1,.36,1) .12s; }
.hero-slide.is-active .hero-slide-copy { opacity: 1; transform: translateY(0); }
.hero-slide-copy h1 { max-width: 720px; margin: 18px 0 20px; color: var(--ink); font-size: clamp(44px, 4.35vw, 68px); font-weight: 800; line-height: 1.06; }
.hero-slide-copy h1 span { display: block; margin-top: 5px; color: transparent; background: var(--gradient); -webkit-background-clip: text; background-clip: text; }
.hero-slide--partner .hero-slide-copy h1 { font-size: clamp(40px, 3.55vw, 57px); line-height: 1.1; }
.hero-slide--partner .hero-slide-copy h1 span { margin: 0 0 7px; }
.hero-partner-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: -4px 0 24px; }
.hero-partner-tags span { display: inline-flex; min-height: 27px; align-items: center; padding: 0 10px; border: 1px solid rgba(84,98,190,.13); border-radius: 7px; color: #58688e; background: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; }
.hero-service-summary { max-width: 680px; margin: 0 0 27px; }
.hero-service-summary > p { margin: 0 0 15px; color: #4b556b; font-size: 17px; line-height: 1.75; }
.hero-service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-service-pills a { position: relative; display: inline-flex; min-height: 31px; align-items: center; padding: 0 11px 0 25px; border: 1px solid rgba(84,98,190,.13); border-radius: 8px; color: #4e5f88; background: rgba(255,255,255,.72); box-shadow: 0 7px 18px rgba(62,79,138,.05); font-size: 11px; font-weight: 700; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.hero-service-pills a::before { position: absolute; left: 10px; width: 7px; height: 7px; border-radius: 3px; background: var(--gradient); box-shadow: 0 0 0 4px rgba(88,95,237,.08); content: ""; }
.hero-service-pills a:hover { border-color: rgba(79,92,230,.24); color: #315ddd; background: #fff; transform: translateY(-2px); }
.hero-slide .hero-ui-board { position: relative; top: auto; right: auto; width: 500px; height: 430px; justify-self: end; padding: 0; border: 0; background: transparent; box-shadow: none; opacity: 0; transform: translateX(36px) scale(.96); transition: opacity .55s ease .18s, transform .75s cubic-bezier(.22,1,.36,1) .18s; }
.hero-slide.is-active .hero-ui-board { opacity: 1; transform: translateX(0) scale(1); }
.partner-showcase { position: relative; width: min(100%, 560px); justify-self: end; padding: 12px 12px 18px; border: 1px solid rgba(83,99,173,.12); border-radius: 24px; background: rgba(255,255,255,.72); box-shadow: 0 30px 65px rgba(54,73,135,.16); backdrop-filter: blur(18px); opacity: 0; transform: translateX(42px) rotate(1.5deg); transition: opacity .55s ease .16s, transform .8s cubic-bezier(.22,1,.36,1) .16s; }
.hero-slide.is-active .partner-showcase { opacity: 1; transform: translateX(0) rotate(0); }
.partner-showcase::before { position: absolute; z-index: -1; width: 180px; height: 180px; right: -48px; top: -52px; border-radius: 50%; background: linear-gradient(135deg, rgba(107,86,255,.24), rgba(31,190,241,.18)); content: ""; filter: blur(4px); }
.partner-browser { overflow: hidden; border: 1px solid rgba(52,63,104,.12); border-radius: 16px; background: #fff; box-shadow: 0 16px 38px rgba(36,49,94,.13); }
.partner-browser-bar { height: 35px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid #edf0f6; background: #f8f9fd; }
.partner-browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #cfd5e3; }
.partner-browser-bar > span:first-child { background: #ff8a8a; }
.partner-browser-bar > span:nth-child(2) { background: #ffd475; }
.partner-browser-bar > span:nth-child(3) { background: #68d7bd; }
.partner-browser-bar small { margin-left: 7px; overflow: hidden; color: #8a95ac; font-size: 8px; font-weight: 700; letter-spacing: .1em; white-space: nowrap; text-overflow: ellipsis; }
.partner-browser-screen { position: relative; height: 305px; overflow: hidden; background: #e9eef8; }
.partner-browser-screen::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.26); content: ""; pointer-events: none; }
.partner-browser-screen img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 5.8s ease; }
.hero-slide.is-active .partner-browser-screen img { transform: scale(1.035); }
.partner-showcase--devices {
    --partner-tilt-x: 0deg;
    --partner-tilt-y: 0deg;
    --partner-browser-x: 0px;
    --partner-browser-y: 0px;
    --partner-phone-x: 0px;
    --partner-phone-y: 0px;
    --partner-glow-x: 68%;
    --partner-glow-y: 42%;
    perspective: 1100px;
}
.partner-device-scene { position: relative; transform: perspective(1000px) rotateX(var(--partner-tilt-x)) rotateY(var(--partner-tilt-y)); transform-style: preserve-3d; transition: transform .09s linear; will-change: transform; }
.partner-device-scene::after { position: absolute; inset: -8px; z-index: 5; border-radius: 20px; background: radial-gradient(circle at var(--partner-glow-x) var(--partner-glow-y), rgba(255,255,255,.34), rgba(255,255,255,.08) 13%, transparent 35%); content: ""; opacity: .36; mix-blend-mode: screen; pointer-events: none; transition: opacity .25s ease; }
.partner-showcase--devices.is-interacting .partner-device-scene::after { opacity: .82; }
.partner-showcase--devices .partner-browser { margin-right: 67px; transform: translate3d(var(--partner-browser-x), var(--partner-browser-y), 0); transition: transform .09s linear, box-shadow .25s ease; will-change: transform; }
.partner-showcase--devices.is-interacting .partner-browser { box-shadow: 0 23px 48px rgba(29,42,91,.19); }
.partner-phone { position: absolute; z-index: 6; right: -3px; bottom: -8px; width: 142px; height: 286px; padding: 7px; border: 1px solid rgba(255,255,255,.65); border-radius: 25px; color: #fff; background: linear-gradient(145deg, #25293a, #090b12 72%); box-shadow: 0 25px 50px rgba(23,29,64,.30), inset 0 0 0 1px rgba(255,255,255,.09); transform: translate3d(var(--partner-phone-x), var(--partner-phone-y), 34px) rotate(2.8deg); transition: transform .09s linear, box-shadow .25s ease; will-change: transform; }
.partner-showcase--devices.is-interacting .partner-phone { box-shadow: 0 32px 58px rgba(22,28,70,.38), inset 0 0 0 1px rgba(255,255,255,.12); }
.partner-phone-speaker { position: absolute; z-index: 3; top: 11px; left: 50%; width: 38px; height: 9px; border-radius: 0 0 8px 8px; background: #090b12; transform: translateX(-50%); }
.partner-phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 19px; background: #292017; }
.partner-phone-screen > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% center; filter: saturate(.82) contrast(1.04); transform: scale(1.08); transition: transform 7s ease, filter .3s ease; }
.hero-slide.is-active .partner-phone-screen > img { transform: scale(1.14); }
.partner-showcase--devices.is-interacting .partner-phone-screen > img { filter: saturate(.96) contrast(1.07); transform: scale(1.18); }
.partner-phone-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,9,6,.46), rgba(14,9,6,.08) 32%, rgba(12,7,5,.79) 100%); }
.partner-phone-header { position: absolute; z-index: 2; top: 18px; right: 12px; left: 12px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.partner-phone-header strong { font-size: 9px; font-weight: 800; letter-spacing: .06em; }
.partner-phone-header svg { width: 12px; height: 12px; }
.partner-phone-copy { position: absolute; z-index: 2; right: 12px; bottom: 16px; left: 12px; display: flex; flex-direction: column; align-items: flex-start; }
.partner-phone-copy > small { margin-bottom: 7px; color: rgba(255,255,255,.62); font-size: 5px; font-weight: 700; letter-spacing: .16em; }
.partner-phone-copy > strong { color: #fff; font-size: 13px; line-height: 1.35; letter-spacing: -.02em; }
.partner-phone-copy > span { margin-top: 8px; color: rgba(255,255,255,.66); font-size: 5px; }
.partner-phone-copy > b { display: inline-flex; min-height: 24px; align-items: center; gap: 4px; margin-top: 12px; padding: 0 9px; border-radius: 6px; color: #fff; background: linear-gradient(135deg, #f23953, #df1735); box-shadow: 0 8px 18px rgba(204,18,49,.28); font-size: 6px; }
.partner-phone-copy > b svg { width: 8px; height: 8px; }
.partner-delivery { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 7px 0; }
.partner-delivery small { color: #7785aa; font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.partner-delivery strong { color: #34415c; font-size: 11px; }
.hero-slider-controls { position: absolute; right: 0; bottom: 123px; left: 50%; z-index: 7; display: flex; align-items: center; justify-content: space-between; pointer-events: none; transform: translateX(-50%); }
.hero-slider-dots, .hero-slider-arrows { display: flex; align-items: center; pointer-events: auto; }
.hero-slider-dots { gap: 8px; }
.hero-slider-dots button { display: grid; grid-template-columns: 20px 44px; gap: 7px; align-items: center; padding: 0; border: 0; color: #9aa4ba; background: transparent; cursor: pointer; }
.hero-slider-dots button b { font-size: 9px; font-weight: 700; }
.hero-slider-dots button > span { position: relative; height: 2px; overflow: hidden; border-radius: 99px; background: rgba(91,105,160,.17); }
.hero-slider-dots button > span i { position: absolute; inset: 0; display: block; border-radius: inherit; background: var(--gradient); transform: scaleX(0); transform-origin: left; }
.hero-slider-dots button.is-active { color: #4255d7; }
.hero-slider-dots button.is-active > span i { transform: scaleX(1); }
.hero-slider-dots button.is-running > span i { animation: hero-slide-progress 6.5s linear forwards; }
@keyframes hero-slide-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-slider-arrows { gap: 7px; }
.hero-slider-arrows button { width: 35px; height: 35px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(83,98,168,.13); border-radius: 9px; color: #4a5a7e; background: rgba(255,255,255,.78); box-shadow: 0 8px 20px rgba(53,70,127,.08); cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.hero-slider-arrows button:hover { color: #fff; background: var(--gradient); transform: translateY(-2px); }
.hero-slider-arrows button svg { width: 15px; height: 15px; }

@media (max-width: 1100px) {
    .hero-slide-grid { grid-template-columns: minmax(0, 1fr) 430px; gap: 22px; }
    .hero-slide-copy h1 { font-size: 54px; }
    .hero-slide--partner .hero-slide-copy h1 { font-size: 44px; }
    .partner-browser-screen { height: 270px; }
    .partner-showcase--devices .partner-browser { margin-right: 58px; }
    .partner-phone { width: 126px; height: 253px; }
    .hero-slide .hero-ui-board { scale: .86; transform-origin: right center; }
}

@media (max-width: 820px) {
    .home-hero { height: 720px; }
    .hero-slider-stage { bottom: 88px; }
    .hero-slide-grid { position: relative; display: block; padding-top: 48px; }
    .hero-slide-copy { max-width: 590px; padding-bottom: 0; }
    .hero-slide-copy h1 { max-width: 560px; font-size: 46px; }
    .hero-slide--partner .hero-slide-copy h1 { max-width: 590px; font-size: 39px; }
    .hero-slide-copy .home-hero-lead { max-width: 560px; font-size: 15px; }
    .hero-partner-tags { margin-bottom: 17px; }
    .hero-service-summary { max-width: 560px; margin-bottom: 20px; }
    .hero-service-summary > p { font-size: 15px; }
    .hero-slide .hero-ui-board { position: absolute; top: 326px; right: -5px; width: 500px; height: 430px; scale: .55; transform-origin: right top; }
    .partner-showcase { position: absolute; top: 365px; right: var(--gutter); left: var(--gutter); width: auto; padding: 8px 8px 12px; border-radius: 17px; }
    .partner-browser { border-radius: 11px; }
    .partner-browser-bar { height: 27px; }
    .partner-browser-screen { height: 205px; }
    .partner-showcase--devices .partner-browser { margin-right: 48px; }
    .partner-phone { right: 1px; bottom: -5px; width: 94px; height: 188px; padding: 5px; border-radius: 18px; }
    .partner-phone-screen { border-radius: 14px; }
    .partner-phone-speaker { top: 7px; width: 26px; height: 6px; }
    .partner-phone-header { top: 13px; right: 8px; left: 8px; }
    .partner-phone-header strong { font-size: 6px; }
    .partner-phone-header svg { width: 8px; height: 8px; }
    .partner-phone-copy { right: 8px; bottom: 10px; left: 8px; }
    .partner-phone-copy > small { margin-bottom: 4px; font-size: 4px; }
    .partner-phone-copy > strong { font-size: 8px; }
    .partner-phone-copy > span { margin-top: 5px; font-size: 3px; }
    .partner-phone-copy > b { min-height: 17px; margin-top: 7px; padding: 0 6px; border-radius: 4px; font-size: 4px; }
    .partner-delivery { padding-top: 10px; }
    .hero-slider-controls { bottom: 96px; }
}

@media (max-width: 560px) {
    .hero-slide-grid { padding-top: 38px; }
    .hero-slide-copy h1 { margin: 14px 0 17px; font-size: 38px; }
    .hero-slide--partner .hero-slide-copy h1 { font-size: 32px; }
    .hero-slide-copy .home-hero-lead { display: -webkit-box; overflow: hidden; font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
    .hero-partner-tags { display: none; }
    .hero-service-summary { margin-bottom: 18px; }
    .hero-service-summary > p { margin-bottom: 11px; font-size: 14px; line-height: 1.65; }
    .hero-service-pills { gap: 6px; }
    .hero-service-pills a { min-height: 28px; padding: 0 8px 0 21px; font-size: 10px; }
    .hero-service-pills a::before { left: 8px; width: 6px; height: 6px; }
    .hero-slide .hero-ui-board { top: 342px; right: -9px; scale: .49; }
    .partner-showcase { top: 377px; right: 14px; left: 14px; }
    .partner-browser-screen { height: 190px; }
    .partner-showcase--devices .partner-browser { margin-right: 42px; }
    .partner-phone { width: 84px; height: 169px; }
    .partner-delivery strong { max-width: 210px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
    .hero-slider-dots button { grid-template-columns: 15px 28px; gap: 4px; }
    .hero-slider-arrows button { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
    .partner-device-scene, .partner-showcase--devices .partner-browser, .partner-phone { transform: none; }
    .partner-phone { transform: rotate(2.8deg); }
}

.home-page .home-hero { height: 700px; }
@media (max-width: 820px) { .home-page .home-hero { height: 720px; } }

/* 2026 visual refresh: airy blue-violet technology aesthetic */
:root {
    --ink: #111827;
    --muted: #667085;
    --line: #e7eaf2;
    --soft: #f5f7ff;
    --paper: #ffffff;
    --navy: #1648d8;
    --coral: #6b5cff;
    --mint: #21b7f2;
    --sun: #8a7cff;
    --line-strong: #d8deed;
    --panel: #f8f9ff;
    --container: 1320px;
    --header-height: 76px;
    --gradient: linear-gradient(135deg, #6557ff 0%, #176ff2 54%, #24c4f3 100%);
    --gradient-soft: linear-gradient(135deg, rgba(109,91,255,.12), rgba(32,185,245,.08));
    --shadow-card: 0 18px 50px rgba(57, 76, 130, .10);
}

body { background: #f5f7fc; }
main { overflow: hidden; }
h1, h2, h3 { letter-spacing: -.035em; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline-color: #5d63ff; }

.announcement-bar { position: relative; z-index: 101; min-height: 38px; color: #24447b; background: linear-gradient(90deg, #eaf5ff 0%, #f2f0ff 48%, #eaf7ff 100%); border-bottom: 1px solid rgba(81,105,190,.10); }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 28px; font-size: 12px; }
.announcement-inner span, .announcement-inner a { display: inline-flex; align-items: center; gap: 7px; }
.announcement-inner svg { width: 14px; height: 14px; }
.announcement-inner a { color: #3665df; font-weight: 700; }
.site-header { height: var(--header-height); background: rgba(255,255,255,.88); border-bottom: 1px solid rgba(57,76,130,.08); box-shadow: 0 8px 28px rgba(50,70,120,.04); }
.site-header::before { display: none; }
.header-inner { grid-template-columns: 210px minmax(0, 1fr) 238px auto; gap: 18px; }
.brand { width: 210px; height: 60px; display: inline-flex; align-items: center; gap: 11px; overflow: visible; }
.brand-mark { position: relative; width: 43px; height: 43px; display: block; flex: 0 0 43px; overflow: hidden; border: 1px solid rgba(255,255,255,.62); border-radius: 13px; background: linear-gradient(145deg, #6358f2 0%, #2877ed 56%, #20bee9 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 10px 22px rgba(58,83,220,.24); transform: rotate(-3deg); transition: box-shadow .25s ease, transform .25s ease; }
.brand-mark::before { position: absolute; inset: 8px 9px 9px 8px; border: 2px solid rgba(255,255,255,.96); border-radius: 50% 50% 50% 16%; content: ""; transform: rotate(-38deg); }
.brand-mark::after { position: absolute; top: 9px; left: 20px; width: 4px; height: 20px; border-radius: 99px; background: #fff; box-shadow: 0 0 14px rgba(255,255,255,.72); content: ""; transform: rotate(31deg); transform-origin: 50% 78%; }
.brand-mark i { position: absolute; right: -4px; bottom: -3px; width: 17px; height: 17px; border: 4px solid rgba(255,255,255,.88); border-radius: 50%; background: rgba(46,196,238,.72); box-shadow: 0 0 18px rgba(255,255,255,.5); }
.brand-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; line-height: 1; }
.brand-copy strong { color: #14213a; font-size: 23px; font-weight: 800; letter-spacing: 0; white-space: nowrap; }
.brand-copy small { margin-top: 7px; color: #7080a7; font-size: 8px; font-weight: 700; letter-spacing: .15em; white-space: nowrap; }
.brand:hover .brand-mark { box-shadow: inset 0 1px 0 rgba(255,255,255,.48), 0 14px 28px rgba(58,83,220,.30); transform: rotate(0deg) translateY(-2px); }
.site-nav { gap: 30px; }
.site-nav a { color: #374151; font-size: 14px; }
.site-nav a::after { bottom: 16px; height: 3px; border-radius: 999px; background: var(--gradient); }
.site-nav a:hover, .site-nav a.is-active { color: #225adf; }
.nav-item--mega { position: static; height: 100%; display: flex; align-items: center; }
.mega-trigger { gap: 5px; }
.mega-trigger > svg { width: 14px; height: 14px; transition: transform .22s ease; }
.nav-item--mega:hover .mega-trigger > svg, .nav-item--mega:focus-within .mega-trigger > svg, .nav-item--mega.is-open .mega-trigger > svg { transform: rotate(180deg); }
.mega-menu { position: absolute; top: 100%; right: 0; left: 0; z-index: 120; max-height: calc(100vh - 116px); overflow-y: auto; padding: 28px 0 32px; border-top: 1px solid rgba(91,104,170,.08); border-bottom: 1px solid rgba(91,104,170,.12); background:
    radial-gradient(circle at 18% 0%, rgba(102,88,255,.12), transparent 31%),
    radial-gradient(circle at 88% 14%, rgba(30,190,243,.13), transparent 27%),
    linear-gradient(118deg, rgba(249,251,255,.98), rgba(242,241,255,.98) 54%, rgba(236,249,255,.98));
    box-shadow: 0 30px 60px rgba(44,61,111,.14); backdrop-filter: blur(24px); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px); transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.mega-menu::before { position: absolute; top: -12px; right: 0; left: 0; height: 12px; content: ""; }
.nav-item--mega:hover .mega-menu, .nav-item--mega:focus-within .mega-menu, .nav-item--mega.is-open .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mega-menu-inner { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 24px; align-items: stretch; }
.site-nav .mega-menu a { height: auto; }
.site-nav .mega-menu a::after { display: none; }
.mega-menu-lead { position: relative; min-height: 100%; display: flex !important; flex-direction: column; align-items: flex-start !important; justify-content: flex-start !important; overflow: hidden; padding: 26px !important; border: 1px solid rgba(102,103,230,.14); border-radius: 22px; color: #fff !important; background: linear-gradient(145deg, #5558e8 0%, #2377e9 58%, #24b9ec 100%); box-shadow: 0 20px 45px rgba(57,79,206,.22); }
.mega-menu-lead::before { position: absolute; width: 210px; height: 210px; right: -82px; top: -88px; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; content: ""; }
.mega-menu-lead::after { position: absolute !important; display: block !important; width: 150px !important; height: 150px !important; right: -55px !important; bottom: -74px !important; left: auto !important; border-radius: 50%; background: rgba(255,255,255,.10) !important; content: ""; transform: none !important; }
.mega-menu-lead > span { position: relative; z-index: 1; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.mega-menu-lead strong { position: relative; z-index: 1; margin-top: 18px; font-size: 31px; line-height: 1.15; letter-spacing: -.04em; }
.mega-menu-lead p { position: relative; z-index: 1; margin: 18px 0 28px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.75; }
.mega-menu-lead b { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-size: 13px; }
.mega-menu-lead b svg { width: 15px; height: 15px; }
.mega-menu-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.mega-menu-group { min-width: 0; padding: 17px 18px 16px; border: 1px solid rgba(98,111,168,.11); border-radius: 17px; background: rgba(255,255,255,.72); box-shadow: 0 10px 28px rgba(65,79,130,.055); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease; }
.mega-menu-group:hover { border-color: rgba(87,96,235,.22); background: rgba(255,255,255,.94); box-shadow: 0 17px 34px rgba(65,79,150,.10); transform: translateY(-3px); }
.site-nav .mega-menu-title { display: grid; grid-template-columns: 28px minmax(0, 1fr) 15px; gap: 9px; align-items: center; color: #172033; font-size: 14px; font-weight: 700; line-height: 1.35; }
.mega-menu-title > svg:first-child { width: 28px; height: 28px; padding: 6px; border-radius: 8px; color: #fff; background: linear-gradient(135deg, #6358f1, #199fef); box-shadow: 0 8px 16px rgba(61,93,226,.18); }
.mega-menu-title > svg:last-child { width: 14px; height: 14px; color: #7381a6; }
.mega-menu-group ul { margin: 13px 0 0; padding: 0; list-style: none; }
.mega-menu-group li + li { margin-top: 5px; }
.site-nav .mega-menu-group li a { position: relative; display: block; padding: 2px 0 2px 12px; color: #69738b; font-size: 11px; line-height: 1.55; white-space: normal; }
.site-nav .mega-menu-group li a::before { position: absolute; top: 10px; left: 0; width: 4px; height: 4px; border-radius: 50%; background: #98a5c3; content: ""; transition: background .2s ease, transform .2s ease; }
.site-nav .mega-menu-group li a:hover { color: #315fdc; }
.site-nav .mega-menu-group li a:hover::before { background: #5364ee; transform: scale(1.45); }
.header-cta, .button { min-height: 48px; border-radius: 10px; padding: 0 24px; }
.header-cta, .button--dark, .button--light { color: #fff; background: var(--gradient); box-shadow: 0 10px 24px rgba(66,92,234,.22); }
.header-cta:hover, .button--dark:hover, .button--light:hover { color: #fff; background: linear-gradient(135deg, #5648ed, #0d83ed); box-shadow: 0 16px 30px rgba(66,92,234,.28); }
.text-link { color: #245cda; }
.text-link--light { color: #344054; }
.header-search, .mobile-nav-search { position: relative; }
.header-search input, .mobile-nav-search input { width: 100%; height: 42px; padding: 0 44px 0 15px; border: 1px solid rgba(91,105,164,.15); border-radius: 10px; outline: 0; color: #1e293b; background: rgba(247,249,255,.92); font-size: 12px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.header-search input::placeholder, .mobile-nav-search input::placeholder { color: #8995af; }
.header-search input:focus, .mobile-nav-search input:focus { border-color: rgba(73,91,230,.42); background: #fff; box-shadow: 0 0 0 4px rgba(84,94,235,.08); }
.header-search button, .mobile-nav-search button { position: absolute; top: 50%; right: 6px; width: 32px; height: 32px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 8px; color: #fff; background: var(--gradient); cursor: pointer; transform: translateY(-50%); }
.header-search button svg, .mobile-nav-search button svg { width: 15px; height: 15px; }
.mobile-nav-search { display: none; }
.eyebrow, .section-index { color: #4064d9; letter-spacing: .12em; }
.eyebrow::before, .section-index::before { width: 8px; height: 8px; border: 0; border-radius: 50%; background: var(--gradient); box-shadow: 0 0 0 5px rgba(90,92,255,.08); }
.eyebrow--light { color: #4866bb; }

.home-hero { height: 660px; color: var(--ink); background: #f2f3ff; }
.home-hero-media { background:
    radial-gradient(circle at 78% 45%, rgba(97,95,255,.16), transparent 25%),
    radial-gradient(circle at 90% 20%, rgba(49,195,246,.18), transparent 22%),
    radial-gradient(circle at 56% 92%, rgba(105,92,255,.11), transparent 28%),
    linear-gradient(112deg, #f8fbff 0%, #f4f2ff 53%, #eef9ff 100%);
    transform: none;
}
.home-hero-media::before, .home-hero-media::after { position: absolute; border-radius: 50%; content: ""; filter: blur(2px); }
.home-hero-media::before { width: 460px; height: 460px; right: 7%; top: 3%; border: 1px solid rgba(104,101,255,.14); box-shadow: 0 0 80px rgba(59,130,246,.10) inset; }
.home-hero-media::after { width: 620px; height: 180px; right: -5%; bottom: 22%; border: 1px solid rgba(104,101,255,.13); transform: rotate(-12deg); }
.home-hero-shade { background: linear-gradient(90deg, rgba(248,251,255,.96) 0%, rgba(248,251,255,.88) 42%, rgba(242,244,255,.18) 70%, transparent 100%); }
.home-hero::before { top: auto; right: 9%; bottom: 150px; width: 320px; height: 82px; border: 0; border-radius: 50%; background: rgba(78,91,227,.14); filter: blur(26px); transform: none; }
.home-hero::after { display: none; }
.home-hero-content { min-height: calc(100% - 112px); max-width: var(--container); padding-top: 0; }
.hero-brand { display: flex; align-items: baseline; gap: 12px; margin: 16px 0 8px; color: transparent; background: var(--gradient); -webkit-background-clip: text; background-clip: text; font-size: clamp(32px, 3.2vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -.05em; }
.hero-brand span { color: #7180a6; background: none; font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.home-hero h1 { max-width: 720px; margin: 8px 0 20px; color: var(--ink); font-size: clamp(44px, 4.6vw, 70px); font-weight: 800; line-height: 1.08; }
.home-hero h1 span { display: block; margin-top: 6px; color: transparent; background: var(--gradient); -webkit-background-clip: text; background-clip: text; }
.home-hero-lead { max-width: 650px; margin-bottom: 32px; color: #4b556b; font-size: 18px; }
.hero-actions { gap: 14px; }
.hero-actions .text-link { min-height: 48px; padding: 0 24px; border: 1px solid rgba(91,104,154,.13); border-radius: 10px; background: rgba(255,255,255,.78); color: #202737; box-shadow: 0 8px 22px rgba(75,92,145,.06); }
.hero-ui-board { top: 72px; right: max(var(--gutter), calc((100vw - var(--container)) / 2)); width: 500px; height: 430px; padding: 0; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.hero-core { position: absolute; right: 72px; top: 82px; width: 280px; height: 280px; border-radius: 46% 54% 58% 42%; background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(113,93,255,.38) 42%, rgba(19,137,242,.82) 72%, #112d88); box-shadow: inset 28px 26px 55px rgba(255,255,255,.62), inset -24px -34px 54px rgba(28,36,140,.40), 0 38px 70px rgba(65,75,190,.28); transform: rotate(-13deg); animation: hero-float 6s ease-in-out infinite; }
.hero-core::before { position: absolute; inset: 24px 36px 74px 48px; border-radius: 50%; background: radial-gradient(circle at 38% 28%, #fff 0 7%, rgba(255,255,255,.74) 8%, transparent 30%), linear-gradient(145deg, rgba(255,255,255,.55), rgba(70,211,255,.28)); content: ""; filter: blur(1px); }
.hero-core::after { position: absolute; left: 40px; right: 26px; bottom: 38px; height: 72px; border-radius: 50%; background: linear-gradient(90deg, rgba(137,82,255,.75), rgba(36,204,255,.92)); content: ""; filter: blur(5px); transform: rotate(7deg); }
.hero-core span, .hero-core i, .hero-core b { position: absolute; z-index: 1; display: block; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; }
.hero-core span { width: 88px; height: 88px; top: 58px; left: 62px; box-shadow: 0 0 30px rgba(255,255,255,.38); }
.hero-core i { width: 34px; height: 34px; top: 72px; left: 89px; background: rgba(255,255,255,.9); }
.hero-core b { width: 48px; height: 48px; right: 42px; bottom: 78px; background: rgba(54,222,255,.44); }
.hero-orbit { position: absolute; right: 8px; top: 62px; width: 420px; height: 300px; border: 1px solid rgba(96,104,236,.25); border-radius: 50%; transform: rotate(-12deg); }
.hero-orbit--two { right: 34px; top: 28px; width: 330px; height: 380px; border-color: rgba(40,188,242,.18); transform: rotate(31deg); }
.hero-float-card { position: absolute; z-index: 3; min-width: 148px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.76); border-radius: 14px; background: rgba(255,255,255,.74); box-shadow: 0 18px 40px rgba(52,75,139,.14); backdrop-filter: blur(18px); }
.hero-float-card svg { width: 21px; height: 21px; margin-bottom: 12px; color: #5f5df6; }
.hero-float-card span, .hero-float-card strong { display: block; }
.hero-float-card span { color: #344054; font-size: 13px; font-weight: 700; }
.hero-float-card strong { margin-top: 4px; color: #8390ad; font-size: 9px; letter-spacing: .12em; }
.hero-float-card--top { left: 12px; top: 44px; }
.hero-float-card--bottom { right: 0; bottom: 30px; }
.hero-status { position: absolute; left: 86px; bottom: 34px; display: flex; align-items: center; gap: 9px; color: #667085; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.hero-status i { width: 7px; height: 7px; border-radius: 50%; background: #20c997; box-shadow: 0 0 0 5px rgba(32,201,151,.12); }
@keyframes hero-float { 0%,100% { transform: rotate(-13deg) translateY(0); } 50% { transform: rotate(-10deg) translateY(-12px); } }
.hero-foot { min-height: 112px; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 9px; border: 1px solid rgba(75,94,155,.09); border-bottom: 0; border-radius: 20px 20px 0 0; color: #344054; background: rgba(255,255,255,.84); box-shadow: 0 -16px 42px rgba(56,78,136,.055); backdrop-filter: blur(20px); }
.hero-foot > a { position: relative; min-width: 0; min-height: 84px; display: grid; grid-template-columns: 40px minmax(0, 1fr) 16px; gap: 12px; align-items: center; padding: 11px 14px; border: 1px solid transparent; border-radius: 14px; text-align: left; transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease; }
.hero-foot > a:hover { border-color: rgba(86,97,230,.13); background: rgba(247,249,255,.94); box-shadow: 0 12px 28px rgba(65,79,145,.09); transform: translateY(-3px); }
.hero-foot-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(91,103,220,.12); border-radius: 12px; color: #fff; background: linear-gradient(145deg, #665bf2, #2982ee 60%, #22bae7); box-shadow: 0 9px 20px rgba(59,85,220,.20); transition: transform .22s ease; }
.hero-foot > a:hover .hero-foot-icon { transform: rotate(-4deg) scale(1.05); }
.hero-foot-icon svg { width: 18px; height: 18px; }
.hero-foot-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.hero-foot-copy small { margin-bottom: 5px; color: #7d8aae; font-size: 8px; font-weight: 700; letter-spacing: .11em; }
.hero-foot-copy strong { color: #27334b; font-size: 14px; font-weight: 800; white-space: nowrap; }
.hero-foot-copy em { margin-top: 6px; overflow: hidden; color: #8791a8; font-size: 10px; font-style: normal; white-space: nowrap; text-overflow: ellipsis; }
.hero-foot-arrow { width: 15px; height: 15px; color: #7785aa; transition: color .2s ease, transform .2s ease; }
.hero-foot > a:hover .hero-foot-arrow { color: #4e61e5; transform: translate(2px, -2px); }

.section { padding: 110px 0; }
.section::before { display: none; }
.section--intro, .section--insights, .service-principles, .combination-band, .detail-capabilities, .solution-steps, .related-posts, .faq-section, .capability-team { background: #f5f7fc; }
.section--intro { margin-top: 18px; border-radius: 32px 32px 0 0; background: #fff; }
.intro-grid { grid-template-columns: 150px minmax(0, 1fr) minmax(360px, .85fr); gap: 46px; }
.intro-copy h2, .section-heading h2, .split-heading h2, .statement-grid h2 { font-weight: 750; }
.intro-stats { gap: 12px; border: 0; }
.intro-stats div { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #f8faff; }
.intro-stats div::before { display: none; }
.intro-stats dt { color: #315dda; }
.intro-visual { min-height: 270px; padding: 12px; border: 1px solid rgba(100,112,170,.10); border-radius: 22px; box-shadow: var(--shadow-card); }
.intro-visual { grid-column: 2 / -1; width: 100%; }
.intro-visual-photo { height: 246px; border-radius: 15px; background: linear-gradient(135deg, rgba(49,92,222,.18), rgba(88,72,240,.08)), var(--bg-website-build) center / cover no-repeat; filter: saturate(.72) hue-rotate(165deg) brightness(1.18); }
.intro-visual-card { right: -12px; bottom: -16px; border: 1px solid rgba(97,109,160,.12); border-radius: 14px; box-shadow: var(--shadow-card); }
.intro-visual-card i { border-radius: 99px; }
.intro-visual-card i:nth-child(2), .intro-visual-card i:nth-child(3), .intro-visual-card i:nth-child(4) { background: var(--gradient); }

.section--services { background: #fff; }
.section-heading { margin-bottom: 44px; }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; border: 0; }
.service-card, .service-card:nth-child(even), .service-card:hover { min-height: 300px; display: flex; flex-direction: column; gap: 22px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 36px rgba(63,80,132,.06); }
.service-card::before { top: auto; right: 24px; bottom: 0; left: 24px; width: auto; height: 3px; border-radius: 99px 99px 0 0; background: var(--gradient); transform: scaleX(0); transform-origin: left; }
.service-card:hover { border-color: rgba(87,95,235,.20); box-shadow: 0 24px 50px rgba(63,80,150,.12); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:nth-child(odd) { border-right: 1px solid var(--line); }
.service-card .service-number { color: #5e60ef; }
.service-card p { grid-column: auto; }
.service-card > svg { top: 28px; right: 28px; color: #5d63ef; }

.section--work { background: linear-gradient(180deg, #f4f6ff 0%, #ffffff 100%); color: var(--ink); }
.section--work::after { width: 54%; background: radial-gradient(circle at 70% 20%, rgba(91,91,255,.11), transparent 46%); }
.section-heading--light h2, .section-heading--light .section-index { color: inherit; }
.featured-work { gap: 48px 24px; }
.work-item { padding: 12px 12px 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.86); box-shadow: 0 16px 44px rgba(61,78,132,.08); }
.work-item::after { display: none; }
.project-visual { border-radius: 16px; }
.project-visual--cobalt { background: linear-gradient(135deg, #2154dd, #43c6f7); }
.project-visual--coral { background: linear-gradient(135deg, #7658f6, #f18ac5); }
.project-visual--mint { background: linear-gradient(135deg, #15a6d9, #72dfcd); }
.project-visual--sun { background: linear-gradient(135deg, #5368ef, #b08bff); }
.work-meta span { color: #6474a4; }
.work-meta h3 { color: var(--ink); }
.work-meta p { color: var(--muted); }

.section--process { background: #fff; }
.process-visual { border: 1px solid var(--line); border-radius: 20px; background: #f7f9ff; }
.process-visual span { border-radius: 10px; background: var(--gradient-soft); }
.process-list { display: grid; gap: 12px; border: 0; }
.process-list li { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.process-list li:hover { border-color: rgba(91,99,239,.20); box-shadow: var(--shadow-card); transform: translateX(5px); }
.process-list li::after { display: none; }
.process-list li > span { border: 0; border-radius: 8px; color: #fff; background: var(--gradient); }

.section--insights { background: #f5f7fc; }
.section--insights::after { border: 0; border-radius: 50%; background: rgba(104,91,255,.08); filter: blur(18px); }
.insight-grid { gap: 18px; border: 0; }
.insight-card, .insight-card + .insight-card { min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 36px rgba(63,80,132,.05); }
.insight-card::before { right: 24px; left: 24px; border-radius: 0 0 99px 99px; background: var(--gradient); }
.insight-card:hover { padding-right: 28px; box-shadow: var(--shadow-card); transform: translateY(-5px); }

.cta-band { margin: 0 18px 18px; padding: 90px 0; border-radius: 28px; background: linear-gradient(125deg, #eef2ff 0%, #e7f6ff 48%, #f2efff 100%); }
.cta-band::before { position: absolute; width: 360px; height: 360px; right: 8%; top: -140px; border: 1px solid rgba(91,99,239,.15); border-radius: 50%; content: ""; }
.cta-band::after { border-color: rgba(75,91,160,.14); }
.cta-band p { color: #5b6a91; }
.site-footer { background: #10182e; }

.page-hero, .detail-hero, .post-hero { background: linear-gradient(120deg, #f9fbff 0%, #f1f1ff 55%, #ecf9ff 100%); }
.page-hero { padding: 98px 0 90px; border-bottom: 0; }
.page-hero::before { display: none; }
.page-hero::after { width: 38%; background: radial-gradient(circle at 50% 48%, rgba(91,96,255,.14), transparent 58%); }
.page-hero-media, .post-hero-visual { padding: 10px; border: 1px solid rgba(92,106,166,.10); border-radius: 22px; box-shadow: var(--shadow-card); }
.page-hero-frame { border-radius: 15px; background: linear-gradient(135deg, rgba(48,92,222,.18), rgba(93,74,242,.08)), var(--bg-website-build) center / cover no-repeat; filter: saturate(.78) hue-rotate(165deg) brightness(1.12); }
.page-hero-frame::before { background: rgba(255,255,255,.05); }
.page-hero-frame::after { border-radius: 12px; }
.page-hero-frame span:nth-child(1), .page-hero-frame span:nth-child(2) { background: var(--gradient); }
.filter-band { background: rgba(255,255,255,.90); }
.filter-chip { border-radius: 99px; }
.filter-chip.is-active { background: var(--gradient); }
.directory-list, .article-list { display: grid; gap: 12px; border: 0; }
.directory-row, .article-row { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.directory-row:hover, .article-row:hover { background: #fff; box-shadow: var(--shadow-card); transform: translateY(-3px); }
.directory-row::before, .article-row::before { top: 22px; bottom: 22px; border-radius: 99px; background: var(--gradient); }
.directory-number { border: 0; border-radius: 8px; color: #fff; background: var(--gradient); }
.detail-hero::before, .detail-hero::after, .post-hero::after { display: none; }
.detail-number { border: 0; border-radius: 12px; color: #fff; background: var(--gradient); box-shadow: 0 12px 24px rgba(69,92,224,.20); }
.detail-hero-visual { padding: 10px; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-card); }
.detail-hero-visual span { border-radius: 10px; }
.detail-hero-visual span:nth-child(1) { filter: saturate(.7) hue-rotate(165deg) brightness(1.15); }
.detail-hero-visual span:nth-child(2), .detail-hero-visual span:nth-child(3) { background: var(--gradient); }
.feature-grid, .step-grid, .principle-grid, .team-grid { gap: 16px; border: 0; }
.feature-item, .step-card, .principle-item, .principle-item + .principle-item, .team-item, .team-item + .team-item { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.feature-item::before, .step-card::before, .principle-item::before, .team-item::before { right: 28px; left: 28px; width: auto; height: 3px; border-radius: 99px; background: var(--gradient); }
.feature-item:hover, .step-card:hover, .team-item:hover { box-shadow: var(--shadow-card); }
.next-step-band { background: linear-gradient(135deg, #4f55df, #087edc 58%, #19bfe8); }
.next-step-band::before { display: none; }
.case-detail-hero { background: linear-gradient(135deg, #1c2b68, #374cc1 52%, #168ec6); }
.case-metrics { background: #f5f7fc; }
.metric-grid { gap: 16px; }
.metric-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.metric-item::before { border-radius: 99px; background: var(--gradient); }
.metric-item strong { color: #315ddd; }
.solution-grid { gap: 16px; border: 0; }
.solution-card, .solution-card:nth-child(even), .solution-card:hover { padding: 32px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.solution-card::before, .solution-card:nth-child(even)::before { top: auto; right: 28px; bottom: 0; left: 28px; width: auto; height: 3px; border-radius: 99px 99px 0 0; background: var(--gradient); }
.solution-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.solution-top span, .post-meta span { border: 0; border-radius: 8px; background: #eef2ff; color: #4d61c9; }
.post-hero-visual::before { inset: 10px; border-radius: 15px; filter: saturate(.72) hue-rotate(165deg) brightness(1.12); }
.post-hero-visual::after { border-radius: 14px; }
.post-hero-visual span:nth-child(1), .post-hero-visual span:nth-child(2), .post-hero-visual span:nth-child(3) { background: var(--gradient); border-radius: 99px; }
.form-wrap, .contact-visual, .not-found-inner { border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-card); }
.form-wrap::before, .not-found-inner::before { border-radius: 99px; background: var(--gradient); }
.form-wrap input, .form-wrap select, .form-wrap textarea { border-radius: 10px; background: #f7f9ff; }

.search-hero { position: relative; overflow: hidden; padding: 86px 0 74px; background: linear-gradient(120deg, #f9fbff 0%, #f1f1ff 55%, #ecf9ff 100%); }
.search-hero::after { position: absolute; top: -160px; right: 8%; width: 420px; height: 420px; border: 1px solid rgba(91,99,239,.13); border-radius: 50%; content: ""; }
.search-hero-inner { position: relative; z-index: 1; }
.search-hero h1 { margin: 16px 0 30px; font-size: 54px; }
.search-page-form { display: grid; grid-template-columns: minmax(0, 720px) auto; gap: 12px; max-width: 900px; }
.search-page-form input { min-width: 0; height: 54px; padding: 0 18px; border: 1px solid rgba(90,104,170,.16); border-radius: 12px; outline: 0; background: rgba(255,255,255,.92); box-shadow: 0 12px 34px rgba(61,78,132,.08); }
.search-page-form input:focus { border-color: rgba(73,91,230,.42); box-shadow: 0 0 0 4px rgba(84,94,235,.08), 0 12px 34px rgba(61,78,132,.08); }
.search-results-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.search-results-heading h2 { margin: 0; font-size: 34px; }
.search-results-heading p { margin: 0; }
.search-result-list { display: grid; gap: 12px; }
.search-result-item { position: relative; min-height: 124px; display: grid; grid-template-columns: 84px minmax(0, 1fr) 24px; gap: 24px; align-items: center; padding: 24px 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(61,78,132,.05); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.search-result-item:hover { border-color: rgba(87,96,235,.20); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.search-result-type { display: inline-grid; min-height: 34px; place-items: center; border-radius: 9px; color: #fff; background: var(--gradient); font-size: 12px; font-weight: 700; }
.search-result-item h3 { margin: 0 0 8px; font-size: 23px; }
.search-result-item p { max-width: 820px; margin: 0; font-size: 14px; }
.search-result-item > svg { width: 19px; height: 19px; color: #5364e8; }
.search-empty { max-width: 620px; padding: 44px; border: 1px solid var(--line); border-radius: 20px; background: #fff; text-align: center; box-shadow: var(--shadow-card); }
.search-empty > svg { width: 34px; height: 34px; margin: 0 auto 18px; color: #5a64e8; }
.search-empty h3 { margin-bottom: 10px; font-size: 24px; }
.search-empty p { margin: 0; }

@media (max-width: 1100px) {
    .header-inner { grid-template-columns: 205px minmax(0, 1fr) 210px; }
    .header-search { width: 210px; }
    .header-cta { display: none; }
    .hero-ui-board { right: -10px; transform: scale(.88); transform-origin: right center; }
    .home-hero h1 { max-width: 590px; }
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mega-menu-inner { grid-template-columns: 210px minmax(0, 1fr); }
    .mega-menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .announcement-inner { justify-content: space-between; }
    .announcement-inner > span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
    .announcement-inner a { flex: 0 0 auto; }
    .site-header { top: 0; }
    .site-nav { background: rgba(255,255,255,.98); }
    .header-search { display: none; }
    .mobile-nav-search { display: block; margin: 22px 0 0; }
    .mobile-nav-search input { height: 48px; font-size: 14px; }
    .mobile-nav-search button { width: 36px; height: 36px; }
    .nav-item--mega { display: block; height: auto; border-bottom: 1px solid var(--line); }
    .site-nav .mega-trigger { width: 100%; height: 58px; justify-content: space-between; border-bottom: 0; font-size: 20px; }
    .mega-menu { position: static; max-height: 0; overflow: hidden; padding: 0; border: 0; background: #f6f7ff; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: max-height .35s ease; }
    .nav-item--mega:hover .mega-menu, .nav-item--mega:focus-within .mega-menu { max-height: 0; }
    .nav-item--mega.is-open .mega-menu { max-height: 2100px; }
    .mega-menu-inner { width: 100%; display: block; padding: 14px 0 22px; }
    .mega-menu-lead { min-height: 0; margin-bottom: 12px; padding: 20px !important; }
    .mega-menu-lead strong { font-size: 25px; }
    .mega-menu-lead p { margin: 10px 0 18px; }
    .mega-menu-grid { grid-template-columns: 1fr; gap: 9px; }
    .mega-menu-group { padding: 16px; border-radius: 14px; }
    .site-nav .mega-menu-title { font-size: 15px; }
    .site-nav .mega-menu-group li a { font-size: 12px; }
    .home-hero { height: 640px; }
    .home-hero-content { justify-content: flex-start; padding-top: 72px; }
    .home-hero h1 { font-size: 48px; }
    .hero-ui-board { display: block; width: 500px; height: 430px; top: 305px; right: 10px; scale: .68; transform-origin: right top; opacity: .78; }
    .hero-foot { min-height: 88px; gap: 5px; padding: 6px; }
    .hero-foot > a { min-height: 74px; grid-template-columns: 34px minmax(0, 1fr); gap: 9px; padding: 9px; }
    .hero-foot > a:nth-child(3), .hero-foot > a:nth-child(4) { display: none; }
    .hero-foot-icon { width: 34px; height: 34px; border-radius: 10px; }
    .hero-foot-copy small, .hero-foot-copy em, .hero-foot-arrow { display: none; }
    .intro-grid { grid-template-columns: 1fr; }
    .intro-visual { grid-column: auto; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card:nth-child(odd) { border-right: 1px solid var(--line); }
    .cta-band { margin: 0 10px 10px; }
}

@media (max-width: 560px) {
    .announcement-inner { min-height: 34px; }
    .announcement-inner > span { display: none; }
    .announcement-inner { justify-content: center; }
    .home-hero { height: 650px; }
    .home-hero-content { padding-top: 48px; }
    .hero-brand { font-size: 30px; }
    .hero-brand span { display: none; }
    .home-hero h1 { font-size: 39px; }
    .home-hero-lead { font-size: 15px; }
    .hero-actions { flex-direction: row; gap: 10px; }
    .hero-actions .button, .hero-actions .text-link { min-height: 44px; padding: 0 15px; font-size: 13px; }
    .hero-ui-board { top: 350px; right: 0; scale: .58; }
    .hero-foot { grid-template-columns: repeat(2, 1fr); padding: 6px; border-radius: 16px 16px 0 0; }
    .hero-foot > a { grid-template-columns: 31px minmax(0, 1fr); gap: 7px; padding: 7px; }
    .hero-foot-icon { width: 31px; height: 31px; }
    .hero-foot-icon svg { width: 15px; height: 15px; }
    .hero-foot-copy strong { font-size: 12px; }
    .section { padding: 72px 0; }
    .service-card, .service-card:nth-child(even), .service-card:hover { min-height: 260px; padding: 24px; }
    .search-hero { padding: 68px 0 58px; }
    .search-hero h1 { font-size: 40px; }
    .search-page-form { grid-template-columns: 1fr; }
    .search-page-form .button { justify-self: stretch; }
    .search-results-heading { align-items: flex-start; flex-direction: column; }
    .search-result-item { grid-template-columns: 68px minmax(0, 1fr) 20px; gap: 16px; padding: 20px; }
    .work-item { padding: 9px 9px 20px; }
    .directory-row, .article-row { padding: 20px; }
    .cta-band { border-radius: 20px; }
}

/* Homepage service mosaic */
.section--services { position: relative; overflow: hidden; background:
    radial-gradient(circle at 7% 10%, rgba(62,106,236,.08), transparent 24%),
    radial-gradient(circle at 93% 26%, rgba(112,75,240,.075), transparent 22%),
    #f5f7fb; }
.section--services::after { position: absolute; top: 90px; right: -170px; width: 390px; height: 390px; border: 1px solid rgba(80,96,210,.09); border-radius: 50%; content: ""; pointer-events: none; }
.section--services .section-heading, .home-service-mosaic { position: relative; z-index: 1; }
.home-service-mosaic { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-flow: dense; grid-auto-rows: minmax(248px, auto); gap: 18px; }
.home-service-feature, .home-service-tile, .home-service-more { position: relative; overflow: hidden; border-radius: 24px; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.home-service-feature { grid-column: span 2; grid-row: span 2; min-height: 514px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(250px, .92fr); gap: 38px; padding: 48px; color: #fff; background:
    radial-gradient(circle at 82% 16%, rgba(91,196,255,.24), transparent 28%),
    radial-gradient(circle at 72% 82%, rgba(122,84,255,.34), transparent 32%),
    linear-gradient(145deg, #101b40 0%, #182b68 46%, #322887 100%);
    box-shadow: 0 28px 70px rgba(35,48,115,.22); }
.home-service-feature::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 34px 34px; content: ""; mask-image: linear-gradient(to right, #000, transparent 78%); pointer-events: none; }
.home-service-feature::after { position: absolute; right: -86px; bottom: -118px; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; transition: transform .5s ease; }
.home-service-feature:hover { color: #fff; box-shadow: 0 36px 82px rgba(37,50,130,.30); transform: translateY(-6px); }
.home-service-feature:hover::after { transform: scale(1.08) translate(-8px, -8px); }
.home-service-feature-copy { position: relative; z-index: 2; align-self: center; }
.home-service-feature-copy > span { display: block; margin-bottom: 25px; color: #aab9f4; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.home-service-feature-copy h3 { margin: 0; color: #fff; font-size: clamp(34px, 3vw, 47px); line-height: 1.12; letter-spacing: -.04em; }
.home-service-feature-copy p { max-width: 520px; margin: 20px 0 25px; color: rgba(232,238,255,.72); font-size: 15px; line-height: 1.8; }
.home-service-feature-copy ul, .home-service-tile ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.home-service-feature-copy li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; color: rgba(241,245,255,.78); background: rgba(255,255,255,.055); font-size: 11px; }
.home-service-feature-copy b { display: inline-flex; align-items: center; gap: 9px; margin-top: 31px; color: #fff; font-size: 13px; }
.home-service-feature-copy b svg { width: 17px; height: 17px; transition: transform .2s ease; }
.home-service-feature:hover .home-service-feature-copy b svg { transform: translateX(4px); }
.home-service-feature-visual { position: relative; z-index: 2; align-self: center; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; perspective: 700px; }
.home-service-feature-visual span { aspect-ratio: 1.18; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; color: rgba(255,255,255,.92); background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045)); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 15px 32px rgba(6,12,46,.13); backdrop-filter: blur(12px); transition: border-color .25s ease, background .25s ease, transform .3s ease; }
.home-service-feature-visual span:nth-child(even) { transform: translateY(17px); }
.home-service-feature-visual span:hover { border-color: rgba(255,255,255,.28); background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(93,153,255,.10)); transform: translateY(-5px); }
.home-service-feature-visual span:nth-child(even):hover { transform: translateY(12px); }
.home-service-feature-visual svg { width: 27px; height: 27px; stroke-width: 1.65; }
.home-service-tile { min-height: 248px; display: flex; flex-direction: column; padding: 27px; border: 1px solid rgba(79,94,159,.10); color: var(--ink); background: rgba(255,255,255,.94); box-shadow: 0 13px 34px rgba(48,64,116,.055); }
.home-service-tile::after { position: absolute; right: 24px; bottom: 0; left: 24px; height: 3px; border-radius: 99px 99px 0 0; background: var(--gradient); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.home-service-tile:hover { border-color: rgba(78,91,222,.20); color: var(--ink); box-shadow: 0 25px 55px rgba(44,61,127,.12); transform: translateY(-5px); }
.home-service-tile:hover::after { transform: scaleX(1); }
.home-service-tile-top { display: grid; grid-template-columns: 44px 1fr 20px; gap: 12px; align-items: center; margin-bottom: 21px; }
.home-service-tile-top > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: var(--gradient); box-shadow: 0 11px 23px rgba(62,85,222,.20); transition: transform .25s ease; }
.home-service-tile:hover .home-service-tile-top > span { transform: rotate(-5deg) scale(1.05); }
.home-service-tile-top > span svg { width: 20px; height: 20px; }
.home-service-tile-top small { color: #9aa4bd; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.home-service-tile-top > svg { width: 18px; height: 18px; color: #7582a5; transition: color .2s ease, transform .2s ease; }
.home-service-tile:hover .home-service-tile-top > svg { color: #5262e9; transform: translate(3px, -3px); }
.home-service-tile h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.28; letter-spacing: -.025em; }
.home-service-tile p { margin: 0 0 18px; color: #68738b; font-size: 12px; line-height: 1.65; }
.home-service-tile ul { gap: 5px 12px; margin-top: auto; }
.home-service-tile li { position: relative; padding-left: 10px; color: #8a94aa; font-size: 10px; line-height: 1.55; }
.home-service-tile li::before { position: absolute; top: .65em; left: 0; width: 3px; height: 3px; border-radius: 50%; background: #6673ed; content: ""; }
.home-service-more { min-height: 248px; display: flex; flex-direction: column; justify-content: flex-end; padding: 29px; color: #fff; background:
    radial-gradient(circle at 80% 18%, rgba(92,205,255,.35), transparent 28%),
    linear-gradient(140deg, #4f55e4, #6847df 57%, #207fcf); box-shadow: 0 20px 45px rgba(62,72,198,.18); }
.home-service-more::before { position: absolute; top: -65px; right: -55px; width: 185px; height: 185px; border: 1px solid rgba(255,255,255,.20); border-radius: 50%; content: ""; transition: transform .4s ease; }
.home-service-more:hover { color: #fff; box-shadow: 0 27px 58px rgba(62,72,198,.27); transform: translateY(-5px); }
.home-service-more:hover::before { transform: scale(1.13); }
.home-service-more span { margin-bottom: auto; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.home-service-more strong { max-width: 230px; font-size: 23px; line-height: 1.25; }
.home-service-more p { max-width: 270px; margin: 12px 0 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.6; }
.home-service-more > svg { position: absolute; right: 26px; bottom: 28px; width: 22px; height: 22px; }

@media (max-width: 1100px) {
    .home-service-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-service-feature { grid-column: 1 / -1; grid-row: auto; min-height: 480px; }
}

@media (max-width: 820px) {
    .home-service-feature { min-height: 430px; grid-template-columns: minmax(0, 1fr) 220px; gap: 25px; padding: 36px; }
    .home-service-feature-visual { gap: 9px; }
    .home-service-feature-copy h3 { font-size: 36px; }
}

@media (max-width: 560px) {
    .section--services::after { display: none; }
    .home-service-mosaic { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 12px; }
    .home-service-feature { min-height: 0; grid-column: auto; grid-template-columns: 1fr; gap: 32px; padding: 29px 24px 35px; border-radius: 20px; }
    .home-service-feature-copy > span { margin-bottom: 17px; }
    .home-service-feature-copy h3 { font-size: 32px; }
    .home-service-feature-copy p { margin: 15px 0 20px; font-size: 13px; }
    .home-service-feature-copy b { margin-top: 23px; }
    .home-service-feature-visual { width: 100%; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .home-service-feature-visual span { aspect-ratio: 1; border-radius: 13px; }
    .home-service-feature-visual span:nth-child(even) { transform: none; }
    .home-service-feature-visual span:nth-child(even):hover { transform: translateY(-5px); }
    .home-service-feature-visual svg { width: 22px; height: 22px; }
    .home-service-tile, .home-service-more { min-height: 230px; padding: 23px; border-radius: 18px; }
    .home-service-tile h3 { font-size: 20px; }
}

/* Interactive depth for the abstract hero visual */
.hero-ui-board[data-hero-parallax] {
    --parallax-near-x: 0px;
    --parallax-near-y: 0px;
    --parallax-near-x-neg: 0px;
    --parallax-near-y-neg: 0px;
    --parallax-mid-x: 0px;
    --parallax-mid-y: 0px;
    --parallax-far-x: 0px;
    --parallax-far-y: 0px;
    --parallax-far-x-neg: 0px;
    --parallax-far-y-neg: 0px;
    --parallax-tilt-x: 0deg;
    --parallax-tilt-y: 0deg;
    --parallax-spot-x: 50%;
    --parallax-spot-y: 42%;
    perspective: 1000px;
}
.hero-parallax-scene { position: relative; width: 100%; height: 100%; transform: perspective(900px) rotateX(var(--parallax-tilt-x)) rotateY(var(--parallax-tilt-y)); transform-style: preserve-3d; transition: transform .08s linear; will-change: transform; }
.hero-parallax-scene::after { position: absolute; inset: 0; z-index: 4; border-radius: 50%; background: radial-gradient(circle at var(--parallax-spot-x) var(--parallax-spot-y), rgba(255,255,255,.28), rgba(255,255,255,.08) 12%, transparent 34%); content: ""; opacity: .7; pointer-events: none; mix-blend-mode: screen; transition: opacity .25s ease; }
.hero-ui-board.is-interacting .hero-parallax-scene::after { opacity: 1; }
.hero-parallax-scene .hero-core { translate: var(--parallax-mid-x) var(--parallax-mid-y); transition: translate .08s linear, box-shadow .3s ease; will-change: translate, transform; }
.hero-ui-board.is-interacting .hero-core { box-shadow: inset 28px 26px 55px rgba(255,255,255,.68), inset -24px -34px 54px rgba(28,36,140,.38), 0 44px 86px rgba(65,75,190,.34); }
.hero-parallax-scene .hero-orbit--one { translate: var(--parallax-far-x) var(--parallax-far-y); animation: hero-orbit-one 18s linear infinite; will-change: translate, transform; }
.hero-parallax-scene .hero-orbit--two { translate: var(--parallax-far-x-neg) var(--parallax-far-y-neg); animation: hero-orbit-two 24s linear infinite reverse; will-change: translate, transform; }
.hero-parallax-scene .hero-float-card--top { translate: var(--parallax-near-x-neg) var(--parallax-near-y-neg); animation: hero-card-drift-top 5.4s ease-in-out infinite; will-change: translate, transform; }
.hero-parallax-scene .hero-float-card--bottom { translate: var(--parallax-near-x) var(--parallax-near-y); animation: hero-card-drift-bottom 6.2s ease-in-out infinite; will-change: translate, transform; }
.hero-parallax-scene .hero-status { translate: var(--parallax-far-x) var(--parallax-far-y); transition: translate .08s linear; }
.hero-parallax-scene .hero-status i { animation: hero-status-pulse 2.2s ease-out infinite; }
@keyframes hero-orbit-one { from { transform: rotate(-12deg); } to { transform: rotate(348deg); } }
@keyframes hero-orbit-two { from { transform: rotate(31deg); } to { transform: rotate(391deg); } }
@keyframes hero-card-drift-top { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(-1.2deg); } }
@keyframes hero-card-drift-bottom { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(9px) rotate(1deg); } }
@keyframes hero-status-pulse { 0% { box-shadow: 0 0 0 0 rgba(32,201,151,.35); } 70%,100% { box-shadow: 0 0 0 10px rgba(32,201,151,0); } }

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
    .hero-parallax-scene { transform: none; }
    .hero-parallax-scene .hero-orbit--one,
    .hero-parallax-scene .hero-orbit--two,
    .hero-parallax-scene .hero-float-card--top,
    .hero-parallax-scene .hero-float-card--bottom,
    .hero-parallax-scene .hero-status i { animation: none; }
}

/* Homepage case introduction */
.section--case-intro { overflow: hidden; margin-top: 18px; padding: 84px 0 52px; border-radius: 32px 32px 0 0; background:
    radial-gradient(circle at 86% 8%, rgba(86,96,237,.075), transparent 25%),
    linear-gradient(180deg, #f4f5f9 0%, #f7f8fb 100%); }
.section--case-intro::after { position: absolute; width: 420px; height: 420px; right: -180px; top: -220px; border: 1px solid rgba(83,99,218,.09); border-radius: 50%; content: ""; }
.case-intro-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .78fr); grid-template-rows: auto 1fr auto; column-gap: clamp(48px, 6vw, 92px); }
.case-intro-heading { max-width: 680px; align-self: end; }
.case-intro-heading h2 { margin: 18px 0 21px; color: #101522; font-size: clamp(42px, 4.1vw, 60px); font-weight: 850; line-height: 1.06; letter-spacing: -.055em; }
.case-intro-heading h2 span { margin-left: 7px; font-family: Arial, sans-serif; letter-spacing: -.04em; }
.case-intro-heading h2 i { color: #5261ef; font-style: normal; }
.case-intro-heading > b { display: block; width: 88px; height: 4px; border-radius: 99px; background: var(--gradient); box-shadow: 0 8px 18px rgba(70,92,230,.18); }
.case-intro-copy { max-width: 650px; align-self: start; margin-top: 27px; }
.case-intro-copy p { margin: 0; color: #505b70; font-size: 15px; line-height: 1.9; }
.case-intro-visual { position: relative; grid-column: 2; grid-row: 1 / span 2; min-height: 348px; align-self: center; }
.case-intro-cover { position: absolute; overflow: hidden; border: 1px solid rgba(78,91,151,.10); color: #fff; background: #dfe5f2; box-shadow: 0 22px 55px rgba(45,59,111,.15); transition: box-shadow .25s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.case-intro-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.case-intro-cover::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,16,37,.76) 100%); content: ""; pointer-events: none; }
.case-intro-cover--main { inset: 0 0 28px 34px; border-radius: 20px; }
.case-intro-cover--minor { z-index: 2; bottom: 0; left: 0; width: 57%; height: 136px; border: 5px solid #f5f6fa; border-radius: 16px; }
.case-intro-cover:hover { color: #fff; box-shadow: 0 30px 68px rgba(45,59,111,.23); transform: translateY(-5px); }
.case-intro-cover:hover img { transform: scale(1.045); }
.case-intro-cover > span { position: absolute; z-index: 2; right: 18px; bottom: 17px; left: 18px; display: flex; flex-direction: column; align-items: flex-start; }
.case-intro-cover > span small { margin-bottom: 4px; color: rgba(255,255,255,.65); font-size: 7px; font-weight: 750; letter-spacing: .14em; }
.case-intro-cover > span strong { color: #fff; font-size: 15px; line-height: 1.25; }
.case-intro-cover--main > span strong { font-size: 20px; }
.case-intro-cover > svg { position: absolute; z-index: 2; right: 18px; bottom: 19px; width: 18px; height: 18px; color: #fff; }
.case-intro-cover--main > span { right: 48px; }
.case-category-nav { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px 11px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(87,101,160,.12); }
.case-category-nav a { position: relative; display: inline-flex; min-height: 38px; align-items: center; padding: 0 14px; border: 1px solid transparent; border-radius: 9px; color: #283247; background: transparent; font-size: 13px; font-weight: 750; transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease; }
.case-category-nav a::before { position: absolute; bottom: 3px; left: 14px; width: 0; height: 2px; border-radius: 99px; background: var(--gradient); content: ""; transition: width .22s ease; }
.case-category-nav a:hover { border-color: rgba(84,97,220,.12); color: #3e55dc; background: rgba(255,255,255,.72); transform: translateY(-2px); }
.case-category-nav a:hover::before { width: calc(100% - 28px); }
.case-category-nav a.is-active { color: #fff; background: var(--gradient); box-shadow: 0 10px 22px rgba(62,85,223,.20); }
.case-category-nav a.is-active::before { display: none; }

@media (max-width: 820px) {
    .section--case-intro { padding: 68px 0 43px; border-radius: 24px 24px 0 0; }
    .case-intro-inner { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; }
    .case-intro-heading { max-width: 620px; }
    .case-intro-heading h2 { font-size: 48px; }
    .case-intro-visual { grid-column: 1; grid-row: 2; min-height: 310px; margin-top: 36px; }
    .case-intro-cover--main { left: 52px; }
    .case-intro-cover--minor { width: 48%; }
    .case-intro-copy { grid-row: 3; max-width: 720px; margin-top: 34px; }
    .case-intro-copy p { font-size: 14px; line-height: 1.85; }
    .case-category-nav { grid-row: 4; margin-top: 38px; }
}

@media (max-width: 560px) {
    .section--case-intro { margin-top: 10px; padding: 56px 0 35px; }
    .case-intro-heading h2 { margin: 15px 0 17px; font-size: 36px; line-height: 1.08; }
    .case-intro-heading h2 span { margin-left: 4px; }
    .case-intro-heading > b { width: 68px; height: 3px; }
    .case-intro-visual { min-height: 232px; margin-top: 28px; }
    .case-intro-cover--main { inset: 0 0 20px 22px; border-radius: 15px; }
    .case-intro-cover--minor { width: 55%; height: 96px; border-width: 4px; border-radius: 12px; }
    .case-intro-cover > span { right: 12px; bottom: 11px; left: 12px; }
    .case-intro-cover--main > span { right: 38px; }
    .case-intro-cover > span small { font-size: 5px; }
    .case-intro-cover > span strong { font-size: 10px; }
    .case-intro-cover--main > span strong { font-size: 15px; }
    .case-intro-cover > svg { right: 12px; bottom: 13px; width: 14px; height: 14px; }
    .case-intro-copy { margin-top: 27px; }
    .case-intro-copy p { font-size: 13px; line-height: 1.8; }
    .case-category-nav { gap: 7px; margin-top: 30px; padding-top: 18px; }
    .case-category-nav a { min-height: 34px; padding: 0 10px; border-color: rgba(84,97,180,.08); background: rgba(255,255,255,.52); font-size: 11px; }
}

/* Full-width interactive concept case wall */
.section--work { padding: 104px 0 0; background: linear-gradient(180deg, #f4f6ff 0%, #eef1f8 100%); color: var(--ink); }
.section--work::after { width: 58%; background: radial-gradient(circle at 72% 16%, rgba(91,91,255,.10), transparent 46%); }
.section--work .section-heading { margin-bottom: 48px; }
.section--work .section-heading--light h2, .section--work .section-heading--light .section-index { color: var(--ink); }
.featured-work { position: relative; z-index: 2; width: 100%; height: clamp(430px, 35vw, 560px); display: flex; gap: 0; overflow: hidden; background: #101522; }
.work-item, .work-item:nth-child(3) { --work-image-x: 0px; --work-image-y: 0px; --work-spot-x: 50%; --work-spot-y: 45%; position: relative; min-width: 0; height: 100%; flex: 1 1 0; grid-column: auto; overflow: hidden; padding: 0; border: 0; border-radius: 0; color: #fff; background: #111827; box-shadow: none; isolation: isolate; transition: flex-grow .7s cubic-bezier(.22,1,.36,1), filter .45s ease; }
.work-item:first-child { flex-grow: 1.45; }
.featured-work:has(.work-item:hover) .work-item { flex-grow: .78; filter: saturate(.72); }
.featured-work:has(.work-item:hover) .work-item:hover { flex-grow: 1.65; color: #fff; filter: saturate(1.08); }
.work-item::before { position: absolute; inset: 0; z-index: 3; display: block; background: radial-gradient(circle at var(--work-spot-x) var(--work-spot-y), rgba(255,255,255,.20), rgba(255,255,255,.045) 17%, transparent 38%); content: ""; opacity: 0; mix-blend-mode: screen; pointer-events: none; transition: opacity .3s ease; }
.work-item:hover::before { opacity: 1; }
.work-item::after { position: absolute; top: 0; right: 0; bottom: 0; left: auto; z-index: 4; width: 1px; height: auto; display: block; background: rgba(255,255,255,.16); content: ""; transform: none; }
.work-item:last-child::after { display: none; }
.work-item-background { position: absolute; inset: -18px; z-index: -2; overflow: hidden; }
.work-item-background img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.04) saturate(.76); transform: translate3d(var(--work-image-x), var(--work-image-y), 0) scale(1.075); transition: transform .65s cubic-bezier(.22,1,.36,1), filter .45s ease; will-change: transform; }
.work-item:nth-child(2) .work-item-background img, .work-item:nth-child(3) .work-item-background img { object-position: center top; }
.work-item:hover .work-item-background img { filter: contrast(1.08) saturate(1.02); transform: translate3d(var(--work-image-x), var(--work-image-y), 0) scale(1.13); }
.work-item-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,14,27,.08) 18%, rgba(10,14,27,.22) 48%, rgba(8,12,25,.89) 100%); transition: background .45s ease; }
.work-item:nth-child(2) .work-item-shade { background: linear-gradient(155deg, rgba(65,20,77,.13), rgba(57,22,100,.34) 45%, rgba(18,10,43,.94) 100%); }
.work-item:nth-child(3) .work-item-shade { background: linear-gradient(155deg, rgba(8,61,103,.08), rgba(12,49,88,.28) 48%, rgba(7,20,43,.94) 100%); }
.work-item:hover .work-item-shade { background: linear-gradient(180deg, rgba(8,12,24,.03), rgba(8,12,24,.12) 45%, rgba(7,10,22,.82) 100%); }
.work-meta { position: absolute; right: 34px; bottom: 34px; left: 34px; z-index: 5; max-width: 520px; padding: 0; transform: translateY(0); transition: transform .4s cubic-bezier(.22,1,.36,1); }
.work-item:hover .work-meta { transform: translateY(-8px); }
.work-meta span { display: block; margin-bottom: 9px; color: rgba(255,255,255,.64); font-size: 9px; font-weight: 750; letter-spacing: .14em; white-space: nowrap; }
.work-meta h3 { margin: 0; color: #fff; font-size: clamp(26px, 2.2vw, 36px); line-height: 1.15; letter-spacing: -.035em; white-space: nowrap; }
.work-meta p { max-width: 430px; margin: 10px 0 0; overflow: hidden; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.65; opacity: .76; white-space: nowrap; text-overflow: ellipsis; transition: opacity .3s ease; }
.work-item:hover .work-meta p { opacity: 1; }
.work-item-arrow { position: absolute; top: 28px; right: 28px; z-index: 5; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; color: #fff; background: rgba(10,15,32,.18); opacity: 0; transform: translate(-8px, 8px); backdrop-filter: blur(10px); transition: opacity .3s ease, transform .4s cubic-bezier(.22,1,.36,1), background .2s ease; }
.work-item:hover .work-item-arrow { opacity: 1; transform: translate(0, 0); }
.work-item-arrow svg { width: 18px; height: 18px; }

@media (max-width: 820px) {
    .section--work { padding-top: 78px; }
    .section--work .section-heading { margin-bottom: 34px; }
    .featured-work { height: auto; display: grid; grid-template-columns: 1fr; overflow: visible; background: transparent; }
    .work-item, .work-item:nth-child(3), .work-item:first-child { min-height: 310px; flex-grow: 1; }
    .featured-work:has(.work-item:hover) .work-item, .featured-work:has(.work-item:hover) .work-item:hover { flex-grow: 1; filter: none; }
    .work-item::after { top: auto; right: 0; bottom: 0; left: 0; width: auto; height: 1px; }
    .work-meta { right: 26px; bottom: 26px; left: 26px; }
    .work-meta h3 { font-size: 29px; }
}

@media (max-width: 560px) {
    .section--work { padding-top: 66px; }
    .work-item, .work-item:nth-child(3), .work-item:first-child { min-height: 265px; padding: 0; }
    .work-meta { right: 20px; bottom: 21px; left: 20px; }
    .work-meta span { margin-bottom: 7px; font-size: 7px; }
    .work-meta h3 { font-size: 25px; }
    .work-meta p { margin-top: 7px; font-size: 10px; }
    .work-item-arrow { top: 18px; right: 18px; width: 36px; height: 36px; opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
    .work-item-background img, .work-item:hover .work-item-background img { transform: scale(1.075); }
    .work-item::before { display: none; }
}

/* Site-wide contact conversion layer */
.contact-assist { position: fixed; top: 50%; right: 18px; z-index: 80; display: flex; align-items: center; transform: translateY(-50%); }
.contact-assist-trigger { position: relative; z-index: 2; width: 58px; min-height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 10px 7px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; color: #fff; background: linear-gradient(155deg, #5360ed, #5d43df 58%, #198bd0); box-shadow: 0 18px 42px rgba(52,65,185,.28); cursor: pointer; transition: box-shadow .25s ease, transform .25s ease; }
.contact-assist-trigger:hover { box-shadow: 0 24px 54px rgba(52,65,185,.38); transform: translateY(-3px); }
.contact-assist-trigger > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.14); }
.contact-assist-trigger svg { width: 19px; height: 19px; }
.contact-assist-trigger b { font-size: 11px; line-height: 1.35; writing-mode: vertical-rl; letter-spacing: .12em; }
.contact-assist-trigger::after { position: absolute; top: 8px; right: 8px; width: 7px; height: 7px; border: 2px solid #fff; border-radius: 50%; background: #28d39b; box-shadow: 0 0 0 5px rgba(40,211,155,.15); content: ""; }
.contact-assist-panel { position: absolute; top: 50%; right: 70px; width: 346px; overflow: hidden; padding: 27px; border: 1px solid rgba(83,99,173,.12); border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 28px 75px rgba(37,50,107,.22); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(18px, -50%) scale(.97); transform-origin: right center; backdrop-filter: blur(20px); transition: opacity .25s ease, visibility .25s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.contact-assist.is-open .contact-assist-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(0, -50%) scale(1); }
.contact-assist-panel::before { position: absolute; top: -92px; right: -72px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(79,93,236,.14), transparent 68%); content: ""; pointer-events: none; }
.contact-assist-panel-close, .contact-prompt-close { position: absolute; z-index: 2; top: 15px; right: 15px; width: 32px; height: 32px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(82,96,153,.12); border-radius: 9px; color: #69758f; background: rgba(248,249,253,.90); cursor: pointer; }
.contact-assist-panel-close svg, .contact-prompt-close svg { width: 15px; height: 15px; }
.contact-assist-kicker { display: block; margin-bottom: 11px; color: #5263e6; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.contact-assist-panel > strong { display: block; padding-right: 34px; color: #172033; font-size: 23px; line-height: 1.25; }
.contact-assist-panel > p { margin: 10px 0 18px; color: #707b91; font-size: 12px; line-height: 1.7; }
.contact-assist-methods { display: grid; gap: 8px; }
.contact-assist-methods > a, .contact-assist-methods > button { width: 100%; min-width: 0; display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 10px; border: 1px solid rgba(83,97,156,.10); border-radius: 12px; color: #26314a; background: #f7f8fc; text-align: left; cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.contact-assist-methods > a:hover, .contact-assist-methods > button:hover { border-color: rgba(80,92,224,.19); color: #3448cf; background: #fff; transform: translateX(3px); }
.contact-assist-methods > a > svg, .contact-assist-methods > button > svg { width: 34px; height: 34px; padding: 8px; border-radius: 10px; color: #fff; background: var(--gradient); }
.contact-assist-methods span { min-width: 0; display: flex; flex-direction: column; }
.contact-assist-methods small { margin-bottom: 3px; color: #8993aa; font-size: 8px; }
.contact-assist-methods b { overflow: hidden; font-size: 11px; white-space: nowrap; text-overflow: ellipsis; }
.contact-assist-methods em { color: #6270d9; font-size: 9px; font-style: normal; }
.contact-assist-qr { display: grid; grid-template-columns: 80px 1fr; gap: 13px; align-items: center; margin-top: 16px; padding: 12px; border: 1px dashed rgba(82,96,160,.17); border-radius: 14px; background: linear-gradient(135deg, #f8f9ff, #f3f7ff); }
.contact-assist-qr > img, .contact-assist-qr-placeholder { width: 80px; height: 80px; display: grid; place-items: center; border: 6px solid #fff; border-radius: 10px; object-fit: cover; background: #fff; box-shadow: 0 8px 18px rgba(51,65,115,.09); }
.contact-assist-qr-placeholder { color: #6976d8; text-align: center; }
.contact-assist-qr-placeholder svg { width: 32px; height: 32px; }
.contact-assist-qr-placeholder small { display: block; margin-top: 2px; font-size: 6px; }
.contact-assist-qr p { margin: 0; }
.contact-assist-qr p strong, .contact-assist-qr p span { display: block; }
.contact-assist-qr p strong { margin-bottom: 5px; color: #25304a; font-size: 12px; }
.contact-assist-qr p span { color: #7b869d; font-size: 9px; line-height: 1.55; }
.contact-assist-link { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(83,97,156,.10); color: #4d5edc; font-size: 11px; font-weight: 750; }
.contact-assist-link svg { width: 15px; height: 15px; }

.contact-prompt { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s ease, visibility .28s ease; }
.contact-prompt.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.contact-prompt-backdrop { position: absolute; inset: 0; background: rgba(8,13,31,.61); backdrop-filter: blur(8px); }
.contact-prompt-dialog { position: relative; z-index: 1; width: min(920px, 100%); max-height: calc(100vh - 48px); display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); overflow: auto; border: 1px solid rgba(255,255,255,.16); border-radius: 27px; background: #fff; box-shadow: 0 40px 110px rgba(7,13,44,.40); opacity: 0; transform: translateY(24px) scale(.97); transition: opacity .3s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.contact-prompt.is-open .contact-prompt-dialog { opacity: 1; transform: translateY(0) scale(1); }
.contact-prompt-close { top: 18px; right: 18px; color: #fff; border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.10); }
.contact-prompt-info { position: relative; overflow: hidden; padding: 50px; color: #fff; background: radial-gradient(circle at 88% 18%, rgba(67,191,255,.28), transparent 25%), radial-gradient(circle at 14% 92%, rgba(132,74,255,.34), transparent 30%), linear-gradient(145deg, #111b40, #253477 55%, #402b8d); }
.contact-prompt-info::after { position: absolute; right: -95px; bottom: -105px; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.contact-prompt-info > span { display: block; margin-bottom: 20px; color: #aabaf5; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.contact-prompt-info h2 { margin: 0; color: #fff; font-size: clamp(34px, 3.2vw, 46px); line-height: 1.15; letter-spacing: -.045em; }
.contact-prompt-info > p { max-width: 480px; margin: 18px 0 27px; color: rgba(233,239,255,.70); font-size: 13px; line-height: 1.75; }
.contact-prompt-contact { display: grid; gap: 9px; }
.contact-prompt-contact > div { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center; }
.contact-prompt-contact > div > svg { width: 32px; height: 32px; padding: 8px; border: 1px solid rgba(255,255,255,.11); border-radius: 9px; background: rgba(255,255,255,.07); }
.contact-prompt-contact span { display: flex; flex-direction: column; }
.contact-prompt-contact small { margin-bottom: 2px; color: rgba(255,255,255,.48); font-size: 7px; }
.contact-prompt-contact strong { color: #fff; font-size: 11px; }
.contact-prompt-qr { position: relative; z-index: 1; display: flex; gap: 12px; align-items: center; margin-top: 25px; }
.contact-prompt-qr > img, .contact-prompt-qr > span { width: 72px; height: 72px; display: grid; place-items: center; border: 6px solid #fff; border-radius: 10px; object-fit: cover; color: #4d5cce; background: #fff; }
.contact-prompt-qr > span svg { width: 34px; height: 34px; }
.contact-prompt-qr p { margin: 0; }
.contact-prompt-qr p strong, .contact-prompt-qr p small { display: block; }
.contact-prompt-qr p strong { margin-bottom: 5px; color: #fff; font-size: 12px; }
.contact-prompt-qr p small { color: rgba(255,255,255,.55); font-size: 9px; }
.contact-prompt-form { padding: 48px 40px 38px; background: #fff; }
.contact-prompt-form > span { color: #5262e3; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.contact-prompt-form h3 { margin: 8px 0 22px; font-size: 25px; }
.contact-prompt-form label { display: grid; gap: 7px; margin-bottom: 13px; color: #4e5a72; font-size: 10px; font-weight: 700; }
.contact-prompt-form input, .contact-prompt-form textarea { width: 100%; padding: 12px 13px; border: 1px solid rgba(83,97,156,.14); border-radius: 10px; outline: 0; color: #1f2937; background: #f7f9fd; font: inherit; font-size: 12px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.contact-prompt-form input { height: 44px; }
.contact-prompt-form textarea { min-height: 94px; resize: vertical; line-height: 1.6; }
.contact-prompt-form input:focus, .contact-prompt-form textarea:focus { border-color: rgba(75,90,225,.43); background: #fff; box-shadow: 0 0 0 4px rgba(78,91,226,.08); }
.contact-prompt-form .button { width: 100%; margin-top: 3px; }
.contact-prompt-form > small { display: block; margin-top: 11px; color: #98a1b4; font-size: 8px; text-align: center; }
.contact-prompt-form .honeypot { position: absolute !important; left: -9999px !important; }
.contact-copy-toast { position: fixed; right: 26px; bottom: 28px; z-index: 150; padding: 11px 16px; border-radius: 10px; color: #fff; background: #15203c; box-shadow: 0 14px 35px rgba(16,26,58,.24); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, visibility .2s ease, transform .25s ease; font-size: 11px; }
.contact-copy-toast.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
body.contact-prompt-open { overflow: hidden; }

@media (max-width: 820px) {
    .contact-assist { top: auto; right: 14px; bottom: 18px; transform: none; }
    .contact-assist-trigger { width: 54px; min-height: 54px; border-radius: 16px; }
    .contact-assist-trigger > span { width: 34px; height: 34px; }
    .contact-assist-trigger b { display: none; }
    .contact-assist-panel { top: auto; right: 0; bottom: 67px; width: min(346px, calc(100vw - 28px)); transform: translateY(15px) scale(.97); transform-origin: right bottom; }
    .contact-assist.is-open .contact-assist-panel { transform: translateY(0) scale(1); }
    .contact-prompt { padding: 14px; }
    .contact-prompt-dialog { max-height: calc(100vh - 28px); grid-template-columns: 1fr; border-radius: 22px; }
    .contact-prompt-info { padding: 38px 30px 32px; }
    .contact-prompt-info h2 { font-size: 35px; }
    .contact-prompt-contact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-prompt-qr { display: none; }
    .contact-prompt-form { padding: 32px 30px; }
    .contact-prompt-close { color: #657089; border-color: rgba(82,96,153,.12); background: #f6f7fb; }
}

@media (max-width: 560px) {
    .contact-assist { right: 10px; bottom: 12px; }
    .contact-assist-panel { bottom: 62px; width: calc(100vw - 20px); padding: 22px; border-radius: 18px; }
    .contact-prompt-info { padding: 33px 23px 27px; }
    .contact-prompt-info h2 { padding-right: 20px; font-size: 30px; }
    .contact-prompt-info > p { margin: 13px 0 20px; font-size: 11px; }
    .contact-prompt-contact { grid-template-columns: 1fr; gap: 7px; }
    .contact-prompt-form { padding: 27px 23px 25px; }
    .contact-prompt-form h3 { margin-bottom: 17px; font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .contact-assist-panel, .contact-prompt, .contact-prompt-dialog { transition: none; }
}

/* Four independent hero service entrances */
.home-page .home-hero { height: 720px; }
.hero-slider-stage { bottom: 124px; }
.hero-foot { min-height: 124px; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; padding: 9px; border: 1px solid rgba(74,92,160,.11); border-bottom: 0; border-radius: 22px 22px 0 0; color: #344054; background: linear-gradient(135deg, rgba(255,255,255,.91), rgba(245,248,255,.82)); box-shadow: 0 -20px 50px rgba(47,67,132,.075); backdrop-filter: blur(24px); }
.hero-foot > .hero-foot-service { --service-a: #6658f2; --service-b: #2499ee; position: relative; min-width: 0; min-height: 104px; display: grid; grid-template-columns: 46px minmax(0, 1fr) 22px; gap: 13px; align-items: center; overflow: hidden; padding: 14px 15px; border: 1px solid transparent; border-radius: 16px; text-align: left; isolation: isolate; transition: border-color .25s ease, box-shadow .3s ease, transform .3s cubic-bezier(.22,1,.36,1); }
.hero-foot-service--website { --service-a: #6658f2; --service-b: #238eea; }
.hero-foot-service--commerce { --service-a: #4e61f0; --service-b: #15b6e7; }
.hero-foot-service--system { --service-a: #4b52dc; --service-b: #7654ef; }
.hero-foot-service--mini { --service-a: #315ee4; --service-b: #20c1d5; }
.hero-foot-service::before { position: absolute; inset: 0; z-index: -2; border-radius: inherit; background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(247,249,255,.58)); content: ""; opacity: 0; transition: opacity .25s ease; }
.hero-foot-service::after { position: absolute; right: 18px; bottom: 0; left: 18px; height: 3px; border-radius: 99px 99px 0 0; background: linear-gradient(90deg, var(--service-a), var(--service-b)); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.hero-foot > .hero-foot-service:hover, .hero-foot > .hero-foot-service:focus-visible { border-color: color-mix(in srgb, var(--service-a) 20%, transparent); background: transparent; box-shadow: 0 18px 38px rgba(53,69,142,.14); outline: 0; transform: translateY(-6px); }
.hero-foot-service:hover::before, .hero-foot-service:focus-visible::before { opacity: 1; }
.hero-foot-service:hover::after, .hero-foot-service:focus-visible::after { transform: scaleX(1); }
.hero-foot-accent { position: absolute; z-index: -1; top: -54px; left: -40px; width: 135px; height: 135px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--service-b) 18%, transparent), transparent 68%); opacity: 0; transform: scale(.72); transition: opacity .3s ease, transform .45s cubic-bezier(.22,1,.36,1); pointer-events: none; }
.hero-foot-service:hover .hero-foot-accent, .hero-foot-service:focus-visible .hero-foot-accent { opacity: 1; transform: scale(1); }
.hero-foot-service .hero-foot-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.30); border-radius: 14px; color: #fff; background: linear-gradient(145deg, var(--service-a), var(--service-b)); box-shadow: 0 11px 24px color-mix(in srgb, var(--service-a) 25%, transparent); transition: box-shadow .25s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.hero-foot-service:hover .hero-foot-icon, .hero-foot-service:focus-visible .hero-foot-icon { box-shadow: 0 16px 30px color-mix(in srgb, var(--service-a) 33%, transparent); transform: rotate(-5deg) scale(1.06); }
.hero-foot-service .hero-foot-icon svg { width: 20px; height: 20px; stroke-width: 1.65; }
.hero-foot-service .hero-foot-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.hero-foot-service .hero-foot-copy small { margin-bottom: 6px; color: #7c89aa; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.hero-foot-service .hero-foot-copy strong { color: #26324a; font-size: 15px; font-weight: 820; white-space: nowrap; }
.hero-foot-service .hero-foot-copy em { margin-top: 7px; overflow: hidden; color: #8792aa; font-size: 9px; font-style: normal; white-space: nowrap; text-overflow: ellipsis; }
.hero-foot-service .hero-foot-arrow { width: 18px; height: 18px; color: #8590ab; transition: color .2s ease, transform .3s ease; }
.hero-foot-service:hover .hero-foot-arrow, .hero-foot-service:focus-visible .hero-foot-arrow { color: var(--service-a); transform: translate(4px, -4px); }
.hero-slider-controls { bottom: 135px; }

@media (max-width: 1100px) {
    .hero-foot > .hero-foot-service { grid-template-columns: 41px minmax(0, 1fr) 17px; gap: 10px; padding: 12px 10px; }
    .hero-foot-service .hero-foot-icon { width: 41px; height: 41px; }
    .hero-foot-service .hero-foot-copy strong { font-size: 13px; }
    .hero-foot-service .hero-foot-copy em { font-size: 8px; }
}

@media (max-width: 820px) {
    .home-page .home-hero { height: 810px; }
    .hero-slider-stage { bottom: 174px; }
    .hero-foot { min-height: 174px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 7px; border-radius: 19px 19px 0 0; }
    .hero-foot > a:nth-child(3), .hero-foot > a:nth-child(4) { display: grid; }
    .hero-foot > .hero-foot-service { min-height: 77px; grid-template-columns: 39px minmax(0, 1fr) 16px; gap: 10px; padding: 9px 11px; border-radius: 13px; }
    .hero-foot-service .hero-foot-icon { width: 39px; height: 39px; border-radius: 11px; }
    .hero-foot-service .hero-foot-copy small { display: block; margin-bottom: 4px; font-size: 6px; }
    .hero-foot-service .hero-foot-copy strong { font-size: 12px; }
    .hero-foot-service .hero-foot-copy em { display: block; margin-top: 4px; font-size: 7px; }
    .hero-foot-service .hero-foot-arrow { display: block; width: 14px; height: 14px; }
    .hero-slider-controls { bottom: 184px; }
}

@media (max-width: 560px) {
    .home-page .home-hero { height: 830px; }
    .hero-slider-stage { bottom: 162px; }
    .hero-foot { min-height: 162px; gap: 4px; padding: 5px; border-radius: 15px 15px 0 0; }
    .hero-foot > .hero-foot-service { min-height: 74px; grid-template-columns: 34px minmax(0, 1fr); gap: 8px; padding: 8px; border-radius: 11px; }
    .hero-foot-service .hero-foot-icon { width: 34px; height: 34px; border-radius: 10px; }
    .hero-foot-service .hero-foot-icon svg { width: 16px; height: 16px; }
    .hero-foot-service .hero-foot-copy small { display: none; }
    .hero-foot-service .hero-foot-copy strong { font-size: 11px; }
    .hero-foot-service .hero-foot-copy em { max-width: 100%; font-size: 6px; }
    .hero-foot-service .hero-foot-arrow { display: none; }
    .hero-slider-controls { bottom: 171px; }
}

/* Editorial visuals for homepage insights */
.section--insights .insight-card, .section--insights .insight-card + .insight-card { min-height: 438px; display: grid; grid-template-rows: auto 156px auto; gap: 18px; justify-content: stretch; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 14px 40px rgba(57,73,128,.07); transition: border-color .25s ease, box-shadow .3s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.section--insights .insight-card:hover { padding-right: 24px; border-color: rgba(78,91,224,.18); box-shadow: 0 27px 60px rgba(55,70,138,.14); transform: translateY(-7px); }
.insight-card-head { display: flex; align-items: center; justify-content: space-between; }
.insight-card-head .insight-index { color: #6268ee; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.insight-card-head > svg { width: 18px; height: 18px; color: #74809e; transition: color .2s ease, transform .3s ease; }
.insight-card:hover .insight-card-head > svg { color: #5362e8; transform: translate(4px, -4px); }
.insight-card-visual { --visual-a: #5964ed; --visual-b: #1cafe9; position: relative; overflow: hidden; border: 1px solid rgba(83,98,172,.09); border-radius: 16px; background: radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--visual-b) 17%, transparent), transparent 29%), linear-gradient(145deg, #f5f7ff, #edf3ff); isolation: isolate; transition: border-color .25s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.insight-card-visual::before { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(80,95,175,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(80,95,175,.045) 1px, transparent 1px); background-size: 22px 22px; content: ""; mask-image: linear-gradient(90deg, #000, transparent 85%); }
.insight-card-visual::after { position: absolute; right: -34px; bottom: -46px; width: 142px; height: 142px; border: 1px solid color-mix(in srgb, var(--visual-a) 14%, transparent); border-radius: 50%; content: ""; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.insight-card:hover .insight-card-visual { border-color: color-mix(in srgb, var(--visual-a) 19%, transparent); transform: translateY(-3px); }
.insight-card:hover .insight-card-visual::after { transform: scale(1.18) translate(-7px, -5px); }
.insight-card-visual--1 { --visual-a: #5864ee; --visual-b: #21b2eb; }
.insight-card-visual--2 { --visual-a: #7655ef; --visual-b: #3b7cf0; background: radial-gradient(circle at 26% 18%, rgba(117,85,239,.16), transparent 28%), linear-gradient(145deg, #f7f4ff, #edf1ff); }
.insight-card-visual--3 { --visual-a: #315ddd; --visual-b: #20bdd6; background: radial-gradient(circle at 82% 25%, rgba(32,189,214,.17), transparent 28%), linear-gradient(145deg, #f2f8ff, #edf4fc); }
.insight-card-visual > span { position: absolute; display: block; color: inherit; font-size: inherit; }
.insight-visual-card { top: 50%; right: 18%; width: 72px; height: 72px; display: grid !important; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 20px; color: #fff !important; background: linear-gradient(145deg, var(--visual-a), var(--visual-b)); box-shadow: 0 17px 35px color-mix(in srgb, var(--visual-a) 25%, transparent), inset 0 1px 0 rgba(255,255,255,.28); transform: translateY(-50%) rotate(4deg); transition: box-shadow .35s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.insight-visual-card svg { width: 27px; height: 27px; stroke-width: 1.55; }
.insight-card:hover .insight-visual-card { box-shadow: 0 24px 42px color-mix(in srgb, var(--visual-a) 34%, transparent), inset 0 1px 0 rgba(255,255,255,.30); transform: translateY(-55%) rotate(-3deg) scale(1.06); }
.insight-visual-orbit { top: 50%; right: calc(18% - 22px); width: 116px; height: 116px; border: 1px solid color-mix(in srgb, var(--visual-a) 18%, transparent); border-radius: 50%; transform: translateY(-50%); transition: transform .7s cubic-bezier(.22,1,.36,1); }
.insight-visual-orbit::before, .insight-visual-orbit::after { position: absolute; border-radius: 50%; background: var(--visual-b); content: ""; }
.insight-visual-orbit::before { top: 9px; left: 17px; width: 6px; height: 6px; box-shadow: 0 0 0 5px color-mix(in srgb, var(--visual-b) 12%, transparent); }
.insight-visual-orbit::after { right: 7px; bottom: 25px; width: 4px; height: 4px; }
.insight-card:hover .insight-visual-orbit { transform: translateY(-50%) rotate(28deg) scale(1.05); }
.insight-visual-line { left: 9%; height: 8px; border-radius: 99px; background: linear-gradient(90deg, color-mix(in srgb, var(--visual-a) 62%, white), color-mix(in srgb, var(--visual-b) 30%, white)); transition: width .45s cubic-bezier(.22,1,.36,1), transform .45s ease; }
.insight-visual-line--one { top: 42%; width: 30%; }
.insight-visual-line--two { top: 57%; width: 21%; opacity: .6; }
.insight-card:hover .insight-visual-line--one { width: 35%; transform: translateX(4px); }
.insight-card:hover .insight-visual-line--two { width: 25%; transform: translateX(-3px); }
.insight-visual-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--visual-a); box-shadow: 0 0 0 5px color-mix(in srgb, var(--visual-a) 11%, transparent); }
.insight-visual-dot--one { top: 22%; left: 11%; }
.insight-visual-dot--two { right: 8%; bottom: 16%; width: 4px; height: 4px; background: var(--visual-b); }
.insight-card-visual--2 .insight-visual-card { right: 50%; transform: translate(50%, -50%) rotate(-4deg); }
.insight-card-visual--2 .insight-visual-orbit { right: 50%; transform: translate(50%, -50%); }
.insight-card:hover .insight-card-visual--2 .insight-visual-card { transform: translate(50%, -55%) rotate(3deg) scale(1.06); }
.insight-card:hover .insight-card-visual--2 .insight-visual-orbit { transform: translate(50%, -50%) rotate(28deg) scale(1.05); }
.insight-card-visual--2 .insight-visual-line--one { top: 31%; width: 17%; }
.insight-card-visual--2 .insight-visual-line--two { top: 68%; left: auto; right: 8%; width: 18%; }
.insight-card-visual--3 .insight-visual-card { right: 11%; border-radius: 15px; transform: translateY(-50%) rotate(0); }
.insight-card-visual--3 .insight-visual-orbit { right: calc(11% - 22px); border-radius: 24px; transform: translateY(-50%) rotate(8deg); }
.insight-card:hover .insight-card-visual--3 .insight-visual-card { transform: translateY(-55%) rotate(-4deg) scale(1.06); }
.insight-card:hover .insight-card-visual--3 .insight-visual-orbit { transform: translateY(-50%) rotate(-8deg) scale(1.05); }
.section--insights .insight-card > div:last-child { align-self: end; }
.section--insights .insight-card > div:last-child > span { color: #7c879e; font-size: 10px; }
.section--insights .insight-card h3 { margin: 9px 0 10px; color: #172033; font-size: 21px; line-height: 1.35; }
.section--insights .insight-card p { margin: 0; color: #758096; font-size: 12px; line-height: 1.7; }

@media (max-width: 820px) {
    .section--insights .insight-card, .section--insights .insight-card + .insight-card { min-height: 400px; grid-template-rows: auto 140px auto; padding: 22px; }
    .section--insights .insight-card:hover { padding-right: 22px; }
}

@media (max-width: 560px) {
    .section--insights .insight-card, .section--insights .insight-card + .insight-card { min-height: 370px; grid-template-rows: auto 126px auto; gap: 15px; padding: 19px; border-radius: 18px; }
    .section--insights .insight-card:hover { padding-right: 19px; }
    .insight-visual-card { width: 60px; height: 60px; border-radius: 16px; }
    .insight-visual-orbit { width: 98px; height: 98px; }
    .section--insights .insight-card h3 { font-size: 19px; }
}

/* Keep the concept case wall aligned with the site container */
.section--work { padding-bottom: 104px; }
.section--work .featured-work.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; border-radius: 24px; box-shadow: 0 24px 58px rgba(35,49,99,.16); }

@media (max-width: 820px) {
    .section--work { padding-bottom: 78px; }
    .section--work .featured-work.container { overflow: hidden; border-radius: 20px; }
}

@media (max-width: 560px) {
    .section--work { padding-bottom: 66px; }
    .section--work .featured-work.container { border-radius: 16px; }
}

/* Simplified secondary service cards */
.home-service-mosaic { grid-auto-rows: minmax(218px, auto); }
.home-service-feature { min-height: 454px; padding: 44px; }
.home-service-tile { min-height: 218px; justify-content: flex-start; padding: 25px 27px; }
.home-service-tile-top { margin-bottom: 19px; }
.home-service-tile h3 { margin-bottom: 11px; }
.home-service-tile p { max-width: 94%; margin: 0; font-size: 12px; line-height: 1.75; }
.home-service-more { min-height: 218px; }

@media (max-width: 1100px) {
    .home-service-feature { min-height: 440px; }
}

@media (max-width: 560px) {
    .home-service-mosaic { grid-auto-rows: auto; }
    .home-service-feature { min-height: 0; padding: 29px 24px 35px; }
    .home-service-tile, .home-service-more { min-height: 190px; padding: 22px; }
}

/* 2026 black-red visual theme */
:root {
    --ink: #171113;
    --muted: #776c6f;
    --line: #eadfe1;
    --soft: #f7f1f2;
    --paper: #fffdfd;
    --navy: #9d1523;
    --coral: #dc2032;
    --mint: #b7192a;
    --sun: #ef4050;
    --line-strong: #d9c9cc;
    --panel: #fbf6f7;
    --gradient: linear-gradient(135deg, #171113 0%, #7b101b 48%, #e02335 100%);
    --gradient-soft: linear-gradient(135deg, rgba(126,16,29,.13), rgba(225,32,52,.07));
    --shadow-card: 0 18px 50px rgba(67,22,29,.11);
}

body { color: var(--ink); background: #f7f3f4; }
h1, h2, h3 { color: #171113; }
p { color: var(--muted); }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline-color: #d92032; }
.eyebrow, .section-index, .text-link { color: #a81727; }
.eyebrow::before, .section-index::before { border-color: rgba(117,13,27,.10); background: #df2234; box-shadow: 0 0 0 5px rgba(223,34,52,.08); }

.announcement-bar { color: #5c2028; border-bottom-color: rgba(126,18,31,.10); background: linear-gradient(90deg, #fff7f7, #f8ebed 50%, #fff8f8); }
.announcement-inner a { color: #b11727; }
.site-header { border-bottom-color: rgba(91,20,29,.09); background: rgba(255,253,253,.92); box-shadow: 0 8px 28px rgba(55,16,22,.045); }
.brand-mark { border-color: rgba(255,255,255,.58); background: linear-gradient(145deg, #191214 0%, #78101c 58%, #dc2032 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 10px 22px rgba(102,17,29,.25); }
.brand-mark i { background: rgba(230,31,51,.78); }
.brand-copy strong { color: #1a1214; }
.brand-copy small { color: #896f74; }
.brand:hover .brand-mark { box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 14px 30px rgba(113,18,31,.31); }
.site-nav a { color: #44383b; }
.site-nav a::after { background: var(--gradient); }
.site-nav a:hover, .site-nav a.is-active { color: #a51424; }
.mega-menu { border-color: rgba(115,23,35,.11); background: radial-gradient(circle at 18% 0%, rgba(151,18,33,.11), transparent 31%), radial-gradient(circle at 88% 14%, rgba(226,31,52,.09), transparent 27%), linear-gradient(118deg, rgba(255,251,251,.99), rgba(249,239,241,.99) 54%, rgba(255,247,247,.99)); box-shadow: 0 30px 60px rgba(70,20,28,.14); }
.mega-menu-lead { border-color: rgba(180,26,42,.18); background: radial-gradient(circle at 80% 15%, rgba(239,65,81,.23), transparent 27%), linear-gradient(145deg, #171113, #68101b 58%, #c51d2e); box-shadow: 0 20px 45px rgba(92,14,26,.25); }
.mega-menu-group { border-color: rgba(118,34,45,.11); background: rgba(255,253,253,.78); box-shadow: 0 10px 28px rgba(74,23,31,.055); }
.mega-menu-group:hover { border-color: rgba(194,27,44,.24); background: #fff; box-shadow: 0 17px 34px rgba(93,22,33,.11); }
.site-nav .mega-menu-title { color: #26191c; }
.mega-menu-title > svg:first-child { background: linear-gradient(135deg, #5c1019, #de2234); box-shadow: 0 8px 17px rgba(132,18,34,.21); }
.mega-menu-title > svg:last-child { color: #8e7479; }
.site-nav .mega-menu-group li a { color: #76666a; }
.site-nav .mega-menu-group li a::before { background: #bba8ac; }
.site-nav .mega-menu-group li a:hover { color: #af1728; }
.site-nav .mega-menu-group li a:hover::before { background: #dc2032; }
.header-search input, .mobile-nav-search input { border-color: rgba(108,31,41,.14); color: #2b2022; background: rgba(251,246,247,.94); }
.header-search input:focus, .mobile-nav-search input:focus { border-color: rgba(190,28,45,.42); box-shadow: 0 0 0 4px rgba(205,28,46,.08); }
.header-search button, .mobile-nav-search button, .header-cta, .button--dark, .button--light { color: #fff; background: var(--gradient); box-shadow: 0 10px 24px rgba(115,17,31,.23); }
.header-cta:hover, .button--dark:hover, .button--light:hover { color: #fff; background: linear-gradient(135deg, #100d0e, #a21425 64%, #e12839); box-shadow: 0 16px 32px rgba(116,16,30,.30); }

.home-hero-media { background: radial-gradient(circle at 78% 18%, rgba(210,26,47,.16), transparent 26%), radial-gradient(circle at 64% 82%, rgba(74,11,21,.13), transparent 31%), linear-gradient(125deg, #fffdfd 0%, #f8eff0 49%, #f3e3e6 100%); }
.home-hero-media::before { border-color: rgba(180,23,40,.15); box-shadow: 0 0 80px rgba(157,18,35,.09) inset; }
.home-hero-media::after { border-color: rgba(145,18,33,.13); }
.home-hero-shade { background: linear-gradient(90deg, rgba(255,253,253,.97) 0%, rgba(255,250,250,.90) 42%, rgba(250,235,237,.22) 70%, transparent 100%); }
.hero-slide-copy h1 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; }
.hero-service-pills a, .hero-partner-tags span { border-color: rgba(148,31,44,.14); color: #6e555a; background: rgba(255,252,252,.76); }
.hero-service-pills a::before { background: var(--gradient); box-shadow: 0 0 0 4px rgba(196,26,44,.08); }
.hero-service-pills a:hover { border-color: rgba(192,26,44,.25); color: #ae1627; }
.hero-core { background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(225,59,76,.33) 40%, rgba(151,15,31,.85) 72%, #25070d); box-shadow: inset 28px 26px 55px rgba(255,255,255,.60), inset -24px -34px 54px rgba(67,7,16,.43), 0 38px 72px rgba(95,13,26,.29); }
.hero-core::before { background: radial-gradient(circle at 38% 28%, #fff 0 7%, rgba(255,255,255,.74) 8%, transparent 30%), linear-gradient(145deg, rgba(255,255,255,.54), rgba(235,73,88,.27)); }
.hero-core::after { background: linear-gradient(90deg, rgba(111,12,27,.78), rgba(235,38,57,.92)); }
.hero-core b { background: rgba(223,35,53,.45); }
.hero-orbit { border-color: rgba(160,20,38,.25); }
.hero-orbit--two { border-color: rgba(226,31,51,.18); }
.hero-float-card { border-color: rgba(255,255,255,.78); background: rgba(255,252,252,.78); box-shadow: 0 18px 40px rgba(83,22,32,.14); }
.hero-float-card svg { color: #ba192a; }
.hero-float-card span { color: #403235; }
.hero-float-card strong { color: #9a7f84; }
.hero-ui-board.is-interacting .hero-core { box-shadow: inset 28px 26px 55px rgba(255,255,255,.67), inset -24px -34px 54px rgba(70,7,17,.42), 0 44px 88px rgba(104,12,27,.35); }
.partner-showcase::before { background: linear-gradient(135deg, rgba(116,13,28,.25), rgba(228,34,53,.19)); }
.partner-showcase { border-color: rgba(111,29,40,.13); box-shadow: 0 30px 65px rgba(76,21,31,.17); }
.partner-phone-copy > b { background: linear-gradient(135deg, #78101c, #e21f34); }

.hero-foot { border-color: rgba(111,30,42,.11); background: linear-gradient(135deg, rgba(255,253,253,.94), rgba(249,240,242,.86)); box-shadow: 0 -20px 50px rgba(75,20,30,.08); }
.hero-foot > .hero-foot-service--website { --service-a: #171113; --service-b: #c81d2f; }
.hero-foot > .hero-foot-service--commerce { --service-a: #4b0c15; --service-b: #e22a3c; }
.hero-foot > .hero-foot-service--system { --service-a: #241014; --service-b: #a91627; }
.hero-foot > .hero-foot-service--mini { --service-a: #68101b; --service-b: #ed3b4c; }
.hero-foot-service .hero-foot-copy strong { color: #2a1d20; }
.hero-foot-service .hero-foot-copy small { color: #92777c; }
.hero-foot-service .hero-foot-copy em { color: #9a8589; }

.section--case-intro { background: radial-gradient(circle at 86% 8%, rgba(181,22,40,.075), transparent 25%), linear-gradient(180deg, #f5eff0 0%, #faf6f7 100%); }
.case-intro-heading h2, .case-intro-copy h3 { color: #171113; }
.case-intro-heading h2 i { color: #d82032; }
.case-intro-heading > b { background: var(--gradient); box-shadow: 0 8px 18px rgba(121,17,30,.19); }
.case-intro-copy p { color: #706166; }
.case-intro-cover { border-color: rgba(103,25,36,.11); box-shadow: 0 22px 55px rgba(61,18,26,.16); }
.case-intro-cover::after { background: linear-gradient(180deg, transparent 42%, rgba(24,5,10,.83) 100%); }
.case-category-nav { border-top-color: rgba(103,28,39,.12); }
.case-category-nav a { color: #47383c; }
.case-category-nav a:hover { border-color: rgba(183,24,41,.14); color: #aa1525; background: rgba(255,253,253,.80); }
.case-category-nav a.is-active { color: #fff; background: var(--gradient); box-shadow: 0 10px 22px rgba(114,16,30,.23); }

.section--services { background: radial-gradient(circle at 7% 10%, rgba(133,15,31,.075), transparent 24%), radial-gradient(circle at 93% 26%, rgba(226,32,51,.065), transparent 22%), #f7f2f3; }
.home-service-feature { background: radial-gradient(circle at 82% 16%, rgba(238,55,72,.22), transparent 28%), radial-gradient(circle at 72% 82%, rgba(117,12,27,.34), transparent 32%), linear-gradient(145deg, #120e0f 0%, #3b0b13 48%, #851121 100%); box-shadow: 0 28px 70px rgba(61,10,20,.25); }
.home-service-feature-copy > span { color: #e3a9af; }
.home-service-feature-copy p { color: rgba(255,235,238,.72); }
.home-service-feature-visual span:hover { background: linear-gradient(145deg, rgba(255,255,255,.20), rgba(223,35,53,.12)); }
.home-service-tile { border-color: rgba(105,30,41,.10); background: rgba(255,253,253,.96); box-shadow: 0 13px 34px rgba(65,18,27,.06); }
.home-service-tile:hover { border-color: rgba(191,26,44,.21); box-shadow: 0 25px 55px rgba(83,18,30,.13); }
.home-service-tile-top > span { background: var(--gradient); box-shadow: 0 11px 23px rgba(118,17,31,.23); }
.home-service-tile-top > svg, .home-service-tile:hover .home-service-tile-top > svg { color: #b51a2a; }
.home-service-tile p, .home-service-tile li { color: #817075; }
.home-service-more { background: radial-gradient(circle at 80% 18%, rgba(239,65,81,.28), transparent 28%), linear-gradient(140deg, #171113, #7b101d 58%, #d72032); box-shadow: 0 20px 45px rgba(104,13,28,.20); }

.section--work { color: var(--ink); background: linear-gradient(180deg, #f3edef 0%, #faf7f7 100%); }
.section--work::after { background: radial-gradient(circle at 70% 20%, rgba(184,21,39,.10), transparent 46%); }
.section--work .section-heading--light h2, .section--work .section-heading--light .section-index { color: #171113; }
.section--work .featured-work.container { box-shadow: 0 24px 58px rgba(54,14,23,.18); }
.work-item-shade { background: linear-gradient(180deg, rgba(18,7,10,.07), rgba(28,4,10,.25) 48%, rgba(17,3,7,.92) 100%); }
.work-item:nth-child(2) .work-item-shade, .work-item:nth-child(3) .work-item-shade { background: linear-gradient(155deg, rgba(98,9,24,.12), rgba(73,6,18,.34) 48%, rgba(18,3,7,.95) 100%); }

.section--process { background: #fffdfd; }
.process-visual { border-color: var(--line); background: #faf5f6; }
.process-list li { border-color: var(--line); background: #fffdfd; }
.process-list li:hover { border-color: rgba(186,25,42,.21); box-shadow: var(--shadow-card); }
.process-list li > span { background: var(--gradient); }

.section--insights, .section--intro, .service-principles, .combination-band, .detail-capabilities, .solution-steps, .related-posts, .faq-section, .capability-team { background: #f7f2f3; }
.section--insights::after { background: rgba(183,22,40,.07); }
.section--insights .insight-card, .section--insights .insight-card + .insight-card { border-color: var(--line); background: rgba(255,253,253,.97); box-shadow: 0 14px 40px rgba(67,19,28,.075); }
.section--insights .insight-card:hover { border-color: rgba(190,25,43,.19); box-shadow: 0 27px 60px rgba(76,17,29,.15); }
.insight-card-head .insight-index, .insight-card:hover .insight-card-head > svg { color: #bd192a; }
.insight-card-visual, .insight-card-visual--1, .insight-card-visual--2, .insight-card-visual--3 { --visual-a: #74101c; --visual-b: #df2234; background: radial-gradient(circle at 78% 18%, rgba(222,31,51,.15), transparent 29%), linear-gradient(145deg, #fcf7f8, #f5e9eb); }
.section--insights .insight-card h3 { color: #201517; }
.section--insights .insight-card p { color: #7c6c70; }

.cta-band { background: linear-gradient(125deg, #f5ebed 0%, #fffafa 46%, #ead5d9 100%); }
.cta-band::before { border-color: rgba(167,19,37,.15); }
.cta-band::after { border-color: rgba(108,24,35,.14); }
.cta-band p { color: #7c5e64; }
.site-footer { background: linear-gradient(145deg, #100c0d, #210c10 58%, #3c0a12); }

.page-hero, .detail-hero, .post-hero, .search-hero { background: linear-gradient(120deg, #fffdfd 0%, #f8eff0 55%, #f4e5e8 100%); }
.page-hero::after { background: radial-gradient(circle at 50% 48%, rgba(185,23,41,.13), transparent 58%); }
.page-hero-media, .post-hero-visual, .detail-hero-visual { border-color: rgba(107,30,40,.11); box-shadow: var(--shadow-card); }
.page-hero-frame, .detail-hero-visual span:nth-child(1), .post-hero-visual::before { filter: saturate(.72) sepia(.12) hue-rotate(320deg) contrast(1.04); }
.filter-chip.is-active, .detail-number, .directory-number, .search-result-type { color: #fff; background: var(--gradient); }
.directory-row:hover, .article-row:hover, .feature-item:hover, .step-card:hover, .team-item:hover { box-shadow: var(--shadow-card); }
.directory-row::before, .article-row::before, .feature-item::before, .step-card::before, .principle-item::before, .team-item::before { background: var(--gradient); }
.detail-number { box-shadow: 0 12px 24px rgba(118,16,31,.22); }
.metric-item strong, .service-card .service-number { color: #b7192a; }
.metric-item::before, .solution-card::before, .solution-card:nth-child(even)::before { background: var(--gradient); }
.solution-top span, .post-meta span { color: #a21727; background: #f7e9eb; }
.next-step-band, .case-detail-hero { background: linear-gradient(135deg, #171113, #78101c 58%, #d62133); }
.search-page-form input:focus { border-color: rgba(187,25,42,.43); box-shadow: 0 0 0 4px rgba(190,25,43,.08), 0 12px 34px rgba(67,22,29,.08); }
.search-result-item:hover { border-color: rgba(185,24,41,.21); box-shadow: var(--shadow-card); }
.search-result-item > svg, .search-empty > svg { color: #b7192a; }

.contact-assist-trigger { background: linear-gradient(155deg, #171113, #78101c 58%, #df2234); box-shadow: 0 18px 42px rgba(101,14,27,.30); }
.contact-assist-trigger:hover { box-shadow: 0 24px 54px rgba(103,13,28,.40); }
.contact-assist-panel { border-color: rgba(109,28,39,.13); background: rgba(255,253,253,.97); box-shadow: 0 28px 75px rgba(63,15,24,.23); }
.contact-assist-kicker, .contact-assist-link, .contact-assist-methods em { color: #b41929; }
.contact-assist-methods > a > svg, .contact-assist-methods > button > svg { background: var(--gradient); }
.contact-assist-methods > a:hover, .contact-assist-methods > button:hover { border-color: rgba(185,25,42,.20); color: #a91627; }
.contact-assist-qr { border-color: rgba(119,29,40,.18); background: linear-gradient(135deg, #fcf7f8, #f7edef); }
.contact-assist-qr-placeholder { color: #b7192a; }
.contact-prompt-backdrop { background: rgba(17,8,10,.68); }
.contact-prompt-info { background: radial-gradient(circle at 88% 18%, rgba(237,57,74,.25), transparent 25%), radial-gradient(circle at 14% 92%, rgba(119,12,28,.37), transparent 30%), linear-gradient(145deg, #151011, #54101a 55%, #961526); }
.contact-prompt-info > span { color: #e5a9b0; }
.contact-prompt-form > span { color: #b7192a; }
.contact-prompt-form input:focus, .contact-prompt-form textarea:focus { border-color: rgba(185,25,42,.43); box-shadow: 0 0 0 4px rgba(190,25,43,.08); }
.contact-copy-toast { background: #201416; }
.hero-slider-dots button.is-active, .hero-slider-arrows button, .hero-foot > a:hover .hero-foot-arrow { color: #b7192a; }
.hero-slider-arrows button { border-color: rgba(119,28,40,.14); background: rgba(255,252,252,.84); }
.hero-slider-arrows button:hover { color: #fff; background: var(--gradient); }
.intro-stats dt, .service-card .service-number, .service-card > svg { color: #b7192a; }
.service-card, .service-card:nth-child(even), .service-card:hover { border-color: var(--line); background: #fffdfd; box-shadow: 0 12px 36px rgba(70,19,28,.065); }
.service-card:hover { border-color: rgba(187,25,42,.21); box-shadow: 0 24px 50px rgba(81,17,29,.13); }
.project-visual--cobalt { background: linear-gradient(135deg, #201416, #9d1525); }
.project-visual--coral { background: linear-gradient(135deg, #74101c, #e33a4b); }
.project-visual--mint { background: linear-gradient(135deg, #171113, #bc192b); }
.project-visual--sun { background: linear-gradient(135deg, #3b0b13, #e22436); }
.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus { border-color: rgba(185,25,42,.43); box-shadow: 0 0 0 4px rgba(190,25,43,.08); }
.form-wrap::before, .not-found-inner::before { background: var(--gradient); }
.filter-chip:hover { color: #ad1727; border-color: rgba(185,25,42,.20); }
.partner-delivery small { color: #977b80; }
.partner-delivery strong { color: #4c373b; }

/* Case methodology visual, replacing repeated project screenshots */
.case-system-card { position: relative; height: 100%; min-height: 348px; overflow: hidden; border: 1px solid rgba(255,255,255,.10); border-radius: 24px; color: #fff; background: radial-gradient(circle at 82% 17%, rgba(231,47,65,.25), transparent 27%), radial-gradient(circle at 18% 86%, rgba(126,13,29,.34), transparent 31%), linear-gradient(145deg, #151011, #310b11 50%, #66101c 100%); box-shadow: 0 28px 64px rgba(61,10,20,.25); isolation: isolate; }
.case-system-card::before { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 26px 26px; content: ""; mask-image: linear-gradient(135deg, #000, transparent 82%); }
.case-system-card::after { position: absolute; right: -86px; bottom: -112px; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; content: ""; }
.case-system-head { position: absolute; top: 0; right: 0; left: 0; z-index: 5; display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.case-system-head > span { color: rgba(255,255,255,.55); font-size: 8px; font-weight: 800; letter-spacing: .17em; }
.case-system-head > b { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.72); font-size: 7px; letter-spacing: .10em; }
.case-system-head > b i { width: 6px; height: 6px; border-radius: 50%; background: #ef3b4e; box-shadow: 0 0 0 5px rgba(239,59,78,.12); animation: case-system-pulse 2.3s ease-out infinite; }
.case-system-map { position: absolute; inset: 58px 0 40px; }
.case-system-orbit { position: absolute; top: 50%; left: 50%; display: block; border: 1px solid rgba(235,72,87,.19); border-radius: 50%; transform: translate(-50%, -50%) rotate(-8deg); transition: border-color .3s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.case-system-orbit--outer { width: 72%; height: 78%; }
.case-system-orbit--inner { width: 51%; height: 57%; border-color: rgba(255,255,255,.11); transform: translate(-50%, -50%) rotate(13deg); }
.case-system-card:hover .case-system-orbit--outer { border-color: rgba(239,72,88,.32); transform: translate(-50%, -50%) rotate(4deg); }
.case-system-card:hover .case-system-orbit--inner { transform: translate(-50%, -50%) rotate(-2deg); }
.case-system-core { position: absolute; top: 50%; left: 50%; z-index: 3; width: 126px; height: 126px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: 38% 62% 55% 45%; background: radial-gradient(circle at 32% 22%, rgba(255,255,255,.23), transparent 26%), linear-gradient(145deg, rgba(228,48,66,.82), rgba(101,11,27,.92)); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 24px 48px rgba(12,2,5,.32); transform: translate(-50%, -50%) rotate(-5deg); transition: border-radius .5s ease, box-shadow .35s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.case-system-card:hover .case-system-core { border-radius: 53% 47% 42% 58%; box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 30px 58px rgba(12,2,5,.42); transform: translate(-50%, -53%) rotate(2deg) scale(1.04); }
.case-system-core > svg { width: 25px; height: 25px; margin-bottom: 10px; }
.case-system-core small { color: rgba(255,255,255,.54); font-size: 6px; font-weight: 800; letter-spacing: .13em; }
.case-system-core strong { margin-top: 4px; color: #fff; font-size: 13px; }
.case-system-node { position: absolute; z-index: 4; min-width: 116px; display: grid; grid-template-columns: 31px 1fr; gap: 9px; align-items: center; padding: 9px 11px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.075); box-shadow: 0 14px 28px rgba(9,2,4,.18); backdrop-filter: blur(12px); transition: border-color .25s ease, background .25s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.case-system-node:hover { border-color: rgba(255,255,255,.27); background: rgba(255,255,255,.13); transform: translateY(-5px); }
.case-system-node > svg { width: 31px; height: 31px; padding: 7px; border-radius: 9px; color: #fff; background: linear-gradient(145deg, #78101c, #df2638); }
.case-system-node span { display: flex; flex-direction: column; }
.case-system-node small { color: rgba(255,255,255,.45); font-size: 6px; font-weight: 800; }
.case-system-node strong { margin-top: 2px; color: #fff; font-size: 10px; white-space: nowrap; }
.case-system-node--one { top: 14%; left: 5%; }
.case-system-node--two { top: 17%; right: 4%; }
.case-system-node--three { bottom: 13%; left: 6%; }
.case-system-node--four { right: 5%; bottom: 10%; }
.case-system-foot { position: absolute; right: 22px; bottom: 15px; left: 22px; z-index: 5; display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,.38); font-size: 6px; font-weight: 800; letter-spacing: .12em; }
.case-system-foot i { width: 3px; height: 3px; border-radius: 50%; background: #df2638; }
@keyframes case-system-pulse { 0% { box-shadow: 0 0 0 0 rgba(239,59,78,.30); } 70%, 100% { box-shadow: 0 0 0 10px rgba(239,59,78,0); } }

@media (max-width: 820px) {
    .case-system-card { min-height: 310px; }
    .case-system-map { top: 56px; }
    .case-system-orbit--outer { width: 64%; }
}

@media (max-width: 560px) {
    .case-system-card { min-height: 232px; border-radius: 17px; }
    .case-system-head { padding: 13px 14px; }
    .case-system-head > span { font-size: 6px; }
    .case-system-map { inset: 43px 0 29px; }
    .case-system-core { width: 88px; height: 88px; }
    .case-system-core > svg { width: 18px; height: 18px; margin-bottom: 5px; }
    .case-system-core small { font-size: 4px; }
    .case-system-core strong { font-size: 9px; }
    .case-system-node { min-width: 78px; grid-template-columns: 22px 1fr; gap: 5px; padding: 6px; border-radius: 8px; }
    .case-system-node > svg { width: 22px; height: 22px; padding: 5px; border-radius: 6px; }
    .case-system-node small { font-size: 4px; }
    .case-system-node strong { font-size: 7px; }
    .case-system-node--one { left: 3%; }
    .case-system-node--two { right: 2%; }
    .case-system-node--three { left: 3%; }
    .case-system-node--four { right: 3%; }
    .case-system-foot { right: 12px; bottom: 9px; left: 12px; gap: 5px; font-size: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    .case-system-head > b i { animation: none; }
}

/* Tabbed concept case showcase */
.section--work.case-showcase { padding: 96px 0 104px; background: radial-gradient(circle at 50% 8%, rgba(190,25,43,.08), transparent 27%), linear-gradient(180deg, #faf6f7 0%, #f3edef 100%); }
.case-showcase-heading { max-width: var(--container); display: flex; flex-direction: column; align-items: center; text-align: center; }
.case-showcase-heading h2 { width: 100%; max-width: none; margin: 18px 0 14px; color: #171113; font-size: clamp(40px, 3.6vw, 56px); line-height: 1.12; letter-spacing: -.055em; white-space: nowrap; }
.case-showcase-heading > p:not(.section-index) { max-width: 680px; margin: 0; color: #786a6e; font-size: 15px; line-height: 1.8; }
.case-showcase-actions { display: flex; gap: 10px; margin-top: 27px; }
.case-showcase-actions .button { min-width: 170px; }
.case-showcase-consult { border: 1px solid rgba(104,27,38,.12); color: #322326; background: rgba(255,253,253,.92); box-shadow: 0 10px 25px rgba(71,21,30,.07); }
.case-showcase-consult:hover { border-color: rgba(185,25,42,.22); color: #ae1727; background: #fff; box-shadow: 0 15px 30px rgba(79,18,29,.11); }
.case-showcase-shell { overflow: hidden; margin-top: 54px; border: 1px solid rgba(103,27,38,.10); border-radius: 26px; background: rgba(255,253,253,.95); box-shadow: 0 28px 70px rgba(63,16,25,.13); }
.case-showcase-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fffdfd, #faf4f5); }
.case-showcase-tab { position: relative; min-width: 0; min-height: 112px; display: flex; flex-direction: column; align-items: flex-start; padding: 20px 24px; border: 0; border-right: 1px solid var(--line); color: #4a3a3e; background: transparent; text-align: left; cursor: pointer; transition: color .25s ease, background .25s ease; }
.case-showcase-tab:last-child { border-right: 0; }
.case-showcase-tab::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--gradient); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.case-showcase-tab::after { position: absolute; right: 24px; bottom: -1px; left: 24px; height: 2px; background: #fff; content: ""; opacity: 0; }
.case-showcase-tab small { color: #9a7d83; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.case-showcase-tab strong { max-width: 100%; margin-top: 8px; overflow: hidden; color: #26191c; font-size: 18px; white-space: nowrap; text-overflow: ellipsis; }
.case-showcase-tab span { max-width: 100%; margin-top: 5px; overflow: hidden; color: #8b777c; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
.case-showcase-tab:hover { color: #a51626; background: rgba(250,237,239,.55); }
.case-showcase-tab.is-active { color: #ad1626; background: #fff; }
.case-showcase-tab.is-active::before { transform: scaleX(1); }
.case-showcase-tab.is-active::after { opacity: 1; }
.case-showcase-tab.is-active small { color: #bd192b; }
.case-showcase-stage { position: relative; background: #fffdfd; }
.case-showcase-panel { min-height: 480px; display: none; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); animation: case-panel-in .5s cubic-bezier(.22,1,.36,1) both; }
.case-showcase-panel.is-active { display: grid; }
.case-showcase-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 46px 44px; border-right: 1px solid var(--line); background: linear-gradient(145deg, #fffdfd, #fbf5f6); }
.case-showcase-copy > span { color: #b31829; font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.case-showcase-copy h3 { margin: 15px 0 12px; color: #1c1315; font-size: clamp(31px, 3vw, 43px); line-height: 1.15; }
.case-showcase-copy > p { max-width: 440px; margin: 0; color: #76666a; font-size: 14px; line-height: 1.8; }
.case-showcase-scopes { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 21px; }
.case-showcase-scopes b { padding: 6px 9px; border: 1px solid rgba(130,29,42,.11); border-radius: 7px; color: #76545a; background: #f9eff1; font-size: 8px; font-weight: 700; }
.case-showcase-metrics { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.case-showcase-metrics > div { display: flex; flex-direction: column; padding: 14px; border: 1px solid rgba(112,29,40,.10); border-radius: 12px; background: rgba(255,255,255,.76); }
.case-showcase-metrics strong { color: #a81526; font-size: 20px; }
.case-showcase-metrics small { margin-top: 4px; color: #917b80; font-size: 8px; }
.case-showcase-copy > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: #a81526; font-size: 11px; font-weight: 800; }
.case-showcase-copy > a svg { width: 15px; height: 15px; transition: transform .2s ease; }
.case-showcase-copy > a:hover svg { transform: translateX(4px); }
.case-showcase-visual { position: relative; min-width: 0; overflow: hidden; padding: 46px 42px; background: radial-gradient(circle at 72% 24%, rgba(224,39,57,.19), transparent 27%), radial-gradient(circle at 32% 82%, rgba(105,11,26,.16), transparent 31%), linear-gradient(145deg, #f8edef, #efe0e3); }
.case-showcase-visual::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(107,22,34,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(107,22,34,.035) 1px, transparent 1px); background-size: 28px 28px; content: ""; mask-image: linear-gradient(135deg, #000, transparent 88%); }
.case-showcase-browser { position: relative; z-index: 2; height: 100%; min-height: 385px; overflow: hidden; border: 8px solid rgba(255,255,255,.92); border-radius: 22px; background: #fff; box-shadow: 0 30px 68px rgba(61,12,22,.23); transform: perspective(900px) rotateY(-4deg) rotateX(1deg); transition: box-shadow .4s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.case-showcase-panel:hover .case-showcase-browser { box-shadow: 0 38px 78px rgba(61,12,22,.31); transform: perspective(900px) rotateY(0) rotateX(0) translateY(-5px); }
.case-showcase-browser-bar { height: 35px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid #eee3e5; background: #fbf8f8; }
.case-showcase-browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #d8c7ca; }
.case-showcase-browser-bar > span:first-child { background: #dc2032; }
.case-showcase-browser-bar > span:nth-child(2) { background: #8d1724; }
.case-showcase-browser-bar > span:nth-child(3) { background: #2b181c; }
.case-showcase-browser-bar small { margin-left: 5px; overflow: hidden; color: #9a8388; font-size: 6px; font-weight: 800; letter-spacing: .10em; white-space: nowrap; text-overflow: ellipsis; }
.case-showcase-browser > img { width: 100%; height: calc(100% - 35px); object-fit: cover; object-position: center top; filter: saturate(.78) contrast(1.04); transition: filter .4s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.case-showcase-panel:hover .case-showcase-browser > img { filter: saturate(.94) contrast(1.06); transform: scale(1.035); }
.case-showcase-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.62); border-radius: 10px; color: #fff; background: linear-gradient(135deg, rgba(29,13,17,.90), rgba(160,21,37,.90)); box-shadow: 0 15px 30px rgba(58,10,20,.22); backdrop-filter: blur(12px); font-size: 7px; font-weight: 800; letter-spacing: .10em; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.case-showcase-badge svg { width: 12px; height: 12px; }
.case-showcase-badge--top { top: 25px; right: 25px; }
.case-showcase-badge--bottom { bottom: 25px; left: 24px; }
.case-showcase-panel:hover .case-showcase-badge--top { transform: translate(-4px, 4px); }
.case-showcase-panel:hover .case-showcase-badge--bottom { transform: translate(5px, -5px); }
@keyframes case-panel-in { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
    .case-showcase-heading h2 { white-space: normal; }
    .case-showcase-panel { grid-template-columns: 1fr; }
    .case-showcase-copy { border-right: 0; border-bottom: 1px solid var(--line); }
    .case-showcase-visual { min-height: 390px; }
}

@media (max-width: 820px) {
    .section--work.case-showcase { padding: 76px 0 78px; }
    .case-showcase-heading h2 { font-size: 44px; }
    .case-showcase-shell { margin-top: 42px; border-radius: 21px; }
    .case-showcase-tab { min-height: 100px; padding: 17px; }
    .case-showcase-copy { padding: 36px 30px; }
    .case-showcase-visual { padding: 35px 30px; }
}

@media (max-width: 560px) {
    .section--work.case-showcase { padding: 64px 0 66px; }
    .case-showcase-heading h2 { margin-top: 15px; font-size: 35px; }
    .case-showcase-heading > p:not(.section-index) { font-size: 13px; }
    .case-showcase-actions { width: 100%; gap: 7px; margin-top: 21px; }
    .case-showcase-actions .button { min-width: 0; flex: 1; padding: 0 11px; font-size: 11px; }
    .case-showcase-shell { margin-top: 32px; border-radius: 17px; }
    .case-showcase-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
    .case-showcase-tabs::-webkit-scrollbar { display: none; }
    .case-showcase-tab { min-width: 205px; min-height: 92px; flex: 0 0 205px; padding: 14px; }
    .case-showcase-tab strong { font-size: 15px; }
    .case-showcase-copy { padding: 29px 22px; }
    .case-showcase-copy h3 { font-size: 30px; }
    .case-showcase-copy > p { font-size: 12px; }
    .case-showcase-metrics { margin-top: 21px; }
    .case-showcase-visual { min-height: 275px; padding: 25px 18px; }
    .case-showcase-browser { min-height: 225px; border-width: 5px; border-radius: 15px; transform: none; }
    .case-showcase-badge { padding: 7px 9px; font-size: 5px; }
    .case-showcase-badge--top { top: 13px; right: 12px; }
    .case-showcase-badge--bottom { bottom: 13px; left: 11px; }
}

@media (prefers-reduced-motion: reduce) {
    .case-showcase-panel { animation: none; }
}

/* Compact insight cards with reduced empty space */
.section--insights .insight-card, .section--insights .insight-card + .insight-card { min-height: 235px; display: flex; flex-direction: column; justify-content: flex-start; gap: 34px; padding: 21px 22px; }
.section--insights .insight-card:hover { padding-right: 22px; }

@media (max-width: 820px) {
    .section--insights .insight-card, .section--insights .insight-card + .insight-card { min-height: 225px; gap: 30px; padding: 20px; }
    .section--insights .insight-card:hover { padding-right: 20px; }
}

@media (max-width: 560px) {
    .section--insights .insight-card, .section--insights .insight-card + .insight-card { min-height: 215px; gap: 24px; padding: 18px; }
    .section--insights .insight-card:hover { padding-right: 18px; }
}

/* Concrete technology visual for the delivery process */
.process-visual.process-tech-visual { position: relative; width: 100%; max-width: 460px; height: 292px; display: block; overflow: hidden; margin-top: 38px; padding: 0; border: 1px solid rgba(255,255,255,.10); border-radius: 23px; color: #fff; background: radial-gradient(circle at 78% 18%, rgba(232,49,67,.24), transparent 27%), radial-gradient(circle at 17% 88%, rgba(122,12,28,.34), transparent 31%), linear-gradient(145deg, #151011, #310b12 52%, #69101d); box-shadow: 0 26px 60px rgba(61,10,20,.24); isolation: isolate; }
.process-tech-visual::before { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 24px 24px; content: ""; mask-image: linear-gradient(135deg, #000, transparent 86%); }
.process-tech-visual::after { position: absolute; right: -66px; bottom: -86px; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.process-tech-visual span { height: auto; border: 0; border-radius: 0; background: transparent; }
.process-tech-head { height: 45px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.process-tech-head > span { color: rgba(255,255,255,.48); font-size: 7px; font-weight: 800; letter-spacing: .15em; }
.process-tech-head > b { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.66); font-size: 6px; letter-spacing: .10em; }
.process-tech-head > b i { width: 6px; height: 6px; border-radius: 50%; background: #ed3b4d; box-shadow: 0 0 0 5px rgba(237,59,77,.12); animation: process-tech-pulse 2.3s ease-out infinite; }
.process-tech-scene { position: absolute; inset: 45px 0 0; }
.process-tech-orbit { position: absolute; top: 45%; left: 50%; display: block; border: 1px solid rgba(235,67,84,.18) !important; border-radius: 50% !important; transform: translate(-50%, -50%) rotate(-10deg); transition: border-color .3s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.process-tech-orbit--one { width: 66%; height: 75%; }
.process-tech-orbit--two { width: 45%; height: 53%; border-color: rgba(255,255,255,.10) !important; transform: translate(-50%, -50%) rotate(15deg); }
.process-tech-visual:hover .process-tech-orbit--one { border-color: rgba(239,68,85,.34) !important; transform: translate(-50%, -50%) rotate(4deg); }
.process-tech-visual:hover .process-tech-orbit--two { transform: translate(-50%, -50%) rotate(-4deg); }
.process-tech-core { position: absolute; top: 44%; left: 50%; z-index: 3; width: 108px; height: 108px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: 42% 58% 55% 45%; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.24), transparent 27%), linear-gradient(145deg, #dc293b, #78101c 68%, #2b080e); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 23px 45px rgba(10,2,4,.34); transform: translate(-50%, -50%) rotate(-5deg); transition: border-radius .5s ease, box-shadow .35s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.process-tech-visual:hover .process-tech-core { border-radius: 54% 46% 43% 57%; box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 30px 58px rgba(10,2,4,.44); transform: translate(-50%, -53%) rotate(2deg) scale(1.04); }
.process-tech-core > svg { width: 24px; height: 24px; margin-bottom: 7px; }
.process-tech-core small { color: rgba(255,255,255,.48); font-size: 5px; font-weight: 800; letter-spacing: .14em; }
.process-tech-core strong { margin-top: 3px; color: #fff; font-size: 11px; }
.process-tech-node { position: absolute; z-index: 4; width: 102px; min-height: 52px; display: grid; grid-template-columns: 27px 1fr; grid-template-rows: auto auto; gap: 0 7px; align-items: center; padding: 8px 9px; border: 1px solid rgba(255,255,255,.11); border-radius: 11px; background: rgba(255,255,255,.075); box-shadow: 0 13px 27px rgba(9,2,4,.18); backdrop-filter: blur(12px); transition: border-color .25s ease, background .25s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.process-tech-node:hover { border-color: rgba(255,255,255,.27); background: rgba(255,255,255,.13); transform: translateY(-5px); }
.process-tech-node > svg { width: 27px; height: 27px; grid-row: 1 / span 2; padding: 6px; border-radius: 8px; color: #fff; background: linear-gradient(145deg, #75101b, #df293b); }
.process-tech-node > b { align-self: end; color: #fff; font-size: 7px; letter-spacing: .07em; }
.process-tech-node > small { align-self: start; color: rgba(255,255,255,.48); font-size: 6px; white-space: nowrap; }
.process-tech-node--one { top: 12%; left: 4%; }
.process-tech-node--two { top: 15%; right: 4%; }
.process-tech-node--three { bottom: 20%; left: 5%; }
.process-tech-node--four { right: 5%; bottom: 18%; }
.process-tech-status { position: absolute; right: 18px; bottom: 10px; left: 18px; z-index: 5; display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); }
.process-tech-status > span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.43); font-size: 5px; font-weight: 800; letter-spacing: .11em; }
.process-tech-status > span i { width: 4px; height: 4px; border-radius: 50%; background: #ed3b4d; }
.process-tech-status > strong { color: rgba(255,255,255,.72); font-size: 6px; letter-spacing: .10em; }
@keyframes process-tech-pulse { 0% { box-shadow: 0 0 0 0 rgba(237,59,77,.30); } 70%, 100% { box-shadow: 0 0 0 10px rgba(237,59,77,0); } }

@media (max-width: 820px) {
    .process-visual.process-tech-visual { max-width: 560px; }
}

@media (max-width: 560px) {
    .process-visual.process-tech-visual { height: 260px; margin-top: 27px; border-radius: 18px; }
    .process-tech-head { height: 40px; padding: 0 13px; }
    .process-tech-scene { inset: 40px 0 0; }
    .process-tech-core { width: 84px; height: 84px; }
    .process-tech-core > svg { width: 18px; height: 18px; margin-bottom: 4px; }
    .process-tech-core strong { font-size: 8px; }
    .process-tech-node { width: 82px; min-height: 43px; grid-template-columns: 21px 1fr; gap: 0 5px; padding: 6px; border-radius: 8px; }
    .process-tech-node > svg { width: 21px; height: 21px; padding: 4px; border-radius: 6px; }
    .process-tech-node > b { font-size: 5px; }
    .process-tech-node > small { font-size: 4px; }
    .process-tech-node--one, .process-tech-node--three { left: 2%; }
    .process-tech-node--two, .process-tech-node--four { right: 2%; }
}

@media (prefers-reduced-motion: reduce) {
    .process-tech-head > b i { animation: none; }
}

/* Independent secondary service category pages */
.service-category-hero { position: relative; overflow: hidden; padding: 72px 0 0; background: radial-gradient(circle at 84% 10%, rgba(197,26,44,.10), transparent 25%), linear-gradient(120deg, #fffdfd, #f7eff0 58%, #f1e2e5); }
.service-category-hero::after { position: absolute; top: -170px; right: -120px; width: 440px; height: 440px; border: 1px solid rgba(153,20,36,.10); border-radius: 50%; content: ""; }
.service-category-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .82fr); gap: 70px; align-items: center; }
.service-category-hero-copy { padding-bottom: 42px; }
.service-category-hero-copy .breadcrumb { margin-bottom: 34px; }
.service-category-hero-copy h1 { max-width: 760px; margin: 18px 0 14px; font-size: clamp(46px, 5vw, 72px); line-height: 1.02; }
.service-category-hero-copy h2 { max-width: 760px; margin: 0 0 19px; color: #80111e; font-size: clamp(23px, 2.2vw, 34px); line-height: 1.35; }
.service-category-hero-copy > p { max-width: 720px; margin: 0; color: #75666a; font-size: 16px; line-height: 1.9; }
.service-category-hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 31px; }
.service-category-visual { position: relative; height: 430px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; color: #fff; background: radial-gradient(circle at 79% 17%, rgba(235,55,73,.27), transparent 25%), radial-gradient(circle at 15% 90%, rgba(117,12,28,.34), transparent 31%), linear-gradient(145deg, #151011, #350b13 54%, #72111f); box-shadow: 0 35px 80px rgba(67,10,21,.28); isolation: isolate; }
.service-category-visual::before { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 27px 27px; content: ""; mask-image: linear-gradient(135deg, #000, transparent 88%); }
.service-category-visual::after { position: absolute; right: -92px; bottom: -118px; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; content: ""; }
.service-visual-head { height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.service-visual-head span { color: rgba(255,255,255,.49); font-size: 7px; font-weight: 800; letter-spacing: .15em; }
.service-visual-head b { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.68); font-size: 6px; letter-spacing: .10em; }
.service-visual-head b i { width: 6px; height: 6px; border-radius: 50%; background: #ed3b4d; box-shadow: 0 0 0 5px rgba(237,59,77,.12); }
.service-category-metrics { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border: 1px solid rgba(109,27,39,.10); border-bottom: 0; border-radius: 20px 20px 0 0; background: rgba(255,253,253,.92); box-shadow: 0 -16px 40px rgba(62,15,24,.07); backdrop-filter: blur(18px); }
.service-category-metrics > div { min-height: 96px; display: flex; flex-direction: column; justify-content: center; padding: 18px 28px; border-right: 1px solid var(--line); }
.service-category-metrics > div:last-child { border-right: 0; }
.service-category-metrics strong { color: #a51627; font-size: 25px; }
.service-category-metrics span { margin-top: 3px; color: #89747a; font-size: 10px; }

/* Website visual */
.visual-website-browser { position: absolute; top: 91px; right: 42px; left: 42px; height: 265px; overflow: hidden; border: 7px solid rgba(255,255,255,.90); border-radius: 19px; background: #fff; box-shadow: 0 27px 55px rgba(8,2,4,.34); transform: perspective(800px) rotateY(-5deg); transition: transform .5s ease; }
.service-category-visual:hover .visual-website-browser { transform: perspective(800px) rotateY(0) translateY(-5px); }
.visual-website-browser > span { height: 29px; display: block; border-bottom: 1px solid #eadfe1; background: #faf5f6; }
.visual-website-browser > div { position: relative; height: calc(100% - 29px); padding: 35px 31px; background: linear-gradient(135deg, #f7eff0, #fff); }
.visual-website-browser div > i { display: block; width: 23%; height: 7px; border-radius: 99px; background: #b9192a; }
.visual-website-browser div > b { display: block; width: 66%; height: 13px; margin-top: 13px; border-radius: 99px; background: #25171a; }
.visual-website-browser div > b + b { width: 48%; margin-top: 7px; }
.visual-website-browser div > em { width: 25%; height: 66px; display: inline-block; margin: 27px 4% 0 0; border-radius: 10px; background: #f0e2e5; }
.visual-website-phone { position: absolute; z-index: 3; right: 22px; bottom: 22px; width: 93px; height: 184px; padding: 17px 10px; border: 6px solid #191214; border-radius: 23px; background: #fff; box-shadow: 0 25px 45px rgba(8,2,4,.35); }
.visual-website-phone i { display: block; width: 32%; height: 5px; border-radius: 99px; background: #b9192a; }
.visual-website-phone b { display: block; height: 8px; margin-top: 12px; border-radius: 99px; background: #29181b; }
.visual-website-phone b + b { width: 70%; margin-top: 6px; }
.visual-website-phone em { display: block; height: 69px; margin-top: 17px; border-radius: 10px; background: linear-gradient(145deg, #f3e5e8, #dca9b1); }

/* Mini program visual */
.visual-mini-phone { position: absolute; top: 82px; width: 178px; height: 300px; padding: 36px 18px 20px; border: 8px solid #171113; border-radius: 35px; background: #fff; box-shadow: 0 28px 55px rgba(8,2,4,.35); transition: transform .45s ease; }
.visual-mini-phone--one { left: 45px; transform: rotate(-6deg); }
.visual-mini-phone--two { right: 43px; transform: rotate(7deg) translateY(12px); }
.service-category-visual:hover .visual-mini-phone--one { transform: rotate(-2deg) translateY(-7px); }
.service-category-visual:hover .visual-mini-phone--two { transform: rotate(3deg) translateY(3px); }
.visual-mini-phone i { position: absolute; top: 11px; left: 50%; width: 39px; height: 7px; border-radius: 99px; background: #171113; transform: translateX(-50%); }
.visual-mini-phone span { display: block; height: 95px; border-radius: 15px; background: linear-gradient(145deg, #82111f, #e73547); }
.visual-mini-phone b { display: inline-block; width: 45%; height: 52px; margin: 12px 5% 0 0; border-radius: 11px; background: #f2e5e7; }
.visual-mini-phone em { display: block; height: 13px; margin-top: 15px; border-radius: 99px; background: #ead7da; }
.visual-mini-code { position: absolute; z-index: 4; top: 64px; left: 50%; width: 92px; height: 92px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 24px; background: linear-gradient(145deg, #71101b, #df293b); box-shadow: 0 20px 40px rgba(73,8,19,.38); transform: translateX(-50%) rotate(4deg); }
.visual-mini-code svg { width: 27px; height: 27px; }
.visual-mini-code span { position: absolute; bottom: 10px; font-size: 5px; letter-spacing: .12em; }

/* Mobile visual */
.visual-mobile-device { position: absolute; top: 76px; left: 50%; width: 205px; height: 320px; padding: 39px 20px 20px; border: 9px solid #171113; border-radius: 38px; background: #fff; box-shadow: 0 30px 62px rgba(8,2,4,.38); transform: translateX(-50%); }
.visual-mobile-device i { position: absolute; top: 12px; left: 50%; width: 47px; height: 8px; border-radius: 99px; background: #171113; transform: translateX(-50%); }
.visual-mobile-device span { display: block; height: 116px; border-radius: 17px; background: radial-gradient(circle at 70% 25%, #ed5060, transparent 28%), linear-gradient(145deg, #4b0c15, #cf2033); }
.visual-mobile-device b { display: block; height: 11px; margin-top: 17px; border-radius: 99px; background: #2d1c1f; }
.visual-mobile-device b + b { width: 66%; margin-top: 8px; }
.visual-mobile-device em { display: block; height: 48px; margin-top: 20px; border-radius: 13px; background: #f0e1e4; }
.visual-mobile-wave { position: absolute; top: 175px; right: 20px; left: 20px; display: flex; align-items: center; justify-content: space-between; opacity: .42; }
.visual-mobile-wave span { width: 30%; height: 1px; background: #ed3b4d; transform: rotate(18deg); }
.visual-mobile-chip { position: absolute; top: 93px; left: 25px; width: 65px; height: 65px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,255,255,.10); box-shadow: 0 16px 34px rgba(8,2,4,.22); font-size: 13px; font-weight: 800; }
.visual-mobile-chip--app { top: auto; right: 23px; bottom: 38px; left: auto; background: linear-gradient(145deg, #67101b, #dc293b); }

/* SaaS visual */
.visual-saas-window { position: absolute; top: 83px; right: 35px; left: 35px; height: 282px; display: grid; grid-template-columns: 24% 1fr; overflow: hidden; border: 7px solid rgba(255,255,255,.92); border-radius: 20px; background: #fff; box-shadow: 0 28px 58px rgba(8,2,4,.35); }
.visual-saas-window aside { background: #241518; }
.visual-saas-window main { padding: 29px; background: #fbf6f7; }
.visual-saas-window main > span { display: block; width: 42%; height: 10px; border-radius: 99px; background: #2b191c; }
.visual-saas-window main > div { display: flex; gap: 9px; margin-top: 23px; }
.visual-saas-window main > div i { width: 31%; height: 72px; border-radius: 10px; background: #f0e1e4; }
.visual-saas-window main > b { display: block; height: 12px; margin-top: 20px; border-radius: 99px; background: #e7d2d6; }
.visual-saas-window main > b + b { width: 68%; }
.visual-saas-chart { position: absolute; z-index: 3; right: 23px; bottom: 23px; width: 171px; height: 112px; display: flex; align-items: flex-end; gap: 10px; padding: 17px; border-radius: 15px; background: linear-gradient(145deg, #421018, #bd1b2d); box-shadow: 0 20px 40px rgba(71,8,19,.35); }
.visual-saas-chart i { width: 18%; border-radius: 5px 5px 0 0; background: rgba(255,255,255,.78); }
.visual-saas-chart i:nth-child(1) { height: 35%; }.visual-saas-chart i:nth-child(2) { height: 68%; }.visual-saas-chart i:nth-child(3) { height: 49%; }.visual-saas-chart i:nth-child(4) { height: 86%; }

/* Graphic visual */
.visual-graphic-poster { position: absolute; top: 84px; width: 190px; height: 277px; padding: 27px; border: 7px solid rgba(255,255,255,.90); border-radius: 17px; box-shadow: 0 28px 55px rgba(8,2,4,.33); transition: transform .45s ease; }
.visual-graphic-poster--one { left: 51px; background: #f4e7e9; transform: rotate(-7deg); }
.visual-graphic-poster--two { right: 48px; background: linear-gradient(145deg, #421018, #c31d30); transform: rotate(8deg) translateY(9px); }
.service-category-visual:hover .visual-graphic-poster--one { transform: rotate(-3deg) translateY(-5px); }.service-category-visual:hover .visual-graphic-poster--two { transform: rotate(4deg) translateY(3px); }
.visual-graphic-poster span { display: block; color: #9e1727; font-size: 48px; font-weight: 850; }.visual-graphic-poster--two span { color: #fff; }
.visual-graphic-poster b { display: block; width: 65%; height: 9px; margin-top: 39px; background: currentColor; }.visual-graphic-poster i { display: block; height: 80px; margin-top: 17px; border: 1px solid currentColor; opacity: .25; }
.visual-graphic-swatches { position: absolute; z-index: 4; bottom: 21px; left: 50%; display: flex; gap: 6px; padding: 9px; border-radius: 12px; background: #fff; box-shadow: 0 17px 34px rgba(8,2,4,.28); transform: translateX(-50%); }
.visual-graphic-swatches i { width: 28px; height: 28px; border-radius: 7px; background: #171113; }.visual-graphic-swatches i:nth-child(2) { background: #74101c; }.visual-graphic-swatches i:nth-child(3) { background: #d82335; }.visual-graphic-swatches i:nth-child(4) { background: #efdadd; }

/* UI UX visual */
.service-category-visual.service-category-visual--uiux { height: auto; aspect-ratio: 1121 / 753; background: #f8f1f2; }
.service-category-visual--uiux::before,
.service-category-visual--uiux::after { display: none; }
.visual-uiux-image { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; display: block; border-radius: inherit; object-fit: contain; }
.visual-uiux-canvas { position: absolute; top: 86px; right: 42px; left: 42px; height: 278px; padding: 32px; border: 7px solid rgba(255,255,255,.92); border-radius: 20px; background: #fbf6f7; box-shadow: 0 28px 58px rgba(8,2,4,.35); }
.visual-uiux-canvas > span { display: block; width: 35%; height: 11px; border-radius: 99px; background: #2b191c; }
.visual-uiux-canvas > div { display: flex; gap: 10px; margin-top: 24px; }.visual-uiux-canvas > div i { width: 31%; height: 78px; border-radius: 13px; background: linear-gradient(145deg, #f0dfe2, #deb3ba); }
.visual-uiux-canvas > b { display: block; width: 83%; height: 9px; margin-top: 23px; border-radius: 99px; background: #ead6da; }.visual-uiux-canvas > b + b { width: 57%; margin-top: 8px; }
.visual-uiux-canvas em { position: absolute; right: 23px; bottom: 20px; width: 71px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, #67101b, #dd283a); }
.visual-uiux-cursor { position: absolute; z-index: 3; top: 184px; right: 84px; width: 49px; height: 49px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(145deg, #6b101b, #e02b3c); box-shadow: 0 16px 32px rgba(89,9,22,.35); }
.visual-uiux-cursor svg { width: 21px; height: 21px; }

/* Integration visual */
.visual-integration-core { position: absolute; top: 50%; left: 50%; z-index: 3; width: 118px; height: 118px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.20); border-radius: 42% 58% 56% 44%; background: linear-gradient(145deg, #dc2a3c, #70101b 70%, #26080d); box-shadow: 0 26px 50px rgba(8,2,4,.38); transform: translate(-50%, -50%) rotate(-5deg); }.visual-integration-core svg { width: 35px; height: 35px; }
.visual-integration-ring { position: absolute; top: 50%; left: 50%; width: 72%; height: 66%; border: 1px solid rgba(237,62,79,.27); border-radius: 50%; transform: translate(-50%, -50%) rotate(-8deg); }
.visual-api-node { position: absolute; width: 70px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; color: #fff; background: rgba(255,255,255,.08); box-shadow: 0 13px 27px rgba(8,2,4,.22); font-size: 8px; font-weight: 800; letter-spacing: .10em; }.visual-api-node--one { top: 88px; left: 35px; }.visual-api-node--two { top: 98px; right: 35px; }.visual-api-node--three { bottom: 47px; left: 45px; }.visual-api-node--four { right: 42px; bottom: 50px; }

/* Operations visual */
.visual-operations-radar { position: absolute; top: 83px; left: 35px; width: 236px; height: 236px; border: 1px solid rgba(238,65,82,.26); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 34px, rgba(255,255,255,.08) 35px 36px); }.visual-operations-radar::before,.visual-operations-radar::after { position:absolute;top:50%;left:0;width:100%;height:1px;background:rgba(255,255,255,.10);content:""; }.visual-operations-radar::after { transform:rotate(90deg); }
.visual-operations-radar span { position:absolute;top:50%;left:50%;width:70%;height:1px;background:linear-gradient(90deg,#ed3b4d,transparent);transform-origin:left; }.visual-operations-radar span:nth-child(1){transform:rotate(18deg)}.visual-operations-radar span:nth-child(2){transform:rotate(138deg)}.visual-operations-radar span:nth-child(3){transform:rotate(252deg)}.visual-operations-radar > i { position:absolute;top:36%;left:62%;width:8px;height:8px;border-radius:50%;background:#ed3b4d;box-shadow:0 0 0 8px rgba(237,59,77,.12); }
.visual-operations-panel { position:absolute;top:105px;right:27px;width:178px;padding:22px;border:1px solid rgba(255,255,255,.13);border-radius:17px;background:rgba(255,255,255,.085);box-shadow:0 20px 42px rgba(8,2,4,.24);backdrop-filter:blur(14px); }.visual-operations-panel b,.visual-operations-panel span{display:block}.visual-operations-panel b{font-size:31px}.visual-operations-panel span{color:rgba(255,255,255,.48);font-size:7px;letter-spacing:.12em}.visual-operations-panel i{display:inline-block;width:27%;height:43px;margin:22px 4% 0 0;border-radius:7px 7px 0 0;background:linear-gradient(#ed3b4d,#73101b)}.visual-operations-panel i:nth-of-type(2){height:66px}.visual-operations-panel i:nth-of-type(3){height:52px}
.visual-operations-status { position:absolute;right:28px;bottom:35px;display:flex;align-items:center;gap:8px;padding:10px 13px;border-radius:10px;background:#fff;color:#431019;font-size:7px;font-weight:800; }.visual-operations-status i{width:7px;height:7px;border-radius:50%;background:#d72537;box-shadow:0 0 0 5px rgba(215,37,55,.12)}

.service-category-content { background: #fffdfd; }
.service-category-section-heading { max-width: 830px; margin-bottom: 43px; }
.service-category-section-heading h2 { margin: 17px 0 0; font-size: clamp(36px, 4vw, 54px); }
.service-category-section-heading--center { margin-inline: auto; text-align: center; }
.service-category-item-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.service-category-item { position: relative; min-height: 238px; padding: 27px; border: 1px solid var(--line); border-radius: 19px; background: #fff; box-shadow: 0 12px 34px rgba(67,20,29,.055); scroll-margin-top: 110px; transition: border-color .25s ease, box-shadow .3s ease, transform .3s ease; }
.service-category-item:target { border-color: rgba(205,31,49,.35); box-shadow: 0 0 0 5px rgba(205,31,49,.08), var(--shadow-card); }
.service-category-item:hover { border-color: rgba(187,25,42,.20); box-shadow: var(--shadow-card); transform: translateY(-5px); }
.service-category-item > span { color: #b7192a; font-size: 9px; font-weight: 800; }.service-category-item > svg { position:absolute;top:24px;right:24px;width:40px;height:40px;padding:10px;border-radius:12px;color:#fff;background:var(--gradient); }
.service-category-item h3 { max-width: 80%; margin: 52px 0 12px; font-size: 20px; }.service-category-item p { margin: 0; font-size: 12px; line-height: 1.75; }
.service-category-advantages { background: #f7f2f3; }
.service-category-advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-category-advantage { min-height: 280px; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: #fffdfd; text-align: center; box-shadow: 0 15px 38px rgba(66,19,28,.06); }
.service-category-advantage > span { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 18px; color: #fff; background: var(--gradient); box-shadow: 0 15px 28px rgba(111,16,30,.24); }.service-category-advantage > span svg { width: 26px; height: 26px; }.service-category-advantage h3 { font-size: 22px; }.service-category-advantage p { margin: 13px 0 0; font-size: 13px; line-height: 1.8; }
.service-category-process { background: #fffdfd; }
.service-category-process-grid { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.22fr); gap: 80px; align-items: start; }.service-category-process-copy { position: sticky; top: 120px; }.service-category-process-copy h2 { margin: 17px 0 15px; font-size: 47px; }.service-category-process-copy > p:last-child { max-width: 460px; }
.service-category-process-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }.service-category-process-list li { min-height: 100px; display: grid; grid-template-columns: 48px 1fr 20px; gap: 20px; align-items: center; padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }.service-category-process-list li:hover { box-shadow: var(--shadow-card); transform: translateX(6px); }.service-category-process-list li > span { width: 42px; height: 42px; display:grid;place-items:center;border-radius:11px;color:#fff;background:var(--gradient);font-size:10px;font-weight:800}.service-category-process-list strong{font-size:17px}.service-category-process-list svg{width:17px;height:17px;color:#a91728}
.service-category-deliverables { padding: 85px 0; color: #fff; background: radial-gradient(circle at 80% 15%, rgba(238,59,77,.25), transparent 24%), linear-gradient(135deg, #171113, #64101b 60%, #ad192a); }.service-category-deliverables .section-index{color:#fff}.service-category-deliverables-inner{display:grid;grid-template-columns:minmax(260px,.7fr) minmax(0,1.3fr);gap:80px;align-items:center}.service-category-deliverables h2{margin:16px 0 0;color:#fff;font-size:40px}.service-category-deliverables ul{display:grid;grid-template-columns:repeat(2,1fr);gap:11px;margin:0;padding:0;list-style:none}.service-category-deliverables li{display:flex;align-items:center;gap:10px;padding:15px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(255,255,255,.07);font-size:12px}.service-category-deliverables li svg{width:18px;height:18px;color:#f05a69}
.service-category-related { background:#f7f2f3 }.service-category-related-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.service-category-related-grid>a{min-height:96px;display:grid;grid-template-columns:44px 1fr 19px;gap:15px;align-items:center;padding:19px;border:1px solid var(--line);border-radius:16px;background:#fffdfd;transition:transform .25s ease,box-shadow .25s ease}.service-category-related-grid>a:hover{box-shadow:var(--shadow-card);transform:translateY(-4px)}.service-category-related-grid>a>span{width:44px;height:44px;display:grid;place-items:center;border-radius:13px;color:#fff;background:var(--gradient)}.service-category-related-grid>a>span svg{width:20px;height:20px}.service-category-related-grid div{display:flex;flex-direction:column}.service-category-related-grid small{color:#9a7f84;font-size:7px;letter-spacing:.12em}.service-category-related-grid strong{margin-top:4px;font-size:15px}.service-category-related-grid>a>svg{width:17px;height:17px;color:#ab1727}

@media (max-width: 1000px) { .service-category-hero-grid{grid-template-columns:1fr;gap:35px}.service-category-visual{max-width:650px;width:100%;margin-inline:auto}.service-category-item-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 820px) { .service-category-hero{padding-top:54px}.service-category-hero-copy h1{font-size:52px}.service-category-metrics{margin-top:42px}.service-category-process-grid,.service-category-deliverables-inner{grid-template-columns:1fr;gap:35px}.service-category-process-copy{position:static}.service-category-related-grid{grid-template-columns:1fr} }
@media (max-width: 560px) { .service-category-hero-grid{gap:25px}.service-category-hero-copy h1{font-size:40px}.service-category-hero-copy h2{font-size:22px}.service-category-hero-copy>p{font-size:14px}.service-category-hero-actions{align-items:flex-start;flex-direction:column;gap:13px}.service-category-visual{height:330px;border-radius:20px}.service-category-metrics{grid-template-columns:1fr;border-radius:16px 16px 0 0}.service-category-metrics>div{min-height:76px;border-right:0;border-bottom:1px solid var(--line)}.service-category-metrics>div:last-child{border-bottom:0}.service-category-item-grid,.service-category-advantage-grid{grid-template-columns:1fr}.service-category-item{min-height:210px}.service-category-advantage{min-height:240px}.service-category-process-copy h2{font-size:36px}.service-category-deliverables ul{grid-template-columns:1fr}.service-category-deliverables h2{font-size:34px}.visual-website-browser,.visual-saas-window,.visual-uiux-canvas{right:20px;left:20px}.visual-mini-phone--one{left:20px}.visual-mini-phone--two{right:20px}.visual-mini-phone{width:145px;height:245px}.visual-mobile-device{width:170px;height:260px}.visual-graphic-poster{width:145px;height:220px}.visual-graphic-poster--one{left:24px}.visual-graphic-poster--two{right:22px}.visual-operations-radar{left:15px;width:190px;height:190px}.visual-operations-panel{right:15px;width:145px} }

/* Simplified legacy service detail hero */
.service-detail-page .detail-hero { padding-bottom: 72px; }
.service-detail-page .detail-hero-grid { grid-template-columns: 150px minmax(0, 1fr); gap: 48px; align-items: start; }
.service-detail-page .detail-hero-grid > div:first-child { padding-top: 3px; }

@media (max-width: 820px) {
    .service-detail-page .detail-hero-grid { grid-template-columns: 100px minmax(0, 1fr); gap: 30px; }
}

@media (max-width: 560px) {
    .service-detail-page .detail-hero { padding-bottom: 58px; }
    .service-detail-page .detail-hero-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Shared homepage and case directory categories */
.cases-page .filter-row { min-height: 86px; justify-content: space-between; gap: 10px; }
.cases-page .filter-chip { min-height: 48px; display: inline-flex; align-items: center; padding: 0 18px; color: #2f2225; font-size: 13px; font-weight: 750; }
.cases-page .filter-chip.is-active { color: #fff; box-shadow: 0 12px 26px rgba(107,15,29,.22); }

@media (max-width: 1100px) {
    .cases-page .filter-row { justify-content: flex-start; }
}

/* Reduce large red surfaces with dark image-backed technology textures */
.case-system-card { background: radial-gradient(circle at 82% 17%, rgba(207,37,55,.15), transparent 25%), radial-gradient(circle at 18% 86%, rgba(114,14,28,.14), transparent 28%), linear-gradient(145deg, #0e0e10 0%, #171416 55%, #260d12 100%); box-shadow: 0 28px 64px rgba(26,10,14,.24); }
.case-system-card::before { inset: 0; background-image: linear-gradient(145deg, rgba(8,8,10,.20), rgba(25,8,13,.56)), var(--bg-app-development); background-position: center; background-size: cover; opacity: .15; filter: grayscale(1) contrast(1.22) brightness(.62); mask-image: none; mix-blend-mode: screen; }
.case-system-card::after { border-color: rgba(205,43,58,.10); }
.case-system-head { border-bottom-color: rgba(255,255,255,.07); background: rgba(8,8,10,.16); }
.case-system-orbit { border-color: rgba(210,48,64,.14); }
.case-system-orbit--inner { border-color: rgba(255,255,255,.085); }
.case-system-core { background: radial-gradient(circle at 32% 22%, rgba(255,255,255,.20), transparent 26%), linear-gradient(145deg, #bf2133, #66101b 66%, #1c0d11); }
.case-system-node { border-color: rgba(255,255,255,.10); background: rgba(30,27,29,.74); box-shadow: 0 14px 28px rgba(5,4,5,.25); }
.case-system-node:hover { background: rgba(46,39,42,.88); }

.home-service-feature { background: radial-gradient(circle at 84% 14%, rgba(218,42,59,.15), transparent 25%), radial-gradient(circle at 68% 88%, rgba(116,13,28,.15), transparent 29%), linear-gradient(145deg, #0d0e10 0%, #171518 53%, #270d13 100%); box-shadow: 0 28px 70px rgba(25,10,14,.25); }
.home-service-feature::before { inset: 0; background-image: linear-gradient(145deg, rgba(8,8,10,.16), rgba(24,8,13,.58)), var(--bg-website-build); background-position: center; background-size: cover; opacity: .13; filter: grayscale(1) contrast(1.25) brightness(.58); mask-image: none; mix-blend-mode: screen; }
.home-service-feature::after { border-color: rgba(210,46,62,.10); }
.home-service-feature-copy > span { color: #c9afb3; }
.home-service-feature-copy p { color: rgba(236,226,228,.70); }
.home-service-feature-copy li { border-color: rgba(255,255,255,.10); color: rgba(243,235,236,.76); background: rgba(255,255,255,.045); }
.home-service-feature-visual span { border-color: rgba(255,255,255,.10); background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 15px 32px rgba(2,2,3,.20); }
.home-service-feature-visual span:hover { border-color: rgba(220,61,76,.32); background: linear-gradient(145deg, rgba(190,35,51,.20), rgba(255,255,255,.045)); }

/* Compact case detail banner: label, title and subtitle only */
.case-detail-page .case-detail-hero { padding: 28px 0 34px; }
.case-detail-page .case-detail-hero::after { display: none; }
.case-detail-page .case-detail-title { grid-template-columns: 220px minmax(0, 1fr); gap: 72px; align-items: start; margin: 0; }
.case-detail-page .case-detail-title > .eyebrow { margin: 8px 0 0; white-space: nowrap; }
.case-detail-page .case-detail-copy h1 { margin: 0; font-size: clamp(38px, 4vw, 54px); line-height: 1.06; letter-spacing: -.055em; }
.case-detail-page .case-detail-copy p { max-width: 760px; margin: 12px 0 0; color: rgba(255,255,255,.70); font-size: 15px; line-height: 1.65; }

@media (max-width: 820px) {
    .case-detail-page .case-detail-hero { padding: 26px 0 32px; }
    .case-detail-page .case-detail-title { grid-template-columns: 150px minmax(0, 1fr); gap: 34px; }
    .case-detail-page .case-detail-copy h1 { font-size: 40px; }
}

@media (max-width: 560px) {
    .case-detail-page .case-detail-hero { padding: 24px 0 28px; }
    .case-detail-page .case-detail-title { grid-template-columns: 1fr; gap: 19px; }
    .case-detail-page .case-detail-title > .eyebrow { margin-top: 0; }
    .case-detail-page .case-detail-copy h1 { font-size: 34px; }
    .case-detail-page .case-detail-copy p { margin-top: 10px; font-size: 14px; }
}

/* Use one solid color for compact square icon containers across the site */
:root { --square-icon-solid: #a81727; }
.mega-menu-title > svg:first-child,
.header-search button,
.mobile-nav-search button,
.hero-foot-icon,
.hero-foot-service .hero-foot-icon,
.home-service-tile-top > span,
.contact-assist-trigger > span,
.contact-assist-methods > a > svg,
.contact-assist-methods > button > svg,
.contact-prompt-contact > div > svg,
.insight-visual-card,
.case-system-node > svg,
.process-tech-node > svg,
.service-category-item > svg,
.service-category-advantage > span,
.service-category-related-grid > a > span,
.visual-mini-code,
.visual-mobile-chip,
.visual-uiux-cursor {
    background: var(--square-icon-solid);
    background-image: none;
}

/* Real project screenshot covers in the case directory */
.project-visual--cover { padding: 0; background: #171113; }
.project-visual--cover::before { z-index: 1; background: linear-gradient(180deg, transparent 58%, rgba(20,5,9,.48)); opacity: 1; }
.project-visual--cover::after { display: none; }
.project-visual--cover > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.88) contrast(1.02); transition: filter .4s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.case-card:hover .project-visual--cover > img { filter: saturate(1) contrast(1.04); transform: scale(1.035); }
.project-visual--cover .visual-index { z-index: 2; }

/* Unified pure dark-red typography for all page banners */
:root { --banner-text: #5b1019; }
.home-hero h1,
.hero-slide-copy h1,
.hero-slide-copy h1 span,
.hero-brand,
.hero-brand span,
.hero-slide-copy .eyebrow,
.hero-slide-copy .home-hero-lead,
.hero-slide-copy .hero-service-summary > p,
.hero-slide-copy .hero-partner-tags span,
.page-hero .eyebrow,
.page-hero-copy h1,
.page-hero-copy p,
.detail-hero .eyebrow,
.detail-hero-grid h1,
.detail-hero-grid > div:last-child > p,
.detail-hero-grid small,
.post-hero .eyebrow,
.post-hero h1,
.post-hero p,
.search-hero .eyebrow,
.search-hero h1,
.service-category-hero .eyebrow,
.service-category-hero-copy h1,
.service-category-hero-copy h2,
.service-category-hero-copy > p,
.case-detail-hero .eyebrow,
.case-detail-copy h1,
.case-detail-copy p,
.case-detail-page .case-detail-copy p {
    color: var(--banner-text);
}
.hero-slide-copy h1 span,
.hero-brand {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}
.case-detail-hero {
    color: var(--banner-text);
    background: linear-gradient(120deg, #fffafa 0%, #f8edef 58%, #efdadd 100%);
}
.case-detail-hero .eyebrow::before { background: var(--banner-text); box-shadow: 0 0 0 5px rgba(91,16,25,.08); }

/* Use the approved Sisters Manor mobile page inside the banner phone */
.hero-slide--partner .partner-phone { width: 190px; height: 286px; }
.hero-slide--partner .partner-phone-screen { background: #fff; }
.hero-slide--partner .partner-phone-screen > .partner-phone-mobile-shot,
.hero-slide.is-active .partner-phone-screen > .partner-phone-mobile-shot,
.partner-showcase--devices.is-interacting .partner-phone-screen > .partner-phone-mobile-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: none;
    transform: none;
}

@media (max-width: 1100px) {
    .hero-slide--partner .partner-phone { width: 158px; height: 240px; }
}

@media (max-width: 820px) {
    .hero-slide--partner .partner-phone { width: 116px; height: 176px; }
}

@media (max-width: 560px) {
    .hero-slide--partner .partner-phone { width: 96px; height: 146px; }
}

/* Unified black subtitles and small heading labels */
:root { --subtitle-text: #000000; }
.eyebrow,
.section-index,
.eyebrow--light,
.section-heading--light .section-index,
.hero-slide-copy .eyebrow,
.page-hero .eyebrow,
.detail-hero .eyebrow,
.post-hero .eyebrow,
.search-hero .eyebrow,
.service-category-hero .eyebrow,
.case-detail-hero .eyebrow,
.home-hero-lead,
.hero-slide-copy .home-hero-lead,
.hero-service-summary > p,
.hero-slide-copy .hero-service-summary > p,
.page-hero-copy p,
.detail-hero-grid > div:last-child > p,
.detail-hero-grid small,
.service-category-hero-copy h2,
.service-category-hero-copy > p,
.case-detail-copy p,
.case-detail-page .case-detail-copy p,
.intro-copy > p,
.split-heading > div > p,
.case-intro-copy > p,
.case-card-copy > p,
.case-showcase-heading > p:not(.section-index),
.case-showcase-copy > p {
    color: var(--subtitle-text);
}
.service-category-deliverables .section-index {
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--subtitle-text);
    background: rgba(255,255,255,.88);
}

/* White typography throughout the dark deliverables band */
.service-category-page.service-category-page main section.service-category-deliverables h2,
.service-category-page main .service-category-deliverables li,
.service-category-page main .service-category-deliverables .section-index {
    color: #fff !important;
}

.service-category-page main .service-category-deliverables .section-index {
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
}

/* Center service section headings and keep Chinese titles on one line */
.service-category-section-heading,
.service-category-section-heading--center {
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
.service-category-section-heading h2 {
    width: 100%;
    white-space: nowrap;
}

@media (max-width: 820px) {
    .service-category-section-heading h2 { font-size: clamp(22px, 4.8vw, 40px); }
}

@media (max-width: 560px) {
    .service-category-section-heading h2 { font-size: clamp(16px, 4.4vw, 25px); letter-spacing: -.045em; }
}

/* Fluid single-line primary titles across all public pages */
.home-hero h1,
.hero-slide-copy h1 {
    max-width: none;
    font-size: clamp(15px, 2.9vw, 57px);
    letter-spacing: -.055em;
    white-space: nowrap;
}
.home-hero h1 span,
.hero-slide-copy h1 span {
    display: inline;
    margin: 0 .10em;
}
.page-hero-copy h1,
.contact-page .page-hero-copy h1,
.detail-hero-grid h1,
.case-detail-title h1,
.case-detail-page .case-detail-copy h1,
.post-hero h1,
.search-hero h1,
.service-category-hero-copy h1,
.not-found h1 {
    max-width: none;
    font-size: clamp(16px, 3.4vw, 62px);
    letter-spacing: -.055em;
    white-space: nowrap;
}
.intro-copy h2,
.section-heading h2,
.split-heading h2,
.statement-grid h2,
.process-title h2,
.values-grid h2,
.cta-band h2,
.case-intro-heading h2,
.case-showcase-heading h2,
.service-category-section-heading h2,
.service-category-process-copy h2,
.service-category-deliverables h2 {
    max-width: none;
    font-size: clamp(14px, 3.2vw, 54px);
    letter-spacing: -.055em;
    white-space: nowrap;
}

/* Refined service category hero alignment and single-line type scaling */
.service-category-hero-copy > .eyebrow {
    margin: 0;
    white-space: nowrap;
}
.service-category-hero-copy h1 {
    width: 100%;
    margin-top: 22px;
    font-size: clamp(16px, 3.4vw, 62px);
    white-space: nowrap;
}
.service-category-hero-copy h2 {
    width: 100%;
    max-width: none;
    font-size: clamp(12px, 2vw, 30px);
    line-height: 1.35;
    letter-spacing: -.035em;
    white-space: nowrap;
}

/* Compact and align all secondary-page banners */
.detail-page .breadcrumb,
.service-category-page .breadcrumb { display: none; }
.detail-page .detail-hero { padding: 30px 0 42px; }
.detail-page .detail-hero::after,
.post-detail-page .post-hero::after { display: none; }
.service-detail-page .detail-hero-grid,
.solution-detail-page .detail-hero-grid { display: block; grid-template-columns: 1fr; }
.detail-hero-copy > .eyebrow,
.post-detail-page .post-hero .eyebrow,
.case-detail-page .case-detail-title > .eyebrow,
.service-category-hero-copy > .eyebrow {
    margin: 0;
    color: #a81727 !important;
    white-space: nowrap;
}
.detail-hero-copy h1,
.post-detail-page .post-hero h1,
.case-detail-page .case-detail-copy h1 { margin: 7px 0 12px; }
.detail-hero-copy > p:not(.eyebrow) { margin: 10px 0 0; }
.solution-detail-page .detail-hero-visual { display: none; }
.post-detail-page .post-hero { padding: 30px 0 42px; }
.post-detail-page .post-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(220px, 300px); gap: 40px; align-items: center; }
.post-detail-page .post-hero h1 { margin: 7px 0 16px; }
.post-detail-page .post-hero-visual { min-height: 200px; }
.case-detail-page .case-detail-title { display: block; margin: 0; }
.case-detail-page .case-detail-copy p { margin-top: 8px; }
.service-category-hero { padding-top: 44px; }
.service-category-hero-copy { padding-bottom: 30px; }
.service-category-hero-copy h1 { margin-top: 9px; }
.service-category-visual { height: 360px; }

@media (max-width: 820px) {
    .post-detail-page .post-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .post-detail-page .post-hero-visual { min-height: 150px; }
    .service-category-hero { padding-top: 34px; }
    .service-category-visual { height: 300px; }
}

/* Related keyword panel shared by all secondary-page banners */
.hero-keywords {
    width: min(100%, 760px);
    margin-top: 24px;
    padding: 14px 16px 15px;
    border: 1px solid rgba(128, 17, 30, .14);
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(250, 239, 241, .82)),
        radial-gradient(circle at 100% 0, rgba(168, 23, 39, .09), transparent 42%);
    box-shadow: 0 13px 32px rgba(71, 13, 22, .065);
    backdrop-filter: blur(10px);
}
.hero-keywords-label {
    display: block;
    margin-bottom: 10px;
    color: #7b1420;
    font-size: 6px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .14em;
}
.hero-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-keywords-list a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(128, 17, 30, .14);
    border-radius: 999px;
    color: #321b1f;
    background: rgba(255, 255, 255, .74);
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.hero-keywords-list a i {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #a81727;
    box-shadow: 0 0 0 3px rgba(168, 23, 39, .08);
    transition: background-color .25s ease, box-shadow .25s ease;
}
.hero-keywords-list a:hover,
.hero-keywords-list a:focus-visible {
    border-color: #a81727;
    color: #fff;
    background: #a81727;
    box-shadow: 0 8px 18px rgba(128, 17, 30, .17);
    transform: translateY(-2px);
}
.hero-keywords-list a:hover i,
.hero-keywords-list a:focus-visible i {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .16);
}
.page-hero .hero-keywords {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
.page-hero .hero-keywords-label { margin-left: 2px; }

/* Real-case mosaic used by the all-cases page banner */
.page-hero .page-hero-media--cases {
    height: 292px;
    min-height: 292px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.case-hero-mosaic {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.case-hero-mosaic-card {
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow: hidden;
    padding: 7px;
    border: 1px solid #dedede;
    border-radius: 13px;
    color: #4a251d;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.68), 0 8px 20px rgba(0,0,0,.16);
    transition: border-color .25s ease, box-shadow .25s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.case-hero-mosaic-card > span {
    min-height: 0;
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f3f3;
}
.case-hero-mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(.72) sepia(.08) contrast(1.04);
    transition: filter .3s ease, transform .65s cubic-bezier(.22,1,.36,1);
}
.case-hero-mosaic-card strong {
    display: block;
    overflow: hidden;
    padding: 0 3px 1px;
    font-size: 9px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -.02em;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.case-hero-mosaic-card--main {
    position: relative;
    grid-column: span 2;
    display: flex;
    gap: 0;
}
.case-hero-mosaic-card--main > strong {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    max-width: calc(100% - 28px);
    padding: 7px 10px;
    border-radius: 7px;
    color: #fff;
    background: rgba(78, 10, 20, .82);
    box-shadow: 0 8px 20px rgba(41, 6, 13, .22);
    backdrop-filter: blur(8px);
    font-size: 11px;
    white-space: nowrap;
}
.case-hero-mosaic-card:hover,
.case-hero-mosaic-card:focus-visible {
    border-color: #bcbcbc;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 14px 30px rgba(0,0,0,.28);
    transform: translateY(-3px);
}
.case-hero-mosaic-card:hover img,
.case-hero-mosaic-card:focus-visible img {
    filter: saturate(.95) sepia(0) contrast(1.06);
    transform: scale(1.06);
}

@media (max-width: 560px) {
    .page-hero .page-hero-media--cases { height: 250px; min-height: 250px; padding: 0; border-radius: 0; }
    .case-hero-mosaic { min-height: 0; gap: 6px; }
    .case-hero-mosaic-card { gap: 5px; padding: 5px; border-radius: 10px; }
    .case-hero-mosaic-card > span { border-radius: 6px; }
    .case-hero-mosaic-card strong { font-size: 7px; }
    .case-hero-mosaic-card--main { gap: 0; }
    .case-hero-mosaic-card--main > strong { bottom: 9px; left: 9px; max-width: calc(100% - 18px); padding: 5px 7px; font-size: 8px; }
}
.case-detail-page .hero-keywords,
.post-detail-page .hero-keywords,
.search-page .hero-keywords { margin-top: 20px; }

@media (max-width: 820px) {
    .hero-keywords {
        margin-top: 18px;
        padding: 12px 13px 13px;
        border-radius: 13px;
    }
    .hero-keywords-label { margin-bottom: 9px; }
    .hero-keywords-list { gap: 7px; }
    .hero-keywords-list a {
        min-height: 28px;
        padding: 5px 9px;
        font-size: 10px;
    }
}

/* Final specificity guard for mixed English/Chinese labels */
body .cjk-min-font.cjk-min-font {
    font-size: 11px !important;
}

/* Case-detail banner action */
.case-detail-page .case-detail-title {
    position: relative;
    padding-right: 190px;
}

.case-detail-view-button {
    position: absolute;
    right: 0;
    top: 50%;
    min-width: 154px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 16px 0 20px;
    border: 1px solid rgba(142, 18, 34, .24);
    border-radius: 10px;
    color: #76101d;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 12px 28px rgba(91, 15, 27, .08);
    transform: translateY(-50%);
    transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .28s ease, transform .28s ease;
}

.case-detail-view-button span {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.case-detail-view-button svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.case-detail-view-button:hover {
    border-color: #a81727;
    color: #fff;
    background: #a81727;
    box-shadow: 0 16px 34px rgba(109, 16, 31, .22);
    transform: translateY(calc(-50% - 3px));
}

#case-detail-content {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

@media (max-width: 820px) {
    .case-detail-page .case-detail-title {
        padding-right: 155px;
    }

    .case-detail-view-button {
        min-width: 132px;
        min-height: 46px;
        gap: 12px;
        padding: 0 13px 0 16px;
    }
}

@media (max-width: 560px) {
    .case-detail-page .case-detail-title {
        padding-right: 0;
    }

    .case-detail-view-button {
        position: static;
        width: 100%;
        min-height: 46px;
        margin-top: 18px;
        transform: none;
    }

    .case-detail-view-button:hover {
        transform: translateY(-2px);
    }
}

/* Unified secondary navigation type scale */
.site-nav .mega-menu-title,
.site-nav .mega-menu-group li a,
.site-nav .case-mega-category-grid a,
.case-mega-project-copy strong,
.site-nav .solution-mega-card > strong {
    font-size: 11px !important;
}

/* Keep rendered Chinese copy legible without enlarging compact English labels */
.cjk-min-font {
    font-size: 11px !important;
}

@media (max-width: 420px) {
    .hero-keywords-list a {
        width: calc(50% - 4px);
        justify-content: flex-start;
        overflow: hidden;
    }
    .hero-keywords-list a span {
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Center the homepage technology graphic on mobile screens */
@media (max-width: 820px) {
    .hero-slide .hero-ui-board,
    .hero-slide.is-active .hero-ui-board {
        right: auto;
        left: calc(50% - 112.5px);
        transform: translateX(-50%) scale(1);
        transform-origin: center top;
    }
}

/* Global lightweight English label typography */
.eyebrow.english-label-reduced,
.section-index.english-label-reduced,
.directory-en {
    gap: 5px;
    font-size: 6px !important;
    font-weight: 400 !important;
    letter-spacing: .10em;
}
.eyebrow.english-label-reduced::before,
.section-index.english-label-reduced::before {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 0 3px rgba(223,34,52,.07);
}
.site-footer .footer-label {
    font-size: 7px;
    font-weight: 400;
    letter-spacing: .08em;
}
.service-visual-head span,
.service-visual-head b,
.case-system-head > span,
.case-system-head > b,
.process-tech-head > span,
.process-tech-head > b,
.partner-logo-wall-head,
.process-route-head {
    font-weight: 400;
    letter-spacing: .08em;
}

/* Emphasize the phone number inside the online consultation panel */
.contact-assist-methods > a[href^="tel:"] b {
    overflow: visible;
    color: #bd192a;
    font-family: Arial, "Microsoft YaHei", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .01em;
    font-variant-numeric: tabular-nums;
    text-overflow: clip;
}

/* Graphic design: four interactive core service panels */
.service-category-page--graphic .service-category-content {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 8%, rgba(181,24,42,.09), transparent 25%),
        radial-gradient(circle at 91% 88%, rgba(181,24,42,.055), transparent 28%),
        linear-gradient(180deg, #fffdfd, #f7f1f2);
}
.service-category-content .graphic-design-intro {
    max-width: 1040px;
    margin: 24px auto 0;
    color: #2b2225;
    font-size: 15px;
    line-height: 1.72;
}
.service-category-content .saas-service-intro {
    max-width: 1040px;
    margin: 24px auto 0;
    color: #2b2225;
    font-size: 15px;
    line-height: 1.72;
}
.service-category-content .mobile-app-service-intro {
    max-width: 1040px;
    margin: 24px auto 0;
    color: #2b2225;
    font-size: 15px;
    line-height: 1.72;
}
.service-category-content .uiux-service-intro {
    max-width: 1040px;
    margin: 24px auto 0;
    color: #2b2225;
    font-size: 15px;
    line-height: 1.72;
}
.service-category-content .integration-service-intro {
    max-width: 1040px;
    margin: 24px auto 0;
    color: #2b2225;
    font-size: 15px;
    line-height: 1.72;
}
.service-category-content .operations-service-intro {
    max-width: 1040px;
    margin: 24px auto 0;
    color: #2b2225;
    font-size: 15px;
    line-height: 1.72;
}
.saas-service-intro strong { color: #a81727; font-weight: 750; }
.graphic-design-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
}
.graphic-design-card {
    position: relative;
    height: 330px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 25px;
    border: 1px solid rgba(89,31,40,.13);
    border-radius: 22px;
    outline: none;
    color: #24191c;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 42px rgba(65,15,25,.07);
    transition: color .3s ease, border-color .3s ease, box-shadow .35s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.graphic-design-card::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 12%, rgba(255,255,255,.18), transparent 28%), linear-gradient(135deg, #3c0a12, #8f1322 58%, #d4263b);
    content: "";
    opacity: 0;
    transition: opacity .35s ease;
}
.graphic-design-card::after {
    position: absolute;
    right: -85px;
    bottom: -108px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(168,23,39,.11);
    border-radius: 38% 62% 56% 44%;
    box-shadow: 0 0 0 34px rgba(168,23,39,.025), 0 0 0 68px rgba(168,23,39,.014);
    content: "";
    transform: rotate(-12deg);
    transition: border-radius .55s ease, border-color .3s ease, box-shadow .3s ease, transform .6s cubic-bezier(.22,1,.36,1);
}
.graphic-design-card:hover,
.graphic-design-card:focus {
    z-index: 2;
    border-color: rgba(200,31,49,.55);
    color: #fff;
    box-shadow: 0 30px 65px rgba(82,10,23,.22);
    transform: translateY(-7px);
}
.graphic-design-card:hover::before,
.graphic-design-card:focus::before { opacity: 1; }
.graphic-design-card:hover::after,
.graphic-design-card:focus::after {
    border-color: rgba(255,255,255,.13);
    border-radius: 55% 45% 38% 62%;
    box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 68px rgba(255,255,255,.018);
    transform: rotate(8deg) scale(1.08);
}
.graphic-design-number { position: relative; z-index: 1; color: #a81727; font-size: 10px; font-weight: 800; letter-spacing: .13em; transition: color .3s ease; }
.graphic-design-icon { position: absolute; top: 24px; right: 24px; z-index: 1; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: #a81727; box-shadow: 0 13px 27px rgba(112,12,27,.20); transition: color .3s ease, background .3s ease, transform .4s cubic-bezier(.22,1,.36,1); }
.graphic-design-icon svg { width: 21px; height: 21px; }
.graphic-design-copy { position: relative; z-index: 1; margin-top: auto; }
.graphic-design-copy small { color: #a81727; font-size: 7px; font-weight: 400; letter-spacing: .12em; transition: color .3s ease; }
.graphic-design-copy h3 { margin: 9px 0 0; color: inherit; font-size: 24px; line-height: 1.3; }
.graphic-design-copy p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(13px);
    transition: max-height .5s cubic-bezier(.22,1,.36,1), margin .35s ease, opacity .3s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.graphic-design-hint { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-top: 17px; padding-top: 14px; border-top: 1px solid rgba(92,34,43,.10); color: #8c777c; font-size: 9px; transition: max-height .25s ease, margin .25s ease, padding .25s ease, opacity .25s ease; }
.graphic-design-hint svg { width: 15px; height: 15px; color: #a81727; transition: transform .35s ease; }
.graphic-design-card:hover .graphic-design-number,
.graphic-design-card:focus .graphic-design-number,
.graphic-design-card:hover .graphic-design-copy small,
.graphic-design-card:focus .graphic-design-copy small { color: rgba(255,255,255,.68); }
.graphic-design-card:hover .graphic-design-icon,
.graphic-design-card:focus .graphic-design-icon { color: #a81727; background: #fff; transform: rotate(-5deg) scale(1.06); }
.graphic-design-card:hover .graphic-design-copy p,
.graphic-design-card:focus .graphic-design-copy p { max-height: 145px; margin-top: 13px; opacity: 1; transform: translateY(0); }
.graphic-design-card:hover .graphic-design-hint,
.graphic-design-card:focus .graphic-design-hint { max-height: 0; overflow: hidden; margin: 0; padding: 0; opacity: 0; }
.graphic-design-card:hover .graphic-design-hint svg,
.graphic-design-card:focus .graphic-design-hint svg { transform: rotate(45deg); }

@media (max-width: 820px) {
    .service-category-content .graphic-design-intro { margin-top: 19px; font-size: 13px; line-height: 1.7; }
    .service-category-content .saas-service-intro { margin-top: 19px; font-size: 13px; line-height: 1.7; }
    .service-category-content .mobile-app-service-intro { margin-top: 19px; font-size: 13px; line-height: 1.7; }
    .service-category-content .uiux-service-intro { margin-top: 19px; font-size: 13px; line-height: 1.7; }
    .service-category-content .integration-service-intro { margin-top: 19px; font-size: 13px; line-height: 1.7; }
    .service-category-content .operations-service-intro { margin-top: 19px; font-size: 13px; line-height: 1.7; }
    .graphic-design-card { height: 315px; }
}
@media (max-width: 700px) {
    .graphic-design-grid { grid-template-columns: 1fr; gap: 10px; }
    .graphic-design-card { height: auto; min-height: 0; padding: 19px; border-radius: 18px; }
    .graphic-design-card::before { opacity: 1; background: linear-gradient(145deg, #fff, #faf0f2); }
    .graphic-design-card:hover,
    .graphic-design-card:focus { color: #24191c; transform: translateY(-3px); }
    .graphic-design-card:hover::after,
    .graphic-design-card:focus::after { border-color: rgba(168,23,39,.11); box-shadow: 0 0 0 34px rgba(168,23,39,.025), 0 0 0 68px rgba(168,23,39,.014); }
    .graphic-design-icon { top: 17px; right: 17px; width: 42px; height: 42px; border-radius: 12px; }
    .graphic-design-card:hover .graphic-design-icon,
    .graphic-design-card:focus .graphic-design-icon { color: #fff; background: #a81727; transform: none; }
    .graphic-design-copy { margin-top: 38px; }
    .graphic-design-copy h3 { font-size: 19px; }
    .graphic-design-copy p,
    .graphic-design-card:hover .graphic-design-copy p,
    .graphic-design-card:focus .graphic-design-copy p { max-height: none; margin-top: 11px; color: #6f5d61; font-size: 11px; opacity: 1; transform: none; }
    .graphic-design-card:hover .graphic-design-number,
    .graphic-design-card:focus .graphic-design-number,
    .graphic-design-card:hover .graphic-design-copy small,
    .graphic-design-card:focus .graphic-design-copy small { color: #a81727; }
    .graphic-design-hint { display: none; }
}
@media (max-width: 560px) {
    .service-category-content .graphic-design-intro { margin-top: 15px; font-size: 12px; line-height: 1.65; }
    .service-category-content .saas-service-intro { margin-top: 15px; font-size: 12px; line-height: 1.65; }
    .service-category-content .mobile-app-service-intro { margin-top: 15px; font-size: 12px; line-height: 1.65; }
    .service-category-content .uiux-service-intro { margin-top: 15px; font-size: 12px; line-height: 1.65; }
    .service-category-content .integration-service-intro { margin-top: 15px; font-size: 12px; line-height: 1.65; }
    .service-category-content .operations-service-intro { margin-top: 15px; font-size: 12px; line-height: 1.65; }
}

/* Case navigation mega menu with synced categories and latest projects */
.case-mega-menu {
    background: radial-gradient(circle at 90% 0%, rgba(194,27,46,.09), transparent 28%), linear-gradient(118deg, rgba(255,252,252,.99), rgba(248,239,241,.99));
}
.case-mega-inner { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 25px; align-items: stretch; }
.case-mega-categories {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 22px;
    color: #fff;
    background: radial-gradient(circle at 85% 12%, rgba(255,255,255,.13), transparent 26%), linear-gradient(145deg, #1a1013, #72101d 68%, #b91b2e);
    box-shadow: 0 20px 45px rgba(72,12,24,.19);
}
.case-mega-categories::after { position: absolute; right: -76px; bottom: -98px; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255,255,255,.025); content: ""; }
.case-mega-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 19px; }
.case-mega-heading > span { grid-column: 1 / -1; margin-bottom: 7px; color: rgba(255,255,255,.55); font-size: 6px; font-weight: 400; letter-spacing: .12em; }
.case-mega-heading > strong { font-size: 25px; }
.site-nav .case-mega-heading > a { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,.72); font-size: 9px; }
.case-mega-heading > a svg { width: 12px; height: 12px; }
.case-mega-category-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.site-nav .case-mega-category-grid > a { min-height: 37px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 10px; border: 1px solid rgba(255,255,255,.11); border-radius: 9px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.045); font-size: 10px; transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease; }
.case-mega-category-grid > a svg { width: 12px; height: 12px; opacity: .55; }
.site-nav .case-mega-category-grid > a:hover { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.11); transform: translateX(3px); }
.case-mega-latest { min-width: 0; padding: 4px 0; }
.case-mega-latest-head { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 14px; padding: 0 2px; }
.case-mega-latest-head span { color: #a81727; font-size: 6px; font-weight: 400; letter-spacing: .12em; }
.case-mega-latest-head strong { margin-top: 5px; color: #24191c; font-size: 19px; }
.case-mega-project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.site-nav .case-mega-project {
    position: relative;
    min-width: 0;
    display: block;
    overflow: hidden;
    padding: 8px 8px 13px;
    border: 1px solid rgba(91,28,38,.11);
    border-radius: 16px;
    color: #26191c;
    background: rgba(255,255,255,.84);
    box-shadow: 0 10px 27px rgba(66,18,27,.06);
    transition: border-color .25s ease, box-shadow .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.site-nav .case-mega-project:hover { border-color: rgba(185,25,43,.25); box-shadow: 0 18px 38px rgba(75,14,26,.13); transform: translateY(-4px); }
.case-mega-project-image { height: 126px; display: block; overflow: hidden; border-radius: 11px; background: #24181b; }
.case-mega-project-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.82) contrast(1.03); transition: filter .3s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.case-mega-project:hover .case-mega-project-image img { filter: saturate(1) contrast(1.05); transform: scale(1.045); }
.case-mega-project-copy { min-width: 0; display: flex; flex-direction: column; padding: 12px 5px 0; }
.case-mega-project-copy small { color: #a81727; font-size: 6px; font-weight: 400; letter-spacing: .08em; }
.case-mega-project-copy strong { margin-top: 5px; font-size: 15px; }
.case-mega-project-copy em { margin-top: 4px; overflow: hidden; color: #8a7479; font-size: 8px; font-style: normal; line-height: 1.5; white-space: nowrap; text-overflow: ellipsis; }
.case-mega-project > svg { position: absolute; right: 13px; bottom: 15px; width: 14px; height: 14px; color: #a81727; opacity: 0; transform: translate(-5px, 5px); transition: opacity .25s ease, transform .3s ease; }
.case-mega-project:hover > svg { opacity: 1; transform: none; }

@media (max-width: 1000px) and (min-width: 821px) {
    .case-mega-inner { grid-template-columns: 285px minmax(0, 1fr); }
    .case-mega-project-image { height: 110px; }
}
@media (max-width: 820px) {
    .case-mega-menu { background: #f8eff1; }
    .case-mega-inner { width: 100%; display: block; padding: 14px 0 22px; }
    .case-mega-categories { padding: 18px; border-radius: 15px; }
    .case-mega-heading > strong { font-size: 21px; }
    .case-mega-category-grid { gap: 6px; }
    .site-nav .case-mega-category-grid > a { min-height: 35px; padding: 0 8px; font-size: 9px; }
    .case-mega-latest { padding-top: 18px; }
    .case-mega-latest-head { margin-bottom: 11px; }
    .case-mega-latest-head strong { font-size: 17px; }
    .case-mega-project-grid { grid-template-columns: 1fr; gap: 8px; }
    .site-nav .case-mega-project { min-height: 90px; display: grid; grid-template-columns: 116px minmax(0, 1fr); align-items: center; gap: 10px; padding: 7px; border-radius: 13px; }
    .case-mega-project-image { width: 116px; height: 76px; border-radius: 9px; }
    .case-mega-project-copy { padding: 0; }
    .case-mega-project-copy strong { font-size: 14px; }
    .case-mega-project > svg { display: none; }
}

@media (max-width: 560px) {
    .hero-slide .hero-ui-board,
    .hero-slide.is-active .hero-ui-board { left: calc(50% - 127.5px); }
}

/* Two-column service card grid on mobile */
@media (max-width: 560px) {
    .home-service-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .home-service-feature { grid-column: 1 / -1; }
    .home-service-tile,
    .home-service-more {
        min-height: 188px;
        padding: 15px;
        border-radius: 16px;
    }
    .home-service-tile-top {
        grid-template-columns: 38px minmax(0, 1fr) 15px;
        gap: 7px;
        margin-bottom: 14px;
    }
    .home-service-tile-top > span { width: 38px; height: 38px; border-radius: 11px; }
    .home-service-tile-top > span svg { width: 17px; height: 17px; }
    .home-service-tile-top small { font-size: 8px; }
    .home-service-tile-top > svg { width: 14px; height: 14px; }
    .home-service-tile h3 { margin-bottom: 8px; font-size: 15px; line-height: 1.35; }
    .home-service-tile p {
        max-width: 100%;
        display: -webkit-box;
        overflow: hidden;
        font-size: 10px;
        line-height: 1.6;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    .home-service-more span { font-size: 7px; }
    .home-service-more strong { max-width: 120px; font-size: 16px; }
    .home-service-more p { max-width: 125px; font-size: 9px; }
    .home-service-more > svg { right: 15px; bottom: 16px; width: 17px; height: 17px; }
}

/* Three-column case directory */
.cases-page .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 58px 20px;
}
.cases-page .case-card-copy { padding: 18px 34px 0 0; }
.cases-page .case-card-copy h2 { margin: 6px 0 7px; font-size: 24px; }
.cases-page .case-card-copy p { font-size: 13px; line-height: 1.65; }
.cases-page .case-card-copy svg { top: 25px; width: 18px; }

@media (max-width: 1100px) {
    .cases-page .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .cases-page .case-grid { grid-template-columns: 1fr; gap: 46px; }
}

/* Brighter red hover state and labels for featured service icons */
.home-service-feature-visual span { position: relative; }
.home-service-feature-visual span > svg { transition: transform .3s cubic-bezier(.22,1,.36,1); }
.home-service-feature-visual span > small {
    position: absolute;
    right: 8px;
    bottom: 15px;
    left: 8px;
    overflow: hidden;
    color: #fff;
    font-size: 9px;
    font-weight: 750;
    line-height: 1.35;
    text-align: center;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .25s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.home-service-feature-visual span:hover {
    border-color: rgba(255,255,255,.34);
    background: #c52238;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.17), 0 18px 38px rgba(118,12,29,.32);
}
.home-service-feature-visual span:hover > svg { transform: translateY(-10px); }
.home-service-feature-visual span:hover > small { opacity: 1; transform: translateY(0); }

@media (max-width: 560px) {
    .home-service-feature-visual span > small { bottom: 8px; font-size: 7px; }
    .home-service-feature-visual span:hover > svg { transform: translateY(-7px); }
}

/* Current partner logo mosaic */
.partner-logo-wall {
    position: relative;
    height: 100%;
    min-height: 348px;
    overflow: visible;
    padding: 46px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.partner-logo-wall-head {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px;
    border-bottom: 0;
    color: #5f5054;
    background: transparent;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .14em;
}
.partner-logo-wall-head b { display: flex; align-items: center; gap: 7px; }
.partner-logo-wall-head i { width: 6px; height: 6px; border-radius: 50%; background: #d92235; box-shadow: 0 0 0 5px rgba(217,34,53,.10); }
.partner-logo-grid { height: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 12px; }
.partner-logo-tile,
.partner-logo-feature,
.partner-logo-more {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
}
.partner-logo-tile { display: grid; place-items: center; padding: 7px; background: #fff; box-shadow: 0 8px 20px rgba(76,15,26,.06); transition: border-color .25s ease, box-shadow .25s ease, transform .3s cubic-bezier(.22,1,.36,1); }
.partner-logo-tile:hover { background: #fff; box-shadow: 0 14px 30px rgba(76,15,26,.12); transform: translateY(-4px); }
.partner-logo-tile img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.82) contrast(1.03); mix-blend-mode: normal; transition: filter .25s ease, transform .35s ease; }
.partner-logo-tile:hover img { filter: saturate(1) contrast(1.05); transform: scale(1.035); }
.partner-logo-tile--school { padding: 0; }
.partner-logo-tile--school img { width: 80%; height: 80%; transform: none; }
.partner-logo-tile--school:hover img { transform: scale(1.035); }
.partner-logo-tile--wide { padding: 11px 9px; }
.partner-logo-tile--museum { padding: 6px 18px; }
.partner-logo-tile--museum img { border-radius: 4px; }
.partner-logo-tile--grand { color: #fff; background: linear-gradient(145deg, #1b1113, #72101c); text-align: center; }
.partner-logo-tile--grand strong { font-size: 23px; font-family: serif; letter-spacing: .10em; }
.partner-logo-tile--grand small { margin-top: 2px; color: rgba(255,255,255,.62); font-size: 6px; letter-spacing: .16em; }
.partner-logo-feature { grid-column: 1 / span 2; display: flex; flex-direction: column; justify-content: center; padding: 15px 18px; color: #fff; background: linear-gradient(135deg, #8b1020, #e3223a); }
.partner-logo-feature small { color: rgba(255,255,255,.68); font-size: 7px; font-weight: 800; letter-spacing: .14em; }
.partner-logo-feature strong { margin-top: 5px; font-size: 18px; line-height: 1.18; }
.partner-logo-feature span { margin-top: 8px; color: rgba(255,255,255,.60); font-size: 6px; letter-spacing: .10em; }
.partner-logo-more { display: flex; align-items: center; justify-content: center; gap: 8px; color: #8d777c; background: #fff; box-shadow: 0 8px 20px rgba(76,15,26,.06); font-size: 7px; font-weight: 800; letter-spacing: .10em; transition: color .25s ease, box-shadow .25s ease, transform .3s cubic-bezier(.22,1,.36,1); }
.partner-logo-more svg { width: 13px; height: 13px; color: #b71829; transition: transform .25s ease; }
.partner-logo-more:hover { color: #9f1424; box-shadow: 0 14px 30px rgba(76,15,26,.12); transform: translateY(-4px); }
.partner-logo-more:hover svg { transform: translate(2px, -2px); }

/* Distinct project route visual for the working-method section */
.process-visual.process-route-visual {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 350px;
    display: block;
    overflow: hidden;
    margin-top: 34px;
    padding: 0;
    border: 1px solid rgba(103,29,40,.12);
    border-radius: 22px;
    color: #21171a;
    background: linear-gradient(145deg, #fffdfd, #f5e9eb);
    box-shadow: 0 25px 58px rgba(60,17,27,.14);
}
.process-route-visual span { height: auto; border: 0; border-radius: 0; background: transparent; }
.process-route-head { height: 43px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid rgba(103,29,40,.10); color: #806c71; font-size: 7px; font-weight: 800; letter-spacing: .13em; }
.process-route-head b { display: flex; align-items: center; gap: 7px; }
.process-route-head i { width: 6px; height: 6px; border-radius: 50%; background: #d82235; box-shadow: 0 0 0 5px rgba(216,34,53,.09); }
.process-route-canvas { position: absolute; inset: 43px 0 0; display: grid; grid-template-rows: repeat(4, 1fr); padding: 10px 14px 52px; }
.process-route-line { position: absolute; top: 25px; bottom: 66px; left: 39px; width: 2px; background: linear-gradient(#d92235, #70101b); opacity: .55; }
.process-route-node { position: relative; z-index: 2; display: grid; grid-template-columns: 22px 32px 1fr; gap: 8px; align-items: center; padding: 5px 8px; border-bottom: 1px solid rgba(103,29,40,.08); transition: background .2s ease, transform .3s ease; }
.process-route-node:hover { background: rgba(205,31,49,.07); transform: translateX(5px); }
.process-route-node em { display: grid; place-items: center; color: #a9192a; font-size: 7px; font-style: normal; font-weight: 800; }
.process-route-node > svg { width: 29px; height: 29px; padding: 7px; border-radius: 9px; color: #fff; background: #a81727; box-shadow: 0 9px 18px rgba(107,14,27,.18); }
.process-route-node > span { min-height: 42px; display: flex; flex-direction: column; justify-content: center; padding: 7px 12px; }
.process-route-node b { font-size: 9px; letter-spacing: .08em; }
.process-route-node small { margin-top: 2px; color: #8b777c; font-size: 7px; }
.process-route-output { position: absolute; right: 13px; bottom: 11px; left: 13px; height: 35px; display: grid; grid-template-columns: 48px 1fr 18px; gap: 9px; align-items: center; padding: 0 12px; border-radius: 10px; color: #fff; background: linear-gradient(90deg, #211316, #a81727); box-shadow: 0 12px 24px rgba(60,10,20,.19); }
.process-route-output span { color: rgba(255,255,255,.57); font-size: 6px; font-weight: 800; letter-spacing: .11em; }
.process-route-output strong { font-size: 8px; letter-spacing: .10em; }
.process-route-output svg { width: 14px; height: 14px; }

@media (max-width: 820px) {
    .partner-logo-wall { min-height: 310px; }
    .process-visual.process-route-visual { max-width: 560px; }
}

@media (max-width: 560px) {
    .partner-logo-wall { min-height: 245px; padding: 40px 0 0; border-radius: 0; }
    .partner-logo-wall-head { height: 32px; padding: 0 2px; font-size: 5px; }
    .partner-logo-grid { gap: 5px; }
    .partner-logo-tile, .partner-logo-feature, .partner-logo-more { border-radius: 7px; }
    .partner-logo-feature { padding: 9px; }
    .partner-logo-feature strong { font-size: 12px; }
    .partner-logo-tile--grand strong { font-size: 16px; }
    .process-visual.process-route-visual { height: 338px; margin-top: 25px; border-radius: 17px; }
    .process-route-node > span { min-height: 36px; padding: 5px 10px; }
}

/* High-end website: six-stage interactive delivery map */
.service-category-page--website .service-category-content {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 92% 6%, rgba(168,23,39,.08), transparent 26%), linear-gradient(180deg, #fffdfd 0%, #f8f3f4 100%);
}
.service-category-page--website .service-category-content::before {
    position: absolute;
    top: 85px;
    right: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(168,23,39,.08);
    border-radius: 50%;
    box-shadow: 0 0 0 48px rgba(168,23,39,.025), 0 0 0 96px rgba(168,23,39,.018);
    content: "";
    pointer-events: none;
}
.service-category-page--website .service-category-section-heading { position: relative; z-index: 1; max-width: 1160px; margin-bottom: 36px; }
.service-category-page--website .service-category-section-heading h2 {
    width: 100%;
    margin-top: 12px;
    color: #861321;
    font-size: clamp(25px, 3.25vw, 49px);
    line-height: 1.16;
    letter-spacing: -.045em;
    white-space: nowrap;
}
.website-delivery-intro { max-width: 1010px; margin: 21px 0 0; color: #2b2225; font-size: 15px; line-height: 1.95; }
.website-delivery-map {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
}
.website-delivery-map::before {
    position: absolute;
    top: 46px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,23,39,.3) 12%, rgba(168,23,39,.3) 88%, transparent);
    content: "";
    pointer-events: none;
}
.website-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(81,35,43,.13);
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 35px rgba(53,15,23,.055);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.22,1,.36,1), background .3s ease;
}
.website-stage:hover { border-color: rgba(168,23,39,.35); box-shadow: 0 24px 48px rgba(72,13,24,.11); transform: translateY(-4px); }
.website-stage[open] { border-color: rgba(168,23,39,.42); background: #fff; box-shadow: 0 25px 55px rgba(83,12,25,.13); }
.website-stage summary {
    position: relative;
    min-height: 222px;
    display: grid;
    grid-template-columns: 48px 1fr 30px;
    grid-template-rows: 48px auto;
    gap: 22px 14px;
    padding: 23px;
    cursor: pointer;
    list-style: none;
}
.website-stage summary::-webkit-details-marker { display: none; }
.website-stage summary::after { position: absolute; right: 23px; bottom: 0; left: 23px; height: 1px; background: rgba(91,35,44,.1); content: ""; opacity: 0; transition: opacity .25s ease; }
.website-stage[open] summary::after { opacity: 1; }
.website-stage-number { position: relative; z-index: 1; align-self: center; color: #a81727; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.website-stage-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: #a81727; box-shadow: 0 12px 24px rgba(123,13,29,.2); }
.website-stage-icon svg { width: 20px; height: 20px; }
.website-stage-copy { grid-column: 1 / 3; display: flex; flex-direction: column; align-items: flex-start; }
.website-stage-copy small { color: #a81727; font-size: 9px; font-weight: 800; letter-spacing: .09em; }
.website-stage-copy strong { margin-top: 9px; color: #211719; font-size: 19px; line-height: 1.4; }
.website-stage-copy em { margin-top: 10px; color: #79686d; font-size: 12px; font-style: normal; line-height: 1.65; }
.website-stage-toggle { width: 30px; height: 30px; display: grid; place-items: center; align-self: center; border: 1px solid rgba(168,23,39,.2); border-radius: 50%; color: #a81727; background: #fff7f8; }
.website-stage-toggle svg { width: 14px; height: 14px; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.website-stage[open] .website-stage-toggle { color: #fff; background: #a81727; }
.website-stage[open] .website-stage-toggle svg { transform: rotate(45deg); }
.website-stage-detail { padding: 21px 23px 25px; animation: websiteStageOpen .35s ease both; }
.website-stage-detail > p { margin: 0 0 13px; color: #a81727; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.website-stage-detail ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.website-stage-detail li { display: grid; grid-template-columns: 17px 1fr; gap: 8px; align-items: start; color: #4f4145; font-size: 12px; line-height: 1.7; }
.website-stage-detail li svg { width: 13px; height: 13px; margin-top: 4px; color: #a81727; }
@keyframes websiteStageOpen { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1000px) {
    .website-delivery-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .website-delivery-map::before { display: none; }
}
@media (max-width: 700px) {
    .service-category-page--website .service-category-section-heading h2 { font-size: clamp(17px, 4.1vw, 29px); }
    .website-delivery-intro { margin-top: 16px; font-size: 13px; line-height: 1.8; }
    .website-delivery-map { grid-template-columns: 1fr; gap: 10px; }
    .website-stage summary { min-height: 0; grid-template-columns: 40px 1fr 28px; grid-template-rows: 40px auto; gap: 17px 11px; padding: 18px; }
    .website-stage-icon { width: 40px; height: 40px; border-radius: 12px; }
    .website-stage-icon svg { width: 18px; height: 18px; }
    .website-stage-copy strong { margin-top: 7px; font-size: 17px; }
    .website-stage-copy em { margin-top: 7px; font-size: 11px; }
    .website-stage-detail { padding: 18px; }
}
@media (max-width: 430px) {
    .service-category-page--website .service-category-section-heading h2 { font-size: clamp(14px, 3.75vw, 18px); letter-spacing: -.055em; }
    .website-delivery-intro { font-size: 12px; }
}

/* Desktop website stages unfold as an overlay without moving the grid. */
@media (min-width: 701px) and (hover: hover) and (pointer: fine) {
    .service-category-page--website .service-category-content {
        z-index: 5;
        overflow: visible;
    }
    .website-delivery-map { overflow: visible; }
    .website-stage {
        z-index: 0;
        min-height: 222px;
        overflow: visible;
        isolation: isolate;
    }
    .website-stage:hover { z-index: 20; }
    .website-stage[open] {
        z-index: 40;
        border-radius: 18px 18px 0 0;
        box-shadow: 0 22px 48px rgba(83,12,25,.12);
    }
    .website-stage summary {
        position: relative;
        z-index: 3;
        min-height: 220px;
        border-radius: inherit;
        background: rgba(255,255,255,.96);
    }
    .website-stage > .website-stage-detail {
        position: absolute;
        top: calc(100% - 1px);
        right: -1px;
        left: -1px;
        z-index: 2;
        display: block;
        max-height: 0;
        overflow: hidden;
        padding: 0 23px;
        border: solid transparent;
        border-width: 0 1px 1px;
        border-radius: 0 0 18px 18px;
        background: #fff;
        box-shadow: 0 30px 60px rgba(65,10,20,0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        animation: none;
        transition:
            max-height .78s cubic-bezier(.22,1,.36,1),
            padding .68s cubic-bezier(.22,1,.36,1),
            opacity .4s ease,
            transform .68s cubic-bezier(.22,1,.36,1),
            border-color .38s ease,
            box-shadow .55s ease,
            visibility 0s linear .8s;
        will-change: max-height, opacity, transform;
    }
    .website-stage[open] > .website-stage-detail {
        max-height: 470px;
        padding: 21px 23px 25px;
        border-color: rgba(168,23,39,.42);
        box-shadow: 0 34px 68px rgba(65,10,20,.17);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }
}

/* Mini program: seven interactive operating scenarios */
.service-category-page--mini .service-category-content {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(168,23,39,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,23,39,.035) 1px, transparent 1px),
        radial-gradient(circle at 8% 10%, rgba(197,28,48,.09), transparent 26%),
        #fffdfd;
    background-size: 52px 52px, 52px 52px, auto, auto;
}
.service-category-page--mini .service-category-section-heading { max-width: 1160px; margin-bottom: 38px; }
.service-category-page--mini .service-category-section-heading h2 {
    width: 100%;
    margin-top: 12px;
    color: #861321;
    font-size: clamp(24px, 3.15vw, 48px);
    line-height: 1.16;
    letter-spacing: -.05em;
    white-space: nowrap;
}
.mini-scene-intro { max-width: 1050px; margin: 21px 0 0; color: #2b2225; font-size: 15px; line-height: 1.95; }
.mini-scene-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.mini-scene-card {
    position: relative;
    min-height: 272px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(83,32,41,.13);
    border-radius: 20px;
    outline: none;
    color: #23191c;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 40px rgba(60,15,24,.07);
    transition: min-height .4s cubic-bezier(.22,1,.36,1), border-color .3s ease, box-shadow .35s ease, color .3s ease, background .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.mini-scene-card:nth-child(7) { grid-column: 1 / -1; min-height: 220px; }
.mini-scene-card::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 92% 10%, rgba(255,255,255,.16), transparent 28%), linear-gradient(135deg, #4b0a15 0%, #a81727 62%, #d3263b 100%);
    content: "";
    opacity: 0;
    transition: opacity .35s ease;
}
.mini-scene-card::after {
    position: absolute;
    right: -64px;
    bottom: -92px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(168,23,39,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(168,23,39,.035), 0 0 0 56px rgba(168,23,39,.02);
    content: "";
    transition: border-color .3s ease, box-shadow .3s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
.mini-scene-card:hover,
.mini-scene-card:focus,
.mini-scene-card:focus-visible { z-index: 2; border-color: rgba(207,36,55,.55); color: #fff; box-shadow: 0 28px 60px rgba(92,11,26,.22); transform: translateY(-7px); }
.mini-scene-card:hover::before,
.mini-scene-card:focus::before,
.mini-scene-card:focus-visible::before { opacity: 1; }
.mini-scene-card:hover::after,
.mini-scene-card:focus::after,
.mini-scene-card:focus-visible::after { border-color: rgba(255,255,255,.13); box-shadow: 0 0 0 28px rgba(255,255,255,.045), 0 0 0 56px rgba(255,255,255,.025); transform: scale(1.12); }
.mini-scene-orbit { position: absolute; top: 48px; right: 56px; width: 7px; height: 7px; border-radius: 50%; background: #c71e33; box-shadow: 0 0 0 7px rgba(199,30,51,.09); transition: background .3s ease, box-shadow .3s ease, transform .4s ease; }
.mini-scene-card:hover .mini-scene-orbit,
.mini-scene-card:focus .mini-scene-orbit,
.mini-scene-card:focus-visible .mini-scene-orbit { background: #fff; box-shadow: 0 0 0 7px rgba(255,255,255,.12); transform: translateX(-8px); }
.mini-scene-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.mini-scene-number { color: #a81727; font-size: 10px; font-weight: 850; letter-spacing: .13em; transition: color .3s ease; }
.mini-scene-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: #a81727; box-shadow: 0 12px 25px rgba(113,11,27,.2); transition: color .3s ease, background .3s ease, transform .4s cubic-bezier(.22,1,.36,1); }
.mini-scene-icon svg { width: 19px; height: 19px; }
.mini-scene-card:hover .mini-scene-number,
.mini-scene-card:focus .mini-scene-number,
.mini-scene-card:focus-visible .mini-scene-number { color: rgba(255,255,255,.72); }
.mini-scene-card:hover .mini-scene-icon,
.mini-scene-card:focus .mini-scene-icon,
.mini-scene-card:focus-visible .mini-scene-icon { color: #a81727; background: #fff; transform: rotate(-5deg) scale(1.06); }
.mini-scene-copy { position: relative; z-index: 1; margin-top: auto; }
.mini-scene-copy small { color: #a81727; font-size: 8px; font-weight: 850; letter-spacing: .13em; transition: color .3s ease; }
.mini-scene-copy h3 { margin: 8px 0 0; color: inherit; font-size: 21px; line-height: 1.35; transition: color .3s ease; }
.mini-scene-copy p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 12px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(12px);
    transition: max-height .5s cubic-bezier(.22,1,.36,1), margin .35s ease, opacity .3s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.mini-scene-card:hover .mini-scene-copy small,
.mini-scene-card:focus .mini-scene-copy small,
.mini-scene-card:focus-visible .mini-scene-copy small { color: rgba(255,255,255,.6); }
.mini-scene-card:hover .mini-scene-copy p,
.mini-scene-card:focus .mini-scene-copy p,
.mini-scene-card:focus-visible .mini-scene-copy p { max-height: 150px; margin-top: 13px; opacity: 1; transform: translateY(0); }
.mini-scene-hint { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-top: 15px; padding-top: 13px; border-top: 1px solid rgba(95,38,47,.1); color: #8e777c; font-size: 8px; font-weight: 750; letter-spacing: .08em; transition: max-height .25s ease, margin .25s ease, padding .25s ease, border-color .25s ease, opacity .25s ease; }
.mini-scene-hint svg { width: 14px; height: 14px; color: #a81727; }
.mini-scene-card:hover .mini-scene-hint,
.mini-scene-card:focus .mini-scene-hint,
.mini-scene-card:focus-visible .mini-scene-hint { max-height: 0; overflow: hidden; margin: 0; padding: 0; border-color: transparent; opacity: 0; }
.mini-scene-card:nth-child(7) .mini-scene-copy { max-width: 920px; }

@media (max-width: 1000px) {
    .mini-scene-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mini-scene-card:nth-child(7) { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .service-category-page--mini .service-category-section-heading h2 { font-size: clamp(16px, 4vw, 28px); }
    .mini-scene-intro { margin-top: 16px; font-size: 13px; line-height: 1.8; }
    .mini-scene-grid { grid-template-columns: 1fr; gap: 10px; }
    .mini-scene-card,
    .mini-scene-card:nth-child(7) { grid-column: auto; min-height: 0; padding: 18px; border-radius: 17px; }
    .mini-scene-card::before { opacity: 1; background: linear-gradient(145deg, #fff, #faf1f3); }
    .mini-scene-card:hover,
    .mini-scene-card:focus-visible { color: #23191c; transform: translateY(-3px); }
    .mini-scene-card:hover::after,
    .mini-scene-card:focus-visible::after { border-color: rgba(168,23,39,.12); box-shadow: 0 0 0 28px rgba(168,23,39,.035), 0 0 0 56px rgba(168,23,39,.02); }
    .mini-scene-top { justify-content: flex-start; gap: 13px; }
    .mini-scene-icon { order: -1; width: 40px; height: 40px; border-radius: 12px; }
    .mini-scene-card:hover .mini-scene-icon,
    .mini-scene-card:focus-visible .mini-scene-icon { color: #fff; background: #a81727; transform: none; }
    .mini-scene-orbit { display: none; }
    .mini-scene-copy { margin-top: 15px; }
    .mini-scene-copy h3 { font-size: 18px; }
    .mini-scene-copy p,
    .mini-scene-card:hover .mini-scene-copy p,
    .mini-scene-card:focus-visible .mini-scene-copy p { max-height: none; margin-top: 10px; color: #6e5c61; font-size: 11px; opacity: 1; transform: none; }
    .mini-scene-card:hover .mini-scene-number,
    .mini-scene-card:focus-visible .mini-scene-number,
    .mini-scene-card:hover .mini-scene-copy small,
    .mini-scene-card:focus-visible .mini-scene-copy small { color: #a81727; }
    .mini-scene-hint { display: none; }
}
@media (max-width: 430px) {
    .service-category-page--mini .service-category-section-heading h2 { font-size: clamp(13px, 3.55vw, 17px); letter-spacing: -.055em; }
    .mini-scene-intro { font-size: 12px; }
}

/* Global footer: light contact band + black information area */
.site-footer {
    padding-top: 0;
    color: #fff;
    background: #080808;
}
.site-footer::before { display: none; }
.footer-contact-band { color: #251f21; background: #fffdfd; }
.footer-contact-band-inner {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 32px;
    padding-bottom: 32px;
}
.footer-contact-summary strong { color: #3a3033; font-size: 19px; }
.footer-contact-summary p { display: flex; flex-wrap: wrap; gap: 10px 38px; margin: 12px 0 0; color: #655a5d; font-size: 13px; }
.footer-contact-phone { display: flex; align-items: center; gap: 14px; color: #cf2438; }
.footer-contact-phone > svg { width: 28px; height: 28px; stroke-width: 1.8; }
.footer-contact-phone span { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact-phone strong { font-size: clamp(25px, 2.6vw, 39px); font-weight: 450; line-height: 1; letter-spacing: .02em; }
.footer-contact-phone small { margin-top: 9px; color: #3f3538; font-size: 12px; }
.footer-dark { position: relative; overflow: hidden; background: #080808; }
.footer-dark::before {
    position: absolute;
    top: -210px;
    right: -120px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(202,31,51,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 62px rgba(202,31,51,.025), 0 0 0 124px rgba(202,31,51,.014);
    content: "";
    pointer-events: none;
}
.site-footer .footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.18fr 1.2fr .75fr 1.25fr;
    gap: clamp(34px, 5vw, 76px);
    padding-top: 76px;
    padding-bottom: 68px;
}
.footer-brand-block { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand-name { display: inline-flex; align-items: flex-end; gap: 8px; color: #fff; }
.footer-brand-name span { font-family: Georgia, 'Times New Roman', serif; font-size: 31px; letter-spacing: -.04em; }
.footer-brand-name i { width: 7px; height: 7px; margin-bottom: 7px; border-radius: 50%; background: #cf2438; box-shadow: 0 0 0 5px rgba(207,36,56,.12); }
.footer-brand-block p { max-width: 250px; margin: 27px 0 0; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.8; }
.footer-brand-block small { margin-top: 8px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .11em; }
.site-footer .footer-column { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.site-footer .footer-column::before { display: none; }
.site-footer .footer-label { margin-bottom: 19px; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: .015em; }
.footer-column > small { margin-top: 4px; color: rgba(255,255,255,.3); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.footer-column p { margin: 0 0 9px; line-height: 1.75; }
.site-footer .footer-column a { transition: color .2s ease, transform .25s ease; }
.site-footer .footer-column > a:not(.footer-project-link):hover { color: #fff; transform: translateX(4px); }
.site-footer .footer-number { color: #e32a40; font-size: 19px; font-weight: 650; letter-spacing: .03em; }
.footer-project-column > p { max-width: 260px; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-project-link {
    width: 100%;
    min-height: 60px;
    display: grid;
    grid-template-columns: auto 1fr 18px;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
    padding: 0 17px;
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    background: linear-gradient(105deg, rgba(255,255,255,.035), rgba(207,36,56,.12));
    transition: border-color .25s ease, background .3s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.footer-project-link span { font-size: 13px; font-weight: 750; }
.footer-project-link strong { color: #ef3047; font-size: 15px; text-align: right; }
.footer-project-link svg { width: 16px; height: 16px; }
.footer-project-link:hover { border-color: rgba(226,42,63,.65); background: linear-gradient(105deg, #52101b, #b7192d); transform: translateY(-4px); }
.footer-project-link:hover strong { color: #fff; }
.site-footer .footer-bottom {
    position: relative;
    z-index: 1;
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.36);
    font-size: 10px;
}
.site-footer .footer-bottom > span:nth-child(2) { text-align: center; }
.site-footer .footer-bottom > a { justify-self: end; color: rgba(255,255,255,.58); }
.cta-contact-button { gap: 13px; }
.cta-contact-button > span { padding-left: 13px; border-left: 1px solid rgba(255,255,255,.28); font-size: 12px; font-weight: 650; letter-spacing: .04em; }

@media (max-width: 1000px) {
    .site-footer .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .footer-contact-band-inner { min-height: 0; align-items: flex-start; flex-direction: column; gap: 28px; padding-top: 36px; padding-bottom: 36px; }
    .footer-contact-summary p { flex-direction: column; gap: 6px; }
    .footer-contact-phone strong { font-size: 29px; }
    .site-footer .footer-main { grid-template-columns: 1fr; gap: 44px; padding-top: 54px; padding-bottom: 48px; }
    .footer-project-column > p { max-width: 100%; }
    .footer-project-link { max-width: 360px; }
    .site-footer .footer-bottom { grid-template-columns: 1fr; gap: 7px; padding-top: 22px; padding-bottom: 22px; }
    .site-footer .footer-bottom > span:nth-child(2) { text-align: left; }
    .site-footer .footer-bottom > a { justify-self: start; margin-top: 7px; }
    .cta-contact-button { flex-wrap: wrap; }
}
@media (max-width: 430px) {
    .footer-contact-summary strong { font-size: 17px; }
    .footer-contact-summary p { font-size: 12px; line-height: 1.7; }
    .footer-contact-phone strong { font-size: 26px; }
    .footer-project-link { grid-template-columns: auto 1fr 16px; gap: 8px; padding: 0 13px; }
    .footer-project-link strong { font-size: 13px; }
    .cta-contact-button > span { width: 100%; padding-top: 7px; padding-left: 0; border-top: 1px solid rgba(255,255,255,.24); border-left: 0; }
}

/* Mobile homepage banner typography balance */
@media (max-width: 560px) {
    .home-page .hero-slide--brand .hero-slide-copy .eyebrow {
        gap: 6px;
        font-size: 6px;
        letter-spacing: .10em;
    }
    .home-page .hero-slide--brand .hero-slide-copy .eyebrow::before {
        width: 5px;
        height: 5px;
        box-shadow: 0 0 0 4px rgba(223,34,52,.07);
    }
    .home-page .hero-slide--brand .hero-slide-copy h1 {
        margin-top: 11px;
        font-size: clamp(23px, 6.4vw, 27px);
        line-height: 1.12;
    }
}

/* Keep all homepage insight card copy aligned to the same left edge */
.section--insights .insight-card > div:last-child {
    width: 100%;
    align-self: stretch;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    transform: none;
}

/* Two-line title system for every service content section */
.service-category-content .service-category-section-heading {
    max-width: 1120px;
    margin-bottom: 50px;
}
.service-category-content .service-content-title--two-line,
.service-category-page--website .service-category-section-heading .service-content-title--two-line,
.service-category-page--mini .service-category-section-heading .service-content-title--two-line {
    width: auto;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 15px auto 0;
    color: #7f111f;
    font-size: clamp(34px, 4vw, 59px);
    line-height: 1.13;
    letter-spacing: -.055em;
    white-space: normal;
}
.service-content-title--two-line > span { display: block; white-space: nowrap; }
.service-content-title--two-line > span:last-child {
    position: relative;
    color: #a81727;
}
.service-content-title--two-line > span:last-child::before,
.service-content-title--two-line > span:last-child::after {
    position: absolute;
    top: 50%;
    width: 34px;
    height: 1px;
    background: rgba(168,23,39,.32);
    content: "";
}
.service-content-title--two-line > span:last-child::before { right: calc(100% + 18px); }
.service-content-title--two-line > span:last-child::after { left: calc(100% + 18px); }
.service-category-content .website-delivery-intro,
.service-category-content .mini-scene-intro {
    max-width: 1040px;
    margin: 24px auto 0;
    font-size: 15px;
    line-height: 1.72;
}

@media (max-width: 820px) {
    .service-category-content .service-content-title--two-line,
    .service-category-page--website .service-category-section-heading .service-content-title--two-line,
    .service-category-page--mini .service-category-section-heading .service-content-title--two-line {
        gap: 3px;
        font-size: clamp(22px, 5.2vw, 37px);
    }
    .service-category-content .service-category-section-heading { margin-bottom: 40px; }
    .service-category-content .website-delivery-intro,
    .service-category-content .mini-scene-intro { margin-top: 19px; font-size: 13px; line-height: 1.7; }
}
@media (max-width: 560px) {
    .service-category-content .service-content-title--two-line,
    .service-category-page--website .service-category-section-heading .service-content-title--two-line,
    .service-category-page--mini .service-category-section-heading .service-content-title--two-line {
        gap: 4px;
        font-size: clamp(15px, 4.2vw, 22px);
        line-height: 1.2;
        letter-spacing: -.045em;
    }
    .service-content-title--two-line > span:last-child::before,
    .service-content-title--two-line > span:last-child::after { width: 16px; }
    .service-content-title--two-line > span:last-child::before { right: calc(100% + 9px); }
    .service-content-title--two-line > span:last-child::after { left: calc(100% + 9px); }
    .service-category-content .service-category-section-heading { margin-bottom: 30px; }
    .service-category-content .website-delivery-intro,
    .service-category-content .mini-scene-intro { margin-top: 15px; font-size: 12px; line-height: 1.65; }
}

/* Keep the mobile navigation above every page layer */
@media (max-width: 820px) {
    .site-header {
        z-index: 10000;
        isolation: isolate;
    }
    body.menu-open .site-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
    }
    .site-nav {
        z-index: 9999;
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #fffdfd !important;
        box-shadow: 0 28px 60px rgba(40,10,17,.16);
        -webkit-overflow-scrolling: touch;
    }
    .site-nav.is-open { pointer-events: auto; }
    body.menu-open #main,
    body.menu-open .site-footer,
    body.menu-open .contact-assist {
        visibility: hidden;
        pointer-events: none;
    }
}

/* Pure-black content headings on service pages; banner titles stay dark red */
.services-page main section:not(.page-hero) h2,
.service-category-page main section:not(.service-category-hero) h2,
.service-detail-page main section:not(.detail-hero) h2 {
    color: #000 !important;
}

/* Match service-content titles to the banner subtitle scale */
.service-category-page .service-category-content .service-content-title--two-line {
    font-size: clamp(12px, 2vw, 30px) !important;
    line-height: 1.35;
    letter-spacing: -.035em;
}
.service-category-page .service-category-content .service-content-title--two-line > span {
    color: #000 !important;
}

/* Cinematic night texture for the complete homepage case section */
.section--case-intro {
    background-color: #080b0f;
    border-radius: 0;
    background-image:
        radial-gradient(circle at 8% 14%, rgba(255,255,255,.62) 0 1px, transparent 1.5px),
        radial-gradient(circle at 26% 32%, rgba(255,255,255,.34) 0 1px, transparent 1.4px),
        radial-gradient(circle at 68% 18%, rgba(255,255,255,.50) 0 1px, transparent 1.5px),
        radial-gradient(circle at 86% 37%, rgba(229,65,79,.55) 0 1px, transparent 1.6px),
        radial-gradient(ellipse at 78% 54%, rgba(211, 25, 44, .34), transparent 33%),
        radial-gradient(ellipse at 48% -8%, rgba(79, 99, 117, .27), transparent 47%),
        linear-gradient(180deg, rgba(4,10,15,.95) 0%, rgba(8,9,12,.97) 62%, rgba(40,5,12,.98) 100%);
    background-size: 83px 83px, 127px 127px, 173px 173px, 211px 211px, auto, auto, auto;
    background-position: 0 0, 13px 27px, 37px 9px, 71px 45px, center, center, center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04), inset 0 -90px 130px rgba(167,13,31,.12);
}
.section--case-intro::after {
    border-color: rgba(207, 39, 57, .17);
    box-shadow: 0 0 0 46px rgba(194, 28, 46, .025), 0 0 110px rgba(205, 28, 47, .10);
}
.section--case-intro .section-index,
.section--case-intro .partner-logo-wall-head {
    color: rgba(255,255,255,.68);
}
.section--case-intro .case-intro-heading h2 {
    color: #fff;
    text-shadow: 0 12px 34px rgba(0,0,0,.34);
}
.section--case-intro .case-intro-heading h2 i { color: #ef263c; }
.section--case-intro .case-intro-copy p { color: rgba(255,255,255,.72); }
.section--case-intro .case-category-nav { border-top-color: rgba(255,255,255,.13); }
.section--case-intro .case-category-nav a {
    color: rgba(255,255,255,.78);
}
.section--case-intro .case-category-nav a:hover {
    border-color: rgba(255,255,255,.18);
    color: #fff;
    background: rgba(255,255,255,.08);
}

/* Center the search-page banner content as one visual group */
.search-page .search-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.search-page .search-page-form {
    width: min(100%, 900px);
    margin-inline: auto;
}
.search-page .hero-keywords {
    width: min(100%, 900px);
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    text-align: left;
}
.search-page .hero-keywords-list { justify-content: flex-start; }

/* Remove the outer keyword panel globally; keep individual keyword pills */
.hero-keywords {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    text-align: left;
}
.hero-keywords-list { justify-content: flex-start; }

/* Allow the service mega-menu introduction copy to wrap fully */
.mega-menu-lead,
.mega-menu-lead p,
.mega-menu-lead strong,
.mega-menu-lead b {
    max-width: 100%;
    white-space: normal;
}
.mega-menu-lead p {
    width: 100%;
    overflow-wrap: anywhere;
}

/* Fine 11px supporting copy in the homepage case showcase */
.case-showcase-tab span,
.case-showcase-scopes b,
.case-showcase-metrics small {
    font-size: 11px;
    font-weight: 300;
}

/* Pure-white copy inside the red project-route bars */
.process-route-node b,
.process-route-node small {
    color: #fff !important;
}

/* Homepage process cards: two columns on phones */
@media (max-width: 560px) {
    .section--process .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .section--process .process-list li {
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px 14px;
    }

    .section--process .process-list li > span {
        width: 38px;
        height: 28px;
        flex: 0 0 auto;
    }

    .section--process .process-list h3 {
        margin-bottom: 7px;
        font-size: 17px;
        line-height: 1.3;
    }

    .section--process .process-list p {
        font-size: 11px;
        line-height: 1.65;
    }
}

/* Mobile header: brand left, search centered, menu pinned right */
@media (max-width: 820px) {
    .site-header .header-inner {
        grid-template-columns: minmax(138px, 170px) minmax(78px, 1fr) 44px;
        gap: 8px;
    }

    .site-header .brand {
        grid-column: 1;
        width: 100%;
        min-width: 0;
        gap: 9px;
    }

    .site-header .brand-mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 12px;
    }

    .site-header .brand-copy strong {
        font-size: 20px;
    }

    .site-header .brand-copy small {
        margin-top: 6px;
        font-size: 6px;
    }

    .site-header .header-search {
        grid-column: 2;
        grid-row: 1;
        display: block;
        width: 100%;
        min-width: 0;
    }

    .site-header .header-search input {
        height: 38px;
        padding: 0 36px 0 11px;
        border-radius: 9px;
        font-size: 11px;
    }

    .site-header .header-search button {
        right: 4px;
        width: 30px;
        height: 30px;
        border-radius: 7px;
    }

    .site-header .menu-button {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .site-header .mobile-nav-search {
        display: none;
    }
}

@media (max-width: 360px) {
    .site-header .header-inner {
        grid-template-columns: minmax(126px, 145px) minmax(70px, 1fr) 42px;
        gap: 6px;
    }

    .site-header .brand-mark {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
    }

    .site-header .brand-copy strong {
        font-size: 17px;
    }

    .site-header .brand-copy small {
        font-size: 5px;
        letter-spacing: .11em;
    }

    .site-header .header-search input {
        padding-left: 9px;
    }
}

/* Solutions navigation mega menu */
.solution-mega-menu {
    padding: 16px 0 18px;
    background:
        radial-gradient(circle at 87% 5%, rgba(187, 23, 42, .12), transparent 28%),
        linear-gradient(118deg, rgba(255, 253, 253, .99), rgba(247, 239, 241, .99));
}

.solution-mega-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 16px;
    align-items: stretch;
}

.solution-mega-directory {
    min-width: 0;
    padding: 15px;
    border: 1px solid rgba(116, 31, 43, .10);
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
}

.solution-mega-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 11px;
}

.solution-mega-heading > div {
    display: flex;
    flex-direction: column;
}

.solution-mega-heading span {
    color: #a81727;
    font-size: 7px;
    font-weight: 400;
    letter-spacing: .16em;
}

.solution-mega-heading strong {
    margin-top: 4px;
    color: #171113;
    font-size: 18px;
    line-height: 1.12;
    white-space: nowrap;
}

.site-nav .solution-mega-heading > a {
    min-height: 34px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(167, 23, 39, .15);
    border-radius: 9px;
    color: #9f1726;
    background: #fff;
    font-size: 10px;
}

.solution-mega-heading > a svg {
    width: 13px;
    height: 13px;
}

.solution-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.site-nav .solution-mega-card {
    position: relative;
    min-width: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 14px;
    gap: 10px;
    align-items: center;
    padding: 12px 13px;
    border: 1px solid rgba(114, 31, 43, .10);
    border-radius: 14px;
    color: #251a1d;
    background: #fff;
    box-shadow: 0 8px 22px rgba(73, 18, 28, .035);
    transition: border-color .22s ease, box-shadow .28s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}

.site-nav .solution-mega-card::before {
    position: absolute;
    right: 13px;
    bottom: 0;
    left: 13px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #24181b, #d51e32);
    content: "";
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .22s ease, transform .3s ease;
}

.site-nav .solution-mega-card:hover {
    border-color: rgba(184, 24, 42, .24);
    box-shadow: 0 15px 32px rgba(73, 15, 27, .10);
    transform: translateY(-3px);
}

.site-nav .solution-mega-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.solution-mega-number {
    width: 30px;
    height: 25px;
    display: grid;
    grid-column: 1;
    place-items: center;
    border-radius: 8px;
    color: #a81727;
    background: #f8e8ea;
    font-size: 10px;
    font-weight: 700;
}

.solution-mega-card > svg {
    width: 13px;
    height: 13px;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    color: #d52235;
}

.solution-mega-card > strong {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    color: #171113;
    font-size: 14px;
    line-height: 1.25;
}

.site-nav .solution-mega-visual {
    position: relative;
    min-height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    background: #160b0e;
    box-shadow: 0 20px 42px rgba(75, 12, 25, .18);
}

.solution-mega-visual::after {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    background: linear-gradient(180deg, transparent 48%, rgba(12, 4, 7, .88) 100%) !important;
    content: "";
    transform: none !important;
}

.solution-mega-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: filter .35s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

.solution-mega-visual:hover img {
    filter: saturate(1.12) brightness(1.07);
    transform: scale(1.045);
}

.solution-mega-visual > span {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.solution-mega-visual > span small {
    color: rgba(255, 255, 255, .58);
    font-size: 6px;
    letter-spacing: .14em;
}

.solution-mega-visual > span strong {
    margin-top: 5px;
    color: #fff;
    font-size: 15px;
}

.solution-mega-visual > svg {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
    width: 17px;
    height: 17px;
    color: #fff;
}

@media (max-width: 1100px) and (min-width: 821px) {
    .solution-mega-inner { grid-template-columns: minmax(0, 1fr) 260px; }
    .solution-mega-directory { padding: 16px; }
    .site-nav .solution-mega-card { min-height: 62px; padding: 11px; }
}

@media (max-width: 820px) {
    .solution-mega-menu {
        padding: 0;
        background: #f8eff1;
    }

    .solution-mega-inner {
        width: 100%;
        display: block;
        padding: 14px 0 22px;
    }

    .solution-mega-directory {
        padding: 16px;
        border-radius: 15px;
    }

    .solution-mega-heading {
        align-items: flex-start;
        margin-bottom: 13px;
    }

    .solution-mega-heading strong {
        font-size: clamp(15px, 4.2vw, 18px);
    }

    .solution-mega-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .site-nav .solution-mega-card {
        min-height: 0;
        padding: 12px 14px;
    }

    .solution-mega-card > strong { font-size: 15px; }

    .site-nav .solution-mega-visual {
        min-height: 150px;
        margin-top: 10px;
        border-radius: 15px;
    }
}

/* Dedicated artwork for contact, insights, and solution banners */
.page-hero-media--contact,
.page-hero-media--insights,
.page-hero-media--solutions {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
}
.page-hero-media--contact { aspect-ratio: 970 / 633; }
.page-hero-media--insights { aspect-ratio: 1160 / 698; }
.page-hero-media--solutions { aspect-ratio: 1257 / 663; }
.page-hero-banner-image,
.solution-detail-banner-visual img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.solution-detail-page .detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    gap: 48px;
    align-items: center;
}
.solution-detail-banner-visual {
    width: 100%;
    min-width: 0;
    aspect-ratio: 1257 / 663;
    overflow: hidden;
    border: 1px solid rgba(107, 30, 40, .11);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

@media (max-width: 960px) {
    .page-hero-grid { grid-template-columns: minmax(0, 1fr); }
    .page-hero-copy { min-width: 0; }
}

@media (max-width: 820px) {
    .solution-detail-page .detail-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }
    .solution-detail-banner-visual { max-width: 560px; }
}

/* Related insight cards use the same compact rhythm as the homepage. */
.related-posts .insight-card,
.related-posts .insight-card + .insight-card {
    min-height: 235px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 34px;
    padding: 21px 22px;
}
.related-posts .insight-card:hover { padding-right: 22px; }

@media (max-width: 820px) {
    .related-posts .insight-card,
    .related-posts .insight-card + .insight-card {
        min-height: 225px;
        gap: 30px;
        padding: 20px;
    }
    .related-posts .insight-card:hover { padding-right: 20px; }
}

@media (max-width: 560px) {
    .related-posts .insight-card,
    .related-posts .insight-card + .insight-card {
        min-height: 215px;
        gap: 24px;
        padding: 18px;
    }
    .related-posts .insight-card:hover { padding-right: 18px; }
}

/* Mobile banners share the homepage typography scale. */
@media (max-width: 560px) {
    .home-page .hero-slide-copy h1,
    .home-page .hero-slide--brand .hero-slide-copy h1,
    .home-page .hero-slide--partner .hero-slide-copy h1,
    .page-hero-copy h1,
    .contact-page .page-hero-copy h1,
    .detail-hero-grid h1,
    .detail-hero-copy h1,
    .case-detail-title h1,
    .case-detail-page .case-detail-copy h1,
    .post-detail-page .post-hero h1,
    .post-hero h1,
    .search-hero h1,
    .service-category-hero-copy h1,
    .not-found h1 {
        font-size: 25px;
        line-height: 1.12;
        letter-spacing: 0;
        white-space: normal;
    }

    .home-page .hero-slide-copy .home-hero-lead,
    .home-page .hero-slide-copy .hero-service-summary > p,
    .page-hero-copy > p,
    .detail-hero-copy > p:not(.eyebrow),
    .detail-hero-grid > div:last-child > p,
    .detail-hero-grid small,
    .post-hero > .container > p,
    .service-category-hero-copy h2,
    .service-category-hero-copy > p,
    .case-detail-copy > p {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 0;
    }

    .solution-steps .step-card,
    .solution-steps .step-card + .step-card {
        padding: 28px;
    }
}

/* Two-column information footer on phones. */
@media (max-width: 700px) {
    .site-footer .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 18px;
        align-items: start;
        padding-top: 48px;
        padding-bottom: 44px;
    }
    .site-footer .footer-main > * { min-width: 0; }
    .footer-brand-name span { font-size: 25px; letter-spacing: 0; }
    .footer-brand-block p { margin-top: 20px; font-size: 13px; line-height: 1.7; }
    .footer-brand-block small { font-size: 8px; line-height: 1.6; letter-spacing: 0; }
    .site-footer .footer-column { gap: 7px; font-size: 11px; }
    .site-footer .footer-label { margin-bottom: 12px; font-size: 12px; line-height: 1.45; letter-spacing: 0; }
    .site-footer .footer-number { max-width: 100%; font-size: 16px; letter-spacing: 0; overflow-wrap: anywhere; }
    .footer-contact-column a { max-width: 100%; overflow-wrap: anywhere; }
    .footer-project-column > p { font-size: 11px; line-height: 1.65; }
    .footer-project-link {
        min-height: 82px;
        grid-template-columns: minmax(0, 1fr) 16px;
        grid-template-rows: auto auto;
        gap: 4px 8px;
        padding: 12px;
    }
    .footer-project-link span { grid-column: 1; grid-row: 1; font-size: 12px; }
    .footer-project-link strong { grid-column: 1; grid-row: 2; font-size: 12px; text-align: left; overflow-wrap: anywhere; }
    .footer-project-link svg { grid-column: 2; grid-row: 1 / 3; align-self: center; }
    .site-footer .footer-bottom {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px 14px;
    }
    .site-footer .footer-bottom > span { min-width: 0; }
    .site-footer .footer-bottom > span:nth-child(2) { grid-column: 1; text-align: left; }
    .site-footer .footer-bottom > a { grid-column: 2; grid-row: 1 / 3; align-self: center; justify-self: end; margin-top: 0; }
}

/* Unified editorial system for every public detail page. */
.detail-page main,
.service-category-page main {
    --container: 1180px;
}

.detail-page main .section { padding-top: 96px; padding-bottom: 96px; }
.service-category-page main .section { padding-top: 100px; padding-bottom: 100px; }

.detail-page .detail-hero,
.post-detail-page .post-hero,
.case-detail-page .case-detail-hero {
    padding-top: 46px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(91, 16, 25, .10);
}

.detail-hero-copy { max-width: 900px; }
.detail-hero-copy h1,
.post-detail-page .post-hero h1,
.case-detail-page .case-detail-copy h1,
.service-category-hero-copy h1 {
    max-width: 900px;
    line-height: 1.12;
    letter-spacing: 0;
    white-space: normal;
}
.detail-hero-copy > p:not(.eyebrow),
.case-detail-page .case-detail-copy p { max-width: 780px; }

.solution-detail-page .detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 64px;
    align-items: center;
}
.solution-detail-banner-visual {
    max-width: 420px;
    justify-self: end;
    border-radius: 8px;
}

.post-detail-page .post-hero-grid {
    grid-template-columns: minmax(0, 800px) 260px;
    justify-content: space-between;
    gap: 72px;
    align-items: center;
}
.post-detail-page .post-hero-inner { min-width: 0; }
.post-detail-page .post-hero-visual {
    width: 100%;
    min-height: 180px;
    justify-self: end;
    border-radius: 8px;
}

.service-detail-page .detail-body .detail-content-grid,
.solution-detail-page .solution-description .detail-content-grid {
    grid-template-columns: 220px minmax(0, 820px);
    justify-content: center;
    gap: 64px;
    align-items: start;
}
.detail-facts {
    position: sticky;
    top: 112px;
    padding-right: 24px;
    border-right-color: rgba(91, 16, 25, .14);
}
.detail-facts div { padding-bottom: 22px; margin-bottom: 22px; }
.detail-facts strong { font-size: 15px; line-height: 1.7; }
.solution-description .section-index {
    position: sticky;
    top: 112px;
    align-self: start;
    padding-top: 4px;
}
.rich-copy { min-width: 0; max-width: 820px; }
.rich-copy p {
    margin: 0 0 30px;
    color: #312729;
    font-size: 17px;
    line-height: 2;
}
.rich-copy p:last-child { margin-bottom: 0; }
.rich-copy blockquote {
    max-width: 760px;
    margin: 44px 0 0;
    padding: 25px 0 25px 26px;
    border-left-color: #a81727;
    color: #271b1e;
    font-size: 22px;
    line-height: 1.65;
}

.post-layout {
    grid-template-columns: 120px minmax(0, 800px);
    justify-content: center;
    gap: 52px;
    padding-top: 84px;
    padding-bottom: 110px;
}
.post-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.post-content { width: 100%; max-width: 800px; }
.post-content::before { top: 4px; bottom: 4px; left: -27px; background: rgba(91, 16, 25, .13); }
.post-content p {
    margin: 0 0 30px;
    color: #312729;
    font-size: 17px;
    line-height: 2.05;
}
.post-content p:first-child { color: #211719; font-size: 18px; }
.post-content p:last-child { margin-bottom: 0; }

.detail-capabilities .section-heading,
.solution-steps .section-heading,
.related-posts .section-heading { margin-bottom: 42px; }
.detail-capabilities .feature-grid,
.solution-steps .step-grid { gap: 14px; }
.detail-capabilities .feature-item,
.solution-steps .step-card,
.detail-capabilities .feature-item + .feature-item,
.solution-steps .step-card + .step-card {
    min-height: 235px;
    padding: 26px;
    border-radius: 8px;
}
.detail-capabilities .feature-item h3,
.solution-steps .step-card h3 { margin-top: 52px; }

.case-overview { padding: 0; border-top: 1px solid var(--line); }
.case-overview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}
.case-overview-grid div {
    min-height: 112px;
    justify-content: center;
    gap: 7px;
    padding: 24px 22px;
    border-right: 1px solid var(--line);
}
.case-overview-grid div:last-child { border-right: 0; }
.case-overview-grid div::before {
    right: 22px;
    left: 22px;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, #24181b, #d51e32);
}
.case-overview-grid strong { font-size: 15px; line-height: 1.55; }
.case-narrative { padding-top: 18px; padding-bottom: 18px; }
.case-detail-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(240px, 280px);
    justify-content: space-between;
    gap: 56px;
    align-items: start;
}
.narrative-row {
    grid-template-columns: 150px minmax(0, 820px);
    justify-content: center;
    gap: 64px;
    padding-top: 72px;
    padding-bottom: 72px;
}
.narrative-row > span { padding-top: 8px; font-weight: 700; }
.narrative-row h2 { margin-bottom: 18px; font-size: 32px; line-height: 1.25; letter-spacing: 0; white-space: normal; }
.narrative-row p { font-size: 17px; line-height: 2; }
.case-rich-content { min-width: 0; }
.case-content-section {
    position: relative;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 34px;
    padding: 72px 0;
    border-bottom: 1px solid var(--line);
}
.case-content-section::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 80px;
    height: 1px;
    background: var(--coral);
    content: "";
}
.case-content-kicker { padding-top: 8px; color: var(--coral); font-size: 12px; font-weight: 700; }
.case-content-section > div { min-width: 0; }
.case-rich-content h2 { margin: 0 0 18px; font-size: 32px; line-height: 1.25; letter-spacing: 0; white-space: normal; }
.case-rich-content h3 { margin: 34px 0 14px; font-size: 24px; line-height: 1.35; }
.case-rich-content p { margin: 0 0 28px; color: #312729; font-size: 17px; line-height: 2; }
.case-rich-content p:last-child { margin-bottom: 0; }
.case-rich-content ul,
.case-rich-content ol { margin: 24px 0 30px; padding-left: 24px; color: #312729; font-size: 17px; line-height: 1.9; }
.case-rich-content li + li { margin-top: 9px; }
.case-rich-content blockquote { margin: 34px 0; border-left: 3px solid var(--coral); padding: 20px 0 20px 24px; color: #4d4245; font-size: 20px; line-height: 1.75; }
.case-rich-content a { color: #8f1423; text-decoration: underline; text-underline-offset: 3px; }
.case-rich-content figure { width: 100%; margin: 38px auto; }
.case-rich-content img { width: 100%; max-width: 100%; height: auto; display: block; border-radius: 8px; }
.case-rich-content .case-image--25 { width: 25%; }
.case-rich-content .case-image--50 { width: 50%; }
.case-rich-content .case-image--75 { width: 75%; }
.case-rich-content .case-image--100 { width: 100%; }
.case-rich-content figcaption { margin-top: 10px; color: #858d91; font-size: 12px; line-height: 1.6; }
.case-rich-content > h2,
.case-rich-content > h3,
.case-rich-content > p,
.case-rich-content > ul,
.case-rich-content > ol,
.case-rich-content > blockquote,
.case-rich-content > figure { width: min(100%, 820px); margin-right: auto; margin-left: auto; }
.case-rich-content > figure.case-image--25 { width: 25%; }
.case-rich-content > figure.case-image--50 { width: 50%; }
.case-rich-content > figure.case-image--75 { width: 75%; }
.case-rich-content > figure.case-image--100 { width: 100%; }
.case-detail-sidebar { position: sticky; top: 96px; padding: 54px 0 24px; }
.case-sidebar-section { border-top: 2px solid #24181b; padding-top: 20px; }
.case-sidebar-section + .case-sidebar-section { margin-top: 48px; }
.case-sidebar-eyebrow { margin: 0 0 8px; color: var(--coral); font-size: 10px; font-weight: 750; line-height: 1.2; }
.case-sidebar-section h2 { margin: 0 0 20px; font-size: 22px; line-height: 1.3; }
.case-industry-menu { display: grid; }
.case-industry-menu a { display: flex; align-items: center; justify-content: space-between; min-height: 42px; border-bottom: 1px solid var(--line); color: #51474a; font-size: 13px; transition: color .2s ease, padding .2s ease; }
.case-industry-menu a:hover,
.case-industry-menu a.is-active { padding-left: 8px; color: var(--coral); }
.case-industry-menu a.is-active { font-weight: 750; }
.case-industry-menu em { color: #959b9e; font-size: 11px; font-style: normal; }
.case-related-list { display: grid; }
.case-related-list a { position: relative; display: grid; gap: 4px; padding: 15px 32px 15px 0; border-bottom: 1px solid var(--line); }
.case-related-list span { color: #8a9093; font-size: 10px; }
.case-related-list strong { color: #282023; font-size: 14px; line-height: 1.45; }
.case-related-list i { position: absolute; top: 50%; right: 0; width: 16px; height: 16px; color: var(--coral); transform: translateY(-50%); transition: transform .2s ease; }
.case-related-list a:hover i { transform: translate(3px, calc(-50% - 3px)); }
.case-metrics { padding-top: 70px; padding-bottom: 70px; }
.case-metrics .metric-grid { gap: 14px; }
.case-metrics .metric-item { min-height: 145px; border-radius: 8px; }

.service-category-page .service-category-hero-grid { gap: 56px; }
.service-category-page .service-category-visual { height: 340px; border-radius: 8px; }
.service-category-page .service-category-section-heading { max-width: 1040px; }

@media (max-width: 900px) {
    .detail-page main,
    .service-category-page main { --container: 820px; }

    .solution-detail-page .detail-hero-grid,
    .post-detail-page .post-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .solution-detail-banner-visual,
    .post-detail-page .post-hero-visual {
        width: min(100%, 520px);
        max-width: 520px;
        justify-self: start;
    }
    .service-detail-page .detail-body .detail-content-grid,
    .solution-detail-page .solution-description .detail-content-grid,
    .post-layout,
    .narrative-row,
    .case-content-section {
        grid-template-columns: minmax(0, 820px);
        justify-content: center;
        gap: 34px;
    }
    .case-detail-content-layout { grid-template-columns: minmax(0, 1fr) 230px; gap: 36px; }
    .case-content-section { grid-template-columns: 1fr; gap: 16px; }
    .case-detail-sidebar { top: 80px; }
    .detail-facts {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0;
        border-top: 1px solid var(--line);
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .detail-facts div,
    .detail-facts div:last-child {
        min-width: 0;
        margin: 0;
        padding: 20px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }
    .detail-facts div:last-child { border-right: 0; }
    .solution-description .section-index { position: static; padding-top: 0; }
    .post-share { position: static; flex-direction: row; align-items: center; }
    .post-content::before { display: none; }
    .case-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .case-overview-grid div:nth-child(2n) { border-right: 0; }
    .case-overview-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .solution-steps .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .detail-page main .section,
    .service-category-page main .section { padding-top: 64px; padding-bottom: 64px; }
    .detail-page .detail-hero,
    .post-detail-page .post-hero,
    .case-detail-page .case-detail-hero { padding-top: 28px; padding-bottom: 36px; }
    .post-detail-page .post-hero-visual { display: none; }
    .solution-detail-banner-visual { border-radius: 6px; }
    .detail-facts { grid-template-columns: 1fr; }
    .detail-facts div,
    .detail-facts div:last-child { border-right: 0; border-bottom: 1px solid var(--line); }
    .detail-facts div:last-child { border-bottom: 0; }
    .rich-copy p,
    .post-content p,
    .narrative-row p { font-size: 16px; line-height: 1.9; }
    .post-content p:first-child { font-size: 17px; }
    .rich-copy blockquote { margin-top: 34px; padding: 21px 0 21px 20px; font-size: 19px; }
    .post-layout { padding-top: 58px; padding-bottom: 74px; }
    .narrative-row,
    .case-content-section { padding-top: 48px; padding-bottom: 48px; }
    .narrative-row h2,
    .case-rich-content h2 { font-size: 25px; }
    .case-rich-content p,
    .case-rich-content li { font-size: 16px; line-height: 1.9; }
    .case-rich-content blockquote { padding-left: 19px; font-size: 18px; }
    .case-rich-content figure { margin: 30px 0; }
    .case-detail-content-layout { grid-template-columns: 1fr; gap: 42px; }
    .case-detail-sidebar { position: static; padding-top: 0; }
    .case-sidebar-section + .case-sidebar-section { margin-top: 36px; }
    .case-rich-content .case-image--25,
    .case-rich-content .case-image--50,
    .case-rich-content .case-image--75,
    .case-rich-content > figure.case-image--25,
    .case-rich-content > figure.case-image--50,
    .case-rich-content > figure.case-image--75 { width: 100%; }
    .detail-capabilities .feature-grid,
    .solution-steps .step-grid { grid-template-columns: 1fr; }
    .detail-capabilities .feature-item,
    .solution-steps .step-card,
    .detail-capabilities .feature-item + .feature-item,
    .solution-steps .step-card + .step-card {
        min-height: 205px;
        padding: 22px;
    }
    .case-overview-grid div { min-height: 102px; padding: 20px 16px; }
    .case-overview-grid div::before { right: 16px; left: 16px; }
    .case-metrics .metric-grid { grid-template-columns: 1fr; }
    .service-category-page .service-category-visual { height: 300px; border-radius: 6px; }
}
