:root {
  --ink: #18251f;
  --ink-soft: #4b5b52;
  --ink-muted: #718078;
  --paper: #f5f3ed;
  --paper-deep: #ece9df;
  --surface: #fffdf8;
  --line: #d8ddd7;
  --forest: #184f3c;
  --forest-deep: #103a2d;
  --forest-soft: #e7f0eb;
  --orange: #ef6330;
  --orange-dark: #c7481d;
  --orange-soft: #fff0e8;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow: 0 24px 70px rgba(27, 49, 39, .11);
  --shell: min(1160px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible { outline: 3px solid rgba(239, 99, 48, .36); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 243, 237, .94);
  border-bottom: 1px solid rgba(24, 79, 60, .12);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 260px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--orange);
  border-radius: 9px 15px 9px 15px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.06em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 19px; letter-spacing: -.02em; }
.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: .01em;
  white-space: nowrap;
}
nav { display: flex; align-items: center; justify-content: center; gap: 22px; flex: 1; font-size: 13px; font-weight: 650; }
nav a { position: relative; padding-block: 8px; }
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
  transition: right .18s ease;
}
nav a:hover::after, nav a:focus-visible::after, nav a[aria-current="page"]::after { right: 0; }
.nav-tools { display: flex; align-items: center; gap: 10px; }
.language-link {
  min-width: 42px;
  padding: 8px 11px;
  color: var(--forest);
  background: rgba(255, 253, 248, .72);
  border: 1px solid rgba(24, 79, 60, .14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}
.language-link:hover { background: rgba(24, 79, 60, .07); border-color: rgba(24, 79, 60, .3); }
.nav-contact {
  padding: 9px 16px;
  color: var(--forest);
  border: 1px solid rgba(24, 79, 60, .32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  transition: .18s ease;
}
.nav-contact:hover { color: #fff; background: var(--forest); border-color: var(--forest); }
.mobile-policy { display: none; margin-left: auto; color: var(--forest); font-size: 12px; font-weight: 750; }

.hero {
  position: relative;
  padding: 76px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 99, 48, .10), transparent 23%),
    linear-gradient(180deg, #faf8f3 0%, var(--paper) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -330px;
  bottom: -300px;
  border: 60px solid rgba(24, 79, 60, .055);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 68px; }
.eyebrow { margin: 0 0 17px; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 26px; font-size: clamp(46px, 5.6vw, 76px); line-height: 1.06; letter-spacing: -.055em; font-weight: 720; }
.hero-copy h1 { font-size: clamp(44px, 4.8vw, 68px); }
h1 em { color: var(--forest); font-style: normal; }
.lead { max-width: 720px; margin-bottom: 32px; color: var(--ink-soft); font-size: 17px; line-height: 1.82; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { color: #fff; background: var(--forest); box-shadow: 0 10px 28px rgba(24, 79, 60, .18); }
.primary:hover { background: var(--forest-deep); }
.secondary { color: var(--forest); border: 1px solid rgba(24, 79, 60, .28); }
.secondary:hover { background: rgba(24, 79, 60, .06); border-color: var(--forest); }
.disclaimer { max-width: 650px; margin-bottom: 0; color: var(--ink-muted); font-size: 11px; line-height: 1.7; }

.trust-panel {
  position: relative;
  padding: 26px;
  color: #eef5f1;
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -72px;
  top: -82px;
  border: 34px solid rgba(239, 99, 48, .74);
  border-radius: 50%;
}
.panel-top, .panel-foot { position: relative; display: flex; align-items: center; justify-content: space-between; }
.panel-top { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 11px; letter-spacing: .08em; }
.status { display: flex; align-items: center; gap: 7px; color: #bed7cc; letter-spacing: 0; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #7cc7a3; box-shadow: 0 0 0 5px rgba(124, 199, 163, .12); }
.principle { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 10px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.principle b { color: #ef9a68; font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace; }
.principle strong { font-size: 16px; }
.principle p { margin: 5px 0 0; color: #abc1b7; font-size: 12px; }
.panel-foot { padding-top: 20px; color: #88a096; font: 600 10px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .07em; }

.proof-strip { color: #fff; background: var(--forest); }
.proof-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; }
.proof-grid div { min-height: 108px; display: flex; flex-direction: column; justify-content: center; padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.13); }
.proof-grid div:first-child { padding-left: 0; }
.proof-grid div:last-child { border: 0; }
.proof-grid span { margin-bottom: 7px; color: #a8cbbd; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.proof-grid strong { font-size: 14px; }

.section { padding: 104px 0; }
section[id] { scroll-margin-top: 76px; }
.section-heading { margin-bottom: 50px; }
.split-heading { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 76px; }
h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.18; letter-spacing: -.04em; }
.split-heading > p { margin-bottom: 4px; color: var(--ink-soft); font-size: 15px; }

.data-shift { background: var(--surface); }
.shift-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: stretch; }
.shift-copy { padding-top: 27px; border-top: 3px solid var(--orange); }
.shift-kicker { margin-bottom: 23px; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.shift-copy h3 { max-width: 560px; margin-bottom: 23px; font-size: clamp(27px, 3vw, 39px); line-height: 1.25; letter-spacing: -.035em; }
.shift-copy > p:not(.shift-kicker) { max-width: 590px; color: var(--ink-soft); font-size: 14px; }
.shift-copy blockquote { margin: 34px 0 0; padding: 20px 23px; color: var(--forest); background: var(--forest-soft); border-left: 4px solid var(--forest); font-size: 16px; font-weight: 720; }
.signal-flow { border-top: 1px solid var(--line); }
.signal-flow > div { min-height: 104px; display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); }
.signal-flow b { color: var(--orange); font: 750 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.signal-flow span { display: grid; grid-template-columns: minmax(120px, .72fr) 1.28fr; align-items: baseline; gap: 24px; }
.signal-flow strong { font-size: 20px; letter-spacing: -.02em; }
.signal-flow small { color: var(--ink-soft); font-size: 12px; }
.gap-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 72px; align-items: end; margin: 86px 0 28px; }
.gap-heading .eyebrow { margin-bottom: 3px; }
.gap-heading h3 { margin-bottom: 0; font-size: clamp(25px, 2.8vw, 36px); line-height: 1.28; letter-spacing: -.03em; }
.gap-rail { border-top: 1px solid var(--line); }
.gap-rail article { min-height: 126px; display: grid; grid-template-columns: 58px minmax(0, 1fr) 150px; gap: 22px; align-items: center; border-bottom: 1px solid var(--line); }
.gap-rail article > span { color: var(--orange); font: 750 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.gap-rail strong { display: block; margin-bottom: 5px; font-size: 22px; }
.gap-rail p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.gap-rail em { justify-self: end; padding: 7px 11px; color: var(--forest); background: var(--forest-soft); border-radius: 999px; font-size: 11px; font-style: normal; font-weight: 760; }
.gap-conclusion { margin: 32px 0 0; color: var(--forest); font-size: 18px; font-weight: 780; text-align: right; }

.service-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.service-feature { position: relative; min-height: 440px; padding: 34px; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.service-no { color: var(--orange); font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace; }
.service-icon { width: 60px; height: 60px; margin: 54px 0 26px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 50%; font-size: 25px; }
.service-feature h3 { margin-bottom: 13px; font-size: 27px; letter-spacing: -.03em; }
.service-feature p { color: var(--ink-soft); }
.service-feature ul { margin: auto 0 0; padding: 21px 0 0; border-top: 1px solid var(--line); list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.service-feature li { padding: 6px 10px; color: var(--forest); background: var(--forest-soft); border-radius: 999px; font-size: 10px; font-weight: 700; }
.service-list { border-top: 1px solid var(--line); }
.service-list article { min-height: 139px; display: grid; grid-template-columns: 60px 1fr; gap: 14px; align-items: center; padding: 23px 14px; border-bottom: 1px solid var(--line); transition: padding-left .18s ease, background .18s ease; }
.service-list article:hover { padding-left: 25px; background: rgba(255,255,255,.36); }
.service-list article > span { color: var(--orange); font: 700 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.service-list h3 { margin-bottom: 7px; font-size: 20px; }
.service-list p { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }

.workflow { background: var(--paper-deep); }
.workflow-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: start; }
.workflow-intro { position: sticky; top: 126px; }
.workflow-intro > p:not(.eyebrow) { margin: 27px 0; color: var(--ink-soft); }
.text-link { color: var(--forest); font-weight: 750; text-decoration: underline; text-decoration-color: rgba(24,79,60,.28); text-underline-offset: 5px; }
.text-link:hover { text-decoration-color: var(--forest); }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: flow; border-top: 1px solid var(--line); }
.steps li { min-height: 132px; display: grid; grid-template-columns: 70px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.steps li > span { width: 44px; height: 44px; display: grid; place-items: center; color: var(--forest); background: var(--forest-soft); border-radius: 50%; font: 800 12px ui-monospace, SFMono-Regular, Menlo, monospace; }
.steps strong { display: block; margin-bottom: 6px; font-size: 19px; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.pricing { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.pricing-copy > p:last-of-type { margin: 26px 0 30px; color: var(--ink-soft); }
.pricing-panel { padding: 38px; background: var(--forest-deep); color: #fff; border-radius: var(--radius-lg); }
.pricing-panel .price-label { margin-bottom: 12px; color: #9cc5b3; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pricing-panel h3 { margin-bottom: 12px; font-size: 31px; letter-spacing: -.035em; }
.pricing-panel > p { color: #b5cbbf; }
.price-factors { margin: 26px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.price-factors li { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: #d4e1db; font-size: 13px; }
.price-factors span:last-child { color: #91aa9f; text-align: right; }
.commercial-note { margin: 20px 0 0; color: #8fa79c !important; font-size: 11px; line-height: 1.65; }

.custom-development {
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(239, 99, 48, .17), transparent 24%),
    var(--forest-deep);
}
.custom-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.custom-copy .eyebrow { color: #ef9a68; }
.custom-copy h2 { max-width: 560px; }
.custom-copy > p:not(.eyebrow) { max-width: 590px; margin: 28px 0 32px; color: #b4c8be; }
.capability-list { display: flex; flex-wrap: wrap; gap: 9px; }
.capability-list span {
  padding: 7px 12px;
  color: #dce8e2;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 11px;
}
.custom-contrast {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  align-items: stretch;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(4, 19, 14, .24);
}
.contrast-side { display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; }
.contrast-side small { margin-bottom: auto; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.contrast-side strong { max-width: 260px; font-size: 25px; line-height: 1.2; letter-spacing: -.025em; }
.contrast-side p { margin: 18px 0 0; font-size: 12px; }
.contrast-side.legacy { color: #d4ded9; background: rgba(255,255,255,.045); }
.contrast-side.legacy small, .contrast-side.legacy p { color: #90a69b; }
.contrast-side.native { color: #fff; background: linear-gradient(155deg, rgba(239,99,48,.94), rgba(199,72,29,.94)); }
.contrast-side.native small, .contrast-side.native p { color: #ffe2d5; }
.contrast-axis {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  background: var(--paper);
}
.contrast-axis span { color: var(--orange-dark); font-size: 22px; font-weight: 850; }
.contrast-axis i { width: 1px; height: 68px; margin: 14px 0; background: rgba(24,79,60,.25); }
.contrast-axis b { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; writing-mode: vertical-rl; }

.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.security-card { min-height: 420px; padding: 42px; border-radius: var(--radius-md); }
.dark { display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: var(--forest-deep); }
.dark h2 { max-width: 520px; font-size: clamp(32px, 3.4vw, 46px); }
.dark > p:last-child { max-width: 480px; margin: 24px 0 0; color: #aec4ba; }
.checks { background: var(--orange-soft); }
.checks > div { min-height: 86px; display: grid; grid-template-columns: 50px 1fr; align-items: center; border-bottom: 1px solid rgba(239,99,48,.22); }
.checks > div:last-child { border-bottom: 0; }
.checks b { color: var(--orange-dark); font: 800 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.checks span { display: flex; flex-direction: column; }
.checks strong { font-size: 16px; }
.checks small { margin-top: 3px; color: #765849; font-size: 12px; }

.contact-band { padding: 82px 0; color: #fff; background: var(--orange); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 90px; }
.contact-band .eyebrow { color: #57220e; }
.contact-band h2 { max-width: 620px; }
.contact-grid > div:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.contact-grid p { max-width: 520px; }
.light { color: var(--orange-dark); background: #fff; }

.site-footer { padding: 68px 0 24px; color: #c7d5ce; background: #0e2b22; }
.footer-grid { display: grid; grid-template-columns: 1.05fr 1.3fr .65fr; gap: 62px; }
.footer-brand { min-width: auto; color: #fff; }
.footer-brand .brand-copy small { color: #97ada2; }
.footer-grid > div:first-child > p { max-width: 320px; margin: 23px 0 0; color: #91a79c; font-size: 13px; }
.footer-grid h3 { margin: 4px 0 18px; color: #fff; font-size: 13px; }
.footer-grid p, .footer-grid a { display: block; margin: 0 0 9px; color: #a2b5ac; font-size: 12px; }
.footer-grid a:hover { color: #fff; }
.copyright { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); color: #7e958a; font-size: 11px; }
.compact-footer .copyright { margin-top: 0; }

.page-hero { padding: 80px 0 60px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #faf8f3 0%, var(--paper) 100%); }
.page-hero h1 { max-width: 900px; margin-bottom: 21px; font-size: clamp(43px, 5vw, 66px); }
.page-hero .lead { max-width: 850px; }
.content-section { padding: 70px 0 96px; }
.content-grid { display: grid; grid-template-columns: 240px minmax(0, 790px); gap: 86px; align-items: start; }
.side-nav { position: sticky; top: 108px; padding: 17px 0; border-top: 1px solid var(--line); }
.side-nav a { display: block; padding: 8px 0; color: var(--ink-soft); font-size: 12px; }
.side-nav a:hover { color: var(--forest); }
.prose { min-width: 0; }
.prose h2 { margin: 60px 0 19px; font-size: 29px; scroll-margin-top: 112px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 28px 0 9px; font-size: 18px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 20px; }
.prose a { overflow-wrap: anywhere; }
.policy-note { margin: 0 0 34px; padding: 23px; background: var(--surface); border-left: 4px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.company-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 33px 0; background: var(--line); border: 1px solid var(--line); }
.company-facts div { padding: 21px; background: var(--surface); }
.company-facts span { display: block; margin-bottom: 6px; color: var(--ink-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.company-facts strong { font-size: 13px; overflow-wrap: anywhere; }
.contact-card { margin-top: 30px; padding: 26px; background: var(--forest-soft); border-radius: var(--radius-md); }
.contact-card p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .brand { min-width: auto; }
  .brand-copy small { display: none; }
  nav { gap: 18px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }
  .nav-wrap { min-height: 68px; }
  nav, .nav-contact { display: none; }
  .nav-tools { margin-left: auto; }
  .mobile-policy { display: block; }
  .hero { padding: 56px 0; }
  .hero-grid, .split-heading, .shift-layout, .service-layout, .workflow-grid, .custom-grid, .pricing-grid, .security-grid, .contact-grid, .footer-grid, .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-panel { max-width: 620px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid div { min-height: 92px; padding: 17px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .proof-grid div:nth-child(odd) { padding-right: 16px; }
  .proof-grid div:nth-child(even) { padding-left: 16px; }
  .section { padding: 76px 0; }
  section[id] { scroll-margin-top: 68px; }
  .gap-heading { grid-template-columns: 1fr; gap: 14px; margin-top: 66px; }
  .gap-rail article { grid-template-columns: 48px minmax(0, 1fr) 130px; }
  .workflow-intro, .side-nav { position: static; }
  .custom-contrast { max-width: 720px; }
  .contact-grid { align-items: start; }
  .footer-grid { gap: 34px; }
  .content-grid { max-width: 760px; }
  .side-nav { display: none; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 24px, 520px); }
  .brand-mark { width: 39px; height: 39px; }
  .nav-tools { gap: 4px; }
  .language-link { min-width: 39px; padding-inline: 8px; }
  .mobile-policy { display: none; }
  h1, .hero-copy h1 { font-size: 39px; }
  .lead { font-size: 15px; line-height: 1.75; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .proof-grid, .company-facts { grid-template-columns: 1fr; }
  .proof-grid div, .proof-grid div:nth-child(odd), .proof-grid div:nth-child(even) { padding: 15px 0; }
  .signal-flow span { grid-template-columns: 1fr; gap: 2px; }
  .gap-rail article { grid-template-columns: 38px 1fr; gap: 12px; padding: 22px 0; }
  .gap-rail em { grid-column: 2; justify-self: start; }
  .gap-conclusion { font-size: 16px; text-align: left; }
  .service-feature, .security-card, .pricing-panel { min-height: auto; padding: 25px; }
  .service-icon { margin-top: 36px; }
  .service-list article { min-height: auto; padding: 21px 8px; }
  .service-list article:hover { padding-left: 8px; }
  .steps li { grid-template-columns: 50px 1fr; }
  .pricing-panel h3 { font-size: 28px; }
  .custom-contrast { grid-template-columns: 1fr; min-height: auto; }
  .contrast-side { min-height: 255px; padding: 25px; }
  .contrast-axis { min-height: 72px; flex-direction: row; gap: 12px; }
  .contrast-axis i { width: 54px; height: 1px; margin: 0; }
  .contrast-axis b { writing-mode: horizontal-tb; }
  .price-factors li { font-size: 12px; }
  .price-factors li { flex-direction: column; gap: 2px; }
  .price-factors span:last-child { text-align: left; }
  .contact-band { padding: 61px 0; }
  .copyright { flex-direction: column; gap: 7px; }
  .page-hero { padding: 58px 0 46px; }
  .content-section { padding: 54px 0 72px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
