@font-face {
  font-family: "DM Sans";
  src: url("/assets/dm-sans-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Sans";
  src: url("/assets/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --orange: #ff7a00;
  --orange-dark: #dc6400;
  --orange-soft: #fff1e4;
  --ink: #202020;
  --ink-2: #2a2a2a;
  --muted: #686868;
  --line: #dfdfdc;
  --cream: #f5f4f0;
  --white: #ffffff;
  --container: 1240px;
  --shadow: 0 28px 70px rgba(23, 23, 23, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 200; top: 12px; left: 12px; transform: translateY(-140%); padding: 12px 16px; background: var(--ink); color: white; border-radius: 4px; }
.skip-link:focus { transform: none; }
.section { padding: 118px 0; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal { opacity: 1; transform: none; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 82px; background: rgba(255,255,255,.91); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: height .25s, border-color .25s, box-shadow .25s; }
.site-header.scrolled { height: 70px; border-color: rgba(32,32,32,.09); box-shadow: 0 8px 35px rgba(32,32,32,.06); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 174px; line-height: 0; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 600; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 10px 0; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 100%; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.primary-nav > a:not(.nav-cta):hover::after, .primary-nav > a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; align-items: center; gap: 22px; margin-left: 8px; padding: 13px 18px; background: var(--ink); color: white; }
.nav-cta span { color: var(--orange); }
.nav-cta:hover { background: var(--orange); }
.nav-cta:hover span { color: white; }
.nav-dropdown { position: relative; }
.nav-dropdown summary { display: flex; align-items: center; gap: 7px; padding: 10px 0; cursor: pointer; list-style: none; user-select: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary > .nav-chevron { width: 7px; height: 7px; margin-top: -4px; border-right: 1.5px solid var(--orange); border-bottom: 1.5px solid var(--orange); transform: rotate(45deg); transition: transform .2s, margin .2s; }
.nav-dropdown[open] summary > .nav-chevron { margin-top: 4px; transform: rotate(225deg); }
.nav-dropdown-menu { position: absolute; z-index: 120; top: calc(100% + 18px); left: -28px; width: 470px; display: grid; grid-template-columns: 1fr 1fr; padding: 14px; border: 1px solid #e4e4e0; background: rgba(255,255,255,.98); box-shadow: 0 24px 60px rgba(26,26,26,.14); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, visibility .2s, transform .2s; }
.nav-dropdown[open] .nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown-menu a { display: grid; grid-template-columns: 27px 1fr; align-items: center; min-height: 50px; padding: 8px 11px; color: #444; transition: background .18s, color .18s; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { background: var(--cream); color: var(--ink); }
.nav-dropdown-menu a > span { color: var(--orange); font-size: 8px; font-weight: 800; }
.nav-dropdown-menu a > b { font-size: 12px; font-weight: 700; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s; }

.hero { position: relative; min-height: 840px; padding: 170px 0 0; overflow: hidden; background: linear-gradient(115deg, #f8f8f6 0%, #fff 57%, #f5f2ed 100%); }
.hero-grid-bg, .contact-grid-bg, .dark-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(32,32,32,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(32,32,32,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent, black 40%, black); }
.hero-layout { position: relative; display: grid; grid-template-columns: .91fr 1.09fr; gap: 70px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 2px; background: var(--orange); }
h1, h2, h3 { margin-top: 0; font-family: "Manrope", "DM Sans", sans-serif; letter-spacing: -.04em; }
h1 { margin-bottom: 26px; color: var(--ink); font-size: clamp(48px, 5.5vw, 78px); line-height: 1.02; font-weight: 800; }
h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 620px; margin: 0; color: #555; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 32px; min-height: 54px; padding: 0 24px; border: 0; cursor: pointer; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: white; box-shadow: 0 12px 25px rgba(255,122,0,.2); }
.button-primary:hover { background: var(--orange-dark); }
.button-dark { background: var(--ink); color: white; }
.text-link { display: inline-flex; gap: 14px; align-items: center; border-bottom: 1px solid #aaa; padding: 10px 0 7px; font-size: 14px; font-weight: 700; }
.text-link span { color: var(--orange); }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin: 34px 0 0; padding: 0; list-style: none; color: #6a6a6a; font-size: 12px; font-weight: 600; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.check { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-size: 10px; font-weight: 800; }

.system-visual { position: relative; min-width: 0; padding: 40px 5px 70px; }
.visual-glow { position: absolute; width: 420px; height: 420px; right: 2%; top: 5%; border-radius: 50%; background: rgba(255,122,0,.11); filter: blur(45px); }
.app-window { position: relative; z-index: 2; width: 100%; min-width: 650px; border: 1px solid #d9d9d6; border-radius: 12px; overflow: hidden; background: white; box-shadow: var(--shadow); transform: perspective(1300px) rotateY(-4deg) rotateX(1deg); transform-origin: left center; }
.app-topbar { height: 54px; display: flex; align-items: center; gap: 22px; padding: 0 16px; background: var(--ink); color: white; }
.app-mark { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid #575757; }
.app-mark span { width: 9px; height: 9px; background: var(--orange); }
.app-search { flex: 0 1 250px; padding: 7px 12px; border-radius: 4px; background: #303030; color: #8f8f8f; font-size: 9px; }
.app-user { display: grid; place-items: center; width: 27px; height: 27px; margin-left: auto; border-radius: 50%; background: var(--orange); font-size: 9px; font-weight: 700; }
.app-body { display: flex; min-height: 430px; }
.app-sidebar { flex: 0 0 59px; display: flex; align-items: center; flex-direction: column; gap: 24px; padding-top: 30px; border-right: 1px solid #eee; background: #fafaf9; }
.app-sidebar span { position: relative; width: 16px; height: 14px; border: 1.5px solid #aaa; border-radius: 2px; }
.app-sidebar span.active { border-color: var(--orange); background: var(--orange-soft); }
.app-sidebar span.active::before { content: ""; position: absolute; left: -15px; top: -7px; width: 3px; height: 26px; background: var(--orange); }
.app-content { flex: 1; min-width: 0; padding: 28px; background: #f9f9f8; }
.app-heading { display: flex; justify-content: space-between; align-items: end; }
.app-heading small, .app-heading strong { display: block; }
.app-heading small { margin-bottom: 7px; color: #9b9b9b; font-size: 7px; letter-spacing: .13em; }
.app-heading strong { font-size: 16px; }
.status-dot { color: #5c8268; font-size: 8px; }
.status-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: #54a76d; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 22px; }
.metric { padding: 15px 16px; border: 1px solid #e9e9e6; background: white; }
.metric small { display: block; margin-bottom: 7px; color: #8a8a8a; font-size: 8px; }
.metric b { font-size: 20px; }
.metric i { float: right; padding-top: 7px; color: #55a16b; font-size: 8px; font-style: normal; }
.chart-panel { margin-top: 11px; padding: 16px 16px 8px; border: 1px solid #e9e9e6; background: white; }
.panel-label { display: flex; justify-content: space-between; align-items: center; font-size: 9px; font-weight: 600; }
.panel-label b { color: #999; font-size: 7px; font-weight: 500; }
.chart-panel svg { margin-top: 14px; overflow: visible; }
.chart-grid { fill: none; stroke: #eee; stroke-width: 1; }
.chart-area { fill: url(#chart-fill); }
.chart-line { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; }
.activity-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.activity-row > div { display: flex; align-items: center; gap: 9px; padding: 10px; border: 1px solid #e9e9e6; background: white; }
.activity-icon { display: grid; place-items: center; flex: 0 0 25px; height: 25px; border-radius: 50%; background: #e9f5ed; color: #4c9763; font-size: 10px; }
.activity-icon.orange { background: var(--orange-soft); color: var(--orange); }
.activity-row p { margin: 0; font-size: 8px; }
.activity-row b, .activity-row small { display: block; }
.activity-row small { margin-top: 3px; color: #999; font-size: 7px; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 13px 15px; background: white; border: 1px solid #e1e1df; border-radius: 5px; box-shadow: 0 18px 40px rgba(27,27,27,.14); }
.floating-card > span { display: grid; place-items: center; width: 37px; height: 37px; background: var(--orange-soft); color: var(--orange); font-size: 10px; font-weight: 800; }
.floating-card b, .floating-card small { display: block; white-space: nowrap; }
.floating-card b { margin-bottom: 3px; font-size: 10px; }
.floating-card small { color: #8b8b8b; font-size: 8px; }
.floating-one { right: -20px; top: 4px; }
.floating-two { left: -20px; bottom: 30px; }
.hero-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 25px; padding: 29px 0; border-top: 1px solid #dcdcd9; }
.hero-bottom p { margin: 0; color: #777; font-size: 12px; }
.tech-line { display: flex; align-items: center; gap: 15px; color: #9a9a9a; font-family: "Manrope", sans-serif; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.tech-line i { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); }

.section-heading { display: grid; grid-template-columns: 1.45fr .55fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .why h2, .faq h2, .contact-copy h2, .architecture h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.13; font-weight: 700; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 430px; padding: 42px 42px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: background .3s, color .3s; }
.service-card::after { content: ""; position: absolute; z-index: -1; width: 240px; height: 240px; right: -140px; bottom: -150px; border-radius: 50%; background: var(--orange); opacity: 0; transition: opacity .3s, transform .5s; }
.service-card:hover::after { opacity: .08; transform: scale(1.4); }
.service-number { position: absolute; top: 28px; right: 32px; color: #b2b2ae; font-family: "Manrope"; font-size: 11px; font-weight: 700; }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 38px; background: var(--cream); color: var(--orange); }
.service-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { max-width: 400px; margin-bottom: 17px; font-size: 25px; }
.service-card > p { max-width: 500px; margin: 0 0 20px; color: #696969; line-height: 1.65; }
.service-card ul { margin: 0; padding: 0; list-style: none; color: #686868; font-size: 13px; line-height: 1.9; }
.service-card li::before { content: "—"; margin-right: 9px; color: var(--orange); }
.service-card > a { display: inline-flex; gap: 45px; align-items: center; margin-top: 25px; padding-bottom: 5px; border-bottom: 1px solid #aaa; font-size: 13px; font-weight: 700; }
.service-card > a span { color: var(--orange); }
.service-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

.dark-section { position: relative; overflow: hidden; background: #212121; color: white; }
.dark-grid { opacity: .28; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); mask-image: linear-gradient(to bottom, black, transparent 85%); }
.section-heading.light { position: relative; }
.section-heading.light .eyebrow, .section-heading.light > p { color: #aaa; }
.section-heading.light h2 { color: white; }
.problem-layout { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: stretch; }
.problem-list { border-top: 1px solid #494949; }
.problem-tab { width: 100%; display: grid; grid-template-columns: 50px 1fr 28px; align-items: center; gap: 18px; min-height: 89px; padding: 0 10px 0 0; border: 0; border-bottom: 1px solid #494949; background: transparent; color: #bdbdbd; text-align: left; cursor: pointer; transition: color .25s, padding-left .25s; }
.problem-tab > span { color: #777; font-size: 10px; }
.problem-tab b { font-family: "Manrope"; font-size: 17px; font-weight: 600; }
.problem-tab i { font-style: normal; font-size: 18px; }
.problem-tab:hover, .problem-tab.active { color: white; padding-left: 12px; }
.problem-tab.active > span, .problem-tab.active i { color: var(--orange); }
.solution-panel { position: relative; display: flex; flex-direction: column; min-height: 445px; padding: 48px; background: var(--orange); color: white; }
.solution-panel::after { content: ""; position: absolute; width: 190px; height: 190px; right: -35px; top: -45px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.04), 0 0 0 80px rgba(255,255,255,.03); }
.solution-label { margin: 0 0 65px; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.solution-icon { position: absolute; top: 38px; right: 40px; z-index: 1; display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid rgba(255,255,255,.5); }
.solution-panel h3 { position: relative; max-width: 440px; margin-bottom: 18px; font-size: 30px; line-height: 1.2; }
.solution-panel > p:not(.solution-label) { position: relative; max-width: 470px; margin: 0; color: rgba(255,255,255,.82); line-height: 1.65; }
.solution-result { position: relative; margin-top: auto; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.3); }
.solution-result span { font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.solution-result p { margin: 10px 0 0; font-size: 13px; line-height: 1.6; }

.process { background: var(--cream); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 20px 0 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; top: 65px; left: 9%; right: 9%; height: 1px; background: #cacac5; }
.process-step { position: relative; padding: 0 38px 0 0; }
.step-no { color: #a2a29e; font-family: "Manrope"; font-size: 10px; font-weight: 700; }
.step-dot { position: relative; z-index: 2; width: 13px; height: 13px; margin: 38px 0 32px; border: 3px solid var(--cream); border-radius: 50%; outline: 1px solid #b5b5b0; background: #b5b5b0; }
.process-step:first-child .step-dot { outline-color: var(--orange); background: var(--orange); box-shadow: 0 0 0 6px rgba(255,122,0,.13); }
.process-step h3 { margin-bottom: 13px; font-size: 18px; }
.process-step p { margin: 0; color: #72726f; font-size: 14px; line-height: 1.65; }
.process-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 75px; padding: 27px 30px; border-left: 3px solid var(--orange); background: white; }
.process-cta p { margin: 0; color: #777; font-size: 14px; }
.process-cta strong { margin-right: 8px; color: var(--ink); }

.why-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.why-copy { position: sticky; top: 130px; }
.why-copy > p:not(.eyebrow) { margin: 27px 0; color: var(--muted); line-height: 1.75; }
.dark-link { border-color: #aaa; }
.why-grid { border-top: 1px solid var(--line); }
.why-item { display: grid; grid-template-columns: 45px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.why-item > span { padding-top: 4px; color: var(--orange); font-size: 10px; font-weight: 800; }
.why-item h3 { margin-bottom: 9px; font-size: 20px; }
.why-item p { margin: 0; color: var(--muted); line-height: 1.65; }

.architecture { padding: 105px 0; overflow: hidden; background: #252525; color: white; }
.architecture-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.architecture-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.arch-ring, .arch-core { position: absolute; display: grid; place-items: center; border-radius: 50%; }
.arch-ring { border: 1px solid #4a4a4a; }
.ring-one { width: 365px; height: 365px; }
.ring-two { width: 245px; height: 245px; border-style: dashed; animation: spin 36s linear infinite; }
.arch-core { width: 145px; height: 145px; background: var(--orange); box-shadow: 0 0 70px rgba(255,122,0,.17); }
.arch-core b { font-size: 12px; line-height: 1.4; text-align: center; letter-spacing: .08em; }
.arch-core i { position: absolute; width: 165px; height: 1px; background: var(--orange); opacity: .4; }
.ring-one span, .ring-two span { position: absolute; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #555; border-radius: 50%; background: #303030; color: #aaa; font-size: 8px; font-weight: 700; }
.ring-one span { right: 8px; top: 75px; }
.ring-two span:first-child { left: -16px; top: 90px; }
.ring-two span:last-child { right: 12px; bottom: 25px; }
.arch-label { position: absolute; padding: 7px 11px; border: 1px solid #464646; background: #2d2d2d; color: #bbb; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.label-one { top: 38px; left: 44%; }.label-two { bottom: 54px; left: 8%; }.label-three { right: 5%; bottom: 95px; }
@keyframes spin { to { transform: rotate(360deg); } }
.light-eye { color: #aaa; }
.architecture-copy > p:not(.eyebrow) { margin: 25px 0 35px; color: #aaa; line-height: 1.75; }
.arch-features { border-top: 1px solid #454545; }
.arch-features > div { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid #454545; }
.arch-features > div > span { color: var(--orange); }
.arch-features p { margin: 0; }
.arch-features b, .arch-features small { display: block; }
.arch-features b { margin-bottom: 7px; font-size: 14px; }
.arch-features small { color: #999; font-size: 12px; line-height: 1.5; }

.faq { background: #fafaf8; }
.faq-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 100px; align-items: start; }
.faq-intro h2 { margin-bottom: 20px; }
.faq-intro > p:not(.eyebrow) { max-width: 320px; color: var(--muted); line-height: 1.7; }
.faq-intro > a { display: inline-flex; gap: 25px; margin-top: 15px; padding-bottom: 5px; border-bottom: 1px solid #aaa; font-size: 14px; font-weight: 700; }
.faq-intro > a span { color: var(--orange); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 50px 25px 0; cursor: pointer; list-style: none; font-family: "Manrope"; font-size: 17px; font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; right: 5px; top: 50%; width: 15px; height: 1.5px; background: var(--ink); transition: transform .25s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details[open] summary { color: var(--orange); }
.accordion details p { max-width: 690px; margin: -6px 55px 24px 0; color: var(--muted); line-height: 1.7; }

.contact-section { position: relative; padding: 115px 0; overflow: hidden; background: #202020; color: white; }
.contact-grid-bg { opacity: .2; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); mask-image: linear-gradient(to right, transparent, black); }
.contact-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; }
.contact-copy h2 { max-width: 530px; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 40px; color: #aaa; line-height: 1.75; }
.contact-direct { display: flex; gap: 50px; }
.contact-direct a small, .contact-direct a b { display: block; }
.contact-direct a small { margin-bottom: 8px; color: #777; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.contact-direct a b { font-size: 15px; }
.contact-direct a:hover b { color: var(--orange); }
.contact-form { padding: 40px; background: white; color: var(--ink); }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; margin-bottom: 20px; color: #545454; font-size: 11px; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; margin-top: 8px; padding: 13px 0; border: 0; border-bottom: 1px solid #d0d0cd; border-radius: 0; outline: 0; background: transparent; color: var(--ink); transition: border-color .2s; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); }
.contact-form ::placeholder { color: #a3a3a0; }
.consent { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 400 !important; line-height: 1.5; }
.consent input { flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--orange); }
.consent a { text-decoration: underline; }
.form-submit { width: 100%; margin-top: 4px; }
.form-submit:disabled { cursor: wait; opacity: .65; }
.form-note { margin: 12px 0 0; color: #929292; font-size: 10px; text-align: center; }

.site-footer { padding: 48px 0 25px; background: #181818; color: white; }
.footer-main { display: grid; grid-template-columns: 190px 1fr 45px; align-items: center; gap: 50px; padding-bottom: 38px; border-bottom: 1px solid #373737; }
.footer-brand { width: 175px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand img { width: 100%; height: auto; }
.footer-main > p { margin: 0; color: #8e8e8e; font-size: 12px; }
.back-top { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #4c4c4c; color: var(--orange); }
.back-top:hover { background: var(--orange); color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 23px; color: #747474; font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 28px; }
.footer-bottom a:hover { color: white; }
.cookie-settings-link { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.cookie-settings-link:hover, .cookie-settings-link:focus-visible { color: white; }

.cookie-banner { position: fixed; z-index: 300; left: 24px; bottom: 24px; width: min(calc(100% - 48px), 540px); padding: 28px; border: 1px solid #e1e1dd; border-top: 4px solid var(--orange); background: white; box-shadow: 0 28px 80px rgba(20,20,20,.22); }
.cookie-banner[hidden] { display: none; }
.cookie-banner-label { margin: 0 0 10px; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cookie-banner h2 { margin: 0 0 12px; font-size: 22px; line-height: 1.25; }
.cookie-banner > p:not(.cookie-banner-label) { margin: 0; color: #5b5b5b; font-size: 14px; line-height: 1.65; }
.cookie-banner a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.cookie-button { min-height: 44px; padding: 11px 17px; border: 1px solid var(--ink); font-weight: 700; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.cookie-button-primary { background: var(--ink); color: white; }
.cookie-button-primary:hover { border-color: var(--orange); background: var(--orange); }
.cookie-button-secondary { background: white; color: var(--ink); }
.cookie-button-secondary:hover { background: var(--cream); }
.toast { position: fixed; z-index: 150; left: 50%; bottom: 24px; transform: translate(-50%, 30px); padding: 13px 20px; background: white; border-left: 3px solid var(--orange); box-shadow: var(--shadow); opacity: 0; pointer-events: none; font-size: 13px; transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Individual service pages */
.service-hero { position: relative; min-height: 760px; padding: 126px 0 90px; overflow: hidden; background: linear-gradient(120deg, #f8f8f5, #fff 57%, #f3f0eb); }
.service-hero .reveal { opacity: 1; transform: none; }
.breadcrumbs { position: relative; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 70px; color: #8a8a86; font-size: 11px; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs b { color: var(--ink); font-weight: 600; }
.breadcrumbs span { color: #c3c3bf; }
.service-hero-layout { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 90px; align-items: center; }
.service-hero-copy h1 { max-width: 730px; margin-bottom: 28px; font-size: clamp(48px, 5.3vw, 75px); line-height: 1.04; }
.service-hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 0; color: #595959; font-size: 19px; line-height: 1.7; }
.service-hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.service-big-number { position: absolute; right: -15px; top: -80px; color: rgba(255,122,0,.075); font-family: "Manrope"; font-size: 280px; font-weight: 800; line-height: 1; }
.service-hero-image-wrap { position: relative; z-index: 2; width: min(112%, 580px); filter: drop-shadow(0 28px 38px rgba(32,32,32,.12)); }
.service-hero-image { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.service-orbit { position: absolute; border: 1px solid #deded9; border-radius: 50%; }
.orbit-a { width: 395px; height: 395px; }
.orbit-b { width: 275px; height: 275px; border-style: dashed; }
.service-visual-core { position: relative; z-index: 2; display: flex; justify-content: center; flex-direction: column; width: 190px; height: 190px; padding: 25px; border-radius: 50%; background: var(--ink); color: white; text-align: center; box-shadow: 0 28px 70px rgba(32,32,32,.2); }
.service-visual-core::after { content: ""; position: absolute; width: 12px; height: 12px; right: 24px; top: 28px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,122,0,.14); }
.service-visual-core small { margin-bottom: 10px; color: #999; font-size: 8px; letter-spacing: .16em; }
.service-visual-core b { font-family: "Manrope"; font-size: 14px; line-height: 1.4; text-transform: uppercase; }
.service-visual-tag { position: absolute; z-index: 3; padding: 11px 14px; border: 1px solid #deded9; background: white; box-shadow: 0 12px 30px rgba(32,32,32,.08); color: #777; font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.service-visual-tag::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 7px; border-radius: 50%; background: var(--orange); }
.service-visual-tag.tag-a { left: 0; top: 52px; }
.service-visual-tag.tag-b { right: 3px; top: 138px; }
.service-visual-tag.tag-c { left: 38px; bottom: 35px; }
.service-overview-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: start; }
.overview-title h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.17; }
.overview-copy { padding-top: 34px; }
.overview-copy p { margin: 0 0 22px; color: #626262; font-size: 17px; line-height: 1.8; }
.outcome-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.outcome-strip > div { min-height: 110px; display: flex; align-items: center; gap: 13px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.outcome-strip span { display: grid; place-items: center; flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-size: 11px; }
.outcome-strip b { font-size: 13px; line-height: 1.5; }
.service-scope { background: var(--cream); }
.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d6d6d1; border-left: 1px solid #d6d6d1; }
.scope-card { min-height: 250px; padding: 30px; border-right: 1px solid #d6d6d1; border-bottom: 1px solid #d6d6d1; background: rgba(255,255,255,.38); transition: background .25s, transform .25s; }
.scope-card:hover { position: relative; z-index: 1; background: white; transform: translateY(-3px); }
.scope-card > span { color: var(--orange); font-size: 9px; font-weight: 800; }
.scope-card h3 { margin: 52px 0 13px; font-size: 19px; }
.scope-card p { margin: 0; color: #6b6b68; font-size: 14px; line-height: 1.7; }
.service-fit { padding: 105px 0; overflow: hidden; background: var(--ink); color: white; }
.service-fit-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: center; }
.fit-marker { position: relative; min-height: 380px; display: grid; place-items: center; border: 1px solid #444; }
.fit-marker::before, .fit-marker::after { content: ""; position: absolute; border: 1px solid #3c3c3c; border-radius: 50%; }
.fit-marker::before { width: 270px; height: 270px; }
.fit-marker::after { width: 170px; height: 170px; border-style: dashed; }
.fit-marker span { position: relative; z-index: 2; color: var(--orange); font-family: "Manrope"; font-size: 92px; font-weight: 800; }
.fit-marker small { position: absolute; bottom: 24px; color: #777; font-size: 8px; letter-spacing: .18em; }
.service-fit h2 { margin-bottom: 22px; color: white; font-size: clamp(38px, 4.2vw, 55px); }
.service-fit .eyebrow { color: #aaa; }
.service-fit p:not(.eyebrow) { max-width: 680px; margin: 0 0 33px; color: #aaa; font-size: 16px; line-height: 1.8; }
.service-fit .button { width: auto; }
.service-process { background: white; }
.service-faq { background: var(--cream); }
.related-services { background: white; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-card { position: relative; min-height: 190px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, color .25s; }
.related-card > span { color: #aaa; font-size: 9px; }
.related-card h3 { max-width: 270px; margin: 55px 40px 0 0; font-size: 20px; }
.related-card i { position: absolute; right: 28px; bottom: 28px; color: var(--orange); font-style: normal; }
.related-card:hover { background: var(--ink); color: white; }
.service-cta { padding: 78px 0; background: var(--ink); color: white; }
.service-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.service-cta h2 { margin-bottom: 12px; font-size: clamp(34px, 4vw, 52px); }
.service-cta p:not(.eyebrow) { margin: 0; color: #999; }
.service-cta .eyebrow { color: #999; }
.service-cta .button { flex: 0 0 auto; }

@media (max-width: 1120px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 25px; }
  .app-window { min-width: 610px; }
  .problem-layout, .architecture-layout, .contact-layout { gap: 55px; }
  .why-layout, .faq-layout { gap: 60px; }
  .primary-nav { gap: 22px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .section { padding: 90px 0; }
  .site-header, .site-header.scrolled { --mobile-header-height: 70px; height: var(--mobile-header-height); }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: absolute; z-index: 1; top: 100%; right: 0; left: 0; height: calc(100vh - var(--mobile-header-height)); height: calc(100dvh - var(--mobile-header-height)); display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 28px 20px max(28px, env(safe-area-inset-bottom)); background: white; transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s; }
  .primary-nav.open { transform: none; visibility: visible; }
  .primary-nav > a:not(.nav-cta) { padding: 19px 4px; border-bottom: 1px solid var(--line); font-size: 19px; }
  .primary-nav > a::after { display: none; }
  .nav-cta { justify-content: space-between; margin: 24px 0 0; padding: 18px; }
  .primary-nav { overflow-y: auto; }
  .nav-dropdown { border-bottom: 1px solid var(--line); }
  .nav-dropdown summary { justify-content: space-between; padding: 19px 4px; font-size: 19px; }
  .nav-dropdown-menu { position: static; width: auto; display: none; grid-template-columns: 1fr 1fr; gap: 2px; margin: 0 0 14px; padding: 8px; border: 0; background: var(--cream); box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown[open] .nav-dropdown-menu { display: grid; }
  .nav-dropdown-menu a { min-height: 52px; padding: 8px 9px; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 710px; }
  h1 { font-size: clamp(46px, 9vw, 72px); }
  .system-visual { width: min(100%, 690px); margin: 10px auto 0; }
  .app-window { min-width: 0; transform: none; }
  .floating-one { right: -5px; }.floating-two { left: -5px; }
  .hero-bottom { margin-top: 10px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 600px; }
  .problem-layout { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .process-grid::before { display: none; }
  .step-dot { margin: 20px 0 22px; }
  .why-layout { grid-template-columns: 1fr; }
  .why-copy { position: static; max-width: 650px; }
  .architecture-layout { grid-template-columns: .9fr 1.1fr; gap: 30px; }
  .ring-one { width: 320px; height: 320px; }
  .ring-two { width: 215px; height: 215px; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro > p:not(.eyebrow) { max-width: 600px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 680px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer-bottom nav { flex-wrap: wrap; gap: 12px 24px; }
  .service-hero { min-height: auto; padding-top: 110px; }
  .breadcrumbs { margin-bottom: 50px; }
  .service-hero-layout { grid-template-columns: 1fr; gap: 25px; }
  .service-hero-visual { min-height: 390px; }
  .service-hero-image-wrap { width: min(100%, 500px); }
  .service-overview-layout { grid-template-columns: 1fr; gap: 25px; }
  .overview-copy { padding-top: 0; }
  .outcome-strip { grid-template-columns: 1fr 1fr; }
  .scope-grid { grid-template-columns: 1fr 1fr; }
  .service-fit-layout { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .related-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  .site-header, .site-header.scrolled { --mobile-header-height: 66px; }
  .brand { width: 145px; }
  .nav-dropdown-menu { grid-template-columns: 1fr; }
  .hero { padding-top: 112px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  h1 { margin-bottom: 20px; font-size: clamp(40px, 12.8vw, 57px); }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 13px; margin-top: 28px; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-points { gap: 12px 16px; margin-top: 25px; }
  .system-visual { margin-top: 0; padding: 35px 0 40px; }
  .app-body { min-height: 286px; }
  .app-sidebar { flex-basis: 39px; gap: 16px; padding-top: 20px; }
  .app-sidebar span { width: 12px; height: 11px; }
  .app-content { padding: 17px 12px; }
  .app-heading strong { font-size: 11px; }
  .metric { padding: 10px 8px; }
  .metric b { font-size: 14px; }
  .metric i { display: none; }
  .chart-panel { padding: 10px 8px 3px; }
  .activity-row > div { padding: 7px; }
  .activity-icon { display: none; }
  .floating-card { padding: 9px; }
  .floating-card > span { width: 29px; height: 29px; }
  .floating-card b { font-size: 8px; }.floating-card small { font-size: 6px; }
  .floating-one { top: 8px; }.floating-two { bottom: 15px; }
  .hero-bottom { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 0; }
  .tech-line { width: 100%; display: grid; grid-template-columns: 1fr 3px 1fr; gap: 9px; }
  .tech-line i:nth-of-type(2), .tech-line span:nth-of-type(4) { display: none; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .why h2, .faq h2, .contact-copy h2, .architecture h2 { font-size: 34px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child:nth-child(odd) { grid-column: auto; }
  .service-card { min-height: 0; padding: 32px 27px; }
  .service-icon { margin-bottom: 28px; }
  .service-card h3 { font-size: 22px; }
  .dark-section { padding-bottom: 78px; }
  .problem-tab { grid-template-columns: 35px 1fr 18px; min-height: 78px; gap: 9px; }
  .problem-tab b { font-size: 14px; }
  .solution-panel { min-height: 390px; padding: 34px 28px; }
  .solution-label { margin-bottom: 55px; }
  .solution-panel h3 { font-size: 25px; }
  .process-grid { grid-template-columns: 1fr; gap: 35px; }
  .process-step { padding-right: 0; }
  .step-dot { margin: 12px 0 18px; }
  .process-cta { align-items: stretch; flex-direction: column; margin-top: 50px; }
  .process-cta strong { display: block; margin-bottom: 5px; }
  .why-layout { gap: 50px; }
  .why-item { grid-template-columns: 30px 1fr; gap: 13px; }
  .architecture-layout { grid-template-columns: 1fr; }
  .architecture-visual { min-height: 360px; }
  .ring-one { width: 300px; height: 300px; }
  .ring-two { width: 205px; height: 205px; }
  .arch-core { width: 125px; height: 125px; }
  .faq-layout { gap: 35px; }
  .accordion summary { padding: 21px 42px 21px 0; font-size: 15px; }
  .accordion details p { margin-right: 15px; font-size: 14px; }
  .contact-section { padding: 75px 0; }
  .contact-layout { gap: 45px; }
  .contact-direct { flex-direction: column; gap: 22px; }
  .contact-form { margin-inline: -4px; padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr 45px; gap: 20px; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
  .footer-bottom nav { flex-wrap: wrap; gap: 12px 24px; }
  .cookie-banner { left: 12px; bottom: 12px; width: calc(100% - 24px); padding: 23px 20px 20px; }
  .cookie-banner h2 { font-size: 19px; }
  .cookie-banner-actions { align-items: stretch; flex-direction: column-reverse; }
  .cookie-button { width: 100%; }
  .service-hero { padding: 95px 0 65px; }
  .breadcrumbs { margin-bottom: 38px; }
  .service-hero-copy h1 { font-size: 42px; }
  .service-hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .service-hero-visual { min-height: 325px; }
  .service-hero-image-wrap { width: min(100%, 390px); }
  .service-big-number { top: -20px; right: 0; font-size: 190px; }
  .orbit-a { width: 290px; height: 290px; }
  .orbit-b { width: 205px; height: 205px; }
  .service-visual-core { width: 145px; height: 145px; padding: 19px; }
  .service-visual-core b { font-size: 11px; }
  .service-visual-tag.tag-a { left: 0; top: 35px; }
  .service-visual-tag.tag-b { right: 0; top: 105px; }
  .service-visual-tag.tag-c { left: 10px; bottom: 25px; }
  .service-overview-layout { gap: 15px; }
  .overview-copy p { font-size: 15px; }
  .outcome-strip { grid-template-columns: 1fr; margin-top: 45px; }
  .outcome-strip > div { min-height: 75px; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: 215px; }
  .service-fit { padding: 72px 0; }
  .service-fit-layout { grid-template-columns: 1fr; gap: 42px; }
  .fit-marker { min-height: 300px; }
  .fit-marker::before { width: 240px; height: 240px; }
  .fit-marker::after { width: 155px; height: 155px; }
  .service-fit .button { width: 100%; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 160px; }
  .service-cta { padding: 65px 0; }
  .service-cta .container { align-items: stretch; flex-direction: column; gap: 32px; }
}

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

/* Legal and error pages */
.legal-main { padding: 150px 0 105px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 790px); gap: 90px; justify-content: center; }
.legal-layout aside { padding-top: 10px; }
.legal-layout aside > p:last-child { color: var(--muted); font-size: 12px; }
.legal-layout article > h1 { margin-bottom: 25px; font-size: clamp(43px, 6vw, 66px); }
.legal-lead { margin: 0 0 55px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.legal-layout article h2 { margin: 42px 0 12px; font-size: 22px; letter-spacing: -.025em; }
.legal-layout article > p:not(.legal-lead) { color: #5f5f5f; line-height: 1.8; }
.legal-layout article a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-back { font-size: 13px; font-weight: 700; }
.legal-back:hover { color: var(--orange); }
.legal-contact { display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-top: 60px; padding: 25px; border-left: 3px solid var(--orange); background: var(--cream); }
.compact-footer { padding-top: 0; }
.compact-footer .footer-bottom { border: 0; }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 35px 20px; overflow: hidden; background: #f7f7f4; }
.error-page main { position: relative; z-index: 1; max-width: 720px; text-align: center; }
.error-page main::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; left: 50%; top: 45%; border: 1px solid #deded9; border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 70px rgba(220,220,217,.3), 0 0 0 140px rgba(220,220,217,.16); }
.error-brand { display: block; width: 170px; margin: 0 auto 65px; }
.error-code { position: absolute; z-index: -1; left: 50%; top: 25%; transform: translate(-50%,-50%); color: rgba(255,122,0,.07); font-family: "Manrope"; font-size: 230px; font-weight: 800; }
.error-page .eyebrow { justify-content: center; }
.error-page h1 { font-size: clamp(41px, 7vw, 65px); }
.error-page main > p:not(.eyebrow) { margin: -5px 0 30px; color: var(--muted); }

@media (max-width: 800px) {
  .legal-main { padding: 120px 0 75px; }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-layout aside { padding: 0 0 20px; border-bottom: 1px solid var(--line); }
  .legal-lead { margin-bottom: 42px; }
}

@media (max-width: 520px) {
  .legal-back { font-size: 0; }
  .legal-back::after { content: "← Grįžti"; font-size: 12px; }
  .legal-contact { align-items: flex-start; flex-direction: column; }
  .error-brand { margin-bottom: 55px; }
  .error-code { font-size: 150px; }
}
